:root {
  --primary: #2f3e2e;
  --primary-deep: #202b1f;
  --secondary: #6b7d4d;
  --accent: #c9b38a;
  --accent-dark: #a98f5e;
  --neutral: #f2efe8;
  --white: #fff;
  --ink: #1c231b;
  --muted: #5c6459;
  --line: rgba(47, 62, 46, .16);
  --shadow: 0 24px 70px rgba(32, 43, 31, .22);
  --heading: "Cormorant Garamond", Georgia, serif;
  --body: "Source Serif 4", Georgia, serif;
  --script: "Marck Script", cursive;
  --shell: 1296px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body { margin: 0; color: var(--ink); background: var(--white); font-family: var(--body); font-size: 17px; line-height: 1.65; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--heading); font-weight: 600; letter-spacing: -.01em; line-height: 1.08; }
h1 { font-size: clamp(2.7rem, 4.8vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2.1rem, 3.3vw, 3.2rem); font-weight: 700; }
h3 { font-size: 1.5rem; }
p { margin: 0 0 1.4rem; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.shell { width: min(calc(100% - 48px), var(--shell)); margin-inline: auto; }
.section { padding: 96px 0; }

.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px; color: var(--white); background: var(--primary); transform: translateY(-150%); transition: transform .2s; }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.announce { padding: 10px 0; color: var(--white); background: var(--primary-deep); text-align: center; font-size: .8rem; font-weight: 600; letter-spacing: .04em; }
.announce a { border-bottom: 1px solid rgba(255,255,255,.4); }

.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(242,239,232,.96); backdrop-filter: blur(6px); border-bottom: 1px solid var(--line); }
.nav-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; gap: 14px; }
.brand-icon { width: 46px; height: auto; flex: none; }
.brand-word { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word strong { font-family: var(--heading); font-size: 1.28rem; font-weight: 700; letter-spacing: .01em; color: var(--primary); text-transform: uppercase; }
.brand-word em { margin-top: 1px; font-style: normal; font-size: .68rem; font-weight: 600; letter-spacing: .2em; color: var(--secondary); text-transform: uppercase; }
.nav-menu { display: flex; align-items: center; gap: 4px; font-size: .88rem; font-weight: 600; }
.nav-menu > a { padding: 12px 14px; color: var(--primary); }
.nav-menu > a:hover { color: var(--secondary); }
.nav-phone { margin-left: 10px; padding: 10px 20px; color: var(--white) !important; background: var(--primary); border-radius: 999px; font-weight: 700; }
.nav-phone:hover { background: var(--secondary); }
.menu-toggle { display: none; padding: 10px; border: 0; background: none; font-weight: 700; cursor: pointer; }
.menu-bars { display: inline-flex; width: 24px; margin-left: 10px; flex-direction: column; gap: 4px; }
.menu-bars i { width: 100%; height: 2px; background: currentColor; }

.hero { position: relative; min-height: 660px; color: var(--white); background: var(--primary) url("assets/gallery-1.webp") center / cover no-repeat; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(32,43,31,.94) 0%, rgba(47,62,46,.85) 45%, rgba(47,62,46,.5) 100%); }
.hero-grid { position: relative; min-height: 660px; padding: 80px 0; display: flex; align-items: center; }
.hero-copy { max-width: 780px; }
.script-line { margin: 0 0 8px; color: var(--accent); font-family: var(--script); font-size: clamp(1.9rem, 3vw, 2.7rem); line-height: 1; }
.hero h1 { color: var(--white); }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lede { max-width: 640px; margin: 24px 0 30px; color: rgba(255,255,255,.86); font-size: 1.12rem; line-height: 1.75; }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 12px 28px; border: 2px solid transparent; border-radius: 999px; font-family: var(--heading); font-weight: 700; letter-spacing: .01em; line-height: 1.2; transition: transform .2s, background-color .2s, color .2s, border-color .2s; cursor: pointer; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: var(--primary); background: var(--accent); border-color: var(--accent); }
.button-gold:hover { background: #d8c49e; border-color: #d8c49e; }
.button-ghost { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.6); backdrop-filter: blur(6px); }
.button-ghost:hover { color: var(--primary); background: var(--white); }
.button-outline { color: var(--primary); background: transparent; border-color: var(--primary); }
.button-outline:hover { color: var(--white); background: var(--primary); }
.pill-row { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px 28px; }
.pill-row span { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.85); font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.pill-row span i { color: var(--accent); font-style: normal; }

