:root {
  color-scheme: light;
  --color-deep-navy: #0B2D4D;
  --color-ocean-navy: #123F67;
  --color-sea-blue: #1F6FA8;
  --color-soft-blue: #5AA7D9;
  --color-mist-aqua: #DDF1F7;
  --color-pale-sky: #EEF8FC;
  --color-ice: #F6FBFE;
  --color-cream: #FAF8F3;
  --color-off-white: #FFFDF8;
  --color-sand: #EADCC7;
  --color-coral: #E8664F;
  --color-coral-hover: #D85643;
  --color-body: #29445C;
  --color-muted: #5E7180;
  --color-border: rgba(20, 74, 113, 0.16);
  --color-border-strong: rgba(20, 74, 113, 0.28);
  --shadow-soft: 0 24px 64px rgba(11, 45, 77, 0.09);
  --shadow-card: 0 28px 72px rgba(31, 111, 168, 0.14);
  --shadow-glow: 0 38px 96px rgba(31, 111, 168, 0.25);
  --shadow-white-edge: inset 0 0 0 2px rgba(255, 255, 255, 0.88), 0 32px 86px rgba(31, 111, 168, 0.20);
  --asset-deep-shimmer: url("public/assets/ocean/deep-panel-shimmer.svg");
  --asset-card-wash: url("public/assets/ocean/card-mist-wash.svg");
  --asset-caustic: url("public/assets/ocean/caustic-light-overlay.svg");
  --asset-coastal-mist: url("public/assets/ocean/coastal-mist-background.svg");
  --asset-sea-glass: url("public/assets/ocean/sea-glass-field.svg");
  --asset-ripple-orb: url("public/assets/ocean/ripple-orb.svg");
  --asset-hero-card: url("public/assets/ocean/hero-ocean-card.svg");
  --asset-hero-page: url("public/assets/ocean/hero-ocean-page-bg.svg");
  --color-charcoal: var(--color-body);
  --radius-sm: 12px;
  --radius-md: 22px;
  --radius-lg: 34px;
  --container: 1290px;
  --header-height: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

#home,
#about,
#offerings,
#approach,
#contact {
  scroll-margin-top: calc(var(--header-height) + 28px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    var(--asset-sea-glass) center top / cover no-repeat fixed,
    radial-gradient(circle at 88% 12%, rgba(221, 241, 247, 0.84), transparent 24%),
    radial-gradient(circle at -3% 23%, rgba(255, 243, 206, 0.92), transparent 18%),
    radial-gradient(circle at 72% 20%, rgba(255, 253, 248, 0.82), transparent 24%),
    linear-gradient(150deg, rgba(255, 253, 248, 0.94) 0 35%, rgba(221, 241, 247, 0.78) 58%, rgba(238, 248, 252, 0.94) 100%);
  color: var(--color-charcoal);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

::selection {
  background: rgba(90, 167, 217, 0.32);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 999px;
  background: var(--color-ocean-navy);
  color: var(--color-off-white);
  padding: 10px 16px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: minmax(560px, auto) 1fr auto;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  padding: 16px clamp(26px, 4.2vw, 58px);
  border-bottom: 1px solid rgba(20, 74, 113, 0.10);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(250, 252, 251, 0.90));
  box-shadow: 0 14px 40px rgba(11, 45, 77, 0.08);
  backdrop-filter: blur(20px);
}

.brand,
.contact-option {
  text-decoration: none;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.brand-mark,
.option-icon {
  position: relative;
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.18), transparent 35%),
    linear-gradient(145deg, var(--color-deep-navy), var(--color-ocean-navy));
  color: var(--color-off-white);
  font-family: "Cormorant Garamond", Georgia, serif;
  border: 2px solid rgba(238, 248, 252, 0.95);
  outline: 1px solid rgba(31, 111, 168, 0.48);
  outline-offset: 3px;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 14px 32px rgba(11, 45, 77, 0.22);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  width: 38px;
  height: 11px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 18'%3E%3Cpath d='M4 10c8-6 14 6 22 0s14-6 22 0 8 4 12 1' fill='none' stroke='%235AA7D9' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M14 14c5-3 9 3 14 0s9-3 14 0' fill='none' stroke='%23DDF1F7' stroke-width='1.6' stroke-linecap='round' opacity='.72'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.95;
}

.brand-copy {
  min-width: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: var(--color-deep-navy);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 2.3vw, 2.34rem);
  font-weight: 700;
  line-height: 1.12;
}

