/* ==========================================================================
   AG Signature Renovation — design system
   ========================================================================== */
:root {
  --bone: #F6F2EA;
  --cream: #EFE8DC;
  --card: #FCFAF5;
  --ink: #1A1613;
  --ink-soft: #4A443C;
  --muted: #6E655A;
  --line: #E2D9C9;
  --accent: #B0674A;
  --accent-deep: #96543B;
  --gold: #C99A4B;
  --serif: 'Newsreader', Georgia, serif;
  --sans: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --wrap: 1200px;
  --radius: 6px;
  --shadow: 0 24px 48px -24px rgba(26, 22, 19, .28);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 76px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; background: none; border: 0; cursor: pointer; color: inherit; }
::selection { background: rgba(176, 103, 74, .25); }

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 300;
  background: var(--ink); color: var(--bone); padding: 10px 18px; border-radius: 4px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding-left: clamp(20px, 5vw, 56px); padding-right: clamp(20px, 5vw, 56px); }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding-left: clamp(20px, 5vw, 56px); padding-right: clamp(20px, 5vw, 56px); }
.section { padding: clamp(72px, 9vw, 112px) 0; }

h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; letter-spacing: -.02em; }
h1 { font-size: clamp(38px, 5.6vw, 68px); line-height: 1.04; }
h2 { font-size: clamp(30px, 3.8vw, 44px); line-height: 1.1; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.25; }

.eyebrow {
  font-size: 12.5px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 18px; font-weight: 600;
}
.lead { font-size: clamp(17px, 1.6vw, 19px); color: var(--ink-soft); line-height: 1.65; }
.muted { color: var(--muted); }

/* ---------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: 15px; padding: 15px 26px;
  border-radius: 3px; transition: transform .3s var(--ease), background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--ink); color: var(--bone); }
.btn-solid:hover { background: var(--accent-deep); }
.btn-light { background: var(--bone); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-ghost { border-color: rgba(246, 242, 234, .5); color: var(--bone); }
.btn-ghost:hover { border-color: var(--bone); background: rgba(246, 242, 234, .12); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-sm { padding: 11px 20px; font-size: 13.5px; }

/* ---------------------------------------------------------------- header */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 120;
  transition: background .35s ease, box-shadow .35s ease, color .35s ease;
  color: var(--bone);
}
.site-header.solid {
  background: rgba(246, 242, 234, .92);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
  color: var(--ink);
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  padding: 0 clamp(20px, 4vw, 48px); height: var(--header-h);
}
.brand { display: inline-flex; flex-direction: column; line-height: 1; flex-shrink: 0; }
.brand-top { font-family: var(--serif); font-weight: 500; font-size: 24px; letter-spacing: .2px; white-space: nowrap; }
.brand-sub {
  display: flex; justify-content: space-between; width: 100%;
  font-size: 10px; text-transform: uppercase; margin-top: 5px; opacity: .8;
  white-space: nowrap;
}

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 32px); font-size: 14.5px; }
.main-nav > a { position: relative; padding: 6px 0; opacity: .92; transition: opacity .2s ease; }
.main-nav > a:hover, .main-nav > a[aria-current="page"] { opacity: 1; }
.main-nav > a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: currentColor; transition: width .3s var(--ease);
}
.main-nav > a:hover::after, .main-nav > a[aria-current="page"]::after { width: 100%; }

