:root {
  --forest: #0F1F18;
  --forest-mid: #16302A;
  --forest-soft: #1E3D34;
  --cream: #F1ECE0;
  --brass: #C9A86A;
  --brass-bright: #D6B879;
  --muted: #9AAA9F;
  --line: rgba(241,236,224,0.12);
  --container: 1180px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--forest);
  color: var(--cream);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.display { font-family: 'Fraunces', Georgia, serif; font-weight: 500; letter-spacing: -0.025em; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
a { color: inherit; }
button, input, select, textarea { font-family: inherit; }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brass); outline-offset: 2px; }
button:focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; }

.eyebrow {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--brass); font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--brass); }
.eyebrow.solo::before { display: none; }
.section-cream .eyebrow { color: var(--forest-soft); }
.section-cream .eyebrow::before { background: var(--forest-soft); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(15,31,24,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; max-width: var(--container); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
  width: 30px; height: 30px; border: 1.5px solid var(--brass);
  color: var(--brass); display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif; font-size: 16px; font-weight: 600;
  transform: rotate(45deg);
}
.brand-mark span { display: block; transform: rotate(-45deg); }
.brand-name { font-family: 'Fraunces', serif; font-size: 17px; color: var(--cream); letter-spacing: -0.01em; }
.brand-name .accent { color: var(--brass); }

.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--cream); text-decoration: none; font-size: 14px;
  opacity: 0.85; transition: opacity 0.15s, color 0.15s;
}
.nav-links a:hover { opacity: 1; color: var(--brass); }
.nav-cta {
  display: none;
  background: var(--brass); color: var(--forest); padding: 10px 16px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 13px;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.nav-cta:hover { background: var(--brass-bright); }
.nav-toggle {
  background: transparent; border: none; color: var(--cream);
  padding: 4px; cursor: pointer; display: flex;
}
.nav-mobile {
  display: none;
  background: var(--forest-mid); border-bottom: 1px solid var(--line);
  padding: 4px 24px 16px;
}
.nav-mobile.open { display: block; }
.nav-mobile a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; color: var(--cream); text-decoration: none;
  border-bottom: 1px solid var(--line); font-size: 16px;
}
.nav-mobile a .arrow { color: var(--brass); }

@media (min-width: 880px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
  .nav-toggle { display: none; }
  .nav-mobile.open { display: none; }
}

/* ============ HERO ============ */
.hero { padding: 56px 0 64px; position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(48px, 11vw, 96px);
  line-height: 0.95; letter-spacing: -0.03em; margin: 22px 0 0;
  color: var(--cream); text-wrap: balance;
}
.hero h1 .italic { color: var(--brass); font-style: italic; }
.hero p.lead {
  font-size: clamp(16px, 1.6vw, 19px); color: var(--muted);
  margin: 22px 0 30px; max-width: 540px; text-wrap: pretty;
}
.hero-ctas { display: flex; flex-direction: column; gap: 12px; max-width: 420px; }

.btn {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: transform 0.12s ease, background 0.15s, color 0.15s, border-color 0.15s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--brass); color: var(--forest); }
.btn-primary:hover { background: var(--brass-bright); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid var(--line); font-size: 13px; }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn .arrow { color: var(--brass); }
.btn-primary .arrow { color: var(--forest); }

.hero-img {
  height: clamp(280px, 40vh, 460px); border-radius: 4px;
  background: var(--forest-mid);
  border: 1px solid var(--line); position: relative; overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}

.trust {
  margin-top: 36px; display: grid; grid-template-columns: 1fr;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.trust-cell { padding: 18px 4px; border-bottom: 1px solid var(--line); text-align: center; }
.trust-cell:last-child { border-bottom: none; }
.trust-cell .top { font-family: 'Fraunces', serif; font-size: 19px; color: var(--cream); }
.trust-cell .bot { font-size: 13px; color: var(--muted); margin-top: 3px; }

@media (min-width: 720px) {
  .trust { grid-template-columns: repeat(3, 1fr); }
  .trust-cell { border-bottom: none; border-right: 1px solid var(--line); }
  .trust-cell:last-child { border-right: none; }
}
@media (min-width: 980px) {
  .hero { padding: 88px 0 88px; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: center; }
  .hero-img { height: clamp(440px, 60vh, 580px); }
}

/* ============ SECTIONS ============ */
.section { padding: 72px 0; }
.section-mid { background: var(--forest-mid); }
.section-cream { background: var(--cream); color: var(--forest); }
.section h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(36px, 6vw, 56px); line-height: 1.02;
  letter-spacing: -0.025em; margin: 14px 0 36px; text-wrap: balance;
}
.section-cream h2 { color: var(--forest); }
.section .lead-sub { font-size: 15px; color: var(--muted); margin: -24px 0 36px; max-width: 560px; }
.section-cream .lead-sub { color: #5C6660; }

/* services */
.services-list { display: grid; grid-template-columns: 1fr; gap: 0; }
.service { padding: 24px 0; border-top: 1px solid var(--line); }
.service:last-child { border-bottom: 1px solid var(--line); }
.service-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; margin-bottom: 10px; }
.service h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(22px, 2.5vw, 28px); margin: 0; color: var(--cream); letter-spacing: -0.015em;
}
.service .num { font-family: ui-monospace, monospace; font-size: 12px; color: var(--brass); flex-shrink: 0; }
.service p { font-size: 15px; color: var(--muted); margin: 0; max-width: 640px; text-wrap: pretty; }
@media (min-width: 880px) {
  .service { display: grid; grid-template-columns: 60px 1fr 1.4fr; gap: 32px; align-items: start; padding: 32px 0; }
  .service-head { display: contents; }
  .service .num { padding-top: 8px; order: 0; }
  .service h3 { padding-top: 4px; order: 1; }
  .service p { padding-top: 8px; order: 2; }
}