.brand small {
  max-width: 560px;
  overflow: hidden;
  color: var(--color-muted);
  font-size: clamp(0.9rem, 1.15vw, 1.04rem);
  font-weight: 700;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(28px, 3.2vw, 54px);
}

.site-nav a {
  position: relative;
  color: var(--color-muted);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-sea-blue), var(--color-soft-blue));
  box-shadow: 0 4px 12px rgba(31, 111, 168, 0.22);
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-current {
  color: var(--color-ocean-navy);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
  position: relative;
  min-height: 66px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 38px 24px;
  border-radius: 999px;
  background: var(--color-coral);
  color: var(--color-off-white);
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 18px 38px rgba(232, 102, 79, 0.28), inset 0 1px 0 rgba(255, 253, 248, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta::after,
.button-primary::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 9px;
  width: 72px;
  height: 16px;
  transform: translateX(-50%);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 92 18' fill='none'%3E%3Cpath d='M6 10.2c8.5-6.2 16.7-6.2 25.2 0s16.7 6.2 25.2 0 16.7-6.2 29.6-.4' stroke='%23FFFDF8' stroke-width='2.7' stroke-linecap='round'/%3E%3Cpath d='M21 14.1c6.8-3.8 13.2-3.5 19.2.6 6.5 3.9 13.4 3.6 20.8-.9 3.5-2.1 7.3-2.5 11.4-1.2' stroke='%23FFFDF8' stroke-width='1.55' stroke-linecap='round' opacity='.76'/%3E%3C/svg%3E") center / contain no-repeat;
  pointer-events: none;
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-coral-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(232, 102, 79, 0.30);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-off-white);
  color: var(--color-ocean-navy);
  box-shadow: 0 10px 24px rgba(11, 45, 77, 0.10);
}

.menu-button span:not(.visually-hidden) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(34px, 3.8vw, 54px) 0 clamp(92px, 8.8vw, 132px);
  background:
    radial-gradient(circle at 2% 56%, rgba(255, 242, 200, 0.52), transparent 24rem),
    radial-gradient(circle at 92% 58%, rgba(145, 211, 238, 0.34), transparent 30rem),
    linear-gradient(180deg, var(--color-ice) 0%, var(--color-pale-sky) 44%, #dff2fb 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.78;
  background-image: var(--asset-hero-page);
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.08) 42%, rgba(221, 241, 247, 0.18)),
    radial-gradient(circle at 48% 94%, rgba(255, 255, 255, 0.34), transparent 36rem);
}

.hero-inner {
  min-height: min(620px, calc(100svh - var(--header-height) - 18px));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.86fr);
  align-items: stretch;
  gap: clamp(14px, 1.8vw, 20px);
}

.hero-panel {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(44px, 5vw, 66px);
  border: 3px solid rgba(255, 253, 248, 0.92);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 78% 74%, rgba(90, 188, 226, 0.34), transparent 24rem),
    linear-gradient(135deg, #062640 0%, #0d3e68 50%, #1f789f 100%);
  color: var(--color-off-white);
  box-shadow:
    0 34px 86px rgba(10, 39, 68, 0.24),
    0 2px 0 rgba(255, 255, 255, 0.46) inset,
    0 -1px 0 rgba(255, 255, 255, 0.20) inset;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 1;
  background-image: var(--asset-hero-card);
  background-size: 100% 100%;
  background-position: center;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  background:
    linear-gradient(90deg, rgba(6, 38, 64, 0.36) 0%, rgba(6, 38, 64, 0.18) 42%, rgba(6, 38, 64, 0.02) 100%),
    radial-gradient(circle at 88% 86%, rgba(255, 255, 255, 0.12), transparent 18rem);
}

.hero-panel > * {
  position: relative;
  z-index: 2;
}

