/* =========================================================
   R.E.P. General Contracting — Main Stylesheet
   ========================================================= */

:root {
  --wine: #7d1f2a;
  --wine-deep: #5d1219;
  --wine-soft: #9a3340;
  --ink: #171213;
  --graphite: #2a2627;
  --charcoal: #3c3839;
  --cream: #f6f0e7;
  --cream-2: #efe6d8;
  --paper: #fbf8f2;
  --brass: #a9824a;
  --brass-light: #c8a566;
  --line: rgba(23, 18, 19, .12);
  --line-light: rgba(255, 255, 255, .16);
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --maxw: 1280px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
section { scroll-margin-top: 84px; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }

/* grain overlay */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: .035; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---- typography ---- */
.eyebrow {
  font-family: var(--sans); font-weight: 600;
  font-size: clamp(.68rem, .78vw, .78rem); letter-spacing: .32em; text-transform: uppercase;
}
h1, h2, h3 { font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -.01em; }
.serif-it { font-style: italic; font-weight: 400; }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  letter-spacing: .02em; padding: 1.05em 1.9em; border-radius: 2px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: .35s cubic-bezier(.2, .7, .2, 1); position: relative; white-space: nowrap;
}
.btn-primary { background: var(--wine); color: #fff; }
.btn-primary:hover { background: var(--wine-deep); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(125,31,42,.7); }
.btn-brass { background: var(--brass); color: #1a140c; }
.btn-brass:hover { background: var(--brass-light); transform: translateY(-2px); box-shadow: 0 18px 40px -18px rgba(169,130,74,.8); }
.btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-ink { border-color: var(--ink); color: var(--ink); }
.btn-ink:hover { background: var(--ink); color: var(--cream); }
.btn .arrow { transition: transform .35s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---- header ---- */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: .4s ease; padding: 18px 0;
}
header.scrolled {
  background: rgba(251,248,242,.92); backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line), 0 12px 30px -24px rgba(0,0,0,.4); padding: 10px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 13px; }
.brand .coin {
  width: 58px; height: 58px; border-radius: 50%; background: var(--cream);
  display: grid; place-items: center; flex: none; overflow: hidden;
  box-shadow: 0 4px 14px -6px rgba(0,0,0,.5); transition: .4s; border: 1px solid rgba(0,0,0,.06);
}
header.scrolled .brand .coin { width: 50px; height: 50px; }
.brand .coin img { width: 240%; height: 240%; object-fit: contain; border-radius: 50%; }
.brand .wm { line-height: 1; }
.brand .wm .t { font-family: var(--display); font-size: 1.18rem; letter-spacing: .04em; color: #fff; transition: .4s; }
.brand .wm .s { display: block; font-size: .56rem; letter-spacing: .34em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-top: 3px; font-weight: 600; transition: .4s; }
header.scrolled .brand .wm .t { color: var(--ink); }
header.scrolled .brand .wm .s { color: var(--wine); }
.navlinks { display: flex; align-items: center; gap: 30px; }
.navlinks a.lk { font-size: .86rem; font-weight: 500; letter-spacing: .04em; color: rgba(255,255,255,.92); position: relative; padding: 4px 0; transition: .3s; }
.navlinks a.lk::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--brass-light); transition: .3s; }
.navlinks a.lk:hover::after { width: 100%; }
header.scrolled .navlinks a.lk { color: var(--charcoal); }
header.scrolled .navlinks a.lk:hover { color: var(--wine); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; color: #fff; transition: .3s; letter-spacing: .02em; }
header.scrolled .nav-phone { color: var(--ink); }
.nav-phone svg { width: 15px; height: 15px; flex: none; }
.nav-phone .pp { color: var(--brass-light); }
header.scrolled .nav-phone .pp { color: var(--wine); }
.nav-btn { font-size: .82rem; padding: .8em 1.4em; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 1100; }
.burger span { width: 26px; height: 2px; background: #fff; transition: .35s; border-radius: 2px; }
header.scrolled .burger span { background: var(--ink); }
.burger.open span { background: var(--ink); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile drawer */
.drawer {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--cream); z-index: 1050;
  transform: translateY(-100%); transition: transform .5s cubic-bezier(.6,.05,.1,1);
  display: flex; flex-direction: column; justify-content: flex-start;
  padding: clamp(20px,5vw,36px) clamp(24px,6vw,56px); gap: 6px;
  max-height: calc(100vh - 80px); overflow-y: auto;
  box-shadow: 0 16px 40px -12px rgba(0,0,0,.25);
}
.drawer.open { transform: translateY(80px); }
.drawer a {
  font-family: var(--display); font-size: clamp(1.8rem,7vw,2.6rem); color: var(--ink);
  padding: 10px 0; border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
}
.drawer a span { font-family: var(--sans); font-size: .8rem; color: var(--wine); font-weight: 600; }
.drawer .dr-foot { margin-top: 34px; font-family: var(--sans); }
.drawer .dr-foot a { font-size: 1rem; border: none; padding: 6px 0; color: var(--charcoal); }

/* ---- hero ---- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: #2a1216; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .92; transform: scale(1.06); animation: heroZoom 14s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,18,19,.65) 0%, rgba(23,18,19,.38) 30%, rgba(23,18,19,.52) 58%, rgba(23,18,19,.96) 100%),
              radial-gradient(130% 100% at 15% 90%, rgba(93,18,25,.65), transparent 58%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px,7vh,84px); padding-top: 140px; }
.hero .eyebrow { color: var(--brass-light); margin-bottom: 24px; opacity: 0; animation: rise .9s .2s forwards; text-shadow: 0 1px 14px rgba(0,0,0,.55); }
.hero h1 { font-size: clamp(2.9rem,8.2vw,6.7rem); font-weight: 340; letter-spacing: -.025em; max-width: 14ch; text-shadow: 0 2px 18px rgba(0,0,0,.45); }
.hero h1 .l { display: inline-block; opacity: 0; animation: rise 1s forwards; }
.hero h1 .em { color: var(--brass-light); font-style: italic; font-weight: 380; }
.hero p.sub { font-size: clamp(1.02rem,1.5vw,1.22rem); max-width: 46ch; margin-top: 26px; color: rgba(255,255,255,.9); font-weight: 300; opacity: 0; animation: rise 1s .85s forwards; }
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; opacity: 0; animation: rise 1s 1s forwards; }
.trust { display: flex; flex-wrap: wrap; align-items: center; gap: 14px 26px; margin-top: 42px; padding-top: 26px; border-top: 1px solid var(--line-light); opacity: 0; animation: rise 1s 1.15s forwards; }
.trust .ti, .trust a.ti { display: flex; align-items: center; gap: 9px; font-size: .78rem; letter-spacing: .04em; color: rgba(255,255,255,.82); font-weight: 500; text-decoration: none; }
.trust a.ti:hover { opacity: .8; }
.trust .ti svg { width: 16px; height: 16px; color: var(--brass-light); flex: none; }
.trust .stars { color: var(--brass-light); letter-spacing: 1px; text-shadow: 0 1px 8px rgba(0,0,0,.5); }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.scrollcue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.6);
  opacity: 0; animation: fadein 1s 1.6s forwards;
}
.scrollcue .ln { width: 1px; height: 38px; background: linear-gradient(var(--brass-light), transparent); animation: pulse 2s infinite; }
@keyframes fadein { to { opacity: 1; } }
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ---- reveal ---- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s cubic-bezier(.2,.7,.2,1), transform .9s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; }
.reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; }
.reveal.d4 { transition-delay: .48s; }

/* ---- section heads ---- */
.shead { max-width: 760px; }
.shead .eyebrow { color: var(--wine); display: inline-flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.shead .eyebrow::before { content: ""; width: 30px; height: 1.5px; background: var(--brass); }
.shead h2 { font-size: clamp(2.1rem,4.6vw,3.7rem); font-weight: 360; color: var(--ink); }
.shead h2 .em { font-style: italic; color: var(--wine); }
.shead p.lead { font-size: clamp(1.02rem,1.4vw,1.15rem); color: var(--charcoal); margin-top: 20px; font-weight: 300; max-width: 62ch; }

/* ---- promise ---- */
.promise { padding: clamp(80px,11vw,150px) 0; background: var(--cream); }
.promise-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px,7vw,96px); align-items: center; }
.promise blockquote { font-family: var(--display); font-size: clamp(1.7rem,3.4vw,2.9rem); line-height: 1.18; font-weight: 330; color: var(--ink); letter-spacing: -.01em; }
.promise blockquote .em { font-style: italic; color: var(--wine); }
.promise .pbody { font-size: 1.06rem; color: var(--charcoal); font-weight: 300; }
.promise .pbody p + p { margin-top: 18px; }
.repmark { display: flex; gap: 0; margin: 0 0 30px; border-left: 2px solid var(--brass); padding-left: 22px; }
.repmark .rm { padding-right: 30px; }
.repmark .rm .ltr { font-family: var(--display); font-size: clamp(2.2rem,4vw,3rem); color: var(--wine); line-height: 1; }
.repmark .rm .wd { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--charcoal); font-weight: 600; margin-top: 6px; }