.nav-dd { position: relative; }
.nav-dd-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 14.5px; padding: 6px 0; opacity: .92; }
.nav-dd-btn:hover { opacity: 1; }
.nav-dd-btn svg { transition: transform .25s ease; }
.nav-dd.open .nav-dd-btn svg { transform: rotate(180deg); }
.nav-dd-panel {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translate(-50%, 8px);
  width: 300px; background: var(--card); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); padding: 8px;
  opacity: 0; visibility: hidden; transition: opacity .22s ease, transform .22s var(--ease), visibility .22s;
  color: var(--ink);
}
.nav-dd.open .nav-dd-panel { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.nav-dd-panel a { display: block; padding: 10px 14px; border-radius: 6px; font-size: 14px; transition: background .15s ease, color .15s ease; }
.nav-dd-panel a:hover { background: var(--cream); color: var(--accent); }

.header-cta { display: flex; align-items: center; gap: 20px; }
.header-phone { font-size: 14.5px; font-weight: 600; letter-spacing: .3px; opacity: .92; }
.header-phone:hover { opacity: 1; }
.site-header:not(.solid) .btn-solid { background: var(--bone); color: var(--ink); }
.site-header:not(.solid) .btn-solid:hover { background: #fff; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; margin-right: -10px; }
.menu-toggle span { display: block; width: 24px; height: 1.8px; background: currentColor; transition: transform .3s var(--ease), opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.8px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110; background: var(--bone); color: var(--ink);
  padding: calc(var(--header-h) + 20px) clamp(24px, 6vw, 40px) 40px;
  transform: translateY(-102%); transition: transform .45s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu nav { display: flex; flex-direction: column; max-width: 420px; margin: 0 auto; }
.mobile-menu a { padding: 12px 4px; font-size: 17px; border-bottom: 1px solid var(--cream); }
.mobile-menu a:hover { color: var(--accent); }
.mob-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin: 22px 4px 6px; }
.mob-quote { margin-top: 22px; background: var(--ink); color: var(--bone); text-align: center; border-radius: 4px; padding: 15px !important; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-bottom: 0 !important; }

/* ---------------------------------------------------------------- heroes */
.hero { position: relative; min-height: clamp(560px, 86vh, 780px); display: flex; align-items: flex-end; overflow: hidden; }
.hero-page { min-height: clamp(440px, 62vh, 560px); }
.hero img.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22, 18, 15, .55) 0%, rgba(22, 18, 15, .12) 34%, rgba(22, 18, 15, .22) 60%, rgba(22, 18, 15, .82) 100%); }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--wrap); margin: 0 auto; padding: calc(var(--header-h) + 40px) clamp(20px, 5vw, 56px) clamp(48px, 6vw, 72px); color: var(--bone); }
.hero .eyebrow { color: rgba(246, 242, 234, .85); }
.hero h1 { max-width: 15ch; }
.hero-page h1 { max-width: 20ch; font-size: clamp(34px, 4.6vw, 54px); }
.hero .lead { max-width: 56ch; margin-top: 20px; color: rgba(246, 242, 234, .92); }
.hero-actions { display: flex; gap: 14px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
.hero-note { font-size: 15px; }
.hero-note a { border-bottom: 1px solid rgba(246, 242, 234, .55); padding-bottom: 1px; }
.hero-note a:hover { border-color: var(--bone); }
.trust-row { display: flex; gap: clamp(18px, 3vw, 34px); flex-wrap: wrap; margin-top: 34px; padding-top: 22px; border-top: 1px solid rgba(246, 242, 234, .25); }
.trust-row span { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; letter-spacing: .4px; color: rgba(246, 242, 234, .9); }
.trust-row svg { color: var(--gold); }

.crumbs { margin-bottom: 26px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; letter-spacing: .4px; }
.crumbs a { opacity: .75; }
.crumbs a:hover { opacity: 1; text-decoration: underline; }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: 8px; opacity: .5; }