.services { background: var(--neutral); }
.section-heading { max-width: 760px; margin-bottom: 12px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.kicker { display: inline-flex; margin: 0 0 14px; padding: 6px 16px; color: var(--primary); background: var(--accent); border-radius: 3px; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.section-heading h2 { color: var(--primary); }
.services-intro { max-width: 700px; margin: 18px auto 56px; text-align: center; color: var(--muted); }
.service-group { margin-bottom: 20px; }
.service-group-head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.service-group-head span { font-family: var(--script); font-size: 1.4rem; color: var(--secondary); }
.service-group-head h3 { color: var(--primary); font-size: 1.55rem; text-transform: uppercase; letter-spacing: .03em; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 44px; }
.service-grid:last-child { margin-bottom: 0; }
.service-card { padding: 30px 26px; display: flex; flex-direction: column; align-items: flex-start; background: var(--white); border-bottom: 4px solid var(--secondary); box-shadow: 0 8px 24px rgba(47,62,46,.06); transition: transform .2s, box-shadow .2s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(47,62,46,.12); }
.service-number { display: block; margin-bottom: 14px; color: var(--accent-dark); font-family: var(--heading); font-size: 1.15rem; font-weight: 700; }
.service-card h4 { margin: 0 0 10px; color: var(--primary); font-family: var(--heading); font-size: 1.35rem; font-weight: 700; }
.service-card p { color: var(--muted); font-size: .92rem; }
.service-card .card-link { margin-top: auto; color: var(--primary); font-size: .82rem; font-weight: 700; border-bottom: 2px solid var(--accent); }

.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-grid img { width: 100%; height: 440px; object-fit: cover; border-radius: 6px; box-shadow: var(--shadow); }
.about-copy h2 { margin-bottom: 16px; color: var(--primary); }
.about-copy .badge-years { display: inline-flex; align-items: center; gap: 10px; margin-top: 6px; padding: 10px 18px; color: var(--primary); background: var(--neutral); border: 1px solid var(--line); border-radius: 999px; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }

.checklist-panel { padding: 84px 0; }
.checklist-panel.dark { color: var(--white); background: var(--primary); }
.checklist-panel.light { background: var(--neutral); }
.checklist-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.checklist-panel.dark .kicker { background: var(--accent); color: var(--primary); }
.checklist-panel.dark h2 { color: var(--white); }
.checklist-panel.light h2 { color: var(--primary); }
.checklist-badge { display: inline-flex; margin-top: 22px; padding: 8px 18px; border-radius: 999px; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.checklist-panel.dark .checklist-badge { color: var(--primary); background: var(--accent); }
.checklist-panel.light .checklist-badge { color: var(--white); background: var(--primary); }
.checklist-items { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 32px; list-style: none; margin: 0; padding: 0; }
.checklist-items li { display: flex; gap: 14px; }
.checklist-items .num { flex: none; width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; font-family: var(--heading); font-weight: 700; font-size: .95rem; }
.checklist-panel.dark .checklist-items .num { color: var(--primary); background: var(--accent); }
.checklist-panel.light .checklist-items .num { color: var(--white); background: var(--primary); }
.checklist-items h4 { margin: 0 0 4px; font-family: var(--heading); font-size: 1.1rem; }
.checklist-items p { margin: 0; font-size: .88rem; }
.checklist-panel.dark .checklist-items p { color: rgba(255,255,255,.72); }
.checklist-panel.light .checklist-items p { color: var(--muted); }

.process { background: var(--white); }
.process-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin: 44px 0 40px; }
.process-list li { list-style: none; }
.process-list .num { display: inline-flex; width: 46px; height: 46px; margin-bottom: 18px; align-items: center; justify-content: center; color: var(--white); background: var(--secondary); border-radius: 50%; font-family: var(--heading); font-size: 1.15rem; font-weight: 700; }
.process-list h4 { margin-bottom: 8px; color: var(--primary); font-family: var(--heading); font-size: 1.35rem; }
.process-list p { margin: 0; color: var(--muted); font-size: .92rem; }
.process-close { text-align: center; }

.quote-section { padding: 96px 0; color: var(--white); background: var(--primary); }
.quote-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.quote-copy .script-line { color: var(--accent); }
.quote-copy h2 { color: var(--white); }
.quote-copy p { color: rgba(255,255,255,.78); }
.quote-card { padding: 34px; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); }
.quote-card form { display: grid; gap: 12px; }
.quote-card input, .quote-card textarea { width: 100%; min-height: 46px; padding: 10px 14px; display: block; color: var(--ink); background: var(--neutral); border: 1px solid var(--line); border-radius: 4px; font-size: .92rem; font-family: var(--body); }
.quote-card textarea { resize: vertical; }
.quote-card input:focus, .quote-card textarea:focus { border-color: var(--accent-dark); outline: 2px solid rgba(201,179,138,.35); }
.form-submit { width: 100%; }
.form-error { margin: 0; padding: 9px 12px; color: #7c1822; background: #ffe8e9; border-left: 3px solid #ad343e; font-size: .8rem; }

.stats { background: var(--neutral); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stats-grid article { padding: 34px; background: var(--white); border-top: 4px solid var(--accent); text-align: center; }
.stats-grid strong { display: block; font-family: var(--heading); font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--primary); }
.stats-grid h4 { margin: 8px 0 10px; color: var(--primary); font-family: var(--heading); font-size: 1.15rem; }
.stats-grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.faq-section { background: var(--white); }
.faq-shell { display: grid; grid-template-columns: .62fr 1.38fr; gap: 64px; align-items: start; }
.faq-intro h2 { color: var(--primary); }
.faq-intro > p:not(.kicker) { margin-top: 18px; color: var(--muted); }
.text-link { display: inline-flex; gap: 10px; color: var(--primary); font-weight: 700; border-bottom: 2px solid var(--accent); }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--neutral); border: 1px solid var(--line); }
.faq-item h3 { font-family: var(--body); font-size: 1.02rem; font-weight: 700; }
.faq-item button { width: 100%; min-height: 74px; padding: 18px 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; text-align: left; color: var(--primary); background: transparent; border: 0; font-weight: 700; cursor: pointer; }
.faq-item button span { position: relative; width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--white); }
.faq-item button span::before, .faq-item button span::after { content: ""; position: absolute; top: 12px; left: 7px; width: 12px; height: 2px; background: var(--primary); }
.faq-item button span::after { transform: rotate(90deg); transition: transform .2s; }
.faq-item button[aria-expanded="true"] span::after { transform: rotate(0); }
.faq-answer { padding: 0 24px 20px; color: var(--muted); }
.faq-answer p { margin: 0; }