.hero-ocean-ribbon {
  position: absolute;
  right: -8%;
  bottom: 10%;
  width: 72%;
  height: 44%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.26;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 380' fill='none'%3E%3Cpath d='M0 214C120 166 222 160 366 202C504 242 622 270 900 188' stroke='white' stroke-opacity='.7' stroke-width='2.2' stroke-linecap='round'/%3E%3Cpath d='M30 292C178 246 324 246 474 286C598 318 710 322 870 278' stroke='white' stroke-opacity='.42' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

.wave-line {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-wave {
  display: none;
}

.eyebrow,
.section-kicker,
.card-kicker,
.card-meta {
  margin: 0;
  color: var(--color-coral);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-panel .section-kicker {
  color: #EBC5A2;
}

.offerings-section .section-kicker,
.approach-section .section-kicker,
.contact-section .section-kicker {
  color: var(--color-sea-blue);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-deep-navy);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  margin: 18px 0 28px;
  color: var(--color-off-white);
  font-size: clamp(4.3rem, 6.35vw, 7.15rem);
  font-weight: 700;
}

h1 span {
  display: block;
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  font-weight: 700;
}

.hero-copy {
  max-width: 590px;
  margin-bottom: 44px;
  color: rgba(255, 253, 248, 0.84);
  font-size: clamp(1rem, 1.25vw, 1.08rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  padding: 14px 28px 21px;
  background: var(--color-coral);
  color: var(--color-off-white);
  box-shadow: 0 16px 34px rgba(232, 102, 79, 0.26), inset 0 1px 0 rgba(255, 253, 248, 0.26);
}

.button-secondary {
  border-color: rgba(221, 241, 247, 0.58);
  background: rgba(255, 253, 248, 0.10);
  color: var(--color-off-white);
  backdrop-filter: blur(8px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 253, 248, 0.22);
  transform: translateY(-1px);
}

.button-quiet {
  border-color: rgba(255, 253, 248, 0.32);
  color: var(--color-off-white);
}

.button-quiet:hover,
.button-quiet:focus-visible {
  background: rgba(255, 253, 248, 0.12);
  transform: translateY(-1px);
}

.hero-visual {
  min-height: 580px;
}

.portrait-shell {
  position: relative;
  height: 100%;
  min-height: 580px;
  overflow: hidden;
  border: 3px solid rgba(255, 253, 248, 0.92);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.74), transparent 30%),
    var(--color-pale-sky);
  box-shadow: var(--shadow-white-edge), 0 18px 50px rgba(11, 45, 77, 0.14);
}

.hero-portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  filter: saturate(0.9) contrast(0.98) brightness(1.04);
}

.portrait-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 28px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.portrait-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(221, 241, 247, 0.68);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(18, 63, 103, 0.76), rgba(90, 167, 217, 0.42));
  color: var(--color-off-white);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
  box-shadow: 0 14px 30px rgba(11, 45, 77, 0.18), inset 0 1px 0 rgba(255, 253, 248, 0.22);
}

.portrait-note svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-strip {
  position: relative;
  z-index: 2;
  margin-top: -82px;
  padding-bottom: clamp(66px, 7.5vw, 92px);
  background:
    var(--asset-coastal-mist) center top / cover no-repeat,
    linear-gradient(156deg, transparent 0 72%, rgba(135, 194, 228, 0.18) 72.5% 81%, transparent 81.5%),
    radial-gradient(circle at 1% 22%, rgba(255, 241, 198, 0.58), transparent 22%),
    linear-gradient(180deg, rgba(221, 241, 247, 0.0), rgba(221, 241, 247, 0.54) 38%, var(--color-pale-sky) 100%);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.benefit-card,
.offering-card,
.principle-card,
.contact-form,
.contact-option {
  border: 1px solid var(--color-border);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 248, 252, 0.86));
  box-shadow: 0 22px 54px rgba(11, 45, 77, 0.10);
}

.benefit-card {
  position: relative;
  min-height: 138px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 26px 26px;
  border-radius: 26px;
  backdrop-filter: blur(18px);
  overflow: hidden;
}

.benefit-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48%;
  opacity: 0.58;
  background: var(--asset-card-wash) bottom center / 100% 100% no-repeat;
}

.benefit-card > * {
  position: relative;
  z-index: 1;
}

.icon-circle {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.78), transparent 38%),
    linear-gradient(145deg, #d9edf9, #edf7fc);
  color: var(--color-sea-blue);
  box-shadow: 0 14px 32px rgba(31, 111, 168, 0.15), inset 0 1px 0 rgba(255, 253, 248, 0.78);
}

