/* Harbor Bloom Wellness — Portfolio Concept
   Brand system: Playfair Display + Lato
   Deep Harbor Teal #0F3D46
   Soft Aqua #7CCDC6
   Sage Mist #A8C5B0
   Warm Sand #E9DED0
   Charcoal Slate #333333
   Ivory Light #F8F5F0
   Sea Glass #CFE7E2
   Lotus Gold #D9C29A
*/

:root {
  --teal: #0F3D46;
  --teal-2: #16535B;
  --aqua: #7CCDC6;
  --sage: #A8C5B0;
  --sand: #E9DED0;
  --charcoal: #333333;
  --ivory: #F8F5F0;
  --sea-glass: #CFE7E2;
  --gold: #D9C29A;
  --white: #FFFFFF;
  --muted: #6B7776;
  --line: rgba(15, 61, 70, .15);
  --shadow: 0 22px 60px rgba(15, 61, 70, .12);
  --radius: 26px;
  --container: 1180px;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 700;
}

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

.concept-bar {
  color: var(--teal);
  background: var(--sea-glass);
  border-bottom: 1px solid rgba(15, 61, 70, .12);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .035em;
}

.concept-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  gap: 20px;
}

.concept-bar a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, .92);
  border-bottom: 1px solid rgba(15, 61, 70, .1);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 28px;
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  overflow: hidden;
  background: var(--teal);
  border: 1px solid rgba(217, 194, 154, .55);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(15, 61, 70, .15);
}

.brand__mark img {
  width: 140%;
  max-width: none;
  height: 140%;
  object-fit: cover;
}

.brand__text {
  display: grid;
  line-height: 1;
}

.brand__text strong {
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: .015em;
}

.brand__text small {
  margin-top: 7px;
  color: var(--aqua);
  font-size: .62rem;
  font-weight: 900;
  letter-spacing: .34em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 32px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--teal);
  font-size: .87rem;
  font-weight: 700;
}

.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--aqua);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.primary-nav > a:hover::after,
.primary-nav > a:focus-visible::after,
.primary-nav > a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 6px 0;
  background: var(--teal);
  transition: transform .2s ease, opacity .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--white);
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: .01em;
  box-shadow: 0 12px 30px rgba(15, 61, 70, .16);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  color: var(--teal);
  background: var(--aqua);
  border-color: var(--aqua);
  box-shadow: 0 16px 34px rgba(15, 61, 70, .2);
}

.button--small {
  min-height: 42px;
  padding: 0 19px;
  font-size: .8rem;
}

.button--ghost {
  color: var(--teal);
  background: transparent;
  border-color: rgba(15, 61, 70, .38);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--white);
  background: var(--teal);
  border-color: var(--teal);
}

.button--light {
  color: var(--teal);
  background: var(--white);
  border-color: var(--white);
}

.button--light:hover,
.button--light:focus-visible {
  color: var(--teal);
  background: var(--gold);
  border-color: var(--gold);
}

.button--full {
  width: 100%;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 20%, rgba(124, 205, 198, .24), transparent 34%),
    linear-gradient(135deg, #F8F5F0 0%, #F4EFE7 54%, #E5EFEC 100%);
}

.hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -90px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(15, 61, 70, .08);
  border-radius: 50%;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: -250px;
  left: -200px;
  width: 540px;
  height: 540px;
  background: rgba(233, 222, 208, .42);
  border-radius: 50%;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  pointer-events: none;
}

.hero__glow--one {
  top: 150px;
  right: 11%;
  width: 230px;
  height: 230px;
  background: rgba(124, 205, 198, .2);
}

.hero__glow--two {
  right: 3%;
  bottom: 60px;
  width: 170px;
  height: 170px;
  background: rgba(217, 194, 154, .25);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(470px, 1.05fr);
  align-items: center;
  min-height: 760px;
  gap: clamp(42px, 7vw, 100px);
  padding-block: 80px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-2);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  color: var(--teal);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -.035em;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(4rem, 7vw, 6.9rem);
  line-height: .93;
}

