/* ============================================================
   H H FLOORING — warm editorial craftsman
   Newsreader (display serif) + Hanken Grotesk (body)
   Walnut brown accent · charcoal · warm greys · white
   ============================================================ */

:root {
  /* color */
  --ink: #211e1b;          /* near-black warm charcoal */
  --ink-2: #3b3631;
  --muted: #6e665d;
  --line: #e3ddd4;
  --paper: #f7f4ef;        /* warm off-white */
  --paper-2: #efeae2;
  --white: #ffffff;
  --walnut: #8a5a36;       /* primary brown accent */
  --walnut-deep: #6f4526;
  --walnut-soft: #a9764e;
  --oak: #c9a063;          /* warm gold highlight */
  --stone: #f1ede6;

  /* type */
  --display: "Newsreader", Georgia, serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;

  /* layout */
  --maxw: 1240px;
  --gut: clamp(20px, 5vw, 72px);
  --radius: 4px;

  --shadow-sm: 0 2px 10px rgba(33,30,27,.06);
  --shadow: 0 18px 50px -22px rgba(33,30,27,.32);
  --shadow-lg: 0 40px 90px -40px rgba(33,30,27,.45);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.04; letter-spacing: -.01em; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

/* ---------- utility type ---------- */
.eyebrow {
  font-family: var(--body);
  font-size: 12.5px;
  letter-spacing: .26em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--walnut);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1.5px;
  background: var(--walnut);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: ""; width: 30px; height: 1.5px; background: var(--walnut); display: inline-block;
}

.section-title {
  font-size: clamp(32px, 5vw, 60px);
  margin-top: 18px;
  letter-spacing: -.02em;
}
.section-title em { font-style: italic; color: var(--walnut); }

.lede { font-size: clamp(17px, 2vw, 19px); color: var(--muted); max-width: 56ch; }

section { position: relative; }

