/* ==========================================================================
   Twelve Lotus — Mobile Massage Therapy
   Warm, serene spa-like light theme.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --bg:           #fff6f1;
  --bg-alt:       #fdf8f2;
  --card:         #ffffff;
  --card-hover:   #fffcf8;
  --text:         #3d352e;
  --text-dim:     #7a6f62;
  --text-faint:   #a89f94;
  --accent:       #c6af8d;
  --accent-2:     #a8916a;
  --accent-deep:  #8b7355;
  --border:       #e8ddc9;
  --border-warm:  #d4c4a8;
  --white:        #ffffff;

  --radius:       16px;
  --radius-sm:    10px;
  --maxw:         1140px;
  --gap:          1.5rem;

  --shadow:       0 8px 32px rgba(139, 115, 85, 0.10);
  --shadow-warm:  0 8px 40px rgba(198, 175, 141, 0.22);

  --font-head: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font:      'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --t-fast: 0.15s ease;
  --t:      0.28s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--accent-deep); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent-2); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.18;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
}
h1 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); font-weight: 400; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 400; }
h3 { font-size: 1.35rem; font-weight: 500; }
h4 { font-size: 1.1rem; }

p { color: var(--text-dim); }
ul { list-style: none; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--alt { background: var(--bg-alt); }

.section-head { max-width: 680px; margin: 0 auto 3.5rem; text-align: center; }
.section-head p { margin-top: 1rem; font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.text-center { text-align: center; }
.accent { color: var(--accent-2); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.94rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t), border-color var(--t), color var(--t);
  white-space: nowrap;
  letter-spacing: 0.025em;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent-deep) 100%);
  color: #ffffff;
  box-shadow: 0 6px 24px rgba(168, 145, 106, 0.38);
}
.btn--primary:hover { color: #ffffff; box-shadow: 0 10px 32px rgba(168, 145, 106, 0.52); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-warm);
}
.btn--ghost:hover { color: var(--accent-deep); border-color: var(--accent-2); background: rgba(198, 175, 141, 0.09); }

.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.875rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 246, 241, 0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--text);
  letter-spacing: 0.04em;
}
.brand:hover { color: var(--text); }
.brand svg { width: 34px; height: 34px; flex-shrink: 0; color: var(--accent-2); }
.brand span { color: var(--accent-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  color: var(--text-dim);
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 400;
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-links a:hover { color: var(--text); background: rgba(198, 175, 141, 0.13); }
.nav-links a.active { color: var(--accent-deep); }
.nav-links .btn { margin-left: 0.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  align-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform var(--t), opacity var(--t);
  border-radius: 2px;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 85% -5%, rgba(198, 175, 141, 0.22), transparent 58%),
    radial-gradient(55% 50% at -8% 45%, rgba(168, 145, 106, 0.13), transparent 55%),
    radial-gradient(45% 55% at 55% 105%, rgba(198, 175, 141, 0.11), transparent 60%);
  pointer-events: none;
}
/* Decorative concentric rings, top-right */
.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60vw;
  max-width: 720px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px solid rgba(198, 175, 141, 0.15);
  box-shadow:
    0 0 0 3.8vw  rgba(198, 175, 141, 0.07),
    0 0 0 7.6vw  rgba(198, 175, 141, 0.04),
    0 0 0 11.4vw rgba(198, 175, 141, 0.025);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-inner { max-width: 760px; }
.hero h1 { margin-bottom: 1.5rem; }
.hero h1 .grad {
  background: linear-gradient(130deg, var(--accent-2) 0%, var(--accent-deep) 65%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede {
  font-size: clamp(1.06rem, 2vw, 1.22rem);
  color: var(--text-dim);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.78;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border);
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-faint);
  font-size: 0.87rem;
  letter-spacing: 0.01em;
}
.hero-badge svg { width: 18px; height: 18px; color: var(--accent-2); flex-shrink: 0; }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: var(--gap); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform var(--t), border-color var(--t), box-shadow var(--t);
  position: relative;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-warm);
}
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.96rem; }

.card-link { display: block; color: inherit; }
.card-link:hover { color: inherit; }

.icon-chip {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.35rem;
  background: linear-gradient(135deg, rgba(198, 175, 141, 0.18), rgba(168, 145, 106, 0.09));
  border: 1px solid rgba(198, 175, 141, 0.38);
}
.icon-chip svg { width: 26px; height: 26px; color: var(--accent-2); }

.card-more {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.25rem;
  font-weight: 500;
  font-size: 0.87rem;
  color: var(--accent-2);
  letter-spacing: 0.04em;
}
.card-more svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.card:hover .card-more svg { transform: translateX(4px); }