/* ---- services ---- */
.services { padding: clamp(80px,11vw,150px) 0; background: var(--paper); }
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 60px; }
.svc {
  position: relative; border-radius: 4px; overflow: hidden; min-height: 480px;
  display: flex; align-items: flex-end; color: #fff; isolation: isolate; background: var(--graphite);
}
.svc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1s cubic-bezier(.2,.7,.2,1); }
.svc::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(23,18,19,.05) 30%, rgba(23,18,19,.55) 65%, rgba(23,18,19,.93) 100%);
}
.svc:hover img { transform: scale(1.07); }
.svc .svc-c { padding: 32px; width: 100%; }
.svc .num { font-family: var(--display); font-size: .85rem; color: var(--brass-light); letter-spacing: .1em; margin-bottom: 14px; display: block; }
.svc h3 { font-size: 1.85rem; font-weight: 400; margin-bottom: 8px; }
.svc .svc-price { font-size: .88rem; color: var(--brass-light); font-weight: 600; letter-spacing: .04em; margin-bottom: 12px; }
.svc p { font-size: .94rem; color: rgba(255,255,255,.85); font-weight: 300; margin-bottom: 18px; }
.svc .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.svc .tags span { font-size: .72rem; letter-spacing: .03em; padding: 5px 11px; border: 1px solid rgba(255,255,255,.32); border-radius: 30px; color: rgba(255,255,255,.9); }
.svc-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .86rem; font-weight: 600; color: var(--brass-light); letter-spacing: .04em;
  border-bottom: 1px solid rgba(200,165,102,.4); padding-bottom: 2px; transition: .3s;
}
.svc-link .arrow { transition: transform .3s; }
.svc:hover .svc-link .arrow { transform: translateX(4px); }