/* gallery */
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.gal {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--forest-soft), var(--forest-mid));
  border: 1px solid var(--line); position: relative; overflow: hidden;
  transition: transform 0.2s;
}
.gal:hover { transform: translateY(-2px); }
.gal::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(25deg, transparent 0 16px, rgba(201,168,106,0.06) 16px 17px);
}
.gal .label {
  position: absolute; bottom: 12px; left: 12px;
  background: var(--forest); color: var(--brass);
  padding: 5px 9px; font-family: ui-monospace, monospace;
  font-size: 11px; letter-spacing: 0.06em;
  border: 1px solid rgba(201,168,106,0.3);
}
.gal .corner {
  position: absolute; top: 12px; right: 12px;
  font-family: ui-monospace, monospace; font-size: 11px; color: var(--muted);
}
.gal:nth-child(1) { grid-column: span 2; aspect-ratio: 2 / 1.2; }
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(4, 1fr); gap: 8px; }
  .gal:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: 1 / 1; }
  .gal:nth-child(6) { grid-column: span 2; aspect-ratio: 2 / 1; }
}

/* form */
@media (min-width: 980px) {
  .estimate-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
  .estimate-copy { padding-top: 8px; }
}
.form-wrap {
  background: var(--cream); color: var(--forest);
  padding: clamp(28px, 5vw, 48px); border-radius: 4px;
}
.section-cream .form-wrap { background: #fff; }
.field { margin-bottom: 20px; }
.field label {
  display: block; font-size: 11px; color: #5C6660;
  letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 8px; font-weight: 600;
}
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(15,31,24,0.25);
  padding: 10px 0; font-size: 16px; color: var(--forest); border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-bottom-color: var(--forest);
}
.field select { appearance: none; background-image: none; }
.field textarea { resize: vertical; min-height: 80px; font-family: inherit; }
.cf-turnstile { margin: 4px 0 16px; min-height: 65px; }
.btn-submit {
  background: var(--forest); color: var(--brass);
  padding: 18px 22px; border-radius: 4px; border: none;
  font-size: 13px; font-weight: 600; letter-spacing: 0.05em;
  text-transform: uppercase; cursor: pointer; width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 8px;
}
.btn-submit:hover { background: #1a3329; }
.form-success {
  background: var(--forest); color: var(--cream);
  padding: 28px; border: 1px solid var(--forest-soft);
}
.form-success .head {
  font-family: 'Fraunces', serif; font-size: 26px; color: var(--brass);
  margin-bottom: 10px; letter-spacing: -0.02em;
}
.form-success .sub { font-size: 14px; color: var(--muted); }

/* faq */
.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; background: transparent; border: none; padding: 22px 0;
  display: flex; justify-content: space-between; align-items: flex-start;
  text-align: left; cursor: pointer; color: var(--cream); gap: 16px;
}
.faq-q .text {
  font-family: 'Fraunces', serif; font-size: clamp(18px, 2vw, 22px); letter-spacing: -0.015em;
}
.faq-q .icon {
  color: var(--brass); font-size: 24px; line-height: 1; flex-shrink: 0;
  transition: transform 0.2s; font-weight: 300;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a { overflow: hidden; max-height: 0; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a p { font-size: 15px; color: var(--muted); margin: 0 0 22px; max-width: 640px; text-wrap: pretty; }

/* contact */
.contact-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; border-bottom: 1px solid var(--line);
  text-decoration: none; color: var(--cream);
}
.contact-row:first-of-type { border-top: 1px solid var(--line); }
.contact-row .key {
  font-size: 11px; color: var(--brass); letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 6px;
}
.contact-row .val { font-family: 'Fraunces', serif; font-size: clamp(18px, 2vw, 24px); letter-spacing: -0.015em; }
.contact-row .val.small { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500; }
.contact-row .arrow { color: var(--brass); font-size: 22px; }
.contact-actions { display: flex; gap: 18px; align-items: center; }
.contact-actions a {
  color: var(--brass); text-decoration: none; font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600;
}
.contact-actions a:hover { color: var(--brass-bright); }

.cta-headline {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: clamp(44px, 8vw, 80px); line-height: 0.98;
  letter-spacing: -0.03em; margin: 0 0 8px; color: var(--cream);
}
.cta-headline .italic { color: var(--brass); font-style: italic; }

footer.foot {
  font-size: 12px; color: var(--muted);
  padding: 22px 24px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--container); margin: 0 auto; flex-wrap: wrap; gap: 8px;
}
footer.foot .domain { color: var(--brass); }

@media (max-width: 480px) {
  .hero { padding: 40px 0 48px; }
  .section { padding: 56px 0; }
  .container { padding: 0 20px; }
}

/* ============ MOBILE STICKY CTA ============ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: flex; gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(15,31,24,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
}
.mobile-cta-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 12px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 14px;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.mobile-cta-btn.primary { background: var(--brass); color: var(--forest); }
.mobile-cta-btn.ghost { background: transparent; color: var(--cream); border: 1px solid var(--line); }
.mobile-cta-btn:active { transform: translateY(1px); }
@media (min-width: 880px) { .mobile-cta { display: none; } }
@media (max-width: 879px) {
  body { padding-bottom: 76px; }
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
}
