:root {
  --navy: #063e5b;
  --deep: #07587a;
  --blue: #087eb0;
  --aqua: #4cc9e6;
  --pale: #eaf8fc;
  --sand: #d9c69d;
  --ink: #102f3d;
  --muted: #58717c;
  --white: #fff;
  --serif: "Oswald", Arial, sans-serif;
  --sans: "Raleway", Arial, sans-serif;
  --shadow: 0 24px 70px rgba(4, 61, 87, 0.14);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: #043f5b;
  color: var(--ink);
  line-height: 1.65;
}
.site-shell {
  width: min(1440px, calc(100% - 64px));
  margin: 44px auto;
  background: #fff;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(0, 24, 38, 0.38);
}
.container {
  width: min(1160px, calc(100% - 64px));
  margin: auto;
}
a {
  color: inherit;
}
.navbar {
  position: absolute;
  top: 44px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1440px, calc(100% - 64px));
  z-index: 20;
  color: #fff;
}
.nav-inner {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 0.8;
  letter-spacing: -2px;
}
.brand-amp {
  color: var(--aqua);
  font-size: 22px;
  margin: 0 2px;
}
.brand small {
  grid-column: 1/4;
  font-family: var(--sans);
  font-size: 7px;
  letter-spacing: 3px;
  font-weight: 600;
  margin-top: 9px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
  padding: 11px 0;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--aqua);
  transition: 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}
