:root {
  --ink: #181512;
  --muted: #71695f;
  --paper: #f7f3ed;
  --paper-2: #eee6da;
  --line: #d8cdbd;
  --wood: #8d6036;
  --wood-dark: #5d3a20;
  --cream: #fffaf4;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(32, 25, 18, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247,243,237,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(93,58,32,.11);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--ink); color: #fff; border-radius: 50%;
  font-family: "Playfair Display", serif; font-size: 24px;
}
.brand strong { display:block; font-family: "Playfair Display", serif; font-size: 22px; letter-spacing: .2px; }
.brand small { display:block; margin-top: 5px; text-transform: uppercase; letter-spacing: 1.6px; font-size: 9px; color: var(--muted); }
.nav-links { display:flex; align-items:center; gap:26px; font-size: 14px; font-weight: 700; }
.nav-links > a:not(.btn):hover { color: var(--wood); }
.menu-btn { display:none; border:0; background:none; font-weight:800; }

.btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding: 15px 21px; border: 1px solid var(--ink); border-radius: 999px;
  background: var(--ink); color:#fff; font-weight:800; transition:.2s ease; cursor:pointer;
}
.btn:hover { transform: translateY(-2px); background: var(--wood-dark); border-color: var(--wood-dark); }
.btn-small { padding: 11px 17px; }
.btn-ghost { background:transparent; border-color:rgba(255,255,255,.55); color:#fff; }
.btn-ghost:hover { background:#fff; color:var(--ink); border-color:#fff; }

.hero {
  min-height: 720px; position:relative; overflow:hidden; color:#fff;
  background:
    linear-gradient(112deg, rgba(19,15,12,.94) 0%, rgba(19,15,12,.76) 45%, rgba(19,15,12,.28) 100%),
    repeating-linear-gradient(90deg, #3d2818 0 56px, #583a23 56px 112px, #6a472b 112px 168px, #49301d 168px 224px);
}
.hero::after {
  content:""; position:absolute; inset:auto -10% -190px auto; width:640px; height:640px; border-radius:50%;
  border:1px solid rgba(255,255,255,.14); box-shadow:0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.02);
}
.hero-grid { position:relative; z-index:2; min-height:720px; display:grid; grid-template-columns:1.45fr .7fr; gap:90px; align-items:center; }
.eyebrow { margin:0 0 14px; text-transform:uppercase; letter-spacing:2.4px; font-size:12px; font-weight:800; color:#dfc39e; }
.eyebrow.dark { color: var(--wood); }
.hero h1 { max-width:820px; margin:0; font-family:"Playfair Display",serif; font-size:clamp(48px,6.4vw,84px); line-height:1.02; letter-spacing:-1.8px; }
.hero-text { max-width:720px; margin:26px 0 0; color:rgba(255,255,255,.82); font-size:18px; }
.hero-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:34px; }
.trust-row { display:flex; flex-wrap:wrap; gap:22px; margin-top:32px; color:rgba(255,255,255,.72); font-size:13px; }
.hero-card { align-self:end; margin-bottom:76px; padding:30px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.09); backdrop-filter:blur(12px); border-radius:var(--radius); }
.hero-card h2 { margin:5px 0 12px; font-family:"Playfair Display",serif; font-size:32px; }
.hero-card p { color:rgba(255,255,255,.76); }
.mini-label { margin:0!important; font-size:11px; text-transform:uppercase; letter-spacing:1.8px; font-weight:800; color:#dfc39e!important; }
.hero-card-links { display:flex; gap:18px; margin-top:20px; font-weight:800; font-size:13px; }
.hero-card-links a { border-bottom:1px solid rgba(255,255,255,.4); }

.section { padding: 100px 0; }
.intro { background: var(--cream); }
.split-heading { display:grid; grid-template-columns:1.3fr .7fr; gap:90px; align-items:end; }
.split-heading h2, .section-heading h2, .about h2, .contact h2 { margin:0; font-family:"Playfair Display",serif; font-size:clamp(38px,4.4vw,58px); line-height:1.08; }
.split-heading > p { margin:0; color:var(--muted); font-size:17px; }

.services { background:var(--paper); }
.section-heading { max-width:760px; margin-bottom:44px; }
.cards { display:grid; grid-template-columns:repeat(3, 1fr); gap:16px; }
.service-card { min-height:285px; padding:28px; border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.38); display:flex; flex-direction:column; }
.service-card h3 { margin:40px 0 10px; font-family:"Playfair Display",serif; font-size:26px; }
.service-card p { margin:0; color:var(--muted); }
.service-num { font-size:11px; letter-spacing:2px; font-weight:800; color:var(--wood); }
.accent-card { background:var(--ink); color:#fff; border-color:var(--ink); }
.accent-card p { color:rgba(255,255,255,.68); }
.accent-card a { margin-top:auto; font-weight:800; color:#e4c39c; }

.work { background:var(--ink); color:#fff; }
.work-heading { max-width:none; display:flex; align-items:end; justify-content:space-between; gap:50px; }
.work-heading > p { max-width:470px; color:rgba(255,255,255,.62); margin:0; }
.gallery { display:grid; grid-template-columns:1.1fr .9fr .9fr; grid-auto-rows:260px; gap:16px; }
.gallery-item { margin:0; border-radius:var(--radius); overflow:hidden; }
.gallery-item.tall { grid-row:span 2; }
.gallery-item.wide { grid-column:span 2; }
.photo-placeholder { width:100%; height:100%; padding:25px; display:flex; flex-direction:column; justify-content:flex-end; background:linear-gradient(25deg,#5d3a20,#b7824e 60%,#d4ad7b); position:relative; isolation:isolate; }
.photo-placeholder::before { content:""; position:absolute; inset:0; background:repeating-linear-gradient(90deg,rgba(255,255,255,.07) 0 3px,transparent 3px 42px); z-index:-1; }
.photo-placeholder span { font-family:"Playfair Display",serif; font-size:26px; }
.photo-placeholder small { margin-top:6px; opacity:.66; text-transform:uppercase; letter-spacing:1.5px; }
.pattern-2 { background:linear-gradient(140deg,#76624f,#b6a48f); }
.pattern-3 { background:linear-gradient(155deg,#3b2b20,#8a6244 70%); }
.pattern-4 { background:linear-gradient(25deg,#8d6036,#d0a46f); }

.about { background:var(--paper-2); }
.about-grid { display:grid; grid-template-columns:1fr .7fr; gap:70px; align-items:center; }
.about-panel p:not(.eyebrow) { color:var(--muted); font-size:17px; }
.quote-card { background:var(--cream); border-radius:var(--radius); padding:46px; box-shadow:var(--shadow); transform:rotate(1.5deg); }
.quote { margin:0 0 24px; font-family:"Playfair Display",serif; font-size:34px; line-height:1.2; }
.quote-card span { color:var(--muted); font-weight:700; }

.contact { background:var(--wood-dark); color:#fff; }
.contact-grid { display:grid; grid-template-columns:.8fr 1fr; gap:80px; align-items:start; }
.contact-grid > div > p:not(.eyebrow) { color:rgba(255,255,255,.7); max-width:560px; }
.contact-direct { margin-top:35px; display:grid; gap:12px; }
.contact-direct a { display:flex; justify-content:space-between; gap:20px; border-bottom:1px solid rgba(255,255,255,.16); padding:10px 0 14px; }
.contact-direct span { color:rgba(255,255,255,.68); }
.estimate-form { background:var(--cream); color:var(--ink); border-radius:var(--radius); padding:30px; display:grid; gap:16px; }
.estimate-form label { display:grid; gap:7px; font-size:13px; font-weight:800; }
.estimate-form input, .estimate-form select, .estimate-form textarea { width:100%; border:1px solid #d8cec0; background:#fff; border-radius:12px; padding:13px 14px; outline:none; }
.estimate-form input:focus, .estimate-form select:focus, .estimate-form textarea:focus { border-color:var(--wood); box-shadow:0 0 0 3px rgba(141,96,54,.12); }
.form-note { margin:0; color:var(--muted); font-size:11px; }

.footer { background:#110f0d; color:#fff; padding:70px 0 25px; }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr .7fr; gap:60px; }
.footer-brand small { color:rgba(255,255,255,.5); }
.footer-grid > div { display:flex; flex-direction:column; gap:7px; }
.footer-grid p, .footer-grid a, .footer-grid span { color:rgba(255,255,255,.58); }
.footer-grid strong { margin-bottom:6px; }
.footer-bottom { margin-top:50px; padding-top:20px; border-top:1px solid rgba(255,255,255,.12); display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.4); font-size:12px; }

@media (max-width: 900px) {
  .menu-btn { display:block; }
  .nav-links { display:none; position:absolute; left:20px; right:20px; top:70px; padding:20px; background:var(--cream); border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); flex-direction:column; align-items:stretch; }
  .nav-links.open { display:flex; }
  .hero-grid, .split-heading, .about-grid, .contact-grid { grid-template-columns:1fr; }
  .hero-grid { gap:30px; padding:100px 0 60px; }
  .hero-card { align-self:auto; margin:0; max-width:620px; }
  .cards { grid-template-columns:1fr 1fr; }
  .work-heading { display:block; }
  .work-heading > p { margin-top:18px; }
  .gallery { grid-template-columns:1fr 1fr; }
  .gallery-item.wide { grid-column:span 1; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width:min(100% - 26px, 1160px); }
  .site-header .brand small { display:none; }
  .hero { min-height:auto; }
  .hero-grid { min-height:auto; padding-top:72px; }
  .hero h1 { font-size:47px; }
  .hero-text { font-size:16px; }
  .hero-actions .btn { width:100%; }
  .section { padding:74px 0; }
  .split-heading { gap:25px; }
  .cards { grid-template-columns:1fr; }
  .service-card { min-height:230px; }
  .gallery { grid-template-columns:1fr; grid-auto-rows:250px; }
  .gallery-item.tall { grid-row:span 1; }
  .contact-direct a { flex-direction:column; gap:2px; }
  .footer-grid { grid-template-columns:1fr; gap:30px; }
  .footer-bottom { flex-direction:column; }
}
