/* ============================================================
   Metta Massage, Ltd. — Spec preview by Woodcrest Marketing
   Palette: evergreen / warm cream / clay. Wellness, grounded.
   ============================================================ */

:root {
  /* color */
  --green-900: #16302B;
  --green-800: #1C382F;
  --green-700: #22403A;
  --green-600: #2F5449;
  --cream:     #F4EEE2;
  --cream-200: #EBE2D0;
  --paper:     #FBF8F1;
  --clay:      #C57B57;
  --clay-600:  #B36A48;
  --ink:       #23271F;
  --ink-soft:  #4E5347;
  --line:      rgba(35, 39, 31, 0.12);

  /* type */
  --serif: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, "Times New Roman", serif;
  --sans:  -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* fluid type scale */
  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.15rem);
  --step-1:  clamp(1.2rem, 1.08rem + 0.55vw, 1.55rem);
  --step-2:  clamp(1.5rem, 1.28rem + 1.1vw, 2.3rem);
  --step-3:  clamp(2rem, 1.6rem + 2vw, 3.4rem);
  --step-4:  clamp(2.7rem, 1.9rem + 3.9vw, 5.6rem);

  /* space */
  --space-s: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
  --space-m: clamp(1.5rem, 1.2rem + 1.5vw, 2.75rem);
  --space-l: clamp(3rem, 2.2rem + 3.5vw, 6rem);
  --space-xl: clamp(4.5rem, 3.4rem + 5vw, 9rem);

  --wrap: 1240px;
  --radius: 18px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { line-height: 1.06; font-family: var(--serif); font-weight: 600; letter-spacing: -0.015em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: clamp(1.15rem, 4vw, 2.75rem); }
.section { padding-block: var(--space-xl); position: relative; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--green-700); color: var(--cream);
  padding: 0.7rem 1.1rem; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

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

/* ---------- brand wordmark ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark {
  width: 30px; height: 30px; border-radius: 50%;
  background:
    radial-gradient(circle at 32% 32%, var(--clay), transparent 60%),
    conic-gradient(from 200deg, var(--green-600), var(--green-800), var(--green-600));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
  flex: none;
}
.brand-text {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  position: relative;
  display: inline-flex;
  align-items: baseline;
}
.brand-a { position: relative; }
.brand-a::after {
  content: "\0101"; /* ā macron accent as tiny detail, decorative */
  position: absolute; left: 0; top: -0.02em; opacity: 0; /* hidden; the visual 'a' stays plain */
}
.brand-sub {
  font-family: var(--sans);
  font-size: 0.52rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  margin-left: 0.65rem;
  opacity: 0.62;
  align-self: center;
}

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding-block: 0.85rem;
  background: rgba(251, 248, 241, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease, box-shadow .3s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -24px rgba(22,48,43,0.5);
}
.header-inner { display: flex; align-items: center; gap: 1.25rem; }
.nav { margin-left: auto; display: flex; gap: clamp(1rem, 2vw, 2.1rem); }
.nav a {
  text-decoration: none; font-size: var(--step--1); font-weight: 500;
  letter-spacing: 0.02em; color: var(--ink-soft); position: relative; padding-block: 0.25rem;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--clay); transition: width .32s cubic-bezier(.2,.7,.3,1);
}
.nav a:hover, .nav a:focus-visible { color: var(--ink); }
.nav a:hover::after, .nav a:focus-visible::after { width: 100%; }
@media (max-width: 760px) { .nav { display: none; } }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--green-700);
  --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--sans); font-weight: 600; letter-spacing: 0.01em;
  text-decoration: none; cursor: pointer; border: 0;
  background: var(--btn-bg); color: var(--btn-fg);
  padding: 0.85rem 1.5rem; border-radius: 999px;
  font-size: var(--step--1);
  transition: transform .25s cubic-bezier(.2,.7,.3,1), box-shadow .25s ease, background .25s ease;
  box-shadow: 0 12px 26px -16px rgba(22,48,43,0.8);
  white-space: nowrap;
}
.btn:hover, .btn:focus-visible { transform: translateY(-2px); background: var(--green-800); box-shadow: 0 18px 34px -16px rgba(22,48,43,0.9); }
.btn:active { transform: translateY(0); }
.btn--sm { padding: 0.6rem 1.15rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: var(--step-0); }
.btn--center { display: flex; margin: var(--space-m) auto 0; width: fit-content; }
.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn--ghost:hover, .btn--ghost:focus-visible { background: transparent; box-shadow: inset 0 0 0 1.5px var(--clay); color: var(--clay-600); }
@media (max-width: 760px) { .site-header .btn--sm { display: none; } }