/* ---- before/after slider ---- */
.before-after {
  position: relative; overflow: hidden; border-radius: 4px;
  aspect-ratio: 4/4.6; background: var(--graphite); cursor: ew-resize;
  user-select: none; -webkit-user-select: none;
}
.ba-after { position: absolute; inset: 0; }
.ba-after img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before {
  position: absolute; inset: 0; overflow: hidden;
  width: 50%;
}
.ba-before img {
  position: absolute; left: 0; top: 0;
  height: 100%; width: auto; min-width: 100%;
  object-fit: cover;
}
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(255,255,255,.9); z-index: 5;
  transform: translateX(-50%);
}
.ba-handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,.45);
  display: flex; align-items: center; justify-content: center;
  z-index: 6; cursor: ew-resize;
  border: 2px solid var(--brass);
}
.ba-handle svg { width: 22px; height: 22px; color: var(--wine); }
.ba-label {
  position: absolute; z-index: 7; top: 18px;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700; padding: 6px 12px; border-radius: 30px;
  background: rgba(23,18,19,.6); backdrop-filter: blur(4px);
  color: #fff;
}
.ba-label-before { left: 18px; }
.ba-label-after { right: 18px; }
.ba-badge {
  position: absolute; bottom: 18px; left: 18px; z-index: 7;
  background: rgba(23,18,19,.7); backdrop-filter: blur(6px);
  border: 1px solid var(--brass); color: var(--brass-light);
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 30px; font-weight: 600;
}

/* ---- featured ---- */
.featured { padding: clamp(80px,11vw,150px) 0; background: var(--ink); color: var(--cream); position: relative; overflow: hidden; }
.featured::before {
  content: ""; position: absolute; top: -10%; right: -5%; width: 50vw; height: 50vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(125,31,42,.35), transparent 65%); pointer-events: none;
}
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,80px); align-items: center; position: relative; z-index: 2; }
.featured .eyebrow { color: var(--brass-light); }
.featured h2 { font-size: clamp(2rem,4.2vw,3.3rem); font-weight: 340; margin: 18px 0 22px; }
.featured h2 .em { font-style: italic; color: var(--brass-light); }
.featured .ftext { font-size: 1.05rem; color: rgba(246,240,231,.82); font-weight: 300; }
.featured .ftext p + p { margin-top: 16px; }
.feat-list { list-style: none; margin: 26px 0 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; }
.feat-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .92rem; color: rgba(246,240,231,.9); }
.feat-list li svg { width: 17px; height: 17px; color: var(--brass-light); flex: none; margin-top: 3px; }

/* ---- gallery ---- */
.gallery { padding: clamp(80px,11vw,150px) 0; background: var(--cream); }
.gallery-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; flex-wrap: wrap; margin-bottom: 54px; }
.masonry { column-count: 3; column-gap: 18px; }
.masonry figure { break-inside: avoid; margin: 0 0 18px; border-radius: 4px; overflow: hidden; position: relative; cursor: pointer; background: var(--graphite); }
.masonry figure img { width: 100%; height: auto; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.masonry figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg,transparent 55%,rgba(23,18,19,.6)); opacity: 0; transition: .4s; }
.masonry figure figcaption { position: absolute; left: 18px; bottom: 14px; z-index: 2; color: #fff; font-size: .82rem; font-weight: 500; letter-spacing: .04em; opacity: 0; transform: translateY(8px); transition: .4s; }
.masonry figure:hover img { transform: scale(1.06); }
.masonry figure:hover::after { opacity: 1; }
.masonry figure:hover figcaption { opacity: 1; transform: none; }

/* ---- process ---- */
.process { padding: clamp(80px,11vw,150px) 0; background: var(--paper); }
.proc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(28px,4vw,52px); margin-top: 64px; }
.proc { position: relative; padding-top: 34px; }
.proc .pn { font-family: var(--display); font-size: clamp(3rem,6vw,4.6rem); color: var(--cream-2); line-height: .8; font-weight: 500; position: absolute; top: -8px; left: 0; z-index: 0; }
.proc .pc { position: relative; z-index: 1; }
.proc .ptag { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--wine); font-weight: 700; display: block; margin-bottom: 14px; }
.proc h3 { font-size: 1.7rem; font-weight: 400; margin-bottom: 12px; color: var(--ink); }
.proc p { font-size: .96rem; color: var(--charcoal); font-weight: 300; }
.proc-rule { height: 2px; width: 46px; background: var(--brass); margin-top: 20px; }

