/* ============================================================
   CIA Concepts — Consulting in Aesthetics
   Shared stylesheet for all pages
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --teal:        #2C8A7E;   /* primary */
  --teal-deep:   #1F6B61;   /* deep teal */
  --teal-soft:   #E6F1EE;   /* tinted panels */
  --teal-mist:   #F2F8F6;
  --gold:        #C8A456;   /* accent — hairlines & labels only */
  --gold-soft:   #EFE4CB;
  --ink:         #16384A;   /* navy ink text */
  --ink-soft:    #43596A;   /* muted body */
  --ink-faint:   #7A8B96;
  --cream:       #FBF9F4;   /* warm off-white */
  --white:       #FFFFFF;
  --line:        #E7E2D6;   /* soft warm divider */
  --shadow-sm:   0 2px 10px rgba(22, 56, 74, 0.05);
  --shadow-md:   0 14px 40px rgba(22, 56, 74, 0.08);
  --shadow-lg:   0 30px 70px rgba(22, 56, 74, 0.12);
  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --wrap: 1160px;
  --radius: 4px;
  --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
}

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

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

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a { color: var(--teal-deep); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--teal); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

::selection { background: var(--teal); color: #fff; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap-narrow { max-width: 820px; }

section { position: relative; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-mist  { background: var(--teal-mist); }

/* ---------- Eyebrow / small-caps gold label ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }

/* ---------- Headings scale ---------- */
.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.h-xl { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }
.h-lg { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.h-md { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  line-height: 1.65;
  font-weight: 400;
}
.muted { color: var(--ink-soft); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  line-height: 1;
}
.btn-primary { background: var(--teal-deep); color: #fff; }
.btn-primary:hover { background: var(--teal); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-deep); background: var(--white); }
.btn-light { background: rgba(255,255,255,0.12); color:#fff; border-color: rgba(255,255,255,0.4); }
.btn-light:hover { background:#fff; color: var(--teal-deep); }
.btn .arw { transition: transform 0.3s var(--ease); }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- Header / nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius);
  position: relative;
  transition: color 0.25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--teal-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--teal-deep); }
.nav-links .nav-cta {
  margin-left: 10px;
  background: var(--teal-deep);
  color: #fff !important;
  padding: 11px 22px;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--teal); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 90% at 82% 12%, rgba(44,138,126,0.08), transparent 60%),
    linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: 80px 0;
}
.hero-copy .display { margin-bottom: 26px; }
.hero-copy .lead { margin-bottom: 38px; max-width: 32ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-ring {
  width: min(100%, 460px);
  filter: drop-shadow(0 30px 60px rgba(31,107,97,0.18));
  animation: floaty 9s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-meta div span {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--teal-deep);
  line-height: 1;
}
.hero-meta div small {
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* generic page hero (interior pages) */
.page-hero {
  background:
    radial-gradient(ellipse 60% 80% at 88% 0%, rgba(44,138,126,0.08), transparent 62%),
    linear-gradient(180deg, var(--cream), var(--white));
  padding: 92px 0 76px;
  border-bottom: 1px solid var(--line);
}
.page-hero .lead { max-width: 60ch; margin-top: 18px; }
.crumb { font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 20px; }
.crumb a { color: var(--ink-faint); }
.crumb a:hover { color: var(--teal); }

/* ---------- Section head ---------- */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; }
.section-head p.lead { margin-top: 18px; }

/* ---------- Card grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 38px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .card-num {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 16px;
}
.card .card-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal-soft);
  color: var(--teal-deep);
  margin-bottom: 22px;
}
.card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.card p { color: var(--ink-soft); font-size: 15.5px; }

/* ---------- Difference band ---------- */
.band {
  background:
    radial-gradient(ellipse 50% 120% at 100% 50%, rgba(255,255,255,0.06), transparent 60%),
    linear-gradient(135deg, var(--teal-deep) 0%, #17544c 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.band .eyebrow { color: var(--gold-soft); }
.band .eyebrow::before, .band .eyebrow::after { background: var(--gold); }
.band h2 { color: #fff; }
.band .diff-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 54px; }
.band .diff-item { position: relative; padding-top: 28px; }
.band .diff-item::before {
  content: "";
  position: absolute; top: 0; left: 0;
  width: 44px; height: 2px;
  background: var(--gold);
}
.band .diff-item h3 { color: #fff; font-size: 1.45rem; margin-bottom: 12px; }
.band .diff-item p { color: rgba(255,255,255,0.8); font-size: 15.5px; }
.band-ring {
  position: absolute;
  right: -140px; top: 50%;
  transform: translateY(-50%);
  width: 520px;
  opacity: 0.10;
  pointer-events: none;
}

/* ---------- Process strip ---------- */
.process { counter-reset: step; }
.process-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 56px; }
.process-step {
  position: relative;
  padding: 0 22px;
  border-left: 1px solid var(--line);
}
.process-step:first-child { padding-left: 0; border-left: none; }
.process-step .step-no {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}
.process-step h4 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Portfolio teaser / feature split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--white);
}
.split-visual {
  position: relative;
  min-height: 440px;
  background: linear-gradient(150deg, #1F6B61 0%, #2C8A7E 55%, #3fa295 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 40px;
  color: #fff;
}
.split-visual .tag {
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-soft);
  z-index: 2; position: relative;
}
.split-visual .glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.22), transparent 45%),
    radial-gradient(circle at 75% 80%, rgba(200,164,86,0.28), transparent 50%);
}
.split-visual .dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.5;
}
.split-copy { padding: 56px 48px; display: flex; flex-direction: column; justify-content: center; }
.split-copy h3 { font-size: 2.1rem; margin-bottom: 8px; }
.split-copy .loc { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 16px; }
.zone-list { list-style: none; margin: 8px 0 30px; }
.zone-list li {
  padding: 12px 0 12px 26px;
  border-top: 1px solid var(--line);
  position: relative;
  font-size: 15px;
  color: var(--ink);
}
.zone-list li:last-child { border-bottom: 1px solid var(--line); }
.zone-list li::before {
  content: "";
  position: absolute; left: 0; top: 21px;
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(ellipse 60% 140% at 15% 30%, rgba(44,138,126,0.10), transparent 60%),
    var(--cream);
  text-align: center;
  border-top: 1px solid var(--line);
}
.cta-band h2 { margin-bottom: 18px; }
.cta-band .lead { max-width: 54ch; margin: 0 auto 34px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Intro statement ---------- */
.statement {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  color: var(--ink);
  font-weight: 500;
  max-width: 24ch;
}
.statement .accent { color: var(--teal-deep); font-style: italic; }
.statement-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }

/* ---------- Services detailed rows ---------- */
.svc-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.2fr;
  gap: 40px;
  padding: 54px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}
.svc-row:last-child { border-bottom: 1px solid var(--line); }
.svc-row .svc-no {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
}
.svc-row .svc-title h3 { font-size: 1.9rem; margin-bottom: 14px; }
.svc-row .svc-title .chip {
  display: inline-block;
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-deep);
  background: var(--teal-soft);
  padding: 5px 12px;
  border-radius: 30px;
}
.svc-row .svc-body p { color: var(--ink-soft); margin-bottom: 16px; }
.svc-feats { list-style: none; margin-top: 18px; }
.svc-feats li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15.5px;
  color: var(--ink);
}
.svc-feats li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  background:
    radial-gradient(circle, var(--gold) 0 3px, transparent 3px);
}

/* ---------- Spec table (portfolio) ---------- */
.spec-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.spec-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.spec-visual {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end; padding: 24px;
}
.spec-visual.v-teal { background: linear-gradient(145deg, #1F6B61, #2C8A7E); }
.spec-visual.v-deep { background: linear-gradient(145deg, #16384A, #1F6B61); }
.spec-visual.v-gold { background: linear-gradient(145deg, #2C8A7E, #6bab9e); }
.spec-visual .glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 70% 20%, rgba(255,255,255,0.25), transparent 45%),
             radial-gradient(circle at 20% 90%, rgba(200,164,86,0.3), transparent 50%);
}
.spec-visual .zone-name {
  position: relative; z-index: 2;
  color: #fff;
  font-family: var(--serif);
  font-size: 1.4rem;
}
.spec-body { padding: 26px 28px 30px; }
.spec-body h4 { font-size: 1.3rem; margin-bottom: 6px; }
.spec-body .kicker { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.spec-body p { font-size: 15px; color: var(--ink-soft); margin-bottom: 18px; }
.spec-list { list-style: none; }
.spec-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
}
.spec-list li .k { color: var(--ink-faint); letter-spacing: 0.04em; }
.spec-list li .v { color: var(--ink); font-weight: 500; text-align: right; }

/* ---------- About ---------- */
.about-portrait {
  background: linear-gradient(160deg, var(--teal-deep), var(--teal));
  border-radius: 10px;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.about-portrait .glow {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 60% 20%, rgba(255,255,255,0.2), transparent 50%),
             radial-gradient(circle at 20% 100%, rgba(200,164,86,0.35), transparent 55%);
}
.about-portrait .initials {
  position: absolute;
  top: 44px; left: 44px;
  font-family: var(--serif);
  font-size: 6rem;
  color: rgba(255,255,255,0.16);
  line-height: 1;
}
.about-portrait .name-card {
  position: relative; z-index: 2;
  color: #fff;
}
.about-portrait .name-card .role { font-size: 12.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-soft); }
.about-portrait .name-card h3 { color: #fff; font-size: 2rem; margin-top: 6px; }

.value-list { list-style: none; margin-top: 10px; }
.value-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
}
.value-list li:last-child { border-bottom: 1px solid var(--line); }
.value-list .n { font-family: var(--serif); color: var(--gold); font-size: 1.3rem; }
.value-list h4 { font-size: 1.25rem; margin-bottom: 6px; }
.value-list p { color: var(--ink-soft); font-size: 15px; }

.prose p { margin-bottom: 20px; color: var(--ink-soft); }
.prose p.lead-in::first-letter {
  font-family: var(--serif);
  font-size: 3.4rem;
  float: left;
  line-height: 0.82;
  padding: 6px 12px 0 0;
  color: var(--teal-deep);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: start; }
.contact-info .info-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  align-items: flex-start;
}
.contact-info .info-item:last-child { border-bottom: 1px solid var(--line); }
.contact-info .info-icon {
  width: 46px; height: 46px; flex: none;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal-soft);
  color: var(--teal-deep);
}
.contact-info .info-item small { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint); display: block; margin-bottom: 4px; }
.contact-info .info-item a, .contact-info .info-item span { font-size: 17px; color: var(--ink); font-weight: 500; }
.contact-info .info-item a:hover { color: var(--teal); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 44px;
  box-shadow: var(--shadow-md);
}
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-bottom: 8px;
}
.field .req { color: var(--gold); }
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(44,138,126,0.12);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.form-note { font-size: 13.5px; color: var(--ink-faint); margin-top: 6px; }
.form-msg {
  display: none;
  background: var(--teal-soft);
  border: 1px solid var(--teal);
  color: var(--teal-deep);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 24px;
  font-size: 15px;
}
.form-msg.show { display: block; }
.form-msg strong { color: var(--teal-deep); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.72);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand img { height: 46px; margin-bottom: 20px; filter: brightness(0) invert(1); opacity: 0.95; }
.footer-brand p { font-size: 14.5px; color: rgba(255,255,255,0.6); max-width: 34ch; }
.footer-brand .tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,0.72); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom .fb-links { display: flex; gap: 22px; }
.footer-bottom .fb-links a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom .fb-links a:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .band .diff-grid { grid-template-columns: 1fr; gap: 28px; }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 34px 24px; }
  .process-step { border-left: none; padding: 0; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 82px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px 20px 24px;
    transform: translateY(-140%);
    transition: transform 0.4s var(--ease);
    max-height: calc(100vh - 82px);
    overflow-y: auto;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 15px 8px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta { margin: 16px 0 0; text-align: center; justify-content: center; border-radius: var(--radius); }
  .nav-links .nav-cta { border-bottom: none; }

  .hero-inner { grid-template-columns: 1fr; gap: 40px; min-height: auto; padding: 60px 0 70px; text-align: left; }
  .hero-visual { order: -1; }
  .hero-ring { width: min(70%, 300px); }
  .statement-grid { grid-template-columns: 1fr; gap: 32px; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split-visual { min-height: 260px; }
  .svc-row { grid-template-columns: 1fr; gap: 18px; padding: 40px 0; }
  .svc-row .svc-no { font-size: 1.8rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { gap: 40px !important; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .section { padding: 68px 0; }
  .about-portrait { min-height: 380px; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-4 { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: 1fr; }
  .form-card { padding: 30px 22px; }
  .hero-meta { gap: 26px; }
  .wrap { padding-inline: 20px; }
  .split-copy { padding: 38px 26px; }
}