.pad { padding-block: clamp(72px, 11vw, 132px); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body); font-weight: 700;
  font-size: 14.5px; letter-spacing: .02em;
  padding: 15px 26px; border-radius: var(--radius);
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .25s, color .25s, box-shadow .25s, border-color .25s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--walnut); color: #fff; box-shadow: 0 12px 26px -12px rgba(138,90,54,.7); }
.btn-primary:hover { background: var(--walnut-deep); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(138,90,54,.8); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); }
.btn-line { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn-line:hover { border-color: var(--walnut); color: var(--walnut); transform: translateY(-2px); }

/* ============================================================
   TOP BAR + NAV
   ============================================================ */
.topbar {
  background: var(--ink); color: #d9cfc2;
  font-size: 13px; letter-spacing: .02em;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding-block: 9px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .2s; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; opacity: .8; }
.topbar .tb-left { display: flex; gap: 26px; align-items: center; }
.topbar .tb-right { display: flex; gap: 18px; align-items: center; }
.topbar .tb-rating { color: var(--oak); font-weight: 600; }

header.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(247,244,239,.86);
  backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background .3s, box-shadow .3s, border-color .3s;
}
header.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(247,244,239,.96); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo .mark {
  width: 42px; height: 42px; border-radius: 6px;
  background: linear-gradient(150deg, var(--walnut), var(--walnut-deep));
  color: #fff; display: grid; place-items: center;
  font-family: var(--display); font-weight: 600; font-size: 20px;
  box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.logo .mark::after {
  content: ""; position: absolute; inset: 0;
  background: repeating-linear-gradient(115deg, transparent 0 5px, rgba(255,255,255,.07) 5px 6px);
}
.logo .name { line-height: 1; }
.logo .name b { font-family: var(--display); font-weight: 600; font-size: 21px; letter-spacing: -.01em; display: block; }
.logo .name span { font-size: 10.5px; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a { font-size: 15px; font-weight: 600; color: var(--ink-2); position: relative; padding: 4px 0; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--walnut); transition: width .28s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { font-family: var(--display); font-weight: 600; font-size: 19px; color: var(--ink); display: flex; align-items: center; gap: 8px; }
.nav-phone svg { width: 17px; height: 17px; color: var(--walnut); }

.burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--ink); transition: .3s; }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
  padding: 40px var(--gut); transform: translateX(100%); transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { color: #f3ece2; font-family: var(--display); font-size: 30px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu .close { position: absolute; top: 26px; right: var(--gut); background: none; border: 0; color: #fff; font-size: 34px; cursor: pointer; line-height: 1; }
.mobile-menu .mm-foot { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 90vh; display: flex; align-items: center; color: #fff; isolation: isolate; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: -2; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08); transition: opacity 1.4s ease, transform 7s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20,17,14,.86) 0%, rgba(20,17,14,.6) 42%, rgba(20,17,14,.25) 100%),
    linear-gradient(0deg, rgba(20,17,14,.55), rgba(20,17,14,.1));
}
.hero .wrap { width: 100%; padding-block: clamp(60px, 9vw, 110px); }
.hero-inner { max-width: 720px; }
.hero h1 { font-size: clamp(42px, 7vw, 86px); font-weight: 500; letter-spacing: -.025em; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--oak); }
.hero p { font-size: clamp(17px, 2.1vw, 21px); color: rgba(255,255,255,.86); margin-top: 22px; max-width: 54ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 46px; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.18); }
.hero-badge { display: flex; align-items: center; gap: 12px; }
.hero-badge .b-num { font-family: var(--display); font-size: 34px; line-height: 1; color: #fff; }
.hero-badge .b-lab { font-size: 13px; color: rgba(255,255,255,.74); line-height: 1.25; }
.hero-stars { color: var(--oak); letter-spacing: 2px; font-size: 16px; }

.hero-dots { position: absolute; bottom: 26px; right: var(--gut); z-index: 5; display: flex; gap: 9px; }
.hero-dots button { width: 30px; height: 4px; border-radius: 2px; border: 0; background: rgba(255,255,255,.35); cursor: pointer; transition: background .3s; padding: 0; }
.hero-dots button.active { background: var(--oak); }

/* scroll cue */
.scroll-cue { position: absolute; bottom: 24px; left: var(--gut); z-index: 5; font-size: 11px; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.7); display: flex; align-items: center; gap: 10px; }
.scroll-cue .line { width: 1px; height: 34px; background: rgba(255,255,255,.4); position: relative; overflow: hidden; }
.scroll-cue .line::after { content: ""; position: absolute; top: -34px; left: 0; width: 100%; height: 34px; background: var(--oak); animation: drop 2.2s infinite; }
@keyframes drop { 0% { top: -34px; } 60%,100% { top: 34px; } }

/* ============================================================
   MARQUEE / TRUST STRIP
   ============================================================ */
.marquee { background: var(--ink); color: #efe7da; overflow: hidden; border-block: 1px solid rgba(255,255,255,.06); }
.marquee-track { display: flex; gap: 0; width: max-content; animation: scroll-x 32s linear infinite; }
.marquee-track .item { display: flex; align-items: center; gap: 18px; padding: 18px 34px; font-family: var(--display); font-size: 22px; white-space: nowrap; }
.marquee-track .item span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--walnut-soft); }
@keyframes scroll-x { to { transform: translateX(-50%); } }