/* ---- why ---- */
.why { padding: clamp(80px,11vw,150px) 0; background: var(--wine); color: #fff; position: relative; overflow: hidden; }
.why::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 90% 0%,rgba(0,0,0,.32),transparent 55%); pointer-events: none; }
.why .wrap { position: relative; z-index: 2; }
.why-top { max-width: 680px; margin-bottom: 56px; }
.why .eyebrow { color: var(--brass-light); }
.why h2 { font-size: clamp(2rem,4.4vw,3.4rem); font-weight: 340; margin-top: 18px; }
.why h2 .em { font-style: italic; color: var(--brass-light); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.16); border-radius: 4px; overflow: hidden; }
.why-item { background: var(--wine); padding: 30px 26px; transition: .4s; }
.why-item:hover { background: var(--wine-deep); }
.why-item svg { width: 26px; height: 26px; color: var(--brass-light); margin-bottom: 16px; }
.why-item h4 { font-family: var(--display); font-size: 1.12rem; font-weight: 500; margin-bottom: 7px; }
.why-item p { font-size: .85rem; color: rgba(255,255,255,.78); font-weight: 300; }

/* ---- about / team ---- */
.about { padding: clamp(80px,11vw,150px) 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px,6vw,84px); align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap .main { border-radius: 4px; overflow: hidden; aspect-ratio: 4/4.7; background: var(--graphite); box-shadow: 0 40px 70px -40px rgba(0,0,0,.5); }
.about-img-wrap .main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-wrap .award {
  position: absolute; bottom: -26px; right: -18px; background: var(--ink); color: var(--cream);
  border-radius: 50%; width: 148px; height: 148px; display: grid; place-items: center;
  text-align: center; padding: 18px; box-shadow: 0 24px 50px -22px rgba(0,0,0,.7); border: 2px solid var(--brass);
}
.about-img-wrap .award .yr { font-family: var(--display); font-size: 1.5rem; color: var(--brass-light); font-style: italic; line-height: 1; }
.about-img-wrap .award .tx { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; margin-top: 6px; color: rgba(246,240,231,.9); line-height: 1.4; }
.about-img-wrap .award.spark-award { bottom: auto; top: -18px; right: auto; left: -18px; }
.about .signed { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--wine); margin-top: 30px; }
.about .signed small { display: block; font-family: var(--sans); font-style: normal; font-size: .8rem; letter-spacing: .04em; color: var(--charcoal); text-transform: uppercase; font-weight: 600; margin-top: 6px; }

/* hannah callout */
.hannah-callout {
  background: var(--ink); color: var(--cream); border-radius: 4px;
  padding: 30px 32px; margin-top: 36px;
  display: flex; align-items: center; gap: 22px;
}
.hannah-callout .hc-icon {
  width: 56px; height: 56px; border-radius: 50%; background: var(--wine);
  display: grid; place-items: center; flex: none; border: 2px solid var(--brass);
}
.hannah-callout .hc-icon svg { width: 24px; height: 24px; color: var(--brass-light); }
.hannah-callout .hc-text .hc-label { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--brass-light); font-weight: 600; margin-bottom: 6px; }
.hannah-callout .hc-text p { font-family: var(--display); font-size: 1.15rem; font-style: italic; color: var(--cream); line-height: 1.3; }
.hannah-callout .hc-text strong { font-style: normal; font-weight: 600; color: var(--brass-light); }

/* team grid */
.team-grid { margin-top: 62px; border-top: 1px solid var(--line); padding-top: 40px; }
.team-grid .tg-label { font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--wine); font-weight: 700; margin-bottom: 28px; }
.team-members { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-member .tm-photo { border-radius: 4px; overflow: hidden; aspect-ratio: 3/4; background: var(--graphite); margin-bottom: 16px; }
.team-member .tm-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.team-member:hover .tm-photo img { transform: scale(1.04); }
.team-member .tm-name { font-family: var(--display); font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.team-member .tm-role { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--wine); font-weight: 600; margin-top: 4px; }

/* ---- news / press ---- */
.news-press { padding: clamp(80px,11vw,150px) 0; background: var(--ink); color: var(--cream); }
.np-head { text-align: center; max-width: 680px; margin: 0 auto 56px; }
.np-head .eyebrow { color: var(--brass-light); }
.np-head h2 { font-size: clamp(2.1rem,4.6vw,3.7rem); font-weight: 360; color: var(--cream); margin: 12px 0 18px; }
.np-head h2 .em { font-style: italic; color: var(--brass-light); }
.np-sub { color: rgba(246,240,231,.72); line-height: 1.7; font-size: 1.05rem; }

.np-badge-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; border: 1px solid rgba(169,130,74,.35); border-radius: 4px; padding: 28px 36px; margin-bottom: 56px; background: rgba(255,255,255,.04); }
.np-badge { display: flex; align-items: center; gap: 14px; padding: 10px 32px; }
.np-badge-icon { width: 44px; height: 44px; border: 1.5px solid var(--brass); border-radius: 50%; display: grid; place-items: center; flex: none; color: var(--brass-light); }
.np-badge-icon svg { width: 20px; height: 20px; }
.np-badge-label { font-weight: 600; font-size: .92rem; letter-spacing: .02em; color: var(--cream); }
.np-badge-desc { font-size: .78rem; color: rgba(246,240,231,.55); margin-top: 3px; letter-spacing: .03em; }
.np-divider { width: 1px; height: 44px; background: rgba(169,130,74,.3); flex: none; }