.link-arrow {
  font-weight: 600; text-decoration: none; font-size: var(--step--1);
  letter-spacing: 0.02em; color: var(--clay-600);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
.link-arrow::after { content: "\2192"; transition: transform .28s ease; }
.link-arrow:hover::after, .link-arrow:focus-visible::after { transform: translateX(5px); }

.kicker {
  display: inline-block; font-family: var(--sans); font-size: var(--step--1);
  letter-spacing: 0.24em; text-transform: uppercase; font-weight: 700;
  color: var(--clay-600);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  color: var(--cream);
  background: var(--green-800);
  padding-block: clamp(5rem, 4rem + 7.5vw, 8.5rem) var(--space-xl);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__bg .orb { position: absolute; border-radius: 50%; filter: blur(10px); opacity: 0.9; }
.orb--1 {
  width: 62vw; height: 62vw; max-width: 720px; max-height: 720px;
  right: -14vw; top: -18vw;
  background: radial-gradient(circle at 35% 35%, rgba(197,123,87,0.55), rgba(197,123,87,0) 62%);
}
.orb--2 {
  width: 48vw; height: 48vw; max-width: 560px; max-height: 560px;
  left: -12vw; bottom: -20vw;
  background: radial-gradient(circle at 60% 40%, rgba(47,84,73,0.9), rgba(47,84,73,0) 65%);
}
.grain {
  position: absolute; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.35'/%3E%3C/svg%3E");
  opacity: 0.06; mix-blend-mode: overlay;
}
.hero::after {
  /* thin baseline curve to ground the hero */
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 70px;
  background: var(--paper);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  transform: scaleX(1.4);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}
.hero__content { max-width: 34rem; }
@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; gap: var(--space-l); }
  .hero__visual { display: none; }
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 600; color: rgba(244,238,226,0.82);
  margin-bottom: var(--space-s);
}
.hero__eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--clay); flex: none; box-shadow: 0 0 0 4px rgba(197,123,87,0.22); }
.hero__title {
  font-size: clamp(2.7rem, 1.75rem + 3.5vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-m);
}
.hero__title span { display: block; }
@media (max-width: 900px) { .hero__content { max-width: none; } .hero__title { font-size: var(--step-4); } }
.hero__lede {
  font-size: var(--step-1);
  max-width: 46ch;
  color: rgba(244,238,226,0.86);
  line-height: 1.5;
  margin-bottom: var(--space-m);
}
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem 1.8rem; }
.hero__actions .btn { --btn-bg: var(--clay); --btn-fg: #2a170e; }
.hero__actions .btn:hover, .hero__actions .btn:focus-visible { --btn-bg: var(--clay-600); }
.hero__actions .link-arrow { color: var(--cream); }
.hero__note {
  margin-top: var(--space-m);
  font-size: var(--step--1);
  letter-spacing: 0.04em;
  color: rgba(244,238,226,0.6);
}

/* ---------- hero visual: warm dawn through an arched window ---------- */
.hero__visual { position: relative; justify-self: center; width: 100%; max-width: 440px; }
.arch {
  position: relative;
  aspect-ratio: 3 / 3.9;
  border-radius: 220px 220px 24px 24px;
  overflow: hidden;
  isolation: isolate;
  background: #13302a;
  box-shadow:
    0 60px 110px -50px rgba(0,0,0,0.78),
    0 8px 24px -14px rgba(0,0,0,0.5),
    inset 0 2px 0 0 rgba(244,238,226,0.05);
}
/* graded dawn sky: deep green up top warming to gold at the horizon */
.arch__sky {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      #16352d 0%,
      #21463c 26%,
      #325244 46%,
      #6f6f4d 60%,
      #b98a55 68%,
      #e6ac6a 71%,
      #f2c483 74%,
      #d99a5c 80%,
      #7a5638 92%,
      #3a3324 100%);
}
/* crisp waterline where the sky meets the pooled reflection */
.arch__sky::after {
  content: ""; position: absolute; left: 6%; right: 6%; top: 71.5%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,238,206,0.75), transparent);
  box-shadow: 0 0 10px 1px rgba(255,225,175,0.5);
}
/* soft light rays fanning up from the sun */
.arch__rays {
  position: absolute; left: 50%; top: 63%; transform: translate(-50%, -50%);
  width: 155%; aspect-ratio: 1;
  background: repeating-conic-gradient(from 0deg at 50% 50%,
    rgba(255,224,176,0.14) 0deg 4deg,
    rgba(255,224,176,0) 4deg 14deg);
  -webkit-mask: radial-gradient(circle at 50% 50%, #000 6%, transparent 58%);
  mask: radial-gradient(circle at 50% 50%, #000 6%, transparent 58%);
  mix-blend-mode: screen; opacity: 0.6;
  animation: sway 20s ease-in-out infinite;
}
.arch__sun {
  position: absolute; left: 50%; top: 63%; transform: translate(-50%, -50%);
  width: 38%; aspect-ratio: 1; border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, #fff6e6 0%, #ffe6bd 22%, #f6c078 46%, #e79a58 62%, rgba(231,154,88,0) 74%);
  box-shadow: 0 0 46px 10px rgba(255,205,140,0.42);
  animation: breathe 9s ease-in-out infinite;
}
/* clean water-reflection glint under the sun */
.arch__sun::after {
  content: ""; position: absolute; left: 50%; top: 108%; transform: translateX(-50%);
  width: 62%; height: 130%;
  background: radial-gradient(60% 50% at 50% 0%, rgba(255,214,157,0.55), rgba(255,214,157,0) 72%);
  filter: blur(2px);
}
/* horizontal calm-water bands drifting across the reflected light */
.arch__mist {
  position: absolute; left: -20%; right: -20%; height: 5%;
  background: linear-gradient(90deg, transparent, rgba(15,36,30,0.5) 22%, rgba(15,36,30,0.62) 50%, rgba(15,36,30,0.5) 78%, transparent);
  filter: blur(3px); opacity: 0.6;
}
.arch__mist--1 { top: 79%; animation: drift 15s ease-in-out infinite; }
.arch__mist--2 { top: 85%; height: 6%; opacity: 0.7; animation: drift 19s ease-in-out infinite reverse; }
.arch__mist--3 { top: 91%; height: 7%; opacity: 0.85; }
/* pooled reflection below the horizon */
.arch__reflect {
  position: absolute; left: 0; right: 0; bottom: 0; height: 30%;
  background:
    linear-gradient(180deg, rgba(19,44,37,0) 0%, rgba(15,33,28,0.5) 55%, rgba(13,29,25,0.9) 100%);
}
.arch__reflect::after {
  content: ""; position: absolute; left: 50%; top: -2%; transform: translateX(-50%);
  width: 22%; height: 80%;
  background: linear-gradient(180deg, rgba(255,214,157,0.5), rgba(255,214,157,0));
  filter: blur(7px); opacity: 0.65;
}
/* windowsill foreground bar grounds the scene */
.arch__sill {
  position: absolute; left: 0; right: 0; bottom: 0; height: 9%;
  background: linear-gradient(180deg, #14312a, #0e2620);
  box-shadow: 0 -1px 0 0 rgba(244,238,226,0.10), 0 -14px 26px -10px rgba(0,0,0,0.6);
}
/* inner frame line to read as a real window */
.arch__frame {
  position: absolute; inset: 10px;
  border: 1px solid rgba(244,238,226,0.16);
  border-radius: 210px 210px 16px 16px;
  pointer-events: none;
}
.arch__grain {
  position: absolute; inset: 0; opacity: 0.12; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* floating location pin, top-right */
.hero__pin {
  position: absolute; right: -5%; top: 8%;
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 0.95rem;
  font-size: 0.76rem; font-weight: 600; letter-spacing: 0.04em;
  color: rgba(244,238,226,0.9);
  background: rgba(18,31,27,0.72);
  backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(244,238,226,0.16);
  border-radius: 999px;
  box-shadow: 0 20px 40px -24px rgba(0,0,0,0.8);
  animation: floaty 8s ease-in-out infinite;
}
.hero__pin-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); flex: none; box-shadow: 0 0 0 4px rgba(197,123,87,0.22); }
.hero__chip {
  position: absolute; left: -7%; bottom: 9%;
  display: inline-flex; align-items: center; gap: 0.65rem;
  padding: 0.55rem 1.05rem 0.55rem 0.6rem;
  background: rgba(18,31,27,0.78);
  backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  border: 1px solid rgba(244,238,226,0.16);
  border-radius: 999px;
  box-shadow: 0 24px 46px -26px rgba(0,0,0,0.8);
  animation: floaty 7s ease-in-out infinite;
}
.hero__chip-mark {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  background:
    radial-gradient(circle at 32% 30%, var(--clay), transparent 62%),
    conic-gradient(from 200deg, var(--green-600), var(--green-800), var(--green-600));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.16);
}
.hero__chip-text { font-size: 0.82rem; letter-spacing: 0.02em; color: rgba(244,238,226,0.86); }
.hero__chip-text b {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  color: var(--cream); margin-right: 0.45rem;
}
@keyframes breathe { 0%, 100% { transform: translate(-50%, -50%) scale(1); } 50% { transform: translate(-50%, -50%) scale(1.05); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes drift { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4%); } }
@keyframes sway { 0%, 100% { transform: translate(-50%, -50%) rotate(-3deg); } 50% { transform: translate(-50%, -50%) rotate(3deg); } }

/* ---------- marquee strip ---------- */
.strip {
  background: var(--green-700); color: var(--cream);
  overflow: hidden; padding-block: 0.9rem;
  border-block: 1px solid rgba(244,238,226,0.08);
}
.strip__track {
  display: flex; align-items: center; gap: 2.5rem; width: max-content;
  animation: marquee 26s linear infinite;
  font-family: var(--serif); font-style: italic; font-size: var(--step-1);
  letter-spacing: 0.02em; opacity: 0.9;
}
.strip__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--clay); flex: none; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--paper); }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.6fr);
  gap: var(--space-m) var(--space-l);
  align-items: start;
}
.about__label {
  position: sticky; top: 118px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.6rem;
}
.about__rule {
  width: 1px; height: clamp(60px, 9vw, 120px);
  background: linear-gradient(180deg, var(--clay), transparent);
  margin-left: 2px;
}
.about__seal {
  position: relative;
  width: 84px; height: 84px; border-radius: 50%;
  display: grid; place-items: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(197,123,87,0.16), transparent 62%);
  border: 1px solid var(--line);
}
.about__seal::before {
  content: ""; position: absolute; inset: 9px; border-radius: 50%;
  border: 1px dashed rgba(197,123,87,0.4);
}
.about__seal-sun {
  width: 30px; height: 30px; border-radius: 50%;
  background: radial-gradient(circle at 50% 42%, #f4c88c, var(--clay) 62%);
  box-shadow: 0 0 0 5px rgba(197,123,87,0.12);
}
.about__place {
  font-family: var(--sans); font-size: var(--step--1); line-height: 1.5;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: var(--ink-soft);
}
.about__title {
  font-size: var(--step-3);
  max-width: 18ch;
  margin-bottom: var(--space-s);
  color: var(--green-800);
}
.about__body p { color: var(--ink-soft); max-width: 60ch; margin-bottom: 1.1rem; }
.about__stats {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  margin-top: var(--space-m);
  border-top: 1px solid var(--line);
  padding-top: var(--space-m);
}
.stat { padding-inline: clamp(1rem, 2.5vw, 2.4rem); }
.stat:first-child { padding-left: 0; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat__num {
  display: block; font-family: var(--serif); font-size: clamp(2.4rem, 1.7rem + 2.6vw, 3.8rem);
  color: var(--clay-600); line-height: 1; margin-bottom: 0.6rem; font-weight: 600;
  letter-spacing: -0.02em;
}
.stat__lbl { display: block; font-size: var(--step--1); color: var(--ink-soft); max-width: 22ch; }
@media (max-width: 860px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__label { position: static; flex-direction: row; align-items: center; gap: 1.2rem; }
  .about__place { display: none; }
  .about__rule { width: clamp(40px, 20vw, 90px); height: 1px; background: linear-gradient(90deg, var(--clay), transparent); margin-left: 0; }
  .about__seal { width: 60px; height: 60px; }
  .about__seal-sun { width: 22px; height: 22px; }
  .about__stats { grid-column: 1 / -1; grid-template-columns: 1fr; padding-top: var(--space-s); }
  .stat { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 1rem 1.1rem; padding: 1.1rem 0; }
  .stat:first-child { padding-top: 0; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat__num { margin-bottom: 0; font-size: var(--step-2); }
}

/* ============================================================
   SESSIONS
   ============================================================ */
.sessions { background: var(--green-800); color: var(--cream); }
.sessions .kicker { color: var(--clay); }
.section-head { max-width: 720px; margin-bottom: var(--space-l); }
.section-title { font-size: var(--step-3); margin-block: 0.6rem 0.9rem; max-width: 20ch; }
.section-sub { color: rgba(244,238,226,0.78); font-size: var(--step-1); max-width: 48ch; line-height: 1.5; }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
.card {
  position: relative;
  background: rgba(244,238,226,0.045);
  border: 1px solid rgba(244,238,226,0.13);
  border-radius: var(--radius);
  padding: clamp(1.7rem, 1.2rem + 1.7vw, 2.7rem);
  overflow: hidden;
  transition: transform .38s cubic-bezier(.2,.7,.3,1), border-color .38s ease, background .38s ease, box-shadow .38s ease;
}
.card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 100% 0%, rgba(197,123,87,0.22), transparent 55%);
  opacity: 0; transition: opacity .4s ease;
}
/* accent bar that grows on hover */
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--clay), rgba(197,123,87,0));
  transition: width .5s cubic-bezier(.2,.7,.3,1);
}
.card:hover, .card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(197,123,87,0.5);
  background: rgba(244,238,226,0.08);
  box-shadow: 0 40px 60px -40px rgba(0,0,0,0.7);
}
.card:hover::before, .card:focus-within::before { opacity: 1; }
.card:hover::after, .card:focus-within::after { width: 100%; }
/* full-width featured session: copy left, dawn motif right (echoes the hero) */
.card--feature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
  gap: 0;
  padding: 0;
  background:
    radial-gradient(120% 120% at 100% 50%, rgba(197,123,87,0.14), transparent 58%),
    rgba(244,238,226,0.07);
  border-color: rgba(244,238,226,0.2);
}
.card__lead {
  display: flex; align-items: flex-start; gap: clamp(1.2rem, 2.5vw, 2rem);
  padding: clamp(1.8rem, 1.2rem + 1.8vw, 2.8rem);
}
.card__copy { display: flex; flex-direction: column; }
.card--feature .card__index {
  padding: 0; margin: 0; border: 0;
  font-size: clamp(2.4rem, 1.6rem + 2.4vw, 3.6rem);
}
.card__index {
  font-family: var(--serif); font-size: clamp(2rem, 1.4rem + 2vw, 3rem); color: var(--clay);
  display: block; line-height: 1; opacity: 0.9;
  padding-bottom: 1.1rem; margin-bottom: 1.4rem;
  border-bottom: 1px solid rgba(244,238,226,0.14);
}
.card__title { font-size: var(--step-2); margin-bottom: 0.8rem; }
.card__desc { color: rgba(244,238,226,0.8); max-width: 40ch; }
.card--feature .card__desc { font-size: var(--step-1); line-height: 1.55; }
.card__tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.6rem;
  font-size: var(--step--1); letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--clay);
}
.card__tag::before { content: ""; width: 16px; height: 1px; background: var(--clay); display: inline-block; }

