/* ==========================================================================
   Ki Wellness & Healing Center — stylesheet
   Palette locked to the brand swatches; type is Newsreader + Karla.
   ========================================================================== */

:root {
  /* Brand */
  --moss:    #647F3E;
  --pine:    #3F4E3B;
  --citron:  #C1BC50;
  --leaf:    #698D3B;
  --forest:  #3F553A;

  /* Surfaces derived from the brand greens */
  --paper:   #F1F3E9;
  --paper-2: #E7EBDA;
  --ink:     #1B2418;
  --muted:   #57654F;
  --line:    rgba(63, 85, 58, .18);

  --shell: min(1180px, 92vw);
  --radius: 18px;

  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans:  "Karla", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  margin: 0;
  -webkit-tap-highlight-color: rgba(100, 127, 62, .18);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: clamp(16px, .55vw + 14.4px, 17.5px);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.015em;
  margin: 0;
  text-wrap: balance;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.shell { width: var(--shell); margin-inline: auto; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--moss);
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--moss);
  flex: none;
}

.lede { font-size: 1.12rem; color: var(--muted); max-width: 56ch; }

.skip {
  position: absolute; left: -9999px;
  background: var(--forest); color: #fff;
  padding: .7rem 1.1rem; border-radius: 0 0 10px 0; z-index: 200;
}
.skip:focus { left: 0; top: 0; }