.np-videos { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 28px; margin-bottom: 48px; }
.np-video-wrap { display: flex; flex-direction: column; gap: 12px; }
.np-video-label { display: flex; align-items: center; gap: 8px; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--brass-light); }
.np-video-frame { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 4px; overflow: hidden; border: 1px solid rgba(169,130,74,.3); }
.np-video-frame iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

.np-matarese { text-align: center; max-width: 620px; margin: 0 auto; color: rgba(246,240,231,.55); font-size: .88rem; line-height: 1.7; border-top: 1px solid rgba(169,130,74,.2); padding-top: 36px; }

.np-articles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 40px; margin-bottom: 48px; }
.np-article-card { display: flex; flex-direction: column; gap: 10px; padding: 24px 28px; background: rgba(255,255,255,.04); border: 1px solid rgba(169,130,74,.25); border-radius: 4px; text-decoration: none; transition: background .2s, border-color .2s, transform .2s; }
.np-article-card:hover { background: rgba(255,255,255,.07); border-color: rgba(169,130,74,.5); transform: translateY(-3px); }
.np-card-outlet { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-light); opacity: .85; }
.np-card-title { font-size: .97rem; font-weight: 600; color: var(--cream); line-height: 1.4; }
.np-card-quote { font-size: .84rem; color: var(--cream); opacity: .62; font-style: italic; line-height: 1.5; flex: 1; }
.np-card-link { font-size: .82rem; color: var(--brass); letter-spacing: .03em; margin-top: 4px; }
.np-article-card:hover .np-card-link { color: var(--brass-light); }
.np-article-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 520px; margin-left: auto; margin-right: auto; width: 100%; }
.np-article-card--video { padding: 0; overflow: hidden; }
.np-article-card--video .np-card-outlet,
.np-article-card--video .np-card-title,
.np-article-card--video .np-card-quote,
.np-article-card--video .np-card-link { padding: 0; }
.np-article-card--video .np-card-outlet { padding-top: 20px; padding-left: 24px; padding-right: 24px; }
.np-article-card--video .np-card-title { padding-left: 24px; padding-right: 24px; }
.np-article-card--video .np-card-quote { padding-left: 24px; padding-right: 24px; }
.np-article-card--video .np-card-link { padding-left: 24px; padding-right: 24px; padding-bottom: 22px; }
.np-card-thumb { position: relative; aspect-ratio: 16/9; overflow: hidden; background: var(--graphite); }
.np-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.np-article-card--video:hover .np-card-thumb img { transform: scale(1.04); }
.np-card-play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(23,18,19,.38); transition: background .35s; }
.np-card-play svg { width: 44px; height: 44px; color: #fff; filter: drop-shadow(0 2px 8px rgba(0,0,0,.6)); }
.np-article-card--video:hover .np-card-play { background: rgba(23,18,19,.18); }


@media (max-width: 700px) {
  .np-badge-row { flex-direction: column; padding: 24px 20px; align-items: stretch; }
  .np-divider { width: 44px; height: 1px; align-self: center; }
  .np-badge { padding: 10px 16px; }
}
@media (max-width: 620px) {
  .np-articles { grid-template-columns: 1fr; }
  .np-article-card:last-child:nth-child(odd) { grid-column: unset; max-width: unset; margin: 0; }
}

/* ---- reviews ---- */
.reviews { padding: clamp(80px,11vw,150px) 0; background: var(--paper); }
.rev-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 56px; }
.rev { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 34px 30px; position: relative; transition: .4s; }
.rev:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -34px rgba(0,0,0,.4); border-color: transparent; }
.rev .stars { color: var(--brass); letter-spacing: 2px; font-size: 1.05rem; margin-bottom: 18px; }
.rev .quote { font-family: var(--sans); font-size: 1.12rem; line-height: 1.45; color: var(--ink); font-weight: 400; }
.rev .who { margin-top: 22px; display: flex; align-items: center; gap: 13px; border-top: 1px solid var(--line); padding-top: 18px; }
.rev .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--wine); color: #fff; display: grid; place-items: center; font-family: var(--display); font-size: 1.1rem; flex: none; }
.rev .who b { font-size: .95rem; font-weight: 600; display: block; color: var(--ink); }
.rev .who span { font-size: .8rem; color: var(--charcoal); }
.rev-foot { margin-top: 40px; display: flex; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; text-align: center; }
.rev-foot .badge2 { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: .9rem; color: var(--charcoal); }
.rev-foot .badge2 .g { font-family: var(--display); font-size: 1.3rem; color: var(--wine); }