/* ============================================================
   STATS
   ============================================================ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--line); border-radius: 6px; background: var(--white); overflow: hidden; box-shadow: var(--shadow-sm); }
.stat { padding: 38px 30px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat .num { font-family: var(--display); font-size: clamp(40px, 5vw, 58px); line-height: 1; color: var(--walnut); }
.stat .lab { margin-top: 10px; font-size: 14.5px; color: var(--muted); font-weight: 500; }

/* ============================================================
   SERVICES
   ============================================================ */
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; margin-bottom: 52px; }
.sec-head .lede { margin-top: 16px; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.svc-card {
  position: relative; border-radius: 8px; overflow: hidden; background: var(--ink);
  min-height: 360px; display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; box-shadow: var(--shadow-sm); isolation: isolate;
}
.svc-card .bg { position: absolute; inset: 0; background-size: cover; background-position: center; z-index: -2; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.svc-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(20,16,12,.92) 0%, rgba(20,16,12,.45) 48%, rgba(20,16,12,.12) 100%); transition: background .4s; }
.svc-card:hover .bg { transform: scale(1.08); }
.svc-card:hover::after { background: linear-gradient(0deg, rgba(99,58,28,.94) 0%, rgba(40,26,14,.5) 50%, rgba(20,16,12,.1) 100%); }
.svc-card .body { padding: 28px; position: relative; }
.svc-num { position: absolute; top: -2px; right: 26px; font-family: var(--display); font-size: 15px; color: rgba(255,255,255,.5); }
.svc-card h3 { font-size: 25px; }
.svc-card p { font-size: 14.5px; color: rgba(255,255,255,.8); margin-top: 8px; max-height: 0; opacity: 0; overflow: hidden; transition: max-height .5s ease, opacity .4s ease, margin .4s; }
.svc-card:hover p { max-height: 120px; opacity: 1; margin-top: 10px; }
.svc-card .arrow { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--oak); }
.svc-card .arrow svg { width: 15px; height: 15px; transition: transform .3s; }
.svc-card:hover .arrow svg { transform: translateX(5px); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 84px); align-items: center; }
.about-media { position: relative; }
.about-media .main-img { border-radius: 8px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-media .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about-media .sub-img { position: absolute; bottom: -42px; left: -42px; width: 52%; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--paper); aspect-ratio: 1/1; }
.about-media .sub-img img { width: 100%; height: 100%; object-fit: cover; }
.about-media .exp-chip {
  position: absolute; top: -28px; right: -22px; background: var(--walnut); color: #fff;
  border-radius: 50%; width: 132px; height: 132px; display: grid; place-content: center; text-align: center;
  box-shadow: var(--shadow); transform: rotate(-6deg); line-height: 1;
}
.about-media .exp-chip b { font-family: var(--display); font-size: 44px; display: block; }
.about-media .exp-chip small { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; opacity: .92; margin-top: 4px; display: block; }