/* ---------------------------------------------------------------- reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s 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; }

/* ---------------------------------------------------------------- home statement */
.statement { display: grid; grid-template-columns: 1.7fr 1fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.statement-text { font-family: var(--serif); font-size: clamp(25px, 2.9vw, 33px); line-height: 1.36; letter-spacing: -.01em; }
.statement-text .dim { color: #8A8071; }

.stats { display: flex; flex-direction: column; gap: 0; }
.stat { border-top: 1px solid var(--line); padding: 18px 0 20px; }
.stat-num { font-family: var(--serif); font-size: 27px; line-height: 1.15; }
.stat-num span { color: var(--accent); }
.stat-cap { font-size: 13.5px; color: var(--muted); margin-top: 4px; }

/* ---------------------------------------------------------------- service cards */
.svc-grid { display: grid; gap: 22px; }
.svc-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.svc-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.svc-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s ease, border-color .25s ease;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: #D5C9B4; }
.svc-card-img { aspect-ratio: 4 / 3; overflow: hidden; }
.svc-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.svc-card:hover .svc-card-img img { transform: scale(1.05); }
.svc-card-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.svc-card-body p { font-size: 14px; color: var(--muted); }
.svc-more { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--accent); display: inline-flex; align-items: center; gap: 8px; }
.svc-more svg { transition: transform .3s var(--ease); }
.svc-card:hover .svc-more svg { transform: translateX(4px); }

/* ---------------------------------------------------------------- split feature (why us) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.split-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 5; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-list { display: flex; flex-direction: column; gap: 26px; margin-top: 34px; }
.feature { display: flex; gap: 18px; align-items: flex-start; }
.feature-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--card); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.feature h3 { font-size: 19px; margin-bottom: 4px; }
.feature p { font-size: 14.5px; color: var(--muted); }

/* ---------------------------------------------------------------- process */
.process { background: var(--ink); color: var(--bone); }
.process .eyebrow { color: var(--gold); }
.process h2 { color: var(--bone); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 3vw, 40px); margin-top: 48px; }
.step { border-top: 1px solid rgba(246, 242, 234, .22); padding-top: 20px; }
.step-num { font-family: var(--serif); font-size: 15px; color: var(--gold); letter-spacing: 1px; }
.step h3 { font-size: 20px; margin: 10px 0 8px; color: var(--bone); }
.step p { font-size: 14px; color: rgba(246, 242, 234, .72); line-height: 1.6; }

/* ---------------------------------------------------------------- carousel */
.carousel-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 34px; }
.carousel-nav { display: flex; gap: 10px; }
.car-btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--card); display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.car-btn:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.car-strip {
  display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px clamp(20px, 5vw, 56px) 18px; scroll-padding-left: clamp(20px, 5vw, 56px);
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.car-strip::-webkit-scrollbar { display: none; }
.car-item { flex: 0 0 clamp(250px, 28vw, 350px); scroll-snap-align: start; cursor: zoom-in; }
.car-frame { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.car-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.car-item:hover .car-frame img { transform: scale(1.05); }
.car-cap { font-size: 13.5px; color: var(--muted); margin-top: 12px; }

/* ---------------------------------------------------------------- reviews */
.reviews { background: var(--cream); }
.reviews-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 56px); margin-top: 40px; }
.review {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
}
.stars { color: var(--gold); letter-spacing: 3px; font-size: 15px; margin-bottom: 16px; }
.review p { font-family: var(--serif); font-size: clamp(19px, 2vw, 23px); line-height: 1.42; font-style: italic; margin-bottom: 18px; }
.review footer { font-size: 13.5px; color: var(--muted); }

/* ---------------------------------------------------------------- areas */
.areas-cloud { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip {
  display: inline-block; white-space: nowrap;
  padding: 10px 18px; border: 1px solid var(--line); border-radius: 99px; font-size: 14px;
  background: var(--card); transition: all .2s ease;
}
.chip:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* tidy text-link grid for the home "areas we cover" list */
.areas-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px 28px; margin-top: 30px; }
.areas-list .chip {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 13px 4px; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  background: none; font-size: 15px; font-weight: 500; white-space: normal; text-align: left;
  transition: color .2s ease, border-color .2s ease, padding-left .25s var(--ease);
}
.areas-list .chip::after {
  content: "→"; color: var(--accent); opacity: 0; transform: translateX(-6px);
  transition: opacity .2s ease, transform .25s var(--ease); flex-shrink: 0;
}
.areas-list .chip:hover { background: none; color: var(--accent); border-color: var(--accent); padding-left: 8px; }
.areas-list .chip:hover::after { opacity: 1; transform: translateX(0); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.area-card {
  position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3;
  display: flex; align-items: flex-end; color: var(--bone);
}
.area-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.area-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,18,15,0) 30%, rgba(22,18,15,.78) 100%); }
.area-card:hover img { transform: scale(1.06); }
.area-card-body { position: relative; z-index: 2; padding: 20px 22px; width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.area-card-body h3 { font-size: 20px; }
.area-card-body .pc { font-size: 12px; letter-spacing: 1.5px; opacity: .8; }
.area-card-body svg { flex-shrink: 0; transition: transform .3s var(--ease); }
.area-card:hover .area-card-body svg { transform: translateX(4px); }

/* ---------------------------------------------------------------- included list */
.included-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; margin-top: 34px; }
.included-item { display: flex; gap: 14px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; font-size: 15px; }
.included-item svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