.nav-links .nav-cta {
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 30px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 34px;
}
.menu-toggle span {
  height: 2px;
  background: #fff;
  margin: 6px 0;
  display: block;
}
.hero {
  min-height: 760px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 81% 31%,
      rgba(215, 248, 255, 0.85),
      transparent 19%
    ),
    linear-gradient(135deg, #075681 0%, #44b5d6 55%, #bfeaf0 100%);
}
.hero:before {
  display: none;
}
.hero-water-overlay {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: -45px;
  z-index: 1;
  opacity: 0.72;
  mix-blend-mode: screen;
  pointer-events: none;
  filter: drop-shadow(0 20px 28px rgba(3, 63, 91, 0.2));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 48%, transparent 78%);
  mask-image: radial-gradient(ellipse at center, #000 48%, transparent 78%);
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #fff);
  z-index: 3;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  right: -160px;
  top: -140px;
  background: rgba(255, 255, 255, 0.15);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 690px;
  padding-top: 88px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.4px;
  font-size: 11px;
  font-weight: 700;
  color: #d9f9ff;
  display: block;
  margin-bottom: 16px;
}
.eyebrow.dark {
  color: var(--blue);
}
h1,
h2,
h3 {
  font-family: var(--serif);
  line-height: 1.13;
}
h1 {
  font-size: clamp(46px, 5.1vw, 76px);
  max-width: 680px;
  letter-spacing: -2.5px;
}
h1 em {
  color: #c8f5ff;
  font-style: normal;
}
.hero-content > p {
  font-size: 17px;
  max-width: 580px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.88);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  border: 0;
  border-radius: 28px;
  padding: 14px 26px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font: 700 12px var(--sans);
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(3, 47, 69, 0.25);
  cursor: pointer;
  transition: 0.3s;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(3, 47, 69, 0.34);
}
.btn-primary.light {
  background: #fff;
  color: var(--navy);
}
.text-link {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
}
.hero-proof strong {
  font-family: var(--serif);
  font-size: 17px;
}
.hero-proof span {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
}
.hero-proof p {
  font-size: 11px;
  max-width: 170px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.75);
}
.bottle-scene {
  position: relative;
  height: 530px;
  align-self: end;
}
.sun-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  filter: blur(4px);
  top: 20px;
  right: 20px;
}
.bottle {
  position: absolute;
  bottom: 86px;
  width: 132px;
  height: 335px;
  border-radius: 22px 22px 36px 36px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.75),
    rgba(222, 250, 255, 0.94) 30%,
    rgba(255, 255, 255, 0.68) 63%,
    rgba(171, 226, 240, 0.8)
  );
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow:
    inset 12px 0 20px rgba(255, 255, 255, 0.5),
    0 25px 30px rgba(1, 56, 82, 0.24);
  color: #075079;
  text-align: center;
  padding-top: 110px;
}
.bottle:before {
  content: "";
  position: absolute;
  left: 23px;
  right: 23px;
  top: -32px;
  height: 55px;
  border-radius: 9px 9px 5px 5px;
  background: repeating-linear-gradient(0deg, #b18b41 0 3px, #e1c783 4px 7px);
  box-shadow: 0 4px 0 #087da8;
}
.bottle:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(
    rgba(16, 178, 222, 0.45),
    rgba(5, 104, 165, 0.75)
  );
  clip-path: polygon(
    0 12%,
    22% 5%,
    51% 15%,
    77% 3%,
    100% 9%,
    100% 100%,
    0 100%
  );
}
.bottle i {
  position: absolute;
  left: 0;
  right: 0;
  top: 96px;
  height: 88px;
  background: linear-gradient(#fff, #e6f9fc);
  border-top: 9px solid #087eae;
  border-bottom: 9px solid #087eae;
}
.bottle b,
.bottle small {
  position: relative;
  z-index: 2;
  display: block;
}
.bottle b {
  font: 700 25px var(--serif);
}
.bottle small {
  font-size: 8px;
  letter-spacing: 3px;
}
.bottle-large {
  right: 115px;
  transform: scale(1.13);
  transform-origin: bottom;
}
.bottle-medium {
  right: 0;
  height: 295px;
  width: 115px;
}
.bottle-small {
  right: 260px;
  height: 240px;
  width: 94px;
}
.scene-ripple {
  position: absolute;
  bottom: 54px;
  right: -15px;
  width: 430px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    0 0 0 16px rgba(212, 247, 252, 0.2),
    0 0 0 32px rgba(212, 247, 252, 0.12);
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: #fff;
  clip-path: path(
    "M 0 58 C 240 4 360 110 650 50 C 870 4 1080 70 1440 24 L 1440 100 L 0 100 Z"
  );
}
.section {
  padding: 105px 0;
}
.section-heading {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-heading h2,
.business h2,
.about-lead h2,
.contact-info h2 {
  font-size: clamp(35px, 4vw, 52px);
  color: var(--navy);
  letter-spacing: -1.5px;
}
.section-heading p {
  color: var(--muted);
  margin-top: 16px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  padding: 36px 32px;
  border: 1px solid #dbeef3;
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #f1fbfd);
  min-height: 355px;
  transition: 0.35s;
}
.service-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow);
}
.service-card.featured {
  background: linear-gradient(150deg, #075677, #0b87ae);
  color: #fff;
  box-shadow: 0 22px 50px rgba(7, 98, 135, 0.23);
}
.service-icon {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dff5fa;
  color: var(--blue);
  font-size: 34px;
  margin-bottom: 42px;
}
.featured .service-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.card-number {
  position: absolute;
  right: 28px;
  top: 28px;
  color: #9ec0cc;
  font-size: 11px;
}
.service-card h3 {
  font-size: 23px;
  margin-bottom: 13px;
  color: var(--navy);
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
}
.service-card a {
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  color: var(--blue);
}
.featured h3,
.featured p,
.featured a {
  color: #fff;
}
.featured p {
  opacity: 0.76;
}
.water-ribbon {
  height: 150px;
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}
.water-ribbon:before,
.water-ribbon:after {
  content: "";
  position: absolute;
  left: -4%;
  width: 108%;
  height: 100px;
  border-radius: 50%;
  transform: rotate(-2deg);
}
.water-ribbon:before {
  top: 45px;
  background: linear-gradient(90deg, #bceef7, #0a8dbc, #d8f7fb);
}
.water-ribbon:after {
  top: 73px;
  background: linear-gradient(90deg, #0779aa, #4ac5e0, #085781);
  opacity: 0.86;
}
.business {
  padding-top: 30px;
}
.business-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.business-visual {
  height: 520px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 66% 20%, #d7f7fb 0 15%, transparent 16%),
    linear-gradient(158deg, #82d5e5, #0877a0 48%, #044b70);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.business-visual:before {
  content: "";
  position: absolute;
  width: 560px;
  height: 240px;
  left: -80px;
  bottom: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 28px solid rgba(255, 255, 255, 0.15);
}
.business-visual:after {
  content: "M&G";
  position: absolute;
  right: 48px;
  top: 80px;
  font: 700 88px var(--serif);
  color: rgba(255, 255, 255, 0.16);
}
.visual-card {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  padding: 26px;
  border-radius: 16px;
  background: rgba(3, 50, 74, 0.72);
  backdrop-filter: blur(10px);
  color: #fff;
}
.visual-card span,
.visual-card strong {
  display: block;
}
.visual-card span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 9px;
  color: #8ae6f5;
}
.visual-card strong {
  font: 600 26px var(--serif);
  margin-top: 5px;
}
.business-copy > p {
  color: var(--muted);
  margin: 22px 0;
}
.check-list {
  list-style: none;
  margin: 26px 0 34px;
  display: grid;
  gap: 14px;
}
.check-list li {
  font-size: 14px;
  font-weight: 600;
}
.check-list span {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin-right: 10px;
  background: #dff6fa;
  color: var(--blue);
}
.btn-secondary {
  background: var(--navy);
}
.cta-band {
  margin-top: 70px;
  padding: 80px 0 92px;
  background:
    radial-gradient(circle at 82% 0, rgba(96, 218, 238, 0.32), transparent 28%),
    linear-gradient(115deg, #064763, #087fa7);
  color: #fff;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cta-inner h2 {
  font-size: clamp(34px, 4vw, 52px);
}
.page-header {
  min-height: 535px;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  background:
    radial-gradient(
      circle at 75% 25%,
      rgba(169, 237, 248, 0.45),
      transparent 25%
    ),
    linear-gradient(125deg, #064b6e, #0b98bd);
  padding: 130px 0 70px;
  overflow: hidden;
}
.page-header:before {
  content: "";
  position: absolute;
  width: 530px;
  height: 530px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  right: -100px;
  top: 20px;
  box-shadow:
    0 0 0 50px rgba(255, 255, 255, 0.035),
    0 0 0 100px rgba(255, 255, 255, 0.025);
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  max-width: 850px;
  margin: auto;
}
.page-header p {
  max-width: 600px;
  margin: 22px auto;
  color: rgba(255, 255, 255, 0.75);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.75fr;
  gap: 90px;
  align-items: start;
}
.about-lead .lead {
  font: 600 21px/1.55 var(--serif);
  color: #315565;
  margin: 25px 0 18px;
}
.about-lead > p:last-child {
  color: var(--muted);
}
.profile-card {
  border-radius: 22px;
  padding: 34px;
  background: linear-gradient(155deg, #075b7b, #0b91b7);
  color: #fff;
  box-shadow: var(--shadow);
}
.profile-label,
.form-kicker {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.profile-card dl {
  margin-top: 22px;
}
.profile-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.profile-card dt {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}
.profile-card dd {
  font-weight: 600;
  font-size: 13px;
  text-align: right;
}
.values-section {
  background: #f1fafc;
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  padding: 38px 30px;
  background: #fff;
  border-radius: 20px;
  border-bottom: 4px solid #49c2dc;
}
.value-card > span {
  color: var(--aqua);
  font: 700 14px var(--serif);
}
.value-card h3 {
  font-size: 25px;
  color: var(--navy);
  margin: 25px 0 15px;
}
.value-card p {
  font-size: 14px;
  color: var(--muted);
}
.contact-section {
  background: linear-gradient(180deg, #fff, #f0fafc);
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: start;
}
.contact-info > p {
  color: var(--muted);
  margin: 20px 0 34px;
}
.info-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  margin: 22px 0;
  align-items: start;
}
.info-row > span {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #dff6fa;
  color: var(--blue);
  font-weight: 700;
}
.info-row > span svg {
  width: 21px;
  height: 21px;
}
.info-row strong {
  display: block;
  font-size: 13px;
  margin-bottom: 3px;
}
.info-row p,
.info-row a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.hours {
  margin-top: 34px;
  padding: 20px 22px;
  background: #fff;
  border-left: 3px solid var(--aqua);
  box-shadow: 0 10px 30px rgba(4, 61, 87, 0.06);
}
.hours p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 6px;
}
.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow);
}
.contact-form h3 {
  font-size: 32px;
  color: var(--navy);
  margin: 7px 0 26px;
}
.form-kicker {
  color: var(--blue);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d5e5e9;
  border-radius: 10px;
  background: #f8fcfd;
  font: 14px var(--sans);
  outline: none;
  transition: 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(76, 201, 230, 0.12);
}
.form-status {
  font-size: 12px;
  color: var(--deep);
  margin-top: 14px;
}
footer {
  position: relative;
  padding-top: 100px;
  color: #fff;
  background:
    radial-gradient(circle at 50% 110%, #0a91b9, transparent 45%),
    linear-gradient(#064966, #053d59);
}
.footer-wave {
  position: absolute;
  left: 0;
  right: 0;
  top: -1px;
  height: 75px;
  background: #fff;
  clip-path: ellipse(62% 65% at 50% 0%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.6fr 1fr;
  gap: 90px;
  padding: 45px 0;
}
.footer-brand p {
  font-size: 13px;
  max-width: 300px;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.65);
}
.footer-links h4,
.footer-contact h4 {
  font: 600 17px var(--serif);
  margin-bottom: 18px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin: 8px 0;
}
.footer-links a,
.footer-contact a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-contact p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.footer-contact a {
  display: block;
  margin: 5px 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  padding: 22px 0 30px;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-bottom a {
  color: inherit;
  text-decoration: none;
}
.footer-bottom a:hover {
  color: #fff;
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .site-shell {
    width: 100%;
    margin: 0;
    border-radius: 0;
  }
  .navbar {
    top: 0;
    width: 100%;
    position: absolute;
  }
  .nav-links {
    position: absolute;
    top: 82px;
    left: 32px;
    right: 32px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: rgba(3, 61, 88, 0.97);
    border-radius: 14px;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    display: block;
    padding: 12px;
  }
  .menu-toggle {
    display: block;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  .hero-content {
    padding-top: 60px;
  }
  .hero-content > p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }
  .bottle-scene {
    height: 400px;
    width: min(470px, 100%);
    margin: auto;
  }
  .hero {
    min-height: 1000px;
  }
  .service-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }
  .business-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .business-visual {
    height: 420px;
  }
  .cta-inner {
    gap: 30px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/3;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 36px, 1160px);
  }
  .nav-inner {
    height: 80px;
  }
  .hero {
    min-height: 920px;
  }
  .hero-grid {
    padding-top: 65px;
    min-height: 870px;
  }
  h1 {
    font-size: 42px;
  }
  .hero-content > p {
    font-size: 15px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }
  .hero-proof {
    margin-top: 26px;
  }
  .bottle-scene {
    height: 340px;
  }
  .bottle {
    transform: scale(0.75);
    transform-origin: bottom;
  }
  .bottle-large {
    right: 74px;
    transform: scale(0.83);
  }
  .bottle-medium {
    right: -4px;
  }
  .bottle-small {
    right: 178px;
  }
  .scene-ripple {
    width: 320px;
    right: -10px;
  }
  .section {
    padding: 75px 0;
  }
  .section-heading {
    margin-bottom: 38px;
  }
  .service-card {
    min-height: 0;
  }
  .business-visual {
    height: 340px;
  }
  .business-copy h2,
  .section-heading h2,
  .about-lead h2,
  .contact-info h2 {
    font-size: 36px;
  }
  .cta-band {
    padding: 65px 0;
  }
  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .page-header {
    min-height: 480px;
    padding-top: 110px;
  }
  .page-header h1 {
    font-size: 40px;
  }
  .contact-form {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-brand {
    grid-column: auto;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom p + P {
    margin-top: 5px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Supplied water splash artwork */
.hero-splash {
  position: absolute;
  width: 560px;
  max-width: none;
  right: -92px;
  bottom: 0;
  z-index: 1;
  opacity: 0.76;
  filter: drop-shadow(0 18px 24px rgba(3, 63, 91, 0.2));
  pointer-events: none;
}
.bottle-scene .bottle,
.bottle-scene .scene-ripple {
  z-index: 2;
}
.water-ribbon:before,
.water-ribbon:after {
  display: none;
}
.water-ribbon {
  height: 190px;
  margin-top: 60px;
}
.water-ribbon img {
  position: absolute;
  width: min(920px, 88vw);
  height: auto;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 22px rgba(5, 104, 151, 0.18));
}
.crown-splash {
  position: absolute;
  width: 390px;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  opacity: 0.72;
  filter: drop-shadow(0 20px 24px rgba(2, 64, 91, 0.25));
  z-index: 1;
}
.visual-card {
  z-index: 2;
}
.page-splash {
  position: absolute;
  width: 640px;
  right: -150px;
  bottom: -200px;
  opacity: 0.3;
  transform: rotate(-8deg);
  pointer-events: none;
}
.hero-page-splash {
  z-index: 1;
  bottom: -150px;
  opacity: 0.34;
}
.hero-page-splash-right {
  right: -120px;
}
.hero-page-splash-left {
  left: -120px;
  right: auto;
  transform: scaleX(-1) rotate(-8deg);
}
.contact-splash {
  position: absolute;
  width: 460px;
  left: -70px;
  bottom: 5px;
  opacity: 0.24;
  pointer-events: none;
}
@media (max-width: 600px) {
  .hero-splash {
    width: 420px;
    right: -95px;
    opacity: 0.58;
  }
  .hero-water-overlay {
    width: 100%;
    left: 0;
    bottom: -15px;
    opacity: 0.55;
  }
  .water-ribbon {
    height: 125px;
    margin-top: 45px;
  }
  .water-ribbon img {
    width: 560px;
  }
  .crown-splash {
    width: 310px;
  }
  .page-splash {
    width: 420px;
    right: -180px;
    bottom: -100px;
  }
  .hero-page-splash {
    bottom: -55px;
    opacity: 0.28;
  }
  .hero-page-splash-right {
    right: -150px;
  }
  .hero-page-splash-left {
    left: -150px;
    right: auto;
  }
  .contact-splash {
    width: 330px;
    left: -120px;
  }
}

/* Full-width layout and supplied brand logo */
body {
  background: #fff;
}
.site-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.navbar {
  top: 0;
  width: 100%;
  max-width: none;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  letter-spacing: normal;
}
.brand img {
  display: block;
  width: auto;
  height: 88px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.footer-logo img {
  height: 132px;
}
.footer-brand p {
  margin-top: 14px;
}

/* Let the supplied water artwork bridge section boundaries as an overlay. */
.services {
  position: relative;
  padding-bottom: 250px;
}
.business {
  position: relative;
}
.cta-band {
  position: relative;
}
.water-ribbon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -92px;
  height: 260px;
  margin: 0;
  overflow: visible;
  z-index: 4;
  pointer-events: none;
}
.water-ribbon img {
  top: 0;
}
.water-ribbon-other {
  left: auto;
  right: -40px;
  bottom: -150px;
  width: min(700px, 64vw);
  height: 310px;
}
.ice-overlay {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: -125px;
  z-index: 4;
  opacity: 0.5;
  mix-blend-mode: multiply;
  pointer-events: none;
  filter: saturate(0.85) drop-shadow(0 18px 24px rgba(5, 104, 151, 0.16));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 42%, transparent 76%);
  mask-image: radial-gradient(ellipse at center, #000 42%, transparent 76%);
}
@media (max-width: 600px) {
  .ice-overlay {
    bottom: -80px;
    opacity: 0.38;
  }
}
.water-ribbon-other img {
  width: 100%;
  left: auto;
  right: 0;
  transform: none;
}

@media (max-width: 600px) {
  .services {
    padding-bottom: 165px;
  }
  .water-ribbon {
    height: 180px;
    bottom: -72px;
    margin: 0;
  }
  .water-ribbon-other {
    width: 390px;
    height: 250px;
    right: -95px;
    bottom: -120px;
  }
  .water-ribbon-other img {
    width: 100%;
  }
}
@media (max-width: 600px) {
  .brand img {
    height: 68px;
  }
  .footer-logo img {
    height: 112px;
  }
}

/* Supplied hero artwork */
.hero-visual {
  position: relative;
  height: 530px;
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-visual img {
  display: block;
  width: min(540px, 100%);
  height: auto;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 24px 30px rgba(1, 56, 82, 0.22));
}

@media (max-width: 900px) {
  .hero-visual {
    height: 400px;
    width: min(520px, 100%);
    margin: auto;
  }
  .hero-visual img {
    max-height: 400px;
  }
}

@media (max-width: 600px) {
  .hero-visual {
    height: 340px;
  }
  .hero-visual img {
    width: min(390px, 100%);
    max-height: 340px;
  }
}

/* Keep transition splashes clear of cards and copy. */
.services > .water-ribbon {
  bottom: -18px;
  height: 220px;
  z-index: 1;
}
.services > .water-ribbon img {
  width: min(700px, 66vw);
  left: 42%;
  top: auto;
  bottom: 0;
}
.business-grid,
.cta-inner {
  position: relative;
  z-index: 2;
}
.business > .water-ribbon-other {
  right: -20px;
  bottom: -88px;
  width: min(520px, 46vw);
  height: 190px;
  z-index: 1;
  overflow: hidden;
}
.business > .water-ribbon-other img {
  top: auto;
  bottom: 0;
}

@media (max-width: 600px) {
  .services > .water-ribbon {
    bottom: -10px;
    height: 145px;
  }
  .services > .water-ribbon img {
    width: 430px;
    left: 44%;
  }
  .business > .water-ribbon-other {
    right: -55px;
    bottom: -65px;
    width: 330px;
    height: 125px;
  }
}

/* Richer service detail and carefully layered decorative artwork. */
.service-card {
  min-height: 440px;
  display: flex;
  flex-direction: column;
}
.service-card .service-points {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 0 0 26px;
}
.service-points li {
  font-size: 12px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.service-points li:before {
  content: "•";
  position: absolute;
  left: 2px;
  color: var(--aqua);
  font-weight: 700;
}
.featured .service-points li {
  color: rgba(255, 255, 255, 0.82);
}
.service-card > a {
  margin-top: auto;
}
.business-copy > p + p {
  margin-top: -8px;
}
.about-intro,
.values-section,
.contact-section {
  position: relative;
  overflow: hidden;
}
.about-intro > .container,
.values-section > .container,
.contact-section > .container {
  position: relative;
  z-index: 2;
}
.about-lead > p + p {
  margin-top: 16px;
}
.section-splash {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  opacity: 0.09;
  filter: drop-shadow(0 16px 24px rgba(5, 104, 151, 0.12));
}
.section-splash-left {
  width: 470px;
  left: -230px;
  bottom: -170px;
  transform: rotate(18deg);
}
.contact-section-splash {
  width: 520px;
  right: -250px;
  bottom: -190px;
  transform: rotate(-16deg);
  opacity: 0.08;
}
.values-section {
  padding-bottom: 180px;
}
.about-ribbon {
  position: absolute;
  width: min(560px, 48vw);
  height: auto;
  right: -60px;
  bottom: -35px;
  z-index: 1;
  pointer-events: none;
  opacity: 0.72;
  filter: drop-shadow(0 14px 20px rgba(5, 104, 151, 0.14));
}

@media (max-width: 600px) {
  .service-card {
    min-height: 0;
  }
  .values-section {
    padding-bottom: 125px;
  }
  .about-ribbon {
    width: 390px;
    right: -120px;
    bottom: -20px;
  }
  .section-splash-left {
    width: 320px;
    left: -190px;
    bottom: -90px;
  }
  .contact-section-splash {
    width: 340px;
    right: -210px;
    bottom: -80px;
  }
}

/* Stretch the second water ribbon across the full section width. */
.business > .water-ribbon-other {
  left: 0;
  right: 0;
  bottom: -55px;
  width: 100%;
  height: clamp(180px, 22vw, 320px);
}
.business > .water-ribbon-other img {
  top: auto;
  bottom: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: auto;
  transform: none;
}

/* Fill the business visual card with its selected photograph. */
.business-visual .crown-splash {
  inset: 0;
  width: 100%;
  height: 100%;
  transform: none;
  object-fit: cover;
  opacity: 1;
}

/* Service photography. */
.service-card {
  padding-top: 0;
  overflow: hidden;
}
.service-image {
  display: block;
  width: calc(100% + 64px);
  height: 190px;
  margin: 0 -32px 28px;
  object-fit: cover;
  object-position: center;
}
.service-card .service-icon {
  margin-bottom: 26px;
}
.service-card .card-number {
  top: 205px;
}

/* Founder portrait within the About page profile card. */
.founder-portrait {
  position: relative;
  margin: -34px -34px 28px;
}
.founder-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px 22px 0 0;
}
.founder-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(3, 50, 74, 0.78);
  backdrop-filter: blur(8px);
}
.founder-caption span,
.founder-caption strong {
  display: block;
}
.founder-caption span {
  color: #8ae6f5;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.founder-caption strong {
  margin-top: 3px;
  font: 600 22px var(--serif);
}

/* A restrained flowing accent for the water-themed section labels. */
.eyebrow {
  font-family: "Pacifico", cursive;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
}