.areas { position: relative; padding: 96px 0; color: var(--white); background: var(--primary-deep); overflow: hidden; }
.area-pattern { position: absolute; inset: 0; opacity: .1; background-image: radial-gradient(circle at 20% 20%, var(--accent) 0 2px, transparent 3px), radial-gradient(circle at 80% 62%, var(--accent) 0 2px, transparent 3px); background-size: 80px 80px, 110px 110px; }
.areas-inner { position: relative; }
.area-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; }
.area-grid a { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; color: var(--white); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16); border-radius: 4px; font-family: var(--heading); font-size: 1.1rem; font-weight: 700; transition: background-color .2s; }
.area-grid a:hover { background: rgba(255,255,255,.14); }
.area-grid a span:first-child { display: flex; align-items: baseline; gap: 12px; }
.area-grid a .idx { color: var(--accent); font-size: .8rem; font-weight: 700; }
.areas-note { margin: 30px 0 0; text-align: center; color: rgba(255,255,255,.7); }
.areas-note a { color: var(--accent); border-bottom: 1px solid var(--accent); }

.recent-work { background: var(--neutral); }
.recent-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.recent-card { position: relative; overflow: hidden; border-radius: 6px; box-shadow: 0 10px 30px rgba(47,62,46,.12); }
.recent-card img { width: 100%; height: 360px; object-fit: cover; display: block; transition: transform .4s; }
.recent-card:hover img { transform: scale(1.05); }
.recent-caption { position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 22px; color: var(--white); background: linear-gradient(0deg, rgba(32,43,31,.88), transparent); font-family: var(--heading); font-size: 1.15rem; font-weight: 700; }

