/* =====================================================================
   Plinth Law — Property & Conveyancing, Hyderabad
   Design: "Solid & trustworthy" — warm stone + gold-ochre, masonry motifs.
   Type: Fraunces (sturdy display serif) + Archivo (grotesque sans).
   Hand-written; no framework.
   ===================================================================== */

/* ---------- Reset & base ------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

:root {
  /* Ink */
  --ink:        #23211A;
  --ink-2:      #3a372c;
  --muted:      #6d6656;
  --muted-2:    #8c8473;

  /* Warm stone paper */
  --paper:      #f4eee2;
  --paper-2:    #ece3d3;
  --card:       #fcf9f2;
  --card-2:     #f7f1e5;

  /* Gold-ochre */
  --gold:       #c09a4a;
  --gold-deep:  #a2761f;
  --gold-soft:  #e2c886;
  --gold-wash:  rgba(192,154,74,.13);

  /* Lines / shadow */
  --line:        rgba(35,33,26,.13);
  --line-strong: rgba(35,33,26,.26);
  --shadow-sm:  0 1px 2px rgba(35,33,26,.06), 0 2px 8px rgba(35,33,26,.05);
  --shadow-md:  0 8px 28px -12px rgba(35,33,26,.28), 0 2px 8px rgba(35,33,26,.06);
  --shadow-lg:  0 26px 60px -24px rgba(35,33,26,.42);

  --radius:     5px;
  --radius-lg:  9px;
  --maxw:       1180px;
  --gutter:     clamp(1.15rem, 4.5vw, 3rem);

  --serif: "Fraunces", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --sans:  "Archivo", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.62;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* faint warm paper grain */
  background-image:
    radial-gradient(1200px 600px at 82% -8%, rgba(192,154,74,.10), transparent 60%),
    radial-gradient(900px 520px at -10% 4%, rgba(35,33,26,.05), transparent 55%);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ---------- Layout helpers ----------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.6rem, 8vw, 7rem); position: relative; }
.section--tint { background: var(--paper-2); }
.section--ink  { background: var(--ink); color: #efe7d6; }

/* ---------- Typography --------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 550; line-height: 1.08; letter-spacing: -.01em; color: var(--ink); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.15; }
p  { color: var(--ink-2); }
.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--ink-2); line-height: 1.55; }

/* Eyebrow / kicker with gold "keystone" */
.kicker {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.kicker::before {
  content: "";
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px var(--gold-wash);
  flex: none;
}
.kicker--light { color: var(--gold-soft); }

.section-head { max-width: 60ch; }
.section-head .kicker { margin-bottom: 1rem; }
.section-head p { margin-top: .9rem; }

/* Section index numeral, carved look */
.sec-no {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 500;
  color: transparent;
  -webkit-text-stroke: 1.3px var(--gold);
  line-height: 1;
  opacity: .75;
}

/* ---------- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .01em;
  padding: .82rem 1.35rem;
  border-radius: 3px;
  border: 1px solid transparent;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease, color .18s ease;
  will-change: transform;
}
.btn svg { width: 1.05em; height: 1.05em; flex: none; }
.btn--primary { background: var(--ink); color: #f6efdf; box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: #171610; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--gold { background: var(--gold); color: #241f10; box-shadow: var(--shadow-sm); }
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { border-color: var(--ink); background: rgba(35,33,26,.04); transform: translateY(-2px); }
.btn--onink { background: var(--gold); color: #241f10; }
.btn--onink:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn--block { width: 100%; justify-content: center; }

.textlink {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 1px;
  transition: color .15s ease, border-color .15s ease, gap .15s ease;
}
.textlink:hover { color: var(--ink); border-color: var(--ink); gap: .7rem; }

/* ---------- Accessibility ------------------------------------------ */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #f6efdf;
  padding: .7rem 1.1rem; border-radius: 4px; z-index: 200;
  transition: top .16s ease; font-weight: 600; font-size: .9rem;
}
.skip-link:focus { top: 12px; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 2px;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------- Header / nav ------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,238,226,.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(35,33,26,.5);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; height: 74px;
}
.brand { display: inline-flex; align-items: center; gap: .68rem; }
.brand-mark {
  width: 34px; height: 34px; flex: none;
  display: grid; place-items: center;
}
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.32rem;
  letter-spacing: .01em; line-height: 1; color: var(--ink);
}
.brand-name b { color: var(--gold-deep); font-weight: 600; }
.brand-sub {
  display: block; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--muted);
  margin-top: 3px; font-weight: 600;
}

