/* =========================================================================
   OLD SOUTH CONSTRUCTION — Design System
   Remodel · Restore · Reimagine
   Palette: warm cream + heritage charcoal + brass accent
   Type: Fraunces (display serif) / Inter (UI + body)
   ========================================================================= */

:root {
  /* Surfaces */
  --cream:    #F6F2EA;
  --cream-2:  #EDE6D8;
  --paper:    #FBFAF5;
  --ink:      #1A1916;
  --charcoal: #21201C;
  --graphite: #2B2A26;

  /* Text */
  --text:     #221F1A;
  --stone:    #6A655B;
  --stone-2:  #8B8579;
  --cream-tx: #EDE7DA;   /* text on dark */
  --cream-dim:#B7AF9F;   /* muted text on dark */

  /* Accent — brass */
  --brass:    #AE8746;
  --brass-2:  #C7A867;   /* lighter, for dark backgrounds */
  --brass-dk: #8A6A33;

  /* Lines */
  --line:     rgba(26,25,22,.12);
  --line-2:   rgba(246,242,234,.14);

  --shadow-sm: 0 1px 2px rgba(26,25,22,.05), 0 4px 14px rgba(26,25,22,.06);
  --shadow-md: 0 8px 24px rgba(26,25,22,.10), 0 2px 6px rgba(26,25,22,.06);
  --shadow-lg: 0 30px 60px -24px rgba(26,25,22,.30);

  --r-sm: 4px;
  --r:    8px;
  --r-lg: 16px;

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

/* ------------------------------- Reset --------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 2px solid var(--brass); outline-offset: 3px; border-radius: 2px; }

/* ----------------------------- Typography ------------------------------ */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.012em;
  color: var(--ink);
}
.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
}
h2 { font-size: clamp(2rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { color: var(--stone); }
strong { color: var(--text); font-weight: 600; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--brass-dk);
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  opacity: .8;
}
.eyebrow--center::after {
  content: "";
  width: 26px; height: 1px;
  background: var(--brass);
  opacity: .8;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--brass-2); }
.on-dark .eyebrow::before, .on-dark .eyebrow--center::after { background: var(--brass-2); }

.lede { font-size: 1.16rem; line-height: 1.7; color: var(--stone); }
.serif-accent { font-family: 'Fraunces', serif; font-style: italic; font-weight: 400; }