.about-copy h2 { font-size: clamp(30px, 4.4vw, 52px); margin-top: 18px; }
.about-copy h2 em { font-style: italic; color: var(--walnut); }
.about-copy .quote { font-family: var(--display); font-style: italic; font-size: 22px; line-height: 1.45; color: var(--ink-2); margin: 24px 0; padding-left: 22px; border-left: 3px solid var(--walnut); }
.about-copy p { color: var(--muted); margin-bottom: 16px; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; margin: 28px 0 32px; }
.about-points li { list-style: none; display: flex; gap: 11px; align-items: flex-start; font-weight: 600; color: var(--ink-2); font-size: 15.5px; }
.about-points svg { width: 21px; height: 21px; color: var(--walnut); flex: none; margin-top: 1px; }
.about-sign { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.about-sign .sig { font-family: var(--display); font-style: italic; font-size: 26px; color: var(--ink); }
.about-sign .who { font-size: 13.5px; color: var(--muted); }

/* ============================================================
   PROCESS
   ============================================================ */
.process { background: var(--ink); color: #f3ece2; }
.process .eyebrow { color: var(--oak); }
.process .eyebrow::before, .process .eyebrow.center::after { background: var(--oak); }
.process .section-title { color: #fff; }
.process .section-title em { color: var(--oak); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 56px; }
.step { position: relative; padding-top: 30px; }
.step .pn { font-family: var(--display); font-size: 16px; color: var(--oak); letter-spacing: .1em; }
.step .bar { height: 2px; background: rgba(255,255,255,.14); margin: 14px 0 22px; position: relative; }
.step .bar::after { content: ""; position: absolute; left: 0; top: 0; height: 100%; width: 26px; background: var(--oak); }
.step h3 { font-size: 23px; color: #fff; }
.step p { font-size: 14.5px; color: rgba(255,255,255,.7); margin-top: 10px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; }
.g-item { overflow: hidden; border-radius: 6px; cursor: pointer; position: relative; background: var(--paper-2); }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(99,58,28,.45), transparent 60%); opacity: 0; transition: opacity .4s; }
.g-item:hover img { transform: scale(1.08); }
.g-item:hover::after { opacity: 1; }
.g-item .zoom { position: absolute; right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; opacity: 0; transform: translateY(8px); transition: .35s; }
.g-item:hover .zoom { opacity: 1; transform: translateY(0); }
.g-item .zoom svg { width: 18px; height: 18px; color: var(--walnut); }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 120; background: rgba(15,12,9,.94); display: none; align-items: center; justify-content: center; padding: 5vw; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: 6px; box-shadow: var(--shadow-lg); }
.lightbox .lb-close { position: absolute; top: 22px; right: 28px; background: none; border: 0; color: #fff; font-size: 40px; cursor: pointer; line-height: 1; }
.lightbox .lb-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.12); border: 0; color: #fff; width: 54px; height: 54px; border-radius: 50%; cursor: pointer; font-size: 24px; display: grid; place-items: center; transition: background .25s; }
.lightbox .lb-nav:hover { background: var(--walnut); }
.lightbox .lb-prev { left: 24px; } .lightbox .lb-next { right: 24px; }

/* ============================================================
   WHY US (feature band)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.why-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 34px 30px; transition: transform .35s, box-shadow .35s, border-color .35s; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.why-ic { width: 56px; height: 56px; border-radius: 12px; background: var(--stone); display: grid; place-items: center; margin-bottom: 20px; color: var(--walnut); transition: background .35s, color .35s; }
.why-card:hover .why-ic { background: var(--walnut); color: #fff; }
.why-ic svg { width: 27px; height: 27px; }
.why-card h3 { font-size: 22px; }
.why-card p { font-size: 14.5px; color: var(--muted); margin-top: 10px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--paper-2); }
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px; }
.tst-card { background: var(--white); border-radius: 8px; padding: 32px 30px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.tst-card .mark { font-family: var(--display); font-size: 74px; line-height: .6; color: var(--paper-2); position: absolute; top: 26px; right: 26px; }
.tst-stars { color: var(--oak); letter-spacing: 2px; margin-bottom: 16px; }
.tst-card p { font-size: 16px; color: var(--ink-2); flex: 1; }
.tst-who { display: flex; align-items: center; gap: 13px; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
.tst-av { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(150deg, var(--walnut-soft), var(--walnut-deep)); color: #fff; display: grid; place-items: center; font-family: var(--display); font-size: 19px; flex: none; }
.tst-who b { font-size: 15px; display: block; }
.tst-who span { font-size: 13px; color: var(--muted); }
.yelp-bar { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 46px; flex-wrap: wrap; text-align: center; }
.yelp-bar .yb-rate { font-family: var(--display); font-size: 40px; color: var(--walnut); }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band { position: relative; color: #fff; overflow: hidden; isolation: isolate; }
.cta-band .bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(60,36,18,.93), rgba(28,20,14,.82)); }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(30px, 4.6vw, 54px); max-width: 16ch; }
.cta-inner h2 em { font-style: italic; color: var(--oak); }
.cta-inner .sub { color: rgba(255,255,255,.82); margin-top: 14px; font-size: 17px; }
.cta-actions { display: flex; flex-direction: column; gap: 14px; }
.cta-actions .phone-big { font-family: var(--display); font-size: 30px; display: flex; align-items: center; gap: 12px; }
.cta-actions .phone-big svg { width: 26px; height: 26px; color: var(--oak); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 64px); }
.contact-info .ci-list { display: flex; flex-direction: column; gap: 6px; margin: 30px 0 34px; }
.ci-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.ci-row .ic { width: 46px; height: 46px; border-radius: 10px; background: var(--stone); display: grid; place-items: center; color: var(--walnut); flex: none; }
.ci-row .ic svg { width: 21px; height: 21px; }
.ci-row .lab { font-size: 12.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.ci-row .val { font-family: var(--display); font-size: 21px; color: var(--ink); margin-top: 2px; }
.ci-row .val.small { font-size: 17px; font-family: var(--body); font-weight: 600; }
.map-embed { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 8px; }
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; filter: grayscale(.25) contrast(1.02); }

.contact-form { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 28px; }
.contact-form .fsub { color: var(--muted); font-size: 15px; margin-top: 6px; margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; letter-spacing: .03em; color: var(--ink-2); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: 15.5px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 6px; background: var(--paper);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--walnut); background: #fff; box-shadow: 0 0 0 3px rgba(138,90,54,.12); }
.field textarea { resize: vertical; min-height: 110px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #c0492f; background: #fdf3f1; }
.field .err { color: #c0492f; font-size: 12.5px; margin-top: 5px; display: none; }
.field.invalid .err { display: block; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 12.5px; color: var(--muted); margin-top: 14px; text-align: center; }
.form-success { display: none; text-align: center; padding: 30px 10px; }
.form-success.show { display: block; }
.form-success .ok { width: 64px; height: 64px; border-radius: 50%; background: #e7f1e9; color: #2f7a4a; display: grid; place-items: center; margin: 0 auto 18px; }
.form-success .ok svg { width: 32px; height: 32px; }
.form-success h3 { font-size: 26px; }
.form-success p { color: var(--muted); margin-top: 8px; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site { background: var(--ink); color: #cabfb1; padding-top: clamp(60px, 8vw, 88px); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 56px; }
footer.site .logo .name b { color: #fff; }
footer.site .logo .name span { color: #9a8e7e; }
.foot-about { font-size: 14.5px; line-height: 1.7; margin-top: 20px; max-width: 36ch; }
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a { width: 40px; height: 40px; border-radius: 8px; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #cabfb1; transition: .25s; }
.foot-social a:hover { background: var(--walnut); border-color: var(--walnut); color: #fff; }
.foot-social svg { width: 18px; height: 18px; }
.foot-col h4 { font-family: var(--body); font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; font-weight: 700; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.foot-col a, .foot-col li { font-size: 14.5px; transition: color .2s; }
.foot-col a:hover { color: var(--oak); }
.foot-hours { display: flex; justify-content: space-between; gap: 14px; font-size: 14px; padding: 4px 0; }
.foot-hours span:last-child { color: #fff; font-weight: 600; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 13px; color: #9a8e7e; }
.foot-bottom a:hover { color: #fff; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; } .reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: opacity .6s; }
}

/* ============================================================
   MULTI-PAGE ADDITIONS (Dropdown, Subpage Layouts, FAQs, Grid Utilities)
   ============================================================ */

/* Desktop Navigation Dropdown */
.nav-links > a::after, .nav-dropdown > a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--walnut); transition: width .28s ease;
}
.nav-links > a:hover::after, .nav-dropdown:hover > a::after { width: 100%; }