/* ---------------------------------------------------------------- recent work thumbs */
.recent-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.recent-item { cursor: zoom-in; }
.recent-item .frame { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.recent-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.recent-item:hover img { transform: scale(1.05); }
.recent-item figcaption { font-size: 13.5px; color: var(--muted); margin-top: 10px; }

/* ---------------------------------------------------------------- other services */
.other-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 30px; }
.other-svc {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--card);
  padding: 16px 18px; font-size: 14.5px; font-weight: 500;
  transition: all .2s ease;
}
.other-svc:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.other-svc svg { opacity: .55; }

/* ---------------------------------------------------------------- FAQ */
.faq-section { background: var(--cream); }
.faq-list { margin-top: 26px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 4px; font-family: var(--serif); font-size: clamp(17px, 1.8vw, 20px); line-height: 1.35;
  transition: color .2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-item summary svg { flex-shrink: 0; transition: transform .25s ease; color: var(--muted); }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-a { padding: 0 4px 22px; max-width: 62ch; }
.faq-a p { font-size: 15px; color: var(--ink-soft); line-height: 1.65; }

/* ---------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; padding: clamp(90px, 11vw, 130px) 0; text-align: center; }
.cta-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: rgba(22, 18, 15, .74); }
.cta-inner { position: relative; z-index: 2; color: var(--bone); max-width: 660px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px); }
.cta-inner h2 { font-size: clamp(32px, 4.4vw, 48px); margin-bottom: 16px; }
.cta-inner p { font-size: 16px; opacity: .9; max-width: 50ch; margin: 0 auto 30px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------------------------------------------------------------- footer */
.site-footer { background: var(--ink); color: #C9C0B2; padding: clamp(56px, 7vw, 80px) 0 0; }
.footer-grid {
  max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(20px, 5vw, 56px);
  display: grid; grid-template-columns: 1.3fr .8fr 1.6fr .7fr; gap: clamp(32px, 4vw, 56px);
}
.footer-logo { font-family: var(--serif); font-size: 23px; color: var(--bone); margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.65; }
.footer-contact { margin-top: 16px; }
.footer-contact a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(201, 192, 178, .4); }
.footer-contact a:hover { color: var(--bone); }
.footer-head { font-size: 11px; letter-spacing: 2.2px; text-transform: uppercase; color: var(--accent); font-weight: 600; margin-bottom: 18px; }
.footer-head a:hover { color: var(--bone); }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer-col a:hover { color: var(--bone); }
.footer-areas { display: grid; grid-template-columns: 1fr 1fr; gap: 0 28px; }
.footer-base { border-top: 1px solid rgba(246, 242, 234, .13); margin-top: 48px; padding: 22px clamp(20px, 5vw, 56px); }
.footer-base p { max-width: var(--wrap); margin: 0 auto; font-size: 12.5px; color: #8A8071; }

/* ---------------------------------------------------------------- WhatsApp float */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 100;
  display: inline-flex; align-items: center; gap: 9px;
  background: #1FA855; color: #fff; font-weight: 600; font-size: 14px;
  padding: 13px 20px; border-radius: 99px; box-shadow: 0 14px 34px -12px rgba(20, 90, 50, .55);
  transition: transform .3s var(--ease), box-shadow .3s ease;
}
.wa-float:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(20, 90, 50, .6); }