.icon-circle svg,
.card-icon svg,
.filter-icon svg {
  width: 35px;
  height: 35px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-circle .flowing-wave-icon {
  width: 38px;
  height: 38px;
  stroke-width: 2.05;
}

.icon-circle .book-uplift-icon {
  width: 40px;
  height: 40px;
  stroke-width: 2.05;
}

.asset-icon {
  width: 35px;
  height: 35px;
  display: block;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.asset-icon-ripple {
  mask-image: url("public/assets/ocean/icon-ripple.svg");
  -webkit-mask-image: url("public/assets/ocean/icon-ripple.svg");
}

.asset-icon-caustic-star {
  mask-image: url("public/assets/ocean/icon-caustic-star.svg");
  -webkit-mask-image: url("public/assets/ocean/icon-caustic-star.svg");
}

.asset-icon-sea-glass-heart {
  mask-image: url("public/assets/ocean/icon-sea-glass-heart.svg");
  -webkit-mask-image: url("public/assets/ocean/icon-sea-glass-heart.svg");
}

.asset-icon-stillness-stones {
  mask-image: url("public/assets/ocean/icon-stillness-stones.svg");
  -webkit-mask-image: url("public/assets/ocean/icon-stillness-stones.svg");
}

.asset-icon-community {
  mask-image: url("public/assets/ocean/icon-community.svg");
  -webkit-mask-image: url("public/assets/ocean/icon-community.svg");
}

.benefit-card h2 {
  margin-bottom: 4px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--color-deep-navy);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.25;
}

.benefit-card p {
  margin: 0;
  color: var(--color-body);
  font-size: 0.92rem;
  line-height: 1.55;
}

.about-section,
.offerings-section,
.approach-section,
.contact-section {
  position: relative;
  padding: clamp(88px, 10vw, 148px) 0;
}

.about-section {
  overflow: hidden;
  background:
    var(--asset-sea-glass) center / cover no-repeat,
    radial-gradient(circle at 104% 42%, rgba(90, 167, 217, 0.10), transparent 30%),
    radial-gradient(circle at -6% 82%, rgba(90, 167, 217, 0.22), transparent 32%),
    radial-gradient(circle at 20% 0%, rgba(255, 253, 248, 0.90), transparent 34%),
    linear-gradient(180deg, var(--color-ice), var(--color-off-white) 56%, var(--color-pale-sky));
}

.about-section::before {
  content: "";
  position: absolute;
  right: max(-240px, -14vw);
  top: 68px;
  width: 560px;
  height: 560px;
  border: 0;
  border-radius: 50%;
  background: var(--asset-ripple-orb) center / contain no-repeat;
  opacity: 0.12;
}

.about-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: clamp(52px, 8vw, 128px);
  align-items: center;
}

.about-heading h2 {
  margin: 16px 0 34px;
}

.about-heading h2::after {
  content: "";
  display: block;
  width: min(270px, 56vw);
  height: 34px;
  margin: 26px auto 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 280 36'%3E%3Cpath d='M8 18c18-13 34-13 52 0s34 13 52 0 34-13 52 0 34 13 52 0 34-13 56 0' fill='none' stroke='%235AA7D9' stroke-width='2.7' stroke-linecap='round'/%3E%3Cpath d='M28 25c14-8 26 8 40 0s26-8 40 0 26 8 40 0 26-8 40 0 25 7 48 0' fill='none' stroke='%231F6FA8' stroke-width='1.8' stroke-linecap='round' opacity='.55'/%3E%3Cpath d='M18 10c24 8 44 8 68 0s44-8 68 0 44 8 68 0' fill='none' stroke='%23DDF1F7' stroke-width='1.5' stroke-linecap='round' opacity='.9'/%3E%3C/svg%3E") center / contain no-repeat;
  opacity: 0.74;
}

.about-copy {
  max-width: 620px;
  color: var(--color-body);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.75;
}

.about-copy p {
  margin-bottom: 24px;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  color: var(--color-coral-hover);
  font-weight: 900;
  text-decoration: none;
}

.text-link::after {
  content: "";
  width: 48px;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 12'%3E%3Cpath d='M2 7c8-5 14 5 22 0s14-5 28 1' fill='none' stroke='%23D85643' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform 180ms ease;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: translateX(4px);
}

.offerings-section {
  background:
    var(--asset-coastal-mist) center top / cover no-repeat,
    radial-gradient(circle at -2% 34%, rgba(255, 242, 205, 0.90), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(255, 253, 248, 0.76), transparent 30%),
    radial-gradient(ellipse at 82% 78%, rgba(90, 167, 217, 0.20), transparent 42%),
    linear-gradient(180deg, var(--color-pale-sky), #e2f4fb 46%, var(--color-off-white) 100%);
}

.section-heading {
  max-width: 1040px;
  margin-bottom: 44px;
}

.section-heading h2 {
  margin: 12px 0 20px;
}

.section-heading p,
.approach-lead p,
.contact-copy > p {
  color: var(--color-body);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.filter-button,
.inquiry-chips button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 23px;
  border: 1px solid rgba(20, 74, 113, 0.14);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.86), rgba(238, 248, 252, 0.72));
  color: var(--color-deep-navy);
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(31, 111, 168, 0.09), inset 0 1px 0 rgba(255, 253, 248, 0.80);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.filter-icon {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
}