.nav-links { display: flex; align-items: center; gap: 1.9rem; list-style: none; }
.nav-links a {
  font-size: .93rem; font-weight: 500; color: var(--ink-2);
  position: relative; padding-block: .2rem;
  transition: color .15s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--ink); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }

.nav-cta { display: inline-flex; align-items: center; gap: .8rem; }
.nav-tel { font-weight: 600; font-size: .92rem; color: var(--ink); display: inline-flex; align-items: center; gap: .4rem; }
.nav-tel svg { width: 1rem; height: 1rem; color: var(--gold-deep); }

.nav-toggle {
  display: none; width: 46px; height: 42px;
  background: transparent; border: 1px solid var(--line-strong);
  border-radius: 4px; padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--ink);
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: translateY(-2px) rotate(-45deg); }

/* ---------- Hero ---------------------------------------------------- */
.hero { position: relative; padding-top: clamp(2.4rem, 5vw, 4rem); padding-bottom: clamp(3rem, 7vw, 6rem); overflow: hidden; }
.hero::before { /* faint masonry course-lines */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, transparent 0 63px, rgba(35,33,26,.045) 63px 64px);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.04fr .96fr;
  gap: clamp(2rem, 5vw, 4.4rem); align-items: center;
}
.hero-copy { max-width: 40rem; }
.hero-loc {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: var(--muted); font-weight: 500; margin-left: .9rem;
}
.hero-eyebrow { display: flex; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem; }

.hero h1 {
  font-size: clamp(2.55rem, 6.2vw, 4.5rem);
  line-height: 1.015;
  letter-spacing: -.02em;
  font-weight: 560;
}
.hero h1 .ln { display: block; }
.hero h1 em {
  font-style: italic; color: var(--gold-deep);
  position: relative; white-space: nowrap;
}
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: .08em; height: .09em;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 2px; opacity: .55;
}
.hero .lead { margin-top: 1.5rem; max-width: 34rem; }

.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: .9rem 1.1rem; margin-top: 2rem; }

.hero-stats {
  display: flex; flex-wrap: wrap; gap: 0; margin-top: 2.6rem;
  border-top: 1px solid var(--line);
}
.hero-stat { padding: 1.1rem 1.5rem 0 0; margin-right: 1.5rem; border-right: 1px solid var(--line); }
.hero-stat:last-child { border-right: 0; margin-right: 0; padding-right: 0; }
.hero-stat b {
  display: block; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 560; color: var(--ink); line-height: 1;
}
.hero-stat span { font-size: .8rem; color: var(--muted); letter-spacing: .02em; }

/* Hero figure: image resting on an offset "plinth" block + gold seal */
.hero-figure { position: relative; }
.hero-figure::before { /* the plinth the image sits on */
  content: ""; position: absolute; z-index: 0;
  left: -18px; bottom: -18px; width: 62%; height: 74%;
  background: var(--gold-wash);
  border: 1px solid rgba(192,154,74,.4);
  border-radius: var(--radius-lg);
}
.hero-frame {
  position: relative; z-index: 1;
  padding: 10px; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-frame img {
  border-radius: 6px; width: 100%; aspect-ratio: 5 / 4; object-fit: cover;
}
.hero-caption {
  position: absolute; z-index: 2; left: 22px; bottom: -20px;
  background: var(--ink); color: #efe7d6;
  font-size: .78rem; font-weight: 500;
  padding: .6rem .9rem; border-radius: 5px;
  display: inline-flex; align-items: center; gap: .5rem;
  box-shadow: var(--shadow-md); max-width: 78%;
}
.hero-caption svg { width: 1rem; height: 1rem; color: var(--gold-soft); flex: none; }
.hero-seal {
  position: absolute; z-index: 3; top: -26px; right: -18px;
  width: 104px; height: 104px;
}
.hero-seal .seal-spin { transform-origin: 60px 60px; animation: sealspin 40s linear infinite; }
@keyframes sealspin { to { transform: rotate(360deg); } }

/* ---------- Trust bar ---------------------------------------------- */
.trustbar {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--card-2);
}
.trustbar .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: .8rem 2.4rem; padding-block: 1rem; }
.trustbar p { font-size: .82rem; color: var(--muted); font-weight: 500; margin: 0; }
.trustbar .tb-item { display: inline-flex; align-items: center; gap: .55rem; font-size: .86rem; color: var(--ink-2); font-weight: 500; }
.trustbar .tb-item svg { width: 1.1rem; height: 1.1rem; color: var(--gold-deep); flex: none; }