/* right-hand dawn scene inside the feature card */
.card__scene {
  position: relative; overflow: hidden;
  border-radius: 0 var(--radius) var(--radius) 0;
  min-height: 220px;
  background: linear-gradient(160deg, #1b3c34 0%, #244a3f 45%, #12302a 100%);
  border-left: 1px solid rgba(244,238,226,0.1);
}
.card__scene-glow {
  position: absolute; left: 50%; bottom: -35%; transform: translateX(-50%);
  width: 150%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(246,192,120,0.28), rgba(246,192,120,0) 62%);
}
.card__scene-sun {
  position: absolute; left: 50%; bottom: 22%; transform: translateX(-50%);
  width: 38%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 46%, #fff3dd 0%, #ffdba7 26%, #f0b06e 55%, rgba(240,176,110,0) 74%);
  box-shadow: 0 0 40px 8px rgba(255,205,140,0.32);
  animation: breathe 9s ease-in-out infinite;
}
.card__scene-line {
  position: absolute; left: -10%; right: -10%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(15,36,30,0.6) 30%, rgba(15,36,30,0.7) 50%, rgba(15,36,30,0.6) 70%, transparent);
  filter: blur(1.5px);
}
.card__scene-line--1 { bottom: 32%; }
.card__scene-line--2 { bottom: 24%; height: 3px; opacity: 0.8; }
@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
  .card--feature { grid-template-columns: 1fr; }
  .card__scene { border-radius: 0 0 var(--radius) var(--radius); border-left: 0; border-top: 1px solid rgba(244,238,226,0.1); min-height: 150px; }
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach { background: var(--cream); }
.approach__grid {
  display: grid; grid-template-columns: 1.25fr 1fr;
  gap: var(--space-l);
  align-items: start;
}
.approach__title {
  font-size: var(--step-3); color: var(--green-800);
  margin-block: 0.7rem 1.2rem; max-width: 20ch;
}
.approach__text p { color: var(--ink-soft); max-width: 52ch; margin-bottom: 1rem; }
.approach__list { list-style: none; padding: 0; display: grid; gap: 0; }
.approach__list li {
  border-top: 1px solid rgba(35,39,31,0.16);
  padding-block: 1.4rem;
}
.approach__list li:last-child { border-bottom: 1px solid rgba(35,39,31,0.16); }
.approach__list span {
  display: block; font-family: var(--serif); font-size: var(--step-1);
  color: var(--green-800); margin-bottom: 0.3rem; font-weight: 600;
}
.approach__list p { color: var(--ink-soft); font-size: var(--step--1); max-width: 34ch; }
@media (max-width: 820px) { .approach__grid { grid-template-columns: 1fr; gap: var(--space-m); } }