/* ---------- Feature blocks ---------- */
.feature {
  display: flex;
  gap: 1.3rem;
  align-items: flex-start;
}
.feature .icon-chip { flex-shrink: 0; margin-bottom: 0; }
.feature h3 { margin-bottom: 0.5rem; }

/* ---------- About teaser ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-visual {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 35% 30%, rgba(198, 175, 141, 0.24), transparent 48%),
    radial-gradient(circle at 70% 70%, rgba(168, 145, 106, 0.16), transparent 45%),
    var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 8%;
  border-radius: 50% 40% 50% 40% / 40% 50% 40% 50%;
  border: 1px solid rgba(198, 175, 141, 0.28);
}
.about-visual::after {
  content: "";
  position: absolute;
  inset: 22%;
  border-radius: 50%;
  border: 1px dashed rgba(198, 175, 141, 0.22);
}
.about-visual svg { position: relative; z-index: 1; }

/* ---------- Process steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.step { position: relative; padding-top: 0.5rem; }
.step-num {
  font-family: var(--font-head);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  letter-spacing: -0.02em;
}
.step h3 { margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; }
.step::after {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 3rem;
  right: -0.75rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.step:last-child::after { display: none; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  border-radius: var(--radius);
  padding: clamp(3rem, 6vw, 5rem);
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(80% 120% at 50% -10%, rgba(198, 175, 141, 0.20), transparent 60%),
    var(--card);
  border: 1px solid var(--border-warm);
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(198, 175, 141, 0.10);
  pointer-events: none;
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(198, 175, 141, 0.07);
  pointer-events: none;
}
.cta-band h2 { margin-bottom: 1.1rem; }
.cta-band p { max-width: 540px; margin: 0 auto 2.25rem; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Testimonials ---------- */
.quote {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--accent);
  line-height: 0.55;
  height: 1.2rem;
  font-weight: 300;
}
.quote p {
  color: var(--text);
  font-size: 1.08rem;
  font-style: italic;
  margin: 1.35rem 0 1.1rem;
  font-family: var(--font-head);
  line-height: 1.65;
  font-weight: 400;
}
.quote-by { color: var(--text-faint); font-size: 0.84rem; letter-spacing: 0.04em; }
.placeholder-note {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.88rem;
  margin-top: 1.75rem;
  font-style: italic;
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(65% 80% at 50% 0%, rgba(198, 175, 141, 0.16), transparent 68%);
  pointer-events: none;
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -35%;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(198, 175, 141, 0.09);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 620px; margin: 1.1rem auto 0; font-size: 1.1rem; }

/* ---------- Service blocks ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-visual { order: 2; }
.service-info h2 { font-size: 2rem; margin-bottom: 0.4rem; }
.service-price {
  font-family: var(--font);
  color: var(--accent-2);
  font-size: 0.88rem;
  margin-bottom: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.service-tag {
  display: inline-block;
  background: rgba(198, 175, 141, 0.15);
  border: 1px solid rgba(198, 175, 141, 0.4);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.78rem;
  color: var(--accent-deep);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.service-includes { margin-top: 1.5rem; }
.service-includes h4 { font-family: var(--font); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 0.9rem; font-weight: 600; }
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.7rem;
  color: var(--text-dim);
  font-size: 0.96rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.3rem;
  width: 16px; height: 16px;
  background: rgba(198, 175, 141, 0.12);
  border: 1.5px solid rgba(198, 175, 141, 0.45);
  border-radius: 50%;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 5px; top: 0.45rem;
  width: 5px; height: 8px;
  border: solid var(--accent-2);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

/* Service visual panel */
.service-visual {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 28% 28%, rgba(198, 175, 141, 0.22), transparent 45%),
    radial-gradient(circle at 74% 68%, rgba(168, 145, 106, 0.16), transparent 45%),
    var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(198, 175, 141, 0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 50% 50%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000, transparent 70%);
}
.service-visual svg { position: relative; z-index: 1; filter: drop-shadow(0 4px 18px rgba(168, 145, 106, 0.28)); }