.hero h1 em {
  color: var(--aqua);
  font-weight: 500;
}

.hero__lead {
  max-width: 600px;
  margin: 28px 0 0;
  color: #50605F;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  color: var(--teal);
  font-size: .84rem;
  font-weight: 700;
}

.hero__points li {
  position: relative;
  padding-left: 16px;
}

.hero__points li::before {
  content: "";
  position: absolute;
  top: .67em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--aqua);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  min-height: 590px;
}

.ritual-card {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: min(440px, 88%);
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(255,255,255,.06), transparent 45%),
    linear-gradient(145deg, var(--teal) 0%, #15545C 100%);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 34px;
  box-shadow: 0 34px 80px rgba(15, 61, 70, .26);
  transform: translate(-48%, -50%) rotate(2.2deg);
}

.ritual-card--back {
  z-index: 1;
  height: 510px;
  background: var(--sand);
  border-color: rgba(15,61,70,.12);
  box-shadow: 0 24px 60px rgba(15,61,70,.1);
  transform: translate(-55%, -47%) rotate(-6deg);
}

.ritual-card__top,
.ritual-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.ritual-card__label {
  color: var(--sea-glass);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ritual-card__time {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: var(--teal);
  background: var(--gold);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
}

.ritual-card__icon {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  margin: 34px 0 26px;
  overflow: hidden;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
}

.ritual-card__icon img {
  width: 150%;
  max-width: none;
  height: 150%;
  object-fit: cover;
}

.ritual-card h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.04;
}

.ritual-card > p {
  margin: 14px 0 24px;
  color: rgba(255,255,255,.72);
  font-size: .92rem;
}

.ritual-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ritual-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 48px;
  padding: 0 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  font-size: .85rem;
  font-weight: 700;
}

.ritual-list span {
  color: var(--gold);
  font-size: .7rem;
}

.ritual-card__footer {
  margin-top: 28px;
  color: var(--sea-glass);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.ritual-dot {
  width: 9px;
  height: 9px;
  background: var(--aqua);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(124,205,198,.14);
}

.hero-note {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  color: var(--teal);
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,61,70,.12);
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15,61,70,.12);
  backdrop-filter: blur(12px);
}

.hero-note--top {
  top: 58px;
  right: 0;
}

.hero-note--bottom {
  right: 15px;
  bottom: 70px;
}

.hero-note__icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--teal);
  background: var(--sea-glass);
  border-radius: 50%;
}

.hero-note span:last-child {
  display: grid;
  line-height: 1.2;
}

.hero-note strong {
  font-size: .78rem;
}

.hero-note small {
  margin-top: 3px;
  color: var(--muted);
  font-size: .64rem;
}

.trust-strip {
  position: relative;
  z-index: 5;
  color: var(--teal);
  background: var(--white);
  border-block: 1px solid var(--line);
}

.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  gap: clamp(16px, 4vw, 50px);
  font-family: var(--font-heading);
  font-size: .95rem;
  font-style: italic;
  font-weight: 600;
}

.trust-strip i {
  width: 4px;
  height: 4px;
  background: var(--aqua);
  border-radius: 50%;
}

.section {
  padding-block: 110px;
}

.section--light {
  background: var(--white);
}

.section h2 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5vw, 4.7rem);
  line-height: 1.04;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, .55fr);
  align-items: end;
  gap: 60px;
  margin-bottom: 55px;
}

.section-heading > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-heading--center {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 840px;
  margin-inline: auto;
  text-align: center;
}

