:root {
  --wood-dark: #241a12;
  --wood: #3b2a1c;
  --wood-light: #5c4530;
  --rope: #c9a869;
  --amber: #e8a548;
  --cream: #f6f0e6;
  --ink: #2a2118;
  --muted: #6b5940;
  --max: 1100px;
  --radius: 6px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
h1, h2, h3 { font-family: Georgia, "Times New Roman", serif; line-height: 1.2; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  background: var(--wood-dark);
  border-bottom: 1px solid rgba(201,168,105,0.25);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo img { display: block; height: 44px; width: auto; }
.nav { display: flex; gap: 28px; }
.nav a { color: var(--cream); text-decoration: none; font-size: 0.95rem; opacity: 0.9; }
.nav a:hover { color: var(--amber); opacity: 1; }
.nav-cta {
  background: var(--amber); color: var(--wood-dark) !important; padding: 9px 18px;
  border-radius: var(--radius); font-weight: 600; opacity: 1 !important;
}
.nav-toggle {
  display: none; flex-direction: column; align-items: center; justify-content: center;
  gap: 5px; background: none; border: none; cursor: pointer;
  min-width: 44px; min-height: 44px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); display: block; }

/* Hero */
.hero {
  position: relative;
  color: var(--cream);
  background: var(--wood-dark);
}
.hero img { width: 100%; height: 62vh; min-height: 420px; object-fit: cover; opacity: 0.55; }
.hero-content {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  justify-content: center; align-items: center; text-align: center; padding: 24px;
}
.hero-content .eyebrow { color: var(--amber); text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.8rem; margin-bottom: 14px; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.4rem); max-width: 820px; }
.hero-content p { max-width: 560px; font-size: 1.1rem; color: rgba(246,240,230,0.9); }
.btn {
  display: inline-block; background: var(--amber); color: var(--wood-dark);
  padding: 14px 30px; border-radius: var(--radius); text-decoration: none;
  font-weight: 700; margin-top: 8px;
}
.btn:hover { background: #f2b862; }
.btn-outline {
  display: inline-block; border: 1px solid var(--cream); color: var(--cream);
  padding: 13px 28px; border-radius: var(--radius); text-decoration: none; margin: 8px 0 0 10px;
}

/* Sections */
section { padding: 72px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .eyebrow { color: var(--wood-light); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; }
.section-head h2 { font-size: 2rem; }
.section-alt { background: #fff; }

/* About */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-photo img { border-radius: var(--radius); }
.about-text .eyebrow { color: var(--wood-light); text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; font-weight: 700; }
.about-text h2 { font-size: 2rem; }
.about-text p { color: var(--muted); }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e8dfd0; padding: 18px 0; }
.faq-item summary {
  cursor: pointer; font-weight: 700; font-family: Georgia, serif; font-size: 1.05rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--amber); font-size: 1.4rem; flex-shrink: 0; }
.faq-item[open] summary::after { content: '\2212'; }
.faq-item p { color: var(--muted); margin: 12px 0 0; font-size: 0.95rem; }

/* Gallery */
.gallery { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; }
.gallery img { border-radius: var(--radius); height: 100%; object-fit: cover; }
.gallery-side { display: grid; gap: 16px; }

/* Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.feature { background: #fff; border: 1px solid #e8dfd0; border-radius: var(--radius); padding: 26px; }
.feature h3 { font-size: 1.1rem; }
.feature p { color: var(--muted); margin: 0; font-size: 0.95rem; }
.feature .mark { color: var(--amber); font-size: 1.4rem; margin-bottom: 10px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-left: 8px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%; background: var(--wood-dark); color: var(--amber);
  font-family: Georgia, serif; font-weight: 700; margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* Quote form */
.quote { background: var(--wood-dark); color: var(--cream); }
.quote .section-head .eyebrow { color: var(--amber); }
.quote .section-head p { color: rgba(246,240,230,0.75); }
.form-card { background: rgba(246,240,230,0.05); border: 1px solid rgba(201,168,105,0.25); border-radius: 10px; padding: 36px; max-width: 640px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
label { display: block; font-size: 0.85rem; margin-bottom: 6px; color: rgba(246,240,230,0.85); }
input, select, textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius); border: 1px solid rgba(201,168,105,0.35);
  background: rgba(255,255,255,0.06); color: var(--cream); font-size: 0.95rem; font-family: inherit;
}
input::placeholder, textarea::placeholder { color: rgba(246,240,230,0.4); }
textarea { resize: vertical; min-height: 110px; }
.field { margin-bottom: 16px; }
.form-submit { width: 100%; text-align: center; border: none; cursor: pointer; font-size: 1rem; }
.honeypot { position: absolute; left: -9999px; }
.form-note { font-size: 0.82rem; color: rgba(246,240,230,0.6); margin-top: 14px; text-align: center; }

/* Design concepts */
.concept-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 26px; }
.concept { margin: 0; }
.concept-media img { width: 100%; border-radius: var(--radius); }
.concept figcaption { color: var(--muted); font-size: 0.92rem; margin-top: 12px; }

/* Header phone (desktop) */
.nav-phone { font-weight: 700; white-space: nowrap; }
.nav-phone:hover { color: var(--amber); }

/* Sticky call bar (mobile only) */
.call-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: var(--amber); color: var(--wood-dark); text-decoration: none;
  font-weight: 700; font-size: 1.05rem; text-align: center;
  padding: 16px 20px calc(16px + env(safe-area-inset-bottom));
  box-shadow: 0 -2px 14px rgba(0,0,0,0.25);
}

footer { background: #150f0a; color: rgba(246,240,230,0.7); padding: 40px 0; font-size: 0.9rem; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; align-items: center; }
footer a { color: var(--amber); text-decoration: none; }
footer a:hover { text-decoration: underline; }
.credit { font-size: 0.82rem; opacity: 0.75; }

@media (max-width: 860px) {
  .site-header .wrap { position: relative; }
  .nav-toggle { display: flex; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--wood-dark); flex-direction: column; gap: 18px;
    padding: 16px 24px 24px; border-bottom: 1px solid rgba(201,168,105,0.25);
  }
  .nav.is-open { display: flex; }
  .nav-cta { text-align: center; }
  .call-bar { display: block; }
  /* keep the sticky call bar from covering footer content */
  body { padding-bottom: 68px; }
  .gallery { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .features, .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