.filter-icon svg {
  width: 23px;
  height: 23px;
}

.filter-icon .asset-icon {
  width: 23px;
  height: 23px;
}

.filter-button:hover,
.filter-button:focus-visible,
.filter-button.is-active,
.inquiry-chips button:hover,
.inquiry-chips button:focus-visible {
  border-color: var(--color-ocean-navy);
  background: linear-gradient(145deg, var(--color-deep-navy), var(--color-ocean-navy) 56%, var(--color-sea-blue));
  color: var(--color-off-white);
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(11, 45, 77, 0.17), inset 0 1px 0 rgba(255, 253, 248, 0.18);
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 30px);
}

.offering-card {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  padding: 34px;
  border-radius: 30px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  background:
    radial-gradient(circle at 92% 10%, rgba(90, 167, 217, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(238, 248, 252, 0.86));
  box-shadow: var(--shadow-card);
}

.offering-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: transparent;
}

.offering-card.premium-card {
  min-height: 468px;
  padding: 40px;
  background:
    radial-gradient(circle at 88% 12%, rgba(90, 167, 217, 0.18), transparent 30%),
    radial-gradient(circle at 12% 100%, rgba(221, 241, 247, 0.54), transparent 30%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.97), rgba(238, 248, 252, 0.78)),
    var(--color-off-white);
}

.offering-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  pointer-events: none;
  opacity: 0.54;
  background: var(--asset-card-wash) bottom center / 100% 100% no-repeat;
}

.offering-card > * {
  position: relative;
  z-index: 1;
}

.offering-card.is-featured::before {
  height: 5px;
  background: linear-gradient(90deg, var(--color-coral), #f3a18e);
}

.offering-card.is-featured {
  border-color: rgba(232, 102, 79, 0.34);
  box-shadow: 0 32px 78px rgba(232, 102, 79, 0.12), var(--shadow-card);
}

.offering-card:hover,
.offering-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(31, 111, 168, 0.38);
  box-shadow: 0 30px 70px rgba(11, 45, 77, 0.16);
}

.offering-card.is-hidden {
  display: none;
}

.card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.card-icon {
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.78), transparent 38%),
    linear-gradient(145deg, rgba(211, 235, 249, 0.98), rgba(238, 248, 252, 0.96));
  box-shadow: 0 16px 34px rgba(31, 111, 168, 0.16), inset 0 1px 0 rgba(255, 253, 248, 0.86);
}

.card-meta {
  max-width: 56%;
  color: var(--color-muted);
  font-size: 0.72rem;
  text-align: right;
}

.offering-card h3 {
  margin: 4px 0 6px;
  color: var(--color-deep-navy);
  font-size: clamp(1.8rem, 2.25vw, 2.36rem);
}

.offering-card p:not(.card-kicker),
.offering-card li {
  color: var(--color-body);
}

.offering-card p {
  margin-bottom: 0;
  line-height: 1.72;
}

.offering-card ul {
  display: grid;
  gap: 11px;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
}

.offering-card li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
}

.offering-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-sea-blue);
}

.card-link {
  position: relative;
  margin-top: auto;
  padding-top: 12px;
  color: var(--color-coral-hover);
  font-weight: 900;
  text-decoration-color: rgba(232, 102, 79, 0.34);
  text-underline-offset: 5px;
}

.card-link::after {
  content: "  \2192";
  display: inline-block;
  margin-left: 12px;
  font-weight: 600;
  transition: transform 180ms ease;
}

.card-link:hover::after,
.card-link:focus-visible::after {
  transform: translateX(4px);
}

.card-link:hover,
.card-link:focus-visible {
  color: var(--color-coral-hover);
}

.approach-section {
  overflow: hidden;
  padding-bottom: clamp(28px, 4vw, 58px);
  background:
    var(--asset-sea-glass) center / cover no-repeat,
    radial-gradient(circle at 0% 48%, rgba(255, 242, 205, 0.78), transparent 25%),
    radial-gradient(circle at 92% 36%, rgba(255, 253, 248, 0.74), transparent 30%),
    linear-gradient(150deg, transparent 0 60%, rgba(90, 167, 217, 0.18) 61% 76%, transparent 77%),
    linear-gradient(180deg, var(--color-pale-sky), #dff2fb 62%, var(--color-ice));
}

.approach-section::before {
  content: "";
  position: absolute;
  left: -80px;
  bottom: 90px;
  width: 480px;
  height: 480px;
  border-radius: 48% 52% 54% 46%;
  background: var(--asset-ripple-orb) center / contain no-repeat;
  opacity: 0.12;
}

.approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(42px, 6.5vw, 96px);
  align-items: start;
}