/* ---- CTA band ---- */
.cta-band { padding: clamp(70px,9vw,120px) 0; background: var(--ink); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 120% at 50% 0%,rgba(125,31,42,.55),transparent 60%),
              radial-gradient(50% 100% at 50% 120%,rgba(169,130,74,.25),transparent 60%);
}
.cta-band .wrap { position: relative; z-index: 2; }
.cta-band .eyebrow { color: var(--brass-light); margin-bottom: 20px; }
.cta-band h2 { font-size: clamp(2.2rem,5.2vw,4.2rem); font-weight: 340; max-width: 18ch; margin: 0 auto; }
.cta-band h2 .em { font-style: italic; color: var(--brass-light); }
.cta-band .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }
.cta-band .phoneline { margin-top: 26px; font-size: 1.05rem; color: rgba(255,255,255,.8); }
.cta-band .phoneline a { color: var(--brass-light); font-weight: 600; }

/* ---- contact ---- */
.contact { padding: clamp(80px,11vw,150px) 0; background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px,6vw,80px); }
.contact-info .eyebrow { color: var(--wine); margin-bottom: 18px; }
.contact-info h2 { font-size: clamp(2rem,4.2vw,3.2rem); font-weight: 360; color: var(--ink); }
.contact-info h2 .em { font-style: italic; color: var(--wine); }
.contact-info p.ci-lead { color: var(--charcoal); font-weight: 300; margin-top: 18px; font-size: 1.05rem; max-width: 44ch; }
.ci-list { margin-top: 38px; display: flex; flex-direction: column; gap: 4px; }
.ci-row { display: flex; align-items: center; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.ci-row .ic { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--brass); display: grid; place-items: center; flex: none; color: var(--wine); }
.ci-row .ic svg { width: 19px; height: 19px; }
.ci-row .cd small { display: block; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--charcoal); font-weight: 600; }
.ci-row .cd a, .ci-row .cd span { font-family: var(--display); font-size: 1.25rem; color: var(--ink); }
.ci-socials { display: flex; gap: 12px; margin-top: 30px; }
.ci-socials a { width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--cream); display: grid; place-items: center; transition: .35s; }
.ci-socials a:hover { background: var(--wine); transform: translateY(-3px); }
.ci-socials a svg { width: 18px; height: 18px; }
.form-card { background: #fff; border-radius: 6px; padding: clamp(28px,4vw,46px); box-shadow: 0 40px 80px -50px rgba(0,0,0,.5); border: 1px solid var(--line); }
.form-card h3 { font-size: 1.7rem; font-weight: 400; margin-bottom: 6px; color: var(--ink); }
.form-card .fc-sub { font-size: .9rem; color: var(--charcoal); margin-bottom: 26px; font-weight: 300; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); font-weight: 600; margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; font-family: var(--sans); font-size: .96rem; padding: .85em 1em; border: 1px solid var(--line); border-radius: 3px; background: var(--paper); color: var(--ink); transition: .3s; outline: none; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--wine); background: #fff; box-shadow: 0 0 0 3px rgba(125,31,42,.1); }
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: .76rem; color: var(--charcoal); text-align: center; margin-top: 16px; font-weight: 300; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; animation: rise .6s; }
.form-success .ck { width: 64px; height: 64px; border-radius: 50%; background: var(--wine); color: #fff; display: grid; place-items: center; margin: 0 auto 20px; }
.form-success .ck svg { width: 30px; height: 30px; }
.form-success h3 { color: var(--ink); }
.form-success p { color: var(--charcoal); font-weight: 300; margin-top: 8px; }

/* ---- footer ---- */
footer { background: var(--ink); color: rgba(246,240,231,.7); padding: clamp(64px,8vw,96px) 0 36px; }
.foot-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; border-bottom: 1px solid rgba(255,255,255,.12); }
.foot-brand .fb-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.foot-brand .coin { width: 70px; height: 70px; border-radius: 50%; display: grid; place-items: center; flex: none; overflow: hidden; }
.foot-brand .coin img { width: 240%; height: 240%; object-fit: contain; }
.foot-brand .fb-head .t { font-family: var(--display); font-size: 1.4rem; color: var(--cream); letter-spacing: .03em; }
.foot-brand .fb-head .s { display: block; font-size: .58rem; letter-spacing: .3em; text-transform: uppercase; color: var(--brass-light); margin-top: 4px; font-weight: 600; }
.foot-brand p { font-size: .92rem; font-weight: 300; max-width: 34ch; color: rgba(246,240,231,.65); }
.foot-brand .dbb { margin-top: 20px; font-family: var(--display); font-style: italic; color: var(--brass-light); font-size: 1.05rem; }
.fcol h5 { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; color: var(--cream); font-weight: 600; margin-bottom: 20px; }
.fcol a, .fcol span { display: block; font-size: .92rem; font-weight: 300; color: rgba(246,240,231,.7); padding: 6px 0; transition: .3s; }
.fcol a:hover { color: var(--brass-light); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; padding-top: 28px; font-size: .82rem; font-weight: 300; }
.foot-bottom .made { color: rgba(246,240,231,.45); }
.foot-bottom .made a { color: var(--brass-light); font-weight: 500; }