/* ------------------------------ Layout --------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(72px, 9vw, 124px) 0; }
.section--tight { padding: clamp(56px, 6vw, 84px) 0; }
.section--cream2 { background: var(--cream-2); }
.section--paper { background: var(--paper); }
.section--dark { background: var(--ink); color: var(--cream-tx); }
.section--dark h1,.section--dark h2,.section--dark h3 { color: #fff; }
.section--dark p { color: var(--cream-dim); }

.center { text-align: center; }
.section-head { max-width: 680px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.center { margin-inline: auto; }
.section-head h2 { margin: 18px 0 16px; }
.section-head p { font-size: 1.08rem; }

.grid { display: grid; gap: 28px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  --btn-bg: var(--ink); --btn-fg: var(--cream);
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  padding: 15px 28px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: .92rem; font-weight: 600; letter-spacing: .01em;
  border: 1px solid var(--btn-bg); border-radius: var(--r-sm);
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .3s var(--ease); }
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:hover svg { transform: translateX(3px); }

.btn--brass { --btn-bg: var(--brass); --btn-fg: #1c1709; border-color: var(--brass); }
.btn--brass:hover { background: var(--brass-dk); border-color: var(--brass-dk); color: #fff; }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); border-color: rgba(26,25,22,.30); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.btn--ghost-light { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.45); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--sm { padding: 11px 20px; font-size: .85rem; }
.btn--lg { padding: 17px 34px; font-size: .98rem; }
.btn--block { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: .5em;
  font-weight: 600; font-size: .92rem; color: var(--brass-dk);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: gap .25s var(--ease), border-color .25s var(--ease);
}
.textlink svg { width: 15px; height: 15px; }
.textlink:hover { gap: .85em; border-color: var(--brass); }
.on-dark .textlink { color: var(--brass-2); }

/* ------------------------------ Top bar -------------------------------- */
.topbar {
  background: var(--ink); color: var(--cream-dim);
  font-size: .8rem; letter-spacing: .01em;
  border-bottom: 1px solid var(--line-2);
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; padding: 9px 24px; }
.topbar__item { display: inline-flex; align-items: center; gap: .45em; }
.topbar__item strong { color: var(--brass-2); font-weight: 600; }
.topbar__link { transition: color .2s; }
.topbar__link:hover { color: #fff; }
.topbar__divider { color: rgba(255,255,255,.22); }
.topbar__star { color: var(--brass-2); letter-spacing: .05em; }

/* -------------------------------- Nav ---------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246,242,234,.86);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.nav.is-scrolled { box-shadow: var(--shadow-sm); background: rgba(246,242,234,.95); }

/* transparent over hero on home */
.nav--overlay {
  position: fixed; left: 0; right: 0; top: var(--topbar-h, 0);
  background: transparent; border-bottom-color: transparent;
}
.nav--overlay:not(.is-scrolled) .brand__name,
.nav--overlay:not(.is-scrolled) .nav__links a { color: #fff; }
.nav--overlay:not(.is-scrolled) .brand__sub { color: rgba(255,255,255,.72); }
.nav--overlay:not(.is-scrolled) .nav__toggle span { background: #fff; }
.nav--overlay:not(.is-scrolled) .nav__cta { border-color: rgba(255,255,255,.5); color:#fff; background: transparent; }
.nav--overlay:not(.is-scrolled) .nav__cta:hover { background:#fff; color: var(--ink); }
.nav--overlay.is-scrolled { position: fixed; top: 0; background: rgba(26,25,22,.94); border-bottom-color: var(--line-2); }
.nav--overlay.is-scrolled .brand__name, .nav--overlay.is-scrolled .nav__links a { color: var(--cream-tx); }
.nav--overlay.is-scrolled .brand__sub { color: var(--brass-2); }
.nav--overlay.is-scrolled .nav__links a:hover { color:#fff; }
.nav--overlay.is-scrolled .nav__toggle span { background: #fff; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { display: grid; place-items: center; width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: 'Fraunces', serif; font-weight: 600; font-size: 1.32rem; letter-spacing: .01em; color: var(--ink); }
.brand__sub { font-size: .60rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--brass-dk); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__links a { font-size: .92rem; font-weight: 500; color: var(--text); position: relative; transition: color .2s; }
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--brass); transition: width .28s var(--ease);
}
.nav__links a:not(.btn):hover::after,
.nav__links a[aria-current="page"]::after { width: 100%; }
.nav__links a[aria-current="page"] { color: var(--brass-dk); }
.nav--overlay:not(.is-scrolled) .nav__links a[aria-current="page"] { color: #fff; }
.nav__cta { margin-left: 4px; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: none; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ------------------------------- Hero ---------------------------------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  padding: 140px 0 90px;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(20,19,16,.55) 0%, rgba(20,19,16,.30) 40%, rgba(20,19,16,.78) 100%),
    linear-gradient(90deg, rgba(20,19,16,.62) 0%, rgba(20,19,16,.10) 70%);
}
.hero__inner { max-width: 720px; }
.hero .eyebrow { color: var(--brass-2); }
.hero .eyebrow::before { background: var(--brass-2); }
.hero h1 { color: #fff; margin: 20px 0 22px; }
.hero h1 em { font-style: italic; color: var(--brass-2); font-weight: 400; }
.hero__sub { font-size: 1.2rem; color: rgba(255,255,255,.86); max-width: 560px; margin-bottom: 36px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__trust {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, transparent, rgba(20,19,16,.55));
}
.hero__trust .container { display: flex; flex-wrap: wrap; gap: 14px 40px; align-items: center; justify-content: space-between; padding-block: 20px; }
.trust-item { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.9); font-size: .9rem; }
.trust-item svg { width: 22px; height: 22px; color: var(--brass-2); flex: none; }
.trust-item strong { color: #fff; display:block; font-size: .98rem; line-height:1.2; }
.trust-item span { color: rgba(255,255,255,.62); font-size: .78rem; }
.stars { color: var(--brass-2); letter-spacing: .08em; font-size: .95rem; }

/* --------------------------- Page header ------------------------------- */
.pagehead {
  position: relative; color: #fff; overflow: hidden;
  padding: 150px 0 64px; text-align: center;
}
.pagehead__bg { position:absolute; inset:0; z-index:-2; }
.pagehead__bg img { width:100%; height:100%; object-fit: cover; }
.pagehead::after { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(20,19,16,.62), rgba(20,19,16,.80)); }
.pagehead h1 { color:#fff; font-size: clamp(2.4rem, 5vw, 3.6rem); margin: 16px auto 14px; max-width: 14ch; }
.pagehead p { color: rgba(255,255,255,.82); max-width: 560px; margin: 0 auto; font-size: 1.08rem; }
.pagehead .eyebrow { color: var(--brass-2); }
.pagehead .eyebrow::before, .pagehead .eyebrow--center::after { background: var(--brass-2); }
.crumbs { margin-top: 26px; font-size: .82rem; color: rgba(255,255,255,.6); letter-spacing:.03em; }
.crumbs a:hover { color:#fff; }
.crumbs span { color: var(--brass-2); }

/* ------------------------- Stat / number band -------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: 'Fraunces', serif; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 500; color: #fff; line-height: 1; }
.stat__num .unit { color: var(--brass-2); }
.stat__label { margin-top: 12px; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--cream-dim); }
.stat + .stat { position: relative; }

/* ----------------------------- Value cards ----------------------------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(174,135,70,.4); }
.card__icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 22px;
  background: rgba(174,135,70,.12); color: var(--brass-dk);
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }

/* --------------------------- Service grid ------------------------------ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service {
  position: relative; border-radius: var(--r); overflow: hidden;
  min-height: 360px; display: flex; align-items: flex-end; color: #fff;
  box-shadow: var(--shadow-sm);
}
.service img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,19,16,0) 30%, rgba(20,19,16,.5) 60%, rgba(20,19,16,.9) 100%); }
.service:hover img { transform: scale(1.06); }
.service__body { position: relative; z-index: 1; padding: 28px; width: 100%; }
.service__kicker { font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; color: var(--brass-2); font-weight: 600; }
.service h3 { color: #fff; margin: 8px 0 6px; }
.service p { color: rgba(255,255,255,.82); font-size: .92rem; margin-bottom: 4px; }
.service__link { display:inline-flex; align-items:center; gap:.4em; margin-top: 12px; font-size: .85rem; font-weight: 600; color: #fff; opacity:.92; }
.service__link svg { width:14px; height:14px; transition: transform .3s var(--ease); }
.service:hover .service__link svg { transform: translateX(4px); }

/* ----------------------- Detailed service list ------------------------- */
.svc-detail { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px,5vw,64px); align-items: center; }
.svc-detail:not(:last-child) { margin-bottom: clamp(56px, 7vw, 96px); }
.svc-detail__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.svc-detail__media img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; }
.svc-detail--rev .svc-detail__media { order: 2; }
.svc-detail__num { font-family:'Fraunces',serif; font-size: .95rem; color: var(--brass-dk); letter-spacing:.12em; }
.svc-detail h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin: 8px 0 14px; }
.svc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 22px; margin-top: 22px; }
.svc-list li { display: flex; align-items: flex-start; gap: 9px; font-size: .94rem; color: var(--text); }
.svc-list svg { width: 18px; height: 18px; color: var(--brass); flex: none; margin-top: 3px; }

/* ------------------------------ Feature -------------------------------- */
.feature__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.feature__media img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; }
.feature__badge {
  position: absolute; left: 24px; bottom: 24px;
  background: var(--paper); border-radius: var(--r); padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.feature__badge .b-num { font-family:'Fraunces',serif; font-size: 2rem; color: var(--brass-dk); line-height:1; }
.feature__badge .b-txt { font-size: .82rem; color: var(--stone); line-height: 1.4; }
.feature h2 { margin: 16px 0 18px; }
.checklist { margin-top: 26px; display: grid; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 13px; }
.checklist svg { width: 22px; height: 22px; color: var(--brass); flex: none; margin-top: 1px; }
.checklist b { display: block; color: var(--ink); font-family:'Inter',sans-serif; }
.checklist span { font-size: .94rem; color: var(--stone); }

/* ------------------------------ Process -------------------------------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; padding-top: 30px; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family:'Fraunces',serif; font-size: 2.6rem; color: var(--brass);
  opacity: .9; line-height: 1; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { font-size: .93rem; }
.on-dark .step h3 { color: #fff; }
.process--line .step::after {
  content:""; position:absolute; top: 14px; left: 64px; right: -13px; height: 1px;
  background: linear-gradient(90deg, var(--line), transparent);
}
.process--line .step:last-child::after { display: none; }

/* ---------------------------- Testimonials ----------------------------- */
.reviews-rail { position: relative; }
.review-track { display: flex; gap: 26px; transition: transform .6s var(--ease); }
.review-card {
  flex: 0 0 100%; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: clamp(30px, 4vw, 48px);
}
.review-card .stars { font-size: 1.05rem; margin-bottom: 18px; }
.review-quote { font-family:'Fraunces',serif; font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.4; color: var(--ink); font-weight: 400; }
.review-quote::before { content: "\201C"; color: var(--brass); }
.review-quote::after { content: "\201D"; color: var(--brass); }
.review-meta { margin-top: 26px; display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--brass-2);
  display: grid; place-items: center; font-family:'Fraunces',serif; font-size: 1.2rem; flex: none; }
.review-meta b { display: block; color: var(--ink); font-family:'Inter',sans-serif; font-size: .98rem; }
.review-meta span { font-size: .82rem; color: var(--stone-2); }
.review-nav { display: flex; gap: 12px; justify-content: center; margin-top: 30px; }
.review-dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(26,25,22,.2); transition: all .25s; }
.review-dot.is-active { background: var(--brass); width: 26px; border-radius: 5px; }
.on-dark .review-card { background: var(--graphite); border-color: var(--line-2); }
.on-dark .review-quote { color: #fff; }
.on-dark .review-meta b { color:#fff; }
.on-dark .review-dot { background: rgba(255,255,255,.22); }
.on-dark .review-dot.is-active { background: var(--brass-2); }

/* full reviews grid */
.review-wall { columns: 3; column-gap: 26px; }
.review-wall .rw-card {
  break-inside: avoid; margin-bottom: 26px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r);
  padding: 28px 26px;
}
.rw-card .stars { display: block; margin-bottom: 14px; }
.rw-card p { color: var(--text); font-size: .98rem; line-height: 1.62; }
.rw-card__meta { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); display:flex; align-items:center; gap: 11px; }
.rw-card__meta .review-avatar { width: 40px; height: 40px; font-size: 1rem; }
.rw-card__meta b { color: var(--ink); font-size: .92rem; }
.rw-card__meta span { font-size: .78rem; color: var(--stone-2); display:block; }

/* ------------------------------ Gallery -------------------------------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn {
  padding: 9px 20px; border-radius: 100px; border: 1px solid var(--line);
  background: transparent; font-size: .86rem; font-weight: 500; color: var(--stone);
  transition: all .2s var(--ease);
}
.filter-btn:hover { border-color: var(--brass); color: var(--brass-dk); }
.filter-btn.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
.tile { position: relative; overflow: hidden; border-radius: var(--r); min-height: 240px; grid-column: span 4; box-shadow: var(--shadow-sm); }
.tile.span-6 { grid-column: span 6; }
.tile.span-8 { grid-column: span 8; }
.tile.tall { min-height: 380px; }
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tile::after { content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(20,19,16,.82)); opacity: .85; transition: opacity .3s; }
.tile:hover img { transform: scale(1.07); }
.tile__cap { position: absolute; left: 0; bottom: 0; z-index: 1; padding: 22px; color: #fff; transform: translateY(6px); opacity: .92; transition: transform .3s var(--ease); }
.tile:hover .tile__cap { transform: translateY(0); }
.tile__cap .tag { font-size: .68rem; text-transform: uppercase; letter-spacing: .16em; color: var(--brass-2); font-weight: 600; }
.tile__cap h4 { color: #fff; font-family:'Fraunces',serif; font-weight: 500; font-size: 1.15rem; margin-top: 5px; }
.tile.is-hidden { display: none; }

/* --------------------------- Credentials bar --------------------------- */
.creds { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 40px; }
.creds img { height: 46px; width: auto; opacity: .8; filter: saturate(.2) brightness(.9); transition: opacity .3s, filter .3s; }
.creds img:hover { opacity: 1; filter: none; }
.creds__label { width: 100%; text-align: center; font-size: .76rem; text-transform: uppercase; letter-spacing: .2em; color: var(--stone-2); margin-bottom: 6px; }

/* ------------------------------ CTA band ------------------------------- */
.ctaband { position: relative; overflow: hidden; background: var(--ink); color: #fff; text-align: center; }
.ctaband::before { content:""; position:absolute; inset:0;
  background: radial-gradient(900px 360px at 50% -20%, rgba(174,135,70,.28), transparent 70%); }
.ctaband .container { position: relative; }
.ctaband h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); margin-bottom: 18px; }
.ctaband p { color: rgba(255,255,255,.78); max-width: 560px; margin: 0 auto 32px; font-size: 1.1rem; }
.ctaband__btns { display:flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.ctaband__phone { margin-top: 26px; font-size: .92rem; color: rgba(255,255,255,.62); }
.ctaband__phone a { color: var(--brass-2); font-weight: 600; }

/* ------------------------------ Contact -------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.info-card:first-of-type { padding-top: 0; }
.info-ico { width: 46px; height: 46px; flex: none; border-radius: 50%; background: rgba(174,135,70,.12); color: var(--brass-dk); display: grid; place-items: center; }
.info-ico svg { width: 22px; height: 22px; }
.info-card h4 { font-family:'Inter',sans-serif; font-weight: 600; font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--stone-2); margin-bottom: 5px; }
.info-card a, .info-card p { color: var(--ink); font-size: 1.08rem; font-weight: 500; }
.info-card a:hover { color: var(--brass-dk); }
.info-card .sub { font-size: .88rem; color: var(--stone); font-weight: 400; margin-top: 2px; }
.social-row { display: flex; gap: 12px; margin-top: 26px; }
.social-row a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; color: var(--ink); transition: all .25s var(--ease); }
.social-row a:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); border-color: var(--ink); }
.social-row svg { width: 19px; height: 19px; }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(26px, 4vw, 44px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; letter-spacing: .01em; }
.field .req { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .96rem; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input::placeholder, .field textarea::placeholder { color: var(--stone-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brass); background: #fff; box-shadow: 0 0 0 3px rgba(174,135,70,.14);
}
.field select { 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='%238B8579' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field.error input, .field.error select, .field.error textarea { border-color: #b4452f; background: #fdf3f1; }
.field .err-msg { display: none; color: #b4452f; font-size: .8rem; margin-top: 6px; }
.field.error .err-msg { display: block; }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: .82rem; color: var(--stone-2); }
.form-success {
  display: none; text-align: center; padding: 36px 20px;
}
.form-success.show { display: block; }
.form-success .check { width: 64px; height: 64px; margin: 0 auto 18px; border-radius: 50%; background: rgba(174,135,70,.14); color: var(--brass-dk); display:grid; place-items:center; }
.form-success .check svg { width: 32px; height: 32px; }
.form-success h3 { margin-bottom: 10px; }
.is-submitted .form-body { display: none; }

/* map */
.map-wrap { margin-top: 0; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.map-wrap iframe { display: block; width: 100%; height: 340px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ------------------------------- FAQ ----------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 4px; background: none; border: none; text-align: left; font-family:'Fraunces',serif; font-size: 1.18rem; color: var(--ink); }
.faq-q .pm { flex: none; width: 26px; height: 26px; position: relative; }
.faq-q .pm::before, .faq-q .pm::after { content:""; position:absolute; top:50%; left:50%; width: 14px; height: 2px; background: var(--brass-dk); transform: translate(-50%,-50%); transition: transform .3s var(--ease); }
.faq-q .pm::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) rotate(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding: 0 4px 24px; font-size: .98rem; max-width: 68ch; }

/* ------------------------------ Footer --------------------------------- */
.footer { background: var(--ink); color: var(--cream-dim); padding: 72px 0 0; }
.footer__top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line-2); }
.footer .brand__name { color: #fff; }
.footer__about { margin: 20px 0; font-size: .92rem; color: var(--cream-dim); max-width: 30ch; }
.footer h5 { color: #fff; font-family:'Inter',sans-serif; font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; margin-bottom: 18px; font-weight: 600; }
.footer__links a { display: block; padding: 6px 0; font-size: .92rem; color: var(--cream-dim); transition: color .2s, padding .2s; }
.footer__links a:hover { color: var(--brass-2); padding-left: 4px; }
.footer__contact li { display: flex; gap: 11px; padding: 7px 0; font-size: .92rem; }
.footer__contact svg { width: 17px; height: 17px; color: var(--brass-2); flex: none; margin-top: 3px; }
.footer__contact a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 24px 0; font-size: .82rem; color: var(--stone-2); }
.footer__bottom a:hover { color: var(--brass-2); }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--cream-dim); transition: all .25s; }
.footer__social a:hover { background: var(--brass); color: var(--ink); border-color: var(--brass); }
.footer__social svg { width: 17px; height: 17px; }