.approach-lead {
  position: sticky;
  top: calc(var(--header-height) + 28px);
}

.approach-lead h2 {
  margin: 14px 0 24px;
}

.approach-lead p {
  max-width: 650px;
  margin-bottom: 22px;
  line-height: 1.78;
}

.principles {
  display: grid;
  gap: clamp(20px, 2.5vw, 28px);
}

.principle-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  padding: clamp(32px, 4vw, 48px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.principle-card::before {
  content: "";
  position: absolute;
  right: 26px;
  top: 22px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  opacity: 0.075;
  background: var(--asset-ripple-orb) center / contain no-repeat;
}

.principle-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  pointer-events: none;
  opacity: 0.42;
  background: var(--asset-card-wash) bottom center / 100% 100% no-repeat;
}

.principle-card > * {
  position: relative;
  z-index: 1;
}

.principle-card span {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--color-sea-blue), var(--color-ocean-navy));
  color: var(--color-off-white);
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(31, 111, 168, 0.22);
}

.principle-card h3,
.principle-card p {
  grid-column: 2;
  margin: 0;
}

.principle-card h3 {
  align-self: end;
  font-size: clamp(2rem, 2.8vw, 2.5rem);
}

.principle-card p {
  color: var(--color-body);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  line-height: 1.66;
}

.cta-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(26px, 4vw, 50px);
  align-items: center;
  margin-top: clamp(42px, 5.8vw, 76px);
  padding: clamp(44px, 5.8vw, 72px);
  border: 3px solid rgba(255, 253, 248, 0.88);
  border-radius: 34px;
  background:
    var(--asset-deep-shimmer) center / cover no-repeat,
    radial-gradient(circle at 88% 66%, rgba(111, 199, 231, 0.32), transparent 24rem),
    radial-gradient(circle at 16% 16%, rgba(255, 249, 222, 0.12), transparent 18rem),
    linear-gradient(135deg, #092a4b, var(--color-ocean-navy) 58%, #0d5c89);
  color: var(--color-off-white);
  box-shadow: var(--shadow-glow);
}

.cta-panel h2 {
  margin: 12px 0 16px;
  color: var(--color-off-white);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.cta-panel p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.contact-section {
  padding-top: clamp(24px, 3.6vw, 48px);
  background:
    var(--asset-coastal-mist) center top / cover no-repeat,
    radial-gradient(circle at 0% 48%, rgba(255, 242, 205, 0.86), transparent 25%),
    radial-gradient(circle at 92% 24%, rgba(221, 241, 247, 0.72), transparent 30%),
    linear-gradient(150deg, transparent 0 68%, rgba(90, 167, 217, 0.18) 68.5% 82%, transparent 82.5%),
    linear-gradient(180deg, var(--color-ice) 0%, var(--color-off-white) 100%);
  color: var(--color-off-white);
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 6.5vw, 94px);
  align-items: start;
  padding: clamp(44px, 5.8vw, 78px);
  border-radius: var(--radius-lg);
  border: 3px solid rgba(255, 253, 248, 0.88);
  background:
    linear-gradient(90deg, rgba(6, 30, 55, 0.34) 0%, rgba(6, 30, 55, 0.12) 48%, transparent 74%),
    var(--asset-deep-shimmer) center / cover no-repeat,
    radial-gradient(circle at 82% 58%, rgba(111, 199, 231, 0.34), transparent 24rem),
    radial-gradient(circle at 16% 22%, rgba(255, 249, 222, 0.12), transparent 18rem),
    linear-gradient(120deg, rgba(9, 42, 75, 0.98) 0%, rgba(12, 72, 108, 0.96) 54%, rgba(36, 132, 167, 0.82) 100%),
    linear-gradient(180deg, var(--color-deep-navy), var(--color-ocean-navy));
  box-shadow: var(--shadow-white-edge);
}

.contact-copy,
.contact-form {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  margin: 14px 0 22px;
  color: var(--color-off-white);
}

.contact-copy > p {
  max-width: 650px;
  color: rgba(255, 253, 248, 0.78);
  line-height: 1.78;
}