.nav-dropdown {
  position: relative;
  display: inline-block;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  padding: 4px 0;
  cursor: pointer;
}
.nav-dropdown .chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.25s ease;
  stroke-width: 2.5;
}
.nav-dropdown:hover .chevron {
  transform: rotate(180deg);
  color: var(--walnut);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(12px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  padding: 10px;
  display: flex;
  flex-direction: column;
  width: 260px;
  z-index: 100;
  gap: 2px;
  margin-top: 10px;
}
.nav-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 20px;
  display: none;
}
.nav-dropdown:hover::after {
  display: block;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2) !important;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}
.dropdown-menu a::after {
  display: none !important;
}
.dropdown-menu a:hover {
  background: var(--stone);
  color: var(--walnut) !important;
}

/* Mobile Accordion Submenu */
.mobile-menu {
  overflow-y: auto;
  justify-content: flex-start;
  padding-top: 76px;
}
.mobile-dropdown {
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-dropdown-trigger {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  color: #f3ece2;
  font-family: var(--display);
  font-size: 30px;
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.mobile-dropdown-trigger .chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  stroke: rgba(255,255,255,0.6);
}
.mobile-dropdown.active .mobile-dropdown-trigger .chevron {
  transform: rotate(180deg);
  stroke: var(--oak);
}
.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding-left: 16px;
  gap: 2px;
}
.mobile-dropdown.active .mobile-dropdown-menu {
  max-height: 600px;
  padding-bottom: 16px;
}
.mobile-dropdown-menu a {
  font-size: 19px !important;
  padding: 8px 0;
  border-bottom: none !important;
  color: rgba(243,236,226,0.8);
}
.mobile-dropdown-menu a:hover {
  color: var(--oak);
}

/* Subpage Hero */
.subpage-hero {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(64px, 10vw, 100px);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(33,30,27,.8) 0%, rgba(33,30,27,.95) 100%);
}
.subpage-hero .bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.subpage-hero h1 {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 500;
  letter-spacing: -.02em;
}
.subpage-hero h1 em {
  font-style: italic;
  color: var(--oak);
}
.subpage-hero p {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.85);
  margin-top: 14px;
  max-width: 58ch;
}