.section-heading--center > p {
  max-width: 620px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 430px;
  padding: 30px;
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-card--accent {
  background: var(--sea-glass);
}

.service-card__number {
  position: absolute;
  top: 26px;
  right: 28px;
  color: rgba(15,61,70,.38);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(15,61,70,.07);
}

.service-card__icon svg {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  margin: 64px 0 15px;
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.72rem;
  line-height: 1.1;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: var(--teal);
  font-size: .84rem;
  font-weight: 900;
}

.service-card a span {
  margin-left: 8px;
  color: var(--aqua);
  transition: margin .2s ease;
}

.service-card a:hover span {
  margin-left: 13px;
}

.about-section {
  background:
    radial-gradient(circle at 82% 22%, rgba(124,205,198,.16), transparent 30%),
    var(--ivory);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.about-visual {
  position: relative;
}

.about-visual::before {
  content: "";
  position: absolute;
  top: -30px;
  left: -30px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(15,61,70,.14);
  border-radius: 50%;
}

.about-visual__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--teal);
  border-radius: 190px 190px 30px 30px;
  box-shadow: var(--shadow);
}

.about-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.04);
}

.about-visual__caption {
  position: absolute;
  right: -25px;
  bottom: 45px;
  display: grid;
  gap: 6px;
  width: 220px;
  padding: 20px;
  color: var(--teal);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-visual__caption span:first-child {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.about-visual__caption span:last-child {
  color: var(--muted);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.about-copy h2 {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
}

.about-copy .lead {
  margin: 28px 0 18px;
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.3rem;
  line-height: 1.45;
}

.about-copy > p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.value-list {
  display: grid;
  gap: 14px;
  margin: 32px 0;
}

.value-list div {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 58px;
  padding: 0 18px;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.value-list span {
  color: var(--aqua);
  font-size: .7rem;
  font-weight: 900;
}

.value-list strong {
  color: var(--teal);
  font-size: .93rem;
}

.text-link {
  display: inline-flex;
  gap: 10px;
  color: var(--teal);
  font-weight: 900;
  border-bottom: 1px solid var(--aqua);
}

.text-link span {
  color: var(--aqua);
}

.rhythm-section {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(124,205,198,.14), transparent 24%),
    var(--teal);
}

.rhythm-section .eyebrow {
  color: var(--aqua);
}

.rhythm-section h2 {
  color: var(--white);
}

.rhythm-section .section-heading > p {
  color: rgba(255,255,255,.66);
}

.rhythm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius);
}

.rhythm-step {
  min-height: 310px;
  padding: 32px 28px;
  background: var(--teal);
}

.rhythm-step span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
}

.rhythm-step h3 {
  margin: 88px 0 18px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 2rem;
}

.rhythm-step p {
  margin: 0;
  color: rgba(255,255,255,.64);
  font-size: .9rem;
}

.resources-section {
  background: var(--sea-glass);
}

.resources-grid {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  align-items: center;
  gap: 70px;
}

.resources-copy h2 {
  font-size: clamp(2.7rem, 5vw, 4.4rem);
}

.resources-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 24px 0 30px;
  color: #4D6663;
}

.resource-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.resource-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(15,61,70,.05), rgba(15,61,70,.85)),
    radial-gradient(circle at 74% 28%, rgba(124,205,198,.8), transparent 22%),
    linear-gradient(135deg, #2A6669, var(--teal));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.resource-card--sand {
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(15,61,70,.72)),
    radial-gradient(circle at 74% 28%, rgba(255,255,255,.42), transparent 23%),
    linear-gradient(135deg, #CDBEA9, #8DA99E);
}

.resource-card__type {
  color: var(--white);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.resource-card h3 {
  position: absolute;
  right: 28px;
  bottom: 78px;
  left: 28px;
  margin: 0;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.9rem;
  line-height: 1.1;
}

.resource-card p {
  position: absolute;
  right: 28px;
  bottom: 26px;
  left: 28px;
  margin: 0;
  color: rgba(255,255,255,.7);
  font-size: .78rem;
}

.resource-card__arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--teal);
  background: var(--white);
  border-radius: 50%;
  font-weight: 900;
}

.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: clamp(50px, 8vw, 110px);
}

.contact-copy h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 40px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 22px;
}

.contact-details div {
  display: grid;
  gap: 5px;
}

.contact-details span {
  color: var(--aqua);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--teal);
  font-family: var(--font-heading);
  font-size: 1.12rem;
}