.contact-options {
  display: grid;
  gap: 16px;
  margin: 38px 0 32px;
}

.contact-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  position: relative;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  padding: 21px 60px 21px 20px;
  border-color: rgba(221, 241, 247, 0.28);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(221, 241, 247, 0.18), rgba(255, 253, 248, 0.095));
  color: var(--color-off-white);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.18), 0 20px 46px rgba(4, 25, 47, 0.16);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-option::after {
  content: "\203A";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 253, 248, 0.82);
  font-size: 2rem;
  line-height: 1;
}

.contact-option:hover,
.contact-option:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(221, 241, 247, 0.38);
  background: linear-gradient(135deg, rgba(221, 241, 247, 0.20), rgba(255, 253, 248, 0.11));
}

.contact-option strong,
.contact-option small {
  display: block;
}

.contact-option span:last-child {
  min-width: 0;
}

.contact-option small {
  color: rgba(255, 253, 248, 0.68);
  font-size: 0.92rem;
  overflow-wrap: anywhere;
}

.option-icon {
  width: 52px;
  height: 52px;
  flex-basis: 52px;
  border: 0;
  outline: 0;
  background: rgba(255, 253, 248, 0.96);
  color: var(--color-soft-blue);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  box-shadow: 0 14px 28px rgba(11, 45, 77, 0.14);
}

.option-icon::after {
  display: none;
}

.option-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inquiry-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.inquiry-chips button {
  border-color: rgba(255, 253, 248, 0.22);
  background: rgba(255, 253, 248, 0.11);
  color: var(--color-off-white);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.18), 0 12px 26px rgba(4, 25, 47, 0.10);
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: clamp(32px, 4.6vw, 52px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 6%, rgba(221, 241, 247, 0.50), transparent 24%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(248, 252, 253, 0.96));
  color: var(--color-charcoal);
  box-shadow: 0 36px 92px rgba(11, 45, 77, 0.26), inset 0 1px 0 rgba(255, 253, 248, 0.86);
}

.form-heading {
  margin-bottom: 10px;
}

.form-heading h3 {
  margin: 0 0 8px;
  color: var(--color-deep-navy);
}

.form-heading p,
.privacy-note,
.form-status {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.contact-form label {
  color: var(--color-deep-navy);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 60px;
  margin-bottom: 10px;
  border: 1px solid rgba(20, 74, 113, 0.17);
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff, #f7fbfd);
  color: var(--color-charcoal);
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-sea-blue);
  background: var(--color-off-white);
  box-shadow: 0 0 0 4px rgba(90, 167, 217, 0.20), 0 10px 24px rgba(31, 111, 168, 0.08);
}

.form-submit {
  width: 100%;
  min-height: 62px;
  margin-top: 8px;
  border: 0;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.privacy-note {
  margin-top: 8px;
  text-align: center;
}

.form-status {
  min-height: 22px;
  color: var(--color-ocean-navy);
  font-weight: 800;
  text-align: center;
}

.form-status[data-state="success"] {
  color: #16714b;
}

.form-status[data-state="error"] {
  color: #a73b32;
}

.form-status[data-state="sending"] {
  color: var(--color-ocean-navy);
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(42px, 5.5vw, 72px);
  padding: clamp(82px, 9vw, 124px) 0 34px;
  border-radius: 36px 36px 0 0;
  background:
    var(--asset-deep-shimmer) center / cover no-repeat,
    radial-gradient(circle at 86% 58%, rgba(255, 246, 218, 0.24), transparent 24rem),
    radial-gradient(circle at 76% 86%, rgba(90, 167, 217, 0.22), transparent 30rem),
    linear-gradient(135deg, #06213e, var(--color-deep-navy) 46%, var(--color-ocean-navy));
  color: rgba(255, 253, 248, 0.74);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background: var(--asset-caustic) center / cover no-repeat;
  mix-blend-mode: soft-light;
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -16%;
  width: min(700px, 58vw);
  height: min(700px, 58vw);
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 246, 218, 0.20), transparent 58%),
    radial-gradient(ellipse at 58% 64%, rgba(90, 167, 217, 0.18), transparent 58%);
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 1.28fr) minmax(180px, 0.78fr) minmax(170px, 0.72fr) minmax(280px, 0.92fr);
  gap: clamp(42px, 6.5vw, 94px);
  align-items: start;
}