/* ---------------------------------------------------------------- lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; background: rgba(22, 18, 15, .94);
  display: flex; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 48px);
  opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s;
  cursor: zoom-out;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: min(94vw, 1000px); max-height: 86vh; object-fit: contain; border-radius: 4px; }
.lightbox-cap { position: absolute; bottom: clamp(18px, 4vw, 34px); left: 0; right: 0; text-align: center; color: rgba(246, 242, 234, .8); font-size: 14px; }
.lightbox-close {
  position: absolute; top: 18px; right: 18px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--bone); color: var(--ink); font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
}
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; border-radius: 50%;
  background: rgba(246, 242, 234, .14); color: var(--bone); display: flex; align-items: center; justify-content: center; cursor: pointer;
  transition: background .2s ease;
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(246, 242, 234, .3); }
.lightbox-prev { left: 14px; } .lightbox-next { right: 14px; }

/* ---------------------------------------------------------------- gallery filters */
.filter-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 30px; }
.filter-btn {
  padding: 9px 18px; border: 1px solid var(--line); border-radius: 99px; font-size: 13.5px; font-weight: 500;
  background: var(--card); transition: all .2s ease;
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { cursor: zoom-in; }
.gallery-item.hide { display: none; }
.gallery-item .frame { aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption { font-size: 13.5px; color: var(--muted); margin-top: 10px; }
.gallery-item figcaption b { display: block; color: var(--ink); font-weight: 600; font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase; }

/* ---------------------------------------------------------------- contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(40px, 6vw, 72px); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.contact-card { display: flex; gap: 18px; align-items: flex-start; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; }
.contact-card h3 { font-size: 18px; margin-bottom: 4px; }
.contact-card p { font-size: 14.5px; color: var(--muted); }
.contact-card a.big { font-size: 17px; font-weight: 600; color: var(--accent-deep); }
.contact-card a.big:hover { text-decoration: underline; }
.quote-form { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow); }
.quote-form h2 { font-size: clamp(24px, 2.6vw, 30px); margin-bottom: 8px; }
.quote-form > p { font-size: 14.5px; color: var(--muted); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .6px; margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--bone); border: 1px solid var(--line); border-radius: 5px; padding: 13px 15px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(176, 103, 74, .15); }
.field textarea { min-height: 120px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 13px; color: var(--muted); margin-top: 14px; }

/* ---------------------------------------------------------------- misc pages */
.prose { max-width: 70ch; }
.prose p { margin-bottom: 18px; color: var(--ink-soft); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
.value-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; }
.value-card h3 { font-size: 19px; margin: 16px 0 8px; }
.value-card p { font-size: 14.5px; color: var(--muted); }
.value-icon { width: 46px; height: 46px; border-radius: 50%; background: var(--cream); display: flex; align-items: center; justify-content: center; color: var(--accent); }

.big-quote { font-family: var(--serif); font-size: clamp(26px, 3.4vw, 38px); line-height: 1.32; letter-spacing: -.01em; max-width: 24ch; }
.big-quote .dim { color: #8A8071; }

/* ---------------------------------------------------------------- responsive */
@media (max-width: 1080px) {
  .other-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .main-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }
  .statement, .split, .contact-grid { grid-template-columns: 1fr; }
  .svc-grid.cols-3, .areas-grid, .gallery-grid, .recent-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-list { grid-template-columns: repeat(3, 1fr); }
  .split-img { aspect-ratio: 4 / 3; }
  .reviews-grid { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr; }
  .hero { min-height: clamp(520px, 78vh, 700px); }
}
@media (max-width: 600px) {
  .svc-grid.cols-3, .svc-grid.cols-2, .areas-grid, .gallery-grid, .recent-grid, .values-grid, .other-grid { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: repeat(2, 1fr); gap: 2px 18px; }
  .steps { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
  .car-item { flex-basis: 74vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-areas { grid-template-columns: 1fr 1fr; }
  .wa-float span { display: none; }
  .wa-float { padding: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