.footer { padding: 84px 0 30px; background: var(--primary-deep); color: rgba(255,255,255,.78); }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 42px; align-items: start; }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand .brand-word strong { color: var(--white); }
.footer-brand > p { max-width: 320px; font-size: .88rem; color: rgba(255,255,255,.66); }
.footer-tagline { color: var(--accent) !important; font-family: var(--body) !important; font-size: .82rem !important; font-weight: 700 !important; letter-spacing: .22em !important; text-transform: uppercase; }
.footer h2 { margin-bottom: 16px; color: var(--white); font-family: var(--body); font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-top > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 10px; }
.footer-top a, .footer-top span { color: rgba(255,255,255,.66); font-size: .86rem; }
.footer-top a:hover { color: var(--accent); }
.footer-bottom { margin-top: 54px; padding-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid rgba(255,255,255,.14); font-size: .76rem; color: rgba(255,255,255,.55); }
.footer-bottom p { margin: 0; }

@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 991.98px) {
  .section { padding: 72px 0; }
  .nav-inner { min-height: 76px; }
  .brand-icon { width: 40px; }
  .brand-word strong { font-size: 1.05rem; }
  .menu-toggle { display: flex; align-items: center; }
  .nav-menu { position: absolute; top: 100%; left: 0; right: 0; padding: 18px 24px 28px; display: none; flex-direction: column; align-items: stretch; color: var(--white); background: var(--primary); box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-menu > a { width: 100%; padding: 14px 8px; color: var(--white); border-bottom: 1px solid rgba(255,255,255,.14); }
  .nav-phone { width: fit-content; margin: 16px 0 0; }
  .hero, .hero-grid { min-height: auto; }
  .hero-grid { padding: 68px 0; }
  .service-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid img { height: 320px; }
  .checklist-grid { grid-template-columns: 1fr; gap: 32px; }
  .checklist-items { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr; }
  .faq-shell { grid-template-columns: 1fr; gap: 40px; }
  .faq-intro { max-width: 650px; }
  .area-grid { grid-template-columns: 1fr 1fr; }
  .recent-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .section { padding: 60px 0; }
  .nav-inner { min-height: 66px; }
  .brand-icon { width: 34px; }
  .brand-word strong { font-size: .92rem; }
  .brand-word em { font-size: .56rem; }
  .menu-label { display: none; }
  .button-row { flex-direction: column; align-items: stretch; }
  .button-row .button { width: 100%; }
  .pill-row { gap: 10px 18px; }
  .service-group-head { flex-direction: column; gap: 4px; }
  .area-grid { grid-template-columns: 1fr; }
  .footer { padding-top: 56px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 36px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 479px) {
  body { font-size: 16px; }
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .shell { width: min(calc(100% - 28px), var(--shell)); }
  .faq-item button { min-height: 68px; padding: 16px; }
  .faq-answer { padding-inline: 16px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

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