.footer-brand .brand-mark {
  width: 82px;
  height: 82px;
  flex-basis: 82px;
  margin-bottom: 30px;
  outline-color: rgba(90, 167, 217, 0.50);
  background:
    radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.16), transparent 35%),
    linear-gradient(145deg, var(--color-deep-navy), var(--color-ocean-navy));
  color: var(--color-off-white);
}

.footer-brand .brand-mark::after {
  bottom: 16px;
  width: 44px;
  height: 12px;
}

.footer-brand h2,
.footer-statement p {
  color: var(--color-off-white);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.footer-brand h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 3.4vw, 3.35rem);
}

.footer-brand p,
.footer-statement p {
  margin: 0;
}

.footer-brand p {
  max-width: 470px;
  line-height: 1.82;
}

.footer-contact-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.site-footer .footer-contact-icons a {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(221, 241, 247, 0.22);
  border-radius: 50%;
  background: rgba(221, 241, 247, 0.16);
  color: var(--color-off-white);
  box-shadow: inset 0 1px 0 rgba(255, 253, 248, 0.16), 0 14px 30px rgba(4, 25, 47, 0.12);
}

.site-footer .footer-contact-icons a:hover,
.site-footer .footer-contact-icons a:focus-visible {
  border-color: rgba(221, 241, 247, 0.40);
  background: rgba(221, 241, 247, 0.22);
}

.footer-contact-icons svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-statement p {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.04;
}

.site-footer nav {
  display: grid;
  gap: 12px;
}

.site-footer h3 {
  margin: 0 0 22px;
  color: var(--color-off-white);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h3::after {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--color-soft-blue), transparent);
  opacity: 0.72;
}

.site-footer a {
  padding: 9px 0 14px;
  border-bottom: 1px solid rgba(255, 253, 248, 0.14);
  color: rgba(255, 253, 248, 0.84);
  font-size: 1.06rem;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-off-white);
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(66px, 8vw, 104px);
  padding-top: 32px;
  border-top: 1px solid rgba(255, 253, 248, 0.30);
  font-size: 1rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(90, 167, 217, 0.52);
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .menu-button {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .site-nav.is-open {
    position: fixed;
    inset: var(--header-height) 16px auto 16px;
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-nav.is-open a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 14px;
  }

  .site-nav.is-open a:hover,
  .site-nav.is-open a:focus-visible {
    background: var(--color-pale-sky);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .hero-visual,
  .portrait-shell {
    min-height: auto;
  }

  .portrait-shell {
    height: clamp(420px, 58vw, 620px);
  }

  .benefit-grid,
  .offerings-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .approach-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .approach-lead {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 72px;
  }

  .section-inner {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    padding: 12px 16px;
    gap: 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark,
  .option-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand-mark::after {
    left: 50%;
    right: auto;
    bottom: 7px;
    width: 25px;
    height: 8px;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: calc(100vw - 150px);
    font-size: 1.22rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-panel {
    min-height: 560px;
    padding: 34px 24px;
    border-radius: 28px;
  }

  .hero-wave {
    width: 240px;
  }

  h1 {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .hero-actions,
  .cta-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .portrait-shell {
    height: 430px;
    border-radius: 28px;
  }

  .benefit-strip {
    margin-top: 0;
    padding-top: 18px;
  }

  .benefit-grid,
  .offerings-grid,
  .about-grid,
  .approach-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 0;
  }

  .filter-row {
    flex-wrap: wrap;
  }

  .filter-button {
    flex: 1 1 auto;
  }

  .offering-card,
  .offering-card.premium-card {
    min-height: 0;
    padding: 22px;
  }

  .card-meta {
    max-width: 58%;
  }

  .principle-card {
    grid-template-columns: 1fr;
  }

  .principle-card h3,
  .principle-card p {
    grid-column: auto;
  }

  .contact-grid {
    width: min(var(--container), calc(100% - 48px));
    padding: 24px 18px;
    border-radius: 28px;
  }

  .contact-section {
    background:
      radial-gradient(circle at 0% 44%, rgba(255, 242, 205, 0.74), transparent 25%),
      linear-gradient(150deg, transparent 0 70%, rgba(90, 167, 217, 0.18) 70.5% 83%, transparent 83.5%),
      linear-gradient(180deg, var(--color-ice) 0%, var(--color-off-white) 100%);
  }

  .footer-brand .brand-mark {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .footer-brand .brand-mark::after {
    bottom: 11px;
    width: 32px;
    height: 9px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 420px) {
  .brand strong {
    max-width: calc(100vw - 150px);
  }

  .hero-panel {
    padding: 30px 20px;
  }

  .portrait-shell {
    height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