/* Layout Grid Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 6vw, 64px);
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Comparison Table (for Services Page) */
.comparison-table-wrap {
  overflow-x: auto;
  margin-top: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 600px;
}
.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
}
.comparison-table th {
  background: var(--paper-2);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.comparison-table tr:last-child td {
  border-bottom: 0;
}
.comparison-table td b {
  color: var(--walnut);
}

/* FAQ Accordion */
.faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin-inline: auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color .3s;
}
.faq-trigger {
  width: 100%;
  background: none;
  border: 0;
  text-align: left;
  padding: 20px 24px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-trigger:hover {
  background: var(--paper);
}
.faq-trigger .chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
  stroke-width: 2.5;
}
.faq-item.active {
  border-color: var(--walnut);
}
.faq-item.active .faq-trigger {
  border-bottom: 1px solid var(--line);
  background: var(--stone);
}
.faq-item.active .faq-trigger .chevron {
  transform: rotate(180deg);
  color: var(--walnut);
}
.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-content p {
  padding: 20px 24px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* Filter Buttons (Gallery) */
.filter-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

/* Service Detail Intro */
.service-intro {
  padding-block: clamp(60px, 9vw, 100px);
}
.service-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 80px);
  align-items: center;
}
.service-intro-content h2 {
  font-size: clamp(30px, 4.5vw, 48px);
  margin-bottom: 20px;
}
.service-intro-content h2 em {
  font-style: italic;
  color: var(--walnut);
}
.service-intro-content p {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 16.5px;
}
.service-intro-media {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 16/11;
}
.service-intro-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service highlights / specs */
.service-highlights {
  background: var(--paper-2);
  padding-block: clamp(60px, 8vw, 90px);
}
.highlight-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.highlight-card {
  background: var(--white);
  padding: 30px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.highlight-card h3 {
  font-size: 21px;
  margin-bottom: 10px;
  color: var(--walnut);
}
.highlight-card p {
  font-size: 14.5px;
  color: var(--muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .services-grid, .why-grid, .tst-grid, .process-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .nav-links, .nav-phone { display: none; }
  .burger { display: flex; }
  .topbar .tb-left .hide-sm { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 460px; margin: 0 auto 50px; }
  .about-media .sub-img { left: auto; right: -20px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .services-grid, .why-grid, .tst-grid, .process-grid, .gallery-grid, .foot-grid { grid-template-columns: 1fr; }
  .about-points, .f-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 220px; }
  .g-tall { grid-row: span 1; } .g-wide { grid-column: span 1; }
  .hero { min-height: 84vh; }
  .cta-actions { width: 100%; }
}

/* ============================================================
   AGENCY CREDIT & TOOLTIP STYLES
   ============================================================ */
.agency-credit {
  position: relative;
  display: inline-block;
}
.agency-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  border-bottom: 1.5px dashed rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.agency-link:hover {
  color: var(--oak) !important;
  border-bottom-color: var(--oak);
  text-shadow: 0 0 10px rgba(217, 207, 194, 0.3);
}
.agency-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  width: 280px;
  background: rgba(28, 24, 20, 0.98);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(138, 90, 54, 0.35);
  border-radius: 8px;
  padding: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.55), 0 0 20px rgba(138, 90, 54, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.3s;
  z-index: 100;
  text-align: center;
}
.agency-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(28, 24, 20, 0.98) transparent transparent transparent;
}
.agency-credit:hover .agency-tooltip,
.agency-credit:focus-within .agency-tooltip {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.agency-tooltip h5 {
  font-family: var(--display);
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.agency-tooltip p {
  font-size: 13px;
  color: #cabfb1;
  line-height: 1.45;
  margin-bottom: 14px;
}
.agency-tooltip .btn-agency {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--walnut);
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 16px;
  border-radius: 4px;
  width: 100%;
  transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 10px rgba(138, 90, 54, 0.2);
}
.agency-tooltip .btn-agency:hover {
  background: var(--walnut-deep);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(138, 90, 54, 0.3);
}

@media (max-width: 600px) {
  .agency-tooltip {
    left: 50%;
    bottom: calc(100% + 10px);
  }
}