/* ----------------------------- Mobile menu ----------------------------- */
.scrim { position: fixed; inset: 0; background: rgba(20,19,16,.5); opacity: 0; visibility: hidden; transition: opacity .3s; z-index: 98; }
.scrim.show { opacity: 1; visibility: visible; }

/* ----------------------------- Reveal anim ----------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ----------------------------- Responsive ------------------------------ */
@media (max-width: 1000px) {
  .cards, .services-grid, .stats, .process { grid-template-columns: repeat(2, 1fr); }
  .review-wall { columns: 2; }
  .process--line .step::after { display: none; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  /* Drop the nav's backdrop-filter on mobile: it would otherwise become the
     containing block for the fixed drawer below, clipping it to the nav box. */
  .nav, .nav--overlay { backdrop-filter: none; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0; width: min(82vw, 340px);
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); padding: 96px 28px 32px; z-index: 99;
    transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  .nav__links.is-open { transform: none; }
  .nav__links a { color: var(--ink) !important; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav__links a::after { display: none; }
  .nav__cta { margin: 18px 0 0; }
  .nav__toggle { display: flex; }
  .nav--overlay:not(.is-scrolled) .nav__links a { color: var(--ink) !important; }
  .split, .svc-detail, .contact-grid, .feature .split { grid-template-columns: 1fr; }
  .svc-detail--rev .svc-detail__media { order: 0; }
  .feature__media { order: -1; }
  .hero { min-height: 86vh; }
  .hero__trust { position: static; background: var(--ink); }
  .hero__trust .container { justify-content: flex-start; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .cards, .services-grid, .stats, .process, .form-row, .svc-list { grid-template-columns: 1fr; }
  .review-wall { columns: 1; }
  .gallery { grid-template-columns: repeat(6, 1fr); }
  .tile, .tile.span-6, .tile.span-8 { grid-column: span 6; }
  .topbar__inner { font-size: .74rem; gap: 8px; }
  .topbar .hide-sm { display: none; }
  .hero__cta .btn, .ctaband__btns .btn, .form-foot .btn { width: 100%; }
  .stat + .stat::before { display: none; }
  .stats { gap: 36px; }
}