/* footer social icons */
.foot-socials { display: flex; gap: 12px; margin-top: 22px; }
.foot-socials a { width: 36px; height: 36px; border: 1px solid rgba(169,130,74,.3); border-radius: 50%; display: grid; place-items: center; color: rgba(246,240,231,.6); transition: color .2s, border-color .2s; flex-shrink: 0; }
.foot-socials a:hover { color: var(--brass-light); border-color: var(--brass); }
.foot-socials svg { width: 16px; height: 16px; }

/* ---- service page hero ---- */
.svc-hero {
  position: relative; min-height: 62vh; display: flex; align-items: flex-end;
  color: #fff; overflow: hidden; padding-top: 84px;
}
.svc-hero-bg { position: absolute; inset: 0; background: #2a1216; }
.svc-hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.svc-hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,18,19,.5) 0%, rgba(23,18,19,.3) 40%, rgba(23,18,19,.9) 100%);
}
.svc-hero-inner { position: relative; z-index: 2; width: 100%; padding-bottom: clamp(40px,7vh,80px); }
.svc-hero-inner .eyebrow { color: var(--brass-light); margin-bottom: 20px; }
.svc-hero-inner h1 { font-size: clamp(2.6rem,7vw,5.4rem); font-weight: 340; max-width: 16ch; }
.svc-hero-inner h1 .em { font-style: italic; color: var(--brass-light); }
.svc-hero-inner .hero-price { margin-top: 18px; display: inline-flex; align-items: center; gap: 10px; background: rgba(23,18,19,.6); backdrop-filter: blur(6px); border: 1px solid var(--brass); border-radius: 30px; padding: 10px 20px; }
.svc-hero-inner .hero-price .price-label { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.7); font-weight: 600; }
.svc-hero-inner .hero-price .price-value { font-family: var(--display); font-size: 1.3rem; color: var(--brass-light); font-style: italic; }

/* service page body */
.svc-page-intro { padding: clamp(70px,9vw,120px) 0; background: var(--cream); }
.svc-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px,7vw,96px); align-items: center; }
.svc-intro-grid .si-body { font-size: 1.06rem; color: var(--charcoal); font-weight: 300; }
.svc-intro-grid .si-body p + p { margin-top: 18px; }
.si-features { margin-top: 30px; display: flex; flex-direction: column; gap: 12px; }
.si-feature { display: flex; align-items: flex-start; gap: 12px; }
.si-feature svg { width: 18px; height: 18px; color: var(--wine); flex: none; margin-top: 3px; }
.si-feature span { font-size: .96rem; color: var(--charcoal); }

.svc-page-gallery { padding: clamp(70px,9vw,120px) 0; background: var(--paper); }
.svc-page-process { padding: clamp(70px,9vw,120px) 0; background: var(--cream); }
.svc-page-faq { padding: clamp(70px,9vw,120px) 0; background: var(--paper); }
.faq-list { margin-top: 50px; max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 22px 0; font-family: var(--display); font-size: 1.15rem; color: var(--ink); font-weight: 400;
}
.faq-q .faq-arrow { width: 22px; height: 22px; flex: none; color: var(--wine); transition: transform .3s; }
.faq-item.open .faq-q .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 0 22px; font-size: .98rem; color: var(--charcoal); font-weight: 300; line-height: 1.7; }