/* ---------- Services (buying / selling / leasing) ------------------ */
.svc-top { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1.4rem; margin-bottom: 2.6rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }
.svc-card {
  position: relative; background: var(--card);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  overflow: hidden;
}
.svc-card::before { /* gold course-line at top */
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .3s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-ico {
  width: 46px; height: 46px; border-radius: 6px;
  display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--gold-wash); border: 1px solid rgba(192,154,74,.35);
  color: var(--gold-deep);
}
.svc-ico svg { width: 24px; height: 24px; }
.svc-card h3 { margin-bottom: .5rem; }
.svc-card p { font-size: .95rem; color: var(--muted); }
.svc-list { list-style: none; margin-top: 1rem; display: grid; gap: .5rem; }
.svc-list li { position: relative; padding-left: 1.35rem; font-size: .9rem; color: var(--ink-2); }
.svc-list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg);
}

/* ---------- Due diligence (split image + checklist) ---------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split--reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img {
  width: 100%; border-radius: var(--radius-lg); aspect-ratio: 4 / 3; object-fit: cover;
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.split-media .tag {
  position: absolute; bottom: -16px; left: -12px;
  background: var(--gold); color: #241f10; font-weight: 600; font-size: .78rem;
  padding: .55rem .85rem; border-radius: 5px; box-shadow: var(--shadow-md);
}
.split-media--framed { padding: 12px; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.split-media--framed img { box-shadow: none; border-radius: 6px; }

.check-list { list-style: none; margin-top: 1.6rem; display: grid; gap: .95rem; }
.check-list li { display: grid; grid-template-columns: auto 1fr; gap: .85rem; align-items: start; }
.check-ico {
  width: 26px; height: 26px; border-radius: 50%; flex: none; margin-top: 2px;
  background: var(--ink); color: var(--gold-soft);
  display: grid; place-items: center;
}
.check-ico svg { width: 14px; height: 14px; }
.check-list b { font-weight: 600; color: var(--ink); display: block; font-size: 1rem; }
.check-list span { font-size: .92rem; color: var(--muted); }

/* ---------- Process (stacked-stone timeline) ----------------------- */
.timeline { position: relative; margin-top: 3rem; display: grid; gap: 1rem; }
.timeline::before { /* the column being built */
  content: ""; position: absolute; left: 27px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--gold), var(--gold-soft) 60%, transparent);
}
.tl-step {
  position: relative; display: grid; grid-template-columns: 56px 1fr; gap: 1.3rem;
  align-items: start;
}
.tl-num {
  position: relative; z-index: 1;
  width: 56px; height: 56px; flex: none; border-radius: 8px;
  background: var(--ink); color: var(--gold-soft);
  font-family: var(--serif); font-size: 1.35rem; font-weight: 560;
  display: grid; place-items: center;
  box-shadow: 0 0 0 6px var(--paper-2), var(--shadow-sm);
}
.section:not(.section--tint) .tl-num { box-shadow: 0 0 0 6px var(--paper), var(--shadow-sm); }
.tl-body {
  background: var(--card); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: var(--radius); padding: 1.15rem 1.35rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tl-step:hover .tl-body { transform: translateX(4px); box-shadow: var(--shadow-md); }
.tl-body h3 { font-size: 1.16rem; margin-bottom: .3rem; }
.tl-body .tl-meta { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: .5rem; display: block; }
.tl-body p { font-size: .93rem; color: var(--muted); margin: 0; }

/* ---------- About / practice --------------------------------------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.people { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.8rem; }
.person {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.15rem 1.2rem; box-shadow: var(--shadow-sm);
}
.person .p-init {
  width: 40px; height: 40px; border-radius: 6px; display: grid; place-items: center;
  background: var(--gold-wash); border: 1px solid rgba(192,154,74,.4);
  color: var(--gold-deep); font-family: var(--serif); font-weight: 600; margin-bottom: .7rem;
}
.person b { font-size: 1.02rem; color: var(--ink); }
.person span { display: block; font-size: .82rem; color: var(--muted); margin-top: .1rem; }
.person p { font-size: .86rem; color: var(--muted); margin-top: .55rem; }

.creds { list-style: none; margin-top: 1.6rem; display: grid; gap: .7rem; }
.creds li { display: flex; gap: .7rem; align-items: baseline; font-size: .95rem; color: var(--ink-2); }
.creds li::before { content: "—"; color: var(--gold-deep); font-weight: 700; }

/* ---------- FAQ ----------------------------------------------------- */
.faq { max-width: 62rem; margin-top: 2.4rem; display: grid; gap: .8rem; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0 1.3rem; box-shadow: var(--shadow-sm);
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 2.2rem 1.15rem 0; position: relative;
  font-family: var(--serif); font-size: 1.1rem; font-weight: 550; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  font-family: var(--sans); font-size: 1.5rem; font-weight: 400; color: var(--gold-deep);
  transition: transform .22s ease;
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { padding: 0 0 1.25rem; font-size: .96rem; color: var(--muted); margin: 0; }

/* ---------- CTA band ----------------------------------------------- */
.cta-band { position: relative; overflow: hidden; color: #f4ecdb; isolation: isolate; }
.cta-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.cta-band::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(105deg, rgba(24,22,15,.94) 0%, rgba(35,32,22,.82) 45%, rgba(35,32,22,.55) 100%);
}
.cta-inner { max-width: 44rem; }
.cta-band h2 { color: #fbf5e8; }
.cta-band .lead { color: #e6dcc7; margin-top: 1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .9rem 1.1rem; margin-top: 2rem; align-items: center; }
.cta-phone { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; color: #f4ecdb; }
.cta-phone svg { width: 1.05rem; height: 1.05rem; color: var(--gold-soft); }

/* ---------- Ethos band (stone motif) ------------------------------- */
.ethos { text-align: center; padding-block: clamp(3.2rem, 7vw, 5.4rem); }
.ethos .cta-inner { max-width: 47rem; margin-inline: auto; }
.ethos .kicker { justify-content: center; }
.ethos h2 { color: #fbf5e8; font-size: clamp(1.7rem, 3.6vw, 2.6rem); margin-top: 1rem; }
.ethos h2 em { font-style: italic; color: var(--gold-soft); }
.ethos p { color: #e2d8c3; margin-top: 1.1rem; font-size: clamp(1rem, 1.4vw, 1.15rem); }
.ethos::after {
  background: linear-gradient(180deg, rgba(22,20,14,.9) 0%, rgba(30,27,18,.8) 50%, rgba(22,20,14,.92) 100%);
}

/* ---------- Footer -------------------------------------------------- */
.site-footer { background: var(--ink); color: #cdc6b6; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.2rem; }
.footer-brand .brand-name { color: #f4ecdb; }
.footer-brand p { color: #ada693; font-size: .92rem; margin-top: 1rem; max-width: 26ch; }
.footer-tag { font-family: var(--serif); font-style: italic; color: var(--gold-soft); margin-top: 1.1rem; font-size: 1.02rem; }
.footer-col h4 { color: #f4ecdb; font-family: var(--sans); font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: grid; gap: .6rem; }
.footer-col a, .footer-col li { color: #cdc6b6; font-size: .92rem; transition: color .15s ease; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col address { font-style: normal; color: #ada693; font-size: .92rem; line-height: 1.7; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 6px; display: grid; place-items: center;
  border: 1px solid rgba(244,236,219,.18); color: #cdc6b6; transition: all .17s ease;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold-soft); transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bar {
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid rgba(244,236,219,.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem;
  font-size: .84rem; color: #9c9583;
}
.footer-bar a { color: #cdc6b6; border-bottom: 1px solid rgba(192,154,74,.5); }
.footer-bar a:hover { color: var(--gold-soft); }

/* ---------- Contact page ------------------------------------------- */
.contact-hero { padding-block: clamp(2.6rem, 5vw, 4rem) clamp(1rem, 2vw, 1.5rem); }
.contact-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 3.6rem); align-items: start; }
.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-md);
}
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-size: .86rem; font-weight: 600; color: var(--ink); margin-bottom: .4rem; }
.field label .req { color: var(--gold-deep); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; color: var(--ink);
  background: var(--paper); border: 1px solid var(--line-strong); border-radius: 5px;
  padding: .8rem .9rem; transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); background: var(--card);
  box-shadow: 0 0 0 3px var(--gold-wash);
}
.field select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a2761f' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .9rem center; padding-right: 2.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 1rem; }
.form-hint { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

.contact-aside { display: grid; gap: 1rem; }
.info-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.5rem; box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 1.12rem; margin-bottom: .9rem; }
.info-line { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: .9rem; font-size: .93rem; color: var(--ink-2); }
.info-line:last-child { margin-bottom: 0; }
.info-line .ic {
  width: 34px; height: 34px; border-radius: 7px; flex: none;
  background: var(--gold-wash); border: 1px solid rgba(192,154,74,.35);
  color: var(--gold-deep); display: grid; place-items: center;
}
.info-line .ic svg { width: 17px; height: 17px; }
.info-line b { display: block; color: var(--ink); font-size: .82rem; letter-spacing: .04em; }
.info-line a { color: var(--ink-2); }
.info-line a:hover { color: var(--gold-deep); }
.wa-card { background: var(--ink); color: #e9e1cf; }
.wa-card h3 { color: #f4ecdb; }
.wa-card p { color: #b7af9c; font-size: .9rem; margin-bottom: 1.1rem; }
.hours-row { display: flex; justify-content: space-between; font-size: .9rem; padding: .4rem 0; border-bottom: 1px dashed var(--line); }
.hours-row:last-child { border-bottom: 0; }
.hours-row span:last-child { color: var(--muted); }

/* ---------- Thank-you page ----------------------------------------- */
.ty-wrap { min-height: 72vh; display: grid; place-items: center; text-align: center; padding-block: 4rem; }
.ty-card { max-width: 42rem; }
.ty-seal { margin: 0 auto 1.8rem; width: 96px; height: 96px; }
.ty-card h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); }
.ty-card .lead { margin: 1.2rem auto 0; max-width: 40ch; }
.ty-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; margin-top: 2rem; }
.ty-next { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid var(--line); font-size: .92rem; color: var(--muted); }

/* ---------- Reveal animation (only hides when JS is active) -------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.js .reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-seal .seal-spin { animation: none !important; }
  .btn:hover, .svc-card:hover, .footer-social a:hover, .tl-step:hover .tl-body { transform: none !important; }
}

/* ---------- Responsive --------------------------------------------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-figure { max-width: 30rem; margin-inline: auto; width: 100%; }
  .split, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split-media { order: 0; }
  .svc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 820px) {
  .nav-links, .nav .nav-tel { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.is-open .nav-links {
    display: flex; position: absolute; left: 0; right: 0; top: 74px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: .6rem var(--gutter) 1.4rem; box-shadow: var(--shadow-lg);
  }
  .nav.is-open .nav-links li { border-bottom: 1px solid var(--line); }
  .nav.is-open .nav-links a { display: block; padding: 1rem 0; font-size: 1.05rem; }
  .nav.is-open .nav-links a::after { display: none; }
}

@media (max-width: 560px) {
  .svc-top { align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stat { padding-top: .9rem; }
  .hero-seal { width: 84px; height: 84px; top: -18px; right: -6px; }
}

@media (max-width: 400px) {
  :root { --gutter: 1.1rem; }
  .hero-stats { gap: .4rem; }
  .hero-stat { border-right: 0; margin-right: 1.2rem; }
}