.contact-form {
  padding: 34px;
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 25px 70px rgba(15,61,70,.09);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.contact-form label > span {
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(15,61,70,.18);
  border-radius: 12px;
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}

.contact-form input,
.contact-form select {
  min-height: 50px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 135px;
  padding: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(124,205,198,.18);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .7rem;
  text-align: center;
}

.form-note.is-success {
  color: var(--teal);
  font-weight: 700;
}

.site-footer {
  color: var(--white);
  background: var(--teal);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .55fr .55fr;
  gap: 60px;
  padding-block: 70px 50px;
}

.brand--footer .brand__text strong {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 360px;
  color: rgba(255,255,255,.62);
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--aqua);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  font-size: .86rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255,255,255,.48);
  font-size: .72rem;
}

.footer-bottom strong {
  color: var(--aqua);
}

@media (max-width: 1040px) {
  .primary-nav {
    position: fixed;
    top: 119px;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    align-content: start;
    justify-items: start;
    gap: 0;
    padding: 30px 24px;
    background: rgba(248,245,240,.98);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav > a:not(.button) {
    width: 100%;
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-heading);
    font-size: 1.45rem;
  }

  .primary-nav .button {
    margin-top: 24px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(8px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 7vw, 5.4rem);
  }

  .ritual-card {
    width: min(390px, 90%);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .about-grid,
  .resources-grid,
  .contact-grid {
    gap: 45px;
  }

  .rhythm-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 92px;
  }

  .concept-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .concept-bar a {
    display: none;
  }

  .header-inner {
    min-height: 74px;
  }

  .primary-nav {
    top: 108px;
  }

  .brand {
    min-width: auto;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 70px 85px;
  }

  .hero__copy {
    max-width: 700px;
  }

  .hero__visual {
    min-height: 580px;
  }

  .hero-note--top {
    right: 4%;
  }

  .hero-note--bottom {
    right: 7%;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 350px;
  }

  .service-card h3 {
    margin-top: 45px;
  }

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

  .about-visual {
    max-width: 520px;
    margin-inline: auto;
  }

  .about-visual__caption {
    right: 15px;
  }

  .resource-cards {
    max-width: 680px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .concept-bar {
    font-size: .67rem;
  }

  .brand__text strong {
    font-size: 1rem;
  }

  .brand__text small {
    font-size: .53rem;
  }

  .section {
    padding-block: 78px;
  }

  .hero__grid {
    padding-top: 55px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 16vw, 4.6rem);
  }

  .hero__lead {
    font-size: 1rem;
  }

  .hero__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero__points {
    display: grid;
    gap: 9px;
  }

  .hero__visual {
    min-height: 530px;
  }

  .ritual-card {
    top: 48%;
    width: 94%;
    padding: 25px;
    transform: translate(-50%, -50%) rotate(1deg);
  }

  .ritual-card--back {
    height: 470px;
    transform: translate(-50%, -47%) rotate(-4deg);
  }

  .ritual-card__icon {
    width: 82px;
    height: 82px;
    margin: 24px 0 18px;
  }

  .ritual-card h2 {
    font-size: 1.85rem;
  }

  .hero-note {
    display: none;
  }

  .trust-strip__inner {
    flex-wrap: wrap;
    padding-block: 17px;
    gap: 10px 18px;
  }

  .section h2 {
    font-size: clamp(2.45rem, 12vw, 3.35rem);
  }

  .service-card {
    min-height: 380px;
    padding: 25px;
  }

  .service-card a {
    bottom: 25px;
    left: 25px;
  }

  .about-visual__caption {
    right: 8px;
    bottom: 25px;
    width: 190px;
  }

  .rhythm-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-step {
    min-height: 250px;
  }

  .rhythm-step h3 {
    margin-top: 55px;
  }

  .resource-cards {
    grid-template-columns: 1fr;
  }

  .resource-card {
    min-height: 330px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-top: 54px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

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

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