/* pricing card */
.pricing-card {
  background: var(--ink); color: var(--cream); border-radius: 6px;
  padding: clamp(30px,4vw,50px); margin-top: 60px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;
  overflow: hidden;
}
.pricing-card .pc-left { min-width: 0; }
.pricing-card .pc-right { min-width: 0; }
.pricing-card .pc-left .pc-eyebrow { font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass-light); font-weight: 700; margin-bottom: 14px; }
.pricing-card .pc-left h3 { font-size: clamp(1.6rem,3vw,2.4rem); font-weight: 340; }
.pricing-card .pc-left .pc-price { margin-top: 18px; }
.pricing-card .pc-left .pc-price .from { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,240,231,.6); font-weight: 600; }
.pricing-card .pc-left .pc-price .amount { font-family: var(--display); font-size: clamp(2.4rem,5vw,3.6rem); color: var(--brass-light); font-style: italic; line-height: 1; }
.pricing-card .pc-left .pc-price .note { font-size: .82rem; color: rgba(246,240,231,.55); margin-top: 8px; font-weight: 300; }
.pricing-card .pc-right p { font-size: .98rem; color: rgba(246,240,231,.78); font-weight: 300; margin-bottom: 24px; }
.pricing-card .pc-tiers { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.pricing-card .pc-tier { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid rgba(246,240,231,.12); padding-bottom: 12px; }
.pricing-card .pc-tier:last-child { border-bottom: none; padding-bottom: 0; }
.pricing-card .pc-tier-label { font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(246,240,231,.65); font-weight: 600; }
.pricing-card .pc-tier-range { font-family: var(--display); font-size: 1.35rem; color: var(--brass-light); font-style: italic; }

/* ---- careers ---- */
.careers-positions { display: flex; flex-direction: column; gap: 20px; margin-top: 56px; }
.career-card {
  background: #fff; border: 1px solid var(--line); border-radius: 6px;
  padding: clamp(24px,3vw,36px); transition: .35s;
}
.career-card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(0,0,0,.35); border-color: transparent; }
.career-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 20px; flex-wrap: wrap; margin-bottom: 14px;
}
.career-card h3 { font-family: var(--display); font-size: 1.45rem; font-weight: 400; color: var(--ink); margin-bottom: 4px; }
.career-type { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--wine); font-weight: 600; }
.career-card > p { font-size: .97rem; color: var(--charcoal); font-weight: 300; line-height: 1.65; }
.career-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.career-tags span { font-size: .72rem; letter-spacing: .04em; padding: 5px 13px; border: 1px solid var(--line); border-radius: 30px; color: var(--charcoal); font-weight: 500; }
.careers-cta { margin-top: 48px; padding: 40px; background: var(--cream-2); border-radius: 6px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.careers-cta p { font-size: 1.05rem; color: var(--charcoal); font-weight: 300; max-width: 46ch; }

/* ---- apply page ---- */
.apply-layout { display: grid; grid-template-columns: 1fr 1.3fr; gap: clamp(40px,6vw,80px); align-items: start; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .navlinks, .nav-phone { display: none; }
  .nav-btn { display: none; }
  .burger { display: flex; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .proc-grid { grid-template-columns: 1fr 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .promise-grid, .feat-grid, .about-grid, .contact-grid, .svc-intro-grid, .apply-layout { grid-template-columns: 1fr; gap: 48px; }
  .before-after { aspect-ratio: 4/3.4; max-height: 520px; }
  .about-img-wrap { max-width: 440px; }
  .masonry { column-count: 2; }
  .foot-top { grid-template-columns: 1fr 1fr; }
  .about-img-wrap .award { width: 120px; height: 120px; }
  .team-members { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 620px) {
  .svc-grid, .proc-grid, .why-grid { grid-template-columns: 1fr; }
  .rev-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .f-row { grid-template-columns: 1fr; }
  .feat-list { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.6rem,11vw,4rem); }
  .promise blockquote { font-size: clamp(1.5rem,7vw,2.1rem); }
  .svc { min-height: 420px; }
  .trust { gap: 12px 18px; }
  .nav-cta .nav-btn { display: none; }
  .scrollcue { display: none; }
  .hannah-callout { flex-direction: column; align-items: flex-start; gap: 14px; }
  .team-members { grid-template-columns: 1fr; }
}
/* =========================================================
   Nav Dropdown
   ========================================================= */
.nav-dropdown-wrap { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 4px; cursor: pointer; }
.dd-caret { transition: transform .25s; flex-shrink: 0; }
.nav-dropdown-wrap:hover .dd-caret { transform: rotate(180deg); }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 28px rgba(23,18,19,.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  transform: translateX(-50%) translateY(-4px);
  z-index: 200;
}
.nav-dropdown-wrap:hover .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 9px 20px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--cream); color: var(--wine); }

/* Drawer Services toggle button */
.drawer-svc-toggle {
  font-family: var(--display); font-size: clamp(1.8rem,7vw,2.6rem); color: var(--ink);
  padding: 10px 0; border: none; border-bottom: 1px solid var(--line);
  background: none; cursor: pointer; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
}
.drawer-svc-toggle span { font-family: var(--sans); font-size: .8rem; color: var(--wine); font-weight: 600; }
.drawer-chevron { transition: transform .25s; flex-shrink: 0; margin-left: auto; }
.drawer-svc-toggle[aria-expanded="true"] .drawer-chevron { transform: rotate(180deg); }

/* Drawer sub-links */
.drawer-sub { display: none; flex-direction: column; padding: 0 0 8px 18px; }
.drawer-sub.open { display: flex; }
.drawer-sub a {
  font-size: .88rem;
  color: rgba(23,18,19,.6);
  text-decoration: none;
  padding: 6px 0;
  transition: color .2s;
}
.drawer-sub a:hover { color: var(--brass-light); }

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