:focus-visible {
  outline: 2.5px solid var(--forest);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Header ---------------------------------------------------- */

.masthead {
  position: sticky; top: 0; z-index: 100;
  background: rgba(241, 243, 233, .82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.masthead.is-stuck { border-bottom-color: var(--line); }

.masthead__inner {
  width: var(--shell); margin-inline: auto;
  display: flex; align-items: center; gap: 1.5rem;
  padding: .7rem 0;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand img { width: 46px; height: auto; }
.brand__name {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.1vw, 1.16rem); line-height: 1.05; font-weight: 400;
  letter-spacing: -.01em; white-space: nowrap;
}
.brand__name span {
  display: block;
  font-family: var(--sans);
  font-size: .6rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; white-space: nowrap;
  color: var(--moss); margin-top: .18rem;
}

.nav { display: flex; align-items: center; gap: clamp(.8rem, 1.4vw, 1.5rem); }
.nav > * { flex: none; }
.nav a {
  text-decoration: none;
  font-size: clamp(.85rem, .9vw, .93rem); font-weight: 500;
  color: var(--pine); white-space: nowrap;
  padding: .3rem 0;
  position: relative;
}
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px;
  height: 1.5px; background: var(--moss);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--forest); }
.nav .btn--solid { color: #F5F7EE; }
.nav .btn { padding: .6rem 1.1rem; }
.nav .btn::after { display: none; }
.nav .btn--solid:hover { color: #F5F7EE; }

.langswitch {
  display: flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; flex: none;
}
.langswitch a {
  display: flex; align-items: center;
  padding: .42rem .68rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-decoration: none; color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.langswitch a:hover { color: var(--forest); background: rgba(100, 127, 62, .1); }
.langswitch a[aria-current="true"] { background: var(--forest); color: #F5F7EE; }

.menu-toggle {
  display: none;
  background: none; border: 1px solid var(--line);
  border-radius: 10px; padding: .5rem .7rem;
  color: var(--pine); font: inherit; font-size: .85rem; cursor: pointer;
}

/* ---------- Buttons --------------------------------------------------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .95rem; font-weight: 600;
  letter-spacing: .01em;
  text-decoration: none; cursor: pointer; white-space: nowrap;
  padding: .82rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease), background .2s var(--ease),
              color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--solid {
  background: var(--forest); color: #F5F7EE;
  box-shadow: 0 6px 20px -10px rgba(27, 36, 24, .75);
}
.btn--solid:hover { background: var(--moss); transform: translateY(-2px); }

.btn--ghost { border-color: var(--line); color: var(--pine); background: transparent; }
.btn--ghost:hover { border-color: var(--moss); color: var(--forest); transform: translateY(-2px); }

.btn--citron { background: var(--citron); color: #23301F; }
.btn--citron:hover { background: #D2CE64; transform: translateY(-2px); }

.btn--sm { padding: .58rem 1.05rem; font-size: .85rem; }

/* Header call button: full number when there's room, just the verb when not */
.btn__short { display: none; }
@media (max-width: 1080px) {
  .nav .btn__full { display: none; }
  .nav .btn__short { display: inline; }
}
@media (max-width: 720px) {
  .nav .btn__full { display: inline; }
  .nav .btn__short { display: none; }
}

.actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Hero ------------------------------------------------------ */

.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem); }
.hero::before {
  content: "";
  position: absolute; inset: -20% -30% auto -30%; height: 130%;
  background:
    radial-gradient(46% 52% at 74% 30%, rgba(193, 188, 80, .30), transparent 68%),
    radial-gradient(52% 56% at 22% 74%, rgba(105, 141, 59, .22), transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.hero h1 { font-size: clamp(2.7rem, 6.4vw, 4.5rem); margin-bottom: 1.2rem; }
.hero h1 em {
  font-style: italic; font-weight: 300;
  color: var(--moss);
}
.hero .lede { font-size: clamp(1.05rem, 1.4vw, 1.22rem); margin-bottom: 2rem; }
.hero .actions { margin-bottom: 1.7rem; }

.hero__note {
  display: flex; flex-wrap: wrap; gap: .5rem 1.4rem;
  font-size: .84rem; color: var(--muted);
  padding-top: 1.4rem; border-top: 1px solid var(--line);
}
.hero__note b { color: var(--pine); font-weight: 600; }

/* Signature: the breath mark ------------------------------------------ */

.breath { position: relative; display: grid; place-items: center; aspect-ratio: 1; }
.breath__ring {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--moss);
  opacity: .28;
  animation: breathe 8s var(--ease) infinite;
}
.breath__ring:nth-child(1) { inset: 4%;  animation-delay: 0s; }
.breath__ring:nth-child(2) { inset: 12%; animation-delay: .45s; opacity: .2; }
.breath__ring:nth-child(3) { inset: 20%; animation-delay: .9s; opacity: .14; }
.breath__mark { position: relative; width: 82%; animation: breathe-mark 8s var(--ease) infinite; }

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  42%      { transform: scale(1.075); opacity: .38; }
  70%      { transform: scale(1.01); }
}
@keyframes breathe-mark {
  0%, 100% { transform: scale(1); }
  42%      { transform: scale(1.028); }
}

.breath__caption {
  position: absolute; bottom: -.4rem; left: 50%; transform: translateX(-50%);
  font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--moss); white-space: nowrap;
}

/* ---------- Section shell --------------------------------------------- */

.band { padding: clamp(3.2rem, 7vw, 6rem) 0; position: relative; overflow: hidden; }
.band--tint { background: var(--paper-2); }
.band--dark { background: var(--forest); color: #EAEEDE; }
.band--dark h2, .band--dark h3 { color: #F3F6E9; }
.band--dark .eyebrow { color: var(--citron); }
.band--dark .eyebrow::before { background: var(--citron); }
.band--dark .lede { color: rgba(234, 238, 222, .78); }

.band__head { max-width: 62ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.band__head h2 { font-size: clamp(1.95rem, 3.6vw, 2.9rem); margin-bottom: .9rem; }

/* A hairline meridian that threads the page between sections */
.meridian { display: block; width: 100%; height: 44px; color: var(--line); }
.meridian path { stroke: currentColor; stroke-width: 1; fill: none; }

/* ---------- Service cards --------------------------------------------- */

.services { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.1rem; }

.svc {
  grid-column: span 3;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem 1.6rem 1.6rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.band--tint .svc { background: #F5F7EE; }
.svc:hover {
  transform: translateY(-4px);
  border-color: rgba(100, 127, 62, .5);
  box-shadow: 0 18px 40px -28px rgba(27, 36, 24, .7);
}
.svc h3 { font-size: 1.45rem; }
.svc p { font-size: .95rem; color: var(--muted); }
.svc__tag {
  font-size: .68rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--moss);
}
.svc__best {
  margin-top: auto; padding-top: .9rem; border-top: 1px solid var(--line);
  font-size: .84rem; color: var(--pine);
}
.svc__best b { font-weight: 700; }

/* Oxygen chamber — the priority service, given the wide dark slot */
.svc--feature {
  grid-column: span 6;
  background: var(--pine);
  border-color: transparent;
  color: #EDF1E2;
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: 1.5rem 2.5rem; align-items: center;
  padding: clamp(1.8rem, 3.4vw, 2.8rem);
  position: relative; overflow: hidden;
}
.band--tint .svc--feature { background: var(--pine); }
.svc--feature::after {
  content: ""; position: absolute; right: -8%; top: -40%;
  width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(193, 188, 80, .30), transparent 62%);
  pointer-events: none;
}
.svc--feature h3 { font-size: clamp(1.8rem, 3vw, 2.5rem); color: #F4F7EA; }
.svc--feature p { color: rgba(240, 244, 228, .88); font-size: 1rem; }
.svc--feature .svc__tag { color: var(--citron); }
.svc--feature .svc__best { border-top-color: rgba(237, 241, 226, .2); color: rgba(237, 241, 226, .85); }

.svc__points { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; position: relative; }
.svc__points li {
  font-size: .92rem; color: rgba(237, 241, 226, .88);
  padding-left: 1.4rem; position: relative;
}
.svc__points li::before {
  content: ""; position: absolute; left: 0; top: .62em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--citron);
}

/* Pricing --------------------------------------------------------------- */

.price {
  display: flex; align-items: baseline; gap: .55rem;
  font-family: var(--serif); font-size: 1.55rem; font-weight: 400;
  color: var(--forest); letter-spacing: -.01em;
}
.svc .price { font-size: 1.5rem; color: var(--forest); margin: -.2rem 0 .35rem; }
.svc--feature .pkg__item .price { color: #F4F7EA; }
.price small {
  font-family: var(--sans); font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}

.svc__packages {
  grid-column: 1 / -1; position: relative;
  margin-top: .4rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(237, 241, 226, .2);
}
.pkg { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-top: 1rem; }
.pkg__item {
  position: relative;
  border: 1px solid rgba(237, 241, 226, .26);
  border-radius: 13px; padding: 1rem 1.05rem;
}
.pkg__item--sale {
  border-color: var(--citron);
  background: rgba(193, 188, 80, .14);
}
.pkg__item .price { color: #F4F7EA; font-size: 1.7rem; margin: 0; }
.pkg__item .price small { color: rgba(237, 241, 226, .72); }
.pkg__item p { font-size: .8rem; color: rgba(237, 241, 226, .72); margin: .3rem 0 0; }
.badge {
  position: absolute; top: -.62rem; left: 1rem;
  background: var(--citron); color: #23301F;
  font-size: .6rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: .22rem .6rem; border-radius: 999px;
}

@media (max-width: 720px) {
  .pkg { grid-template-columns: 1fr; gap: 1.1rem; }
}

/* ---------- Two-column prose blocks ----------------------------------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--narrow { grid-template-columns: .9fr 1.1fr; }

.figure {
  border-radius: var(--radius); overflow: hidden;
  background: var(--paper-2); border: 1px solid var(--line);
  display: grid; place-items: center; padding: 2rem;
}
.figure img { width: min(100%, 380px); }

/* ---------- Value / promise strip ------------------------------------- */

.promises { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem 2.2rem; }
.promise { border-top: 2px solid var(--citron); padding-top: 1.1rem; }
.promise h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.promise p { font-size: .93rem; color: var(--muted); }
.band--dark .promise p { color: rgba(234, 238, 222, .75); }

/* ---------- Photo gallery ---------------------------------------------- */

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.shot {
  position: relative; display: block; padding: 0; border: 0;
  background: var(--paper-2);
  border-radius: var(--radius); overflow: hidden;
  cursor: zoom-in; font: inherit; color: inherit;
  aspect-ratio: 4 / 3;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.shot img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s var(--ease);
}
.shot:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -28px rgba(27, 36, 24, .8); }
.shot:hover img { transform: scale(1.04); }
.shot figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 1.6rem .95rem .8rem;
  font-size: .84rem; text-align: left; color: #F4F7EA;
  background: linear-gradient(transparent, rgba(27, 36, 24, .82));
  opacity: 0; transition: opacity .3s var(--ease);
}
.shot:hover figcaption, .shot:focus-visible figcaption { opacity: 1; }

/* A wide first tile on the gallery page only */
.gallery--feature .shot:first-child { grid-column: span 2; aspect-ratio: 16 / 9; }

/* Home-page strip: one row, scrolls sideways on small screens */
.strip {
  display: grid; grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 1fr);
  gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .4rem;
  scrollbar-width: none;
}
.strip::-webkit-scrollbar { display: none; }
.strip .shot { scroll-snap-align: start; }

/* Lightbox --------------------------------------------------------------- */

.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none; place-items: center;
  background: rgba(20, 27, 18, .94);
  padding: clamp(1rem, 4vw, 3rem);
  padding-bottom: calc(clamp(1rem, 4vw, 3rem) + env(safe-area-inset-bottom));
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: 100%; max-height: 78vh; max-height: 78dvh;
  border-radius: 12px; object-fit: contain;
}
.lightbox__cap {
  margin-top: 1rem; text-align: center;
  color: rgba(238, 242, 227, .82); font-size: .92rem;
}
.lightbox__count {
  font-family: var(--sans); font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--citron); margin-bottom: .4rem;
}
.lightbox__btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(238, 242, 227, .3);
  background: rgba(20, 27, 18, .6); color: #F4F7EA;
  font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.lightbox__btn:hover { background: var(--forest); border-color: var(--moss); }
.lightbox__btn--prev { left: max(.7rem, 2vw); }
.lightbox__btn--next { right: max(.7rem, 2vw); }
.lightbox__close {
  position: absolute; top: max(.9rem, 2vh); right: max(.7rem, 2vw);
  transform: none; width: 46px; height: 46px;
}

@media (max-width: 720px) {
  .gallery { grid-template-columns: 1fr 1fr; gap: .6rem; }
  .gallery--feature .shot:first-child { grid-column: span 2; }
  .shot figcaption { opacity: 1; font-size: .74rem; padding: 1.2rem .6rem .55rem; }
  .lightbox__btn { width: 46px; height: 46px; }
}

/* ---------- FAQ -------------------------------------------------------- */

.faq { display: grid; gap: .7rem; max-width: 78ch; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 0 1.35rem;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.band--tint .faq details { background: #F5F7EE; }
.faq details[open] { border-color: rgba(100, 127, 62, .45); }
.faq summary {
  list-style: none; cursor: pointer;
  font-family: var(--serif); font-size: 1.18rem; font-weight: 400;
  padding: 1.15rem 2rem 1.15rem 0;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: .1rem; top: 1.55rem;
  width: 11px; height: 11px;
  border-right: 1.6px solid var(--moss); border-bottom: 1.6px solid var(--moss);
  transform: rotate(45deg); transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(-135deg); }
.faq .faq__body { padding: 0 0 1.25rem; color: var(--muted); font-size: .97rem; }

/* ---------- Payment chips ---------------------------------------------- */

.chips { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: .35rem; }
.chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: .32rem .75rem;
  font-size: .8rem; font-weight: 500; color: var(--pine);
  background: var(--paper);
  white-space: nowrap;
}
.band--tint .chip { background: #F5F7EE; }
.band--dark .chip { background: transparent; border-color: rgba(237,241,226,.28); color: rgba(237,241,226,.9); }

/* ---------- Contact ---------------------------------------------------- */

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }

.contact-grid > * { min-width: 0; }
.info { display: grid; gap: 1.5rem; min-width: 0; }
.info__row { min-width: 0; }
.info__row { display: grid; gap: .2rem; }
.info__label {
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--moss);
}
.info__value { font-size: 1.05rem; overflow-wrap: anywhere; }
.info__value a { text-decoration: none; border-bottom: 1px solid var(--line); }
.info__value a:hover { border-bottom-color: var(--moss); color: var(--forest); }
.info__value small { display: block; font-size: .82rem; color: var(--muted); }

.hours { list-style: none; margin: 0; padding: 0; display: grid; gap: .35rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; font-size: .95rem; max-width: 22rem; }
.hours span:last-child { color: var(--muted); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}
.band--tint .card { background: #F5F7EE; }

.field { display: grid; gap: .4rem; margin-bottom: 1.05rem; }
.field label { font-size: .8rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--pine); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .97rem;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: .78rem .95rem;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  background: #FAFBF4; border-color: var(--moss); outline: none;
  box-shadow: 0 0 0 3px rgba(100, 127, 62, .16);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--pair { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field--pair .field { margin-bottom: 0; }

.form__note { font-size: .84rem; color: var(--muted); margin-top: .9rem; }
.hp { position: absolute; left: -9999px; }

.map {
  border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--paper-2); margin-top: 1.6rem;
}
.map iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- CTA ribbon -------------------------------------------------- */

.ribbon { text-align: center; }
.ribbon h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin-bottom: 1rem; }
.ribbon .lede { margin: 0 auto 2rem; }
.ribbon .actions { justify-content: center; }

/* ---------- Footer ------------------------------------------------------ */

.footer { background: var(--ink); color: rgba(238, 242, 227, .74); padding: clamp(2.8rem, 5vw, 4rem) 0 2rem; }
.footer a { color: rgba(238, 242, 227, .74); text-decoration: none; }
.footer a:hover { color: var(--citron); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: 2rem; }
.footer h4 {
  font-family: var(--sans); font-size: .68rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--citron);
  margin: 0 0 .9rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .45rem; font-size: .92rem; }
.footer__brand { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.footer__brand img { width: 52px; }
.footer__brand strong { font-family: var(--serif); font-weight: 400; font-size: 1.2rem; color: #F1F4E6; }
.footer__legal {
  margin-top: 2.6rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(238, 242, 227, .14);
  display: flex; flex-wrap: wrap; gap: .6rem 1.6rem;
  font-size: .8rem; color: rgba(238, 242, 227, .5);
}

/* ---------- Mobile call bar --------------------------------------------- */

.callbar { display: none; }

/* ---------- Reveal on scroll -------------------------------------------- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- Responsive --------------------------------------------------- */

@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .breath { order: -1; width: min(78%, 380px); margin-inline: auto; }
  .services { grid-template-columns: repeat(4, 1fr); }
  .svc { grid-column: span 2; }
  .svc--feature { grid-column: span 4; grid-template-columns: 1fr; }
  .split, .split--narrow, .contact-grid { grid-template-columns: 1fr; }
  .promises { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .langswitch {
  display: flex; align-items: stretch;
  border: 1px solid var(--line); border-radius: 999px;
  overflow: hidden; flex: none;
}
.langswitch a {
  display: flex; align-items: center;
  padding: .42rem .68rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  text-decoration: none; color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.langswitch a:hover { color: var(--forest); background: rgba(100, 127, 62, .1); }
.langswitch a[aria-current="true"] { background: var(--forest); color: #F5F7EE; }

.menu-toggle { display: block; }
  .nav {
    position: fixed; inset: 62px 0 auto;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
    gap: 0; padding: .5rem 4vw 1.2rem;
    transform: translateY(-140%);
    transition: transform .35s var(--ease);
    box-shadow: 0 20px 40px -30px rgba(27, 36, 24, .8);
    max-height: calc(100vh - 62px - 70px);
    max-height: calc(100dvh - 62px - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .nav.is-open { transform: none; }
  .nav a { padding: .85rem 0; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav a::after { display: none; }
  .nav .btn { margin-top: .9rem; }
  .brand img { width: 40px; }

  .services { grid-template-columns: 1fr; }
  .svc, .svc--feature { grid-column: span 1; }
  .promises { grid-template-columns: 1fr; }
  .field--pair { grid-template-columns: 1fr; gap: 0; }
  .field--pair .field { margin-bottom: 1.05rem; }
  .footer__grid { grid-template-columns: 1fr; }
  body { padding-bottom: 66px; }

  .field input, .field select, .field textarea { font-size: 16px; padding: .85rem .95rem; }
  .btn { padding: .9rem 1.4rem; }
  .langswitch a { padding: .5rem .7rem; }
  .menu-toggle { padding: .6rem .85rem; }
  .masthead__inner { gap: .6rem; }

  .callbar {
    display: grid; grid-template-columns: 1fr 1fr; gap: .6rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: .6rem 4vw calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(241, 243, 233, .94);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }
  .callbar .btn { width: 100%; padding: .72rem 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .masthead, .callbar, .map, .breath { display: none; }
  body { background: #fff; color: #000; }
}