/* ---------- Pricing table ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow); }
table.pricing {
  width: 100%;
  border-collapse: collapse;
  min-width: 540px;
  background: var(--card);
}
table.pricing th, table.pricing td {
  padding: 1.1rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}
table.pricing thead th {
  font-family: var(--font);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--bg-alt);
  color: var(--text-faint);
}
table.pricing tbody td:first-child {
  color: var(--text);
  font-weight: 500;
  font-family: var(--font-head);
  font-size: 1.05rem;
}
table.pricing td { color: var(--text-dim); }
table.pricing tr:last-child td { border-bottom: none; }
table.pricing .price-cell { color: var(--accent-deep); font-weight: 600; font-family: var(--font); }
table.pricing .sig-row td { background: rgba(198, 175, 141, 0.06); }

/* ---------- Prose (about page) ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose p { font-size: 1.06rem; margin-bottom: 1.45rem; color: var(--text-dim); }
.prose h2 { margin: 3rem 0 1.1rem; }
.prose h3 { margin: 2.25rem 0 0.85rem; color: var(--accent-deep); font-size: 1.5rem; }

.pull-quote {
  border-left: 2.5px solid var(--accent-2);
  padding: 0.75rem 0 0.75rem 2rem;
  margin: 2.75rem 0;
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--text);
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
}

/* Meridian grid (12-column grid for the meridians) */
.meridian-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.75rem 0 2rem;
}
.meridian-tag {
  background: rgba(198, 175, 141, 0.10);
  border: 1px solid rgba(198, 175, 141, 0.30);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--text-dim);
  text-align: center;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.meridian-tag:hover { border-color: var(--accent-2); background: rgba(198, 175, 141, 0.16); }
.meridian-tag strong { display: block; color: var(--accent-deep); font-family: var(--font-head); font-size: 1rem; margin-bottom: 0.2rem; font-weight: 500; }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

details {}
summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1.18rem;
  color: var(--text);
  font-weight: 500;
  user-select: none;
  gap: 1.25rem;
  transition: color var(--t-fast);
}
summary::-webkit-details-marker { display: none; }
summary:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 2px; border-radius: 4px; }

details[open] > summary { color: var(--accent-deep); }

.faq-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t), border-color var(--t), transform var(--t);
  color: var(--accent-2);
}
details[open] .faq-icon {
  background: rgba(198, 175, 141, 0.16);
  border-color: var(--accent-2);
  transform: rotate(45deg);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-body {
  padding: 0 0 2rem;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.78;
  max-width: 680px;
}
.faq-body p { margin-bottom: 0.8rem; }
.faq-body p:last-child { margin-bottom: 0; }
.faq-body ul { margin-top: 0.5rem; }
.faq-body ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dim);
}
.faq-body ul li::before {
  content: "◦";
  position: absolute; left: 0.3rem;
  color: var(--accent-2);
  font-size: 1.3rem;
  line-height: 1;
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 4rem; align-items: start; }
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.form-group label .req { color: var(--accent-2); margin-left: 2px; }
.form-control {
  width: 100%;
  padding: 0.9rem 1.15rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.97rem;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control:focus {
  outline: none;
  border-color: var(--accent-2);
  box-shadow: 0 0 0 3px rgba(198, 175, 141, 0.20);
}
.form-control::placeholder { color: var(--text-faint); }
textarea.form-control { resize: vertical; min-height: 148px; }
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%237a6f62' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 18px;
  padding-right: 2.75rem;
  cursor: pointer;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.84rem; color: var(--text-faint); margin-top: 1.1rem; line-height: 1.6; }

.contact-aside .info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
}
.info-card h3 { font-size: 1.1rem; margin-bottom: 0.9rem; display: flex; align-items: center; gap: 0.6rem; }
.info-card h3 svg { width: 20px; height: 20px; color: var(--accent-2); flex-shrink: 0; }
.info-card p { font-size: 0.94rem; margin-bottom: 0; }
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--accent-deep);
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0.4rem;
}
.info-link:hover { color: var(--accent-2); }

.area-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.93rem;
  color: var(--text-dim);
}
.area-list li::before {
  content: "◦";
  position: absolute; left: 0.25rem;
  color: var(--accent-2);
  font-size: 1.2rem;
  line-height: 1;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 4.5rem 0 2.5rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .brand { margin-bottom: 1.1rem; }
.footer-brand p { font-size: 0.91rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-col a { display: block; color: var(--text-dim); font-size: 0.92rem; padding: 0.32rem 0; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-col span { display: block; font-size: 0.9rem; color: var(--text-faint); padding: 0.25rem 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-size: 0.84rem;
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.58s ease, transform 0.58s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .service-block { grid-template-columns: 1fr; gap: 2rem; }
  .service-block.reverse .service-visual { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-teaser { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual { aspect-ratio: 16 / 9; }
  .meridian-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 1.5rem 1.75rem;
    transform: translateY(-110%);
    transition: transform var(--t);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    z-index: 99;
    box-shadow: 0 8px 32px rgba(139, 115, 85, 0.12);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 1rem 0.5rem; border-bottom: 1px solid var(--border); font-size: 1.05rem; }
  .nav-links .btn { margin: 0.85rem 0 0; justify-content: center; }
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn, .cta-actions .btn { flex: 1 1 auto; justify-content: center; }
  .meridian-grid { grid-template-columns: 1fr; }
  .pull-quote { font-size: 1.15rem; padding-left: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