/* ============================================================
   VISIT / CONTACT
   ============================================================ */
.visit { background: var(--green-900); color: var(--cream); }
.visit__grid {
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: var(--space-l); align-items: center;
}
.visit .kicker { color: var(--clay); }
.visit__title { font-size: var(--step-4); margin-block: 0.6rem 1rem; }
.visit__intro p { color: rgba(244,238,226,0.82); max-width: 42ch; font-size: var(--step-1); line-height: 1.5; }
.visit__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: var(--space-m); }
.visit__actions .btn:not(.btn--ghost) { --btn-bg: var(--clay); --btn-fg: #2a170e; }
.visit__actions .btn--ghost { --btn-fg: var(--cream); box-shadow: inset 0 0 0 1.5px rgba(244,238,226,0.3); }
.visit__actions .btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--clay); color: var(--clay); }
.visit__card {
  background: rgba(244,238,226,0.06);
  border: 1px solid rgba(244,238,226,0.14);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 1.2rem + 1.5vw, 2.4rem);
}
.info { display: grid; gap: 0; }
.info__row {
  display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 1rem;
  padding-block: 1.05rem; align-items: baseline;
  border-bottom: 1px solid rgba(244,238,226,0.12);
}
.info__row:last-child { border-bottom: 0; }
.info dt {
  font-size: var(--step--1); letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: rgba(244,238,226,0.55);
}
.info dd { font-size: var(--step-0); color: var(--cream); }
.info dd a { color: var(--clay); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .25s ease; word-break: break-word; }
.info dd a:hover, .info dd a:focus-visible { border-bottom-color: var(--clay); }
@media (max-width: 820px) { .visit__grid { grid-template-columns: 1fr; gap: var(--space-m); } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--green-900); color: rgba(244,238,226,0.8); padding-block: var(--space-m); border-top: 1px solid rgba(244,238,226,0.1); }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.brand-text--footer { font-size: 1.7rem; color: var(--cream); }
.footer-tag { font-size: var(--step--1); letter-spacing: 0.04em; }
.site-footer .link-arrow { color: var(--clay); }

.spec-footer {
  background: #101d1a; color: rgba(244,238,226,0.62);
  text-align: center; font-size: 0.8rem; line-height: 1.6;
  padding: 1.2rem 1.15rem;
}
.spec-footer a { color: var(--clay); }

/* ============================================================
   REVEAL / MOTION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1);
  transition-delay: calc(var(--d, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* no-JS + reduced-motion: everything fully visible, no animation */
.no-js .reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .strip__track, .arch__sun, .arch__rays, .arch__mist, .hero__chip, .hero__pin { animation: none; }
  .btn, .card, .nav a::after, .link-arrow::after { transition: none; }
}
