:root {
  --paper: #f6f2eb;
  --paper-2: #efe8dc;
  --white: #fbf8f3;
  --ink: #241e19;
  --ink-2: #3b332c;
  --stone: #6d6359;
  --line: rgba(36, 30, 25, 0.12);
  --bronze: #8d7353;
  --bronze-2: #b3946c;
  --max: 1240px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0.01em;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
.wrap { width: min(var(--max), calc(100% - 48px)); margin-inline: auto; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(18px); animation: rise .9s var(--ease) forwards; }
.reveal-d1 { animation-delay: .12s; }
.reveal-d2 { animation-delay: .24s; }
.reveal-d3 { animation-delay: .36s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(246, 242, 235, 0.86);
  backdrop-filter: blur(18px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 88px; gap: 24px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo img.mark { height: 46px; width: auto; display: block; }
.logo img.lockup { height: 58px; width: auto; display: block; }
.logo-type {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.15;
}
.logo-type small {
  display: block; font-family: var(--sans); font-size: 8px;
  letter-spacing: 0.18em; color: var(--stone); font-weight: 400; margin-top: 3px;
}
.nav-links {
  display: flex; align-items: center; gap: 26px;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--bronze); }
.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 12px 18px; border-radius: 999px;
}
.nav-cta:hover { background: #3a3129; }
.menu-btn {
  display: none; width: 44px; height: 44px; border-radius: 10px;
  border: 1px solid var(--line); background: transparent; cursor: pointer;
}
.menu-btn i, .menu-btn i::before, .menu-btn i::after {
  content: ""; display: block; width: 16px; height: 1.5px; background: var(--ink); margin: 5px auto; position: relative;
}

/* Hero */
.hero {
  position: relative; min-height: calc(100vh - 82px);
  display: grid; align-items: end;
  overflow: hidden; color: #f7f1e8;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.06); animation: ken 18s var(--ease) forwards;
}
@keyframes ken { to { transform: scale(1); } }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,.18) 0%, rgba(20,16,12,.55) 70%, rgba(20,16,12,.72) 100%);
}
.hero-copy {
  position: relative; z-index: 2;
  padding: 0 0 92px;
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 11px; letter-spacing: 0.34em; text-transform: uppercase;
  color: var(--bronze-2); margin-bottom: 18px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 500; font-style: italic;
  font-size: clamp(48px, 8vw, 96px); line-height: 0.92;
  max-width: 12ch; margin-bottom: 20px;
}
.hero .sub {
  max-width: 34rem; font-size: 18px; color: rgba(247,241,232,.86); margin-bottom: 34px;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 22px; border-radius: 999px; border: 1px solid transparent;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  cursor: pointer; transition: .25s var(--ease); background: transparent;
}
.btn-bronze { background: var(--bronze); color: #fff; }
.btn-bronze:hover { background: #7a6347; }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #3a3129; }
.btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-line { border-color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }

/* Sections */
section { padding: 100px 0; }
.band { background: var(--paper-2); }
h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(36px, 5.4vw, 64px); line-height: 1.05; letter-spacing: -0.02em;
}
h3 { font-family: var(--serif); font-weight: 500; font-size: 30px; line-height: 1.15; }
.lede { color: var(--stone); max-width: 40rem; margin-top: 16px; }
.section-head { margin-bottom: 48px; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.split img { width: 100%; height: 560px; object-fit: cover; }
.frame { border-radius: 2px; }

.brand-plate {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--line);
}
.page-hero { padding: 88px 0 48px; border-bottom: 1px solid var(--line); }
.page-hero h1 {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(44px, 7vw, 80px); line-height: .95;
}

/* Cards / services */
.cards-4, .cards-3, .cards-2 { display: grid; gap: 20px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-2 { grid-template-columns: 1fr 1fr; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 24px 50px rgba(36,30,25,.08); }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card-body { padding: 24px; }
.card p { color: var(--stone); margin: 10px 0 18px; font-size: 15.5px; }
.link {
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--bronze);
}

/* Colors */
.palette {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.swatch {
  border: 1px solid var(--line); background: var(--white); cursor: pointer;
  padding: 10px; text-align: left; transition: .25s var(--ease);
}
.swatch .chip {
  height: 92px; margin-bottom: 10px;
  background:
    radial-gradient(120% 80% at 20% 10%, rgba(255,255,255,.18), transparent 50%),
    var(--c);
  box-shadow: inset 0 0 30px rgba(0,0,0,.08);
}
.swatch strong { display: block; font-size: 13px; font-weight: 550; }
.swatch span { font-size: 11px; letter-spacing: .08em; color: var(--stone); text-transform: uppercase; }
.swatch.active { outline: 1px solid var(--ink); transform: translateY(-3px); }
.color-stage {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 28px; align-items: stretch; margin-top: 28px;
}
.color-preview {
  min-height: 280px; border: 1px solid var(--line);
  background:
    radial-gradient(80% 70% at 30% 20%, rgba(255,255,255,.16), transparent 55%),
    var(--c, #d8cfc3);
  box-shadow: inset 0 0 80px rgba(0,0,0,.12);
  display: grid; place-items: end start; padding: 24px; color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}
.disclaimer { font-size: 13px; color: var(--stone); margin-top: 16px; max-width: 52rem; }

/* Gallery */
.filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.filter {
  border: 1px solid var(--line); background: transparent; padding: 8px 14px;
  border-radius: 999px; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; cursor: pointer;
}
.filter.active, .filter:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.masonry {
  columns: 3; column-gap: 14px;
}
.masonry figure {
  break-inside: avoid; margin-bottom: 14px; position: relative; overflow: hidden; cursor: zoom-in;
}
.masonry img { width: 100%; height: auto; transition: transform .8s var(--ease); }
.masonry figure:hover img { transform: scale(1.04); }
.masonry figcaption {
  position: absolute; inset: auto 0 0 0; padding: 16px 14px;
  background: linear-gradient(transparent, rgba(20,16,12,.7));
  color: #fff; font-size: 12px; letter-spacing: .12em; text-transform: uppercase;
}

/* Why */
.why li { list-style: none; padding: 22px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 180px 1fr; gap: 20px; }
.why li:last-child { border-bottom: 1px solid var(--line); }
.why strong { font-family: var(--serif); font-size: 24px; font-weight: 500; }

/* Areas */
.cities { display: flex; flex-wrap: wrap; gap: 10px; }
.cities span {
  border: 1px solid var(--line); padding: 9px 14px; background: var(--white); font-size: 14px;
}

/* Testimonials placeholders */
.quote {
  background: var(--white); border: 1px solid var(--line); padding: 28px;
}
.quote p { font-family: var(--serif); font-size: 26px; line-height: 1.3; font-style: italic; }
.quote cite { display: block; margin-top: 16px; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--stone); font-style: normal; }

/* FAQ */
.faq details {
  border-top: 1px solid var(--line); padding: 18px 0;
}
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: var(--serif); font-size: 24px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--bronze); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--stone); margin-top: 10px; max-width: 52rem; }

/* Form */
form { display: grid; gap: 14px; }
label { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); display: block; margin-bottom: 6px; }
input, textarea, select {
  width: 100%; background: var(--white); border: 1px solid var(--line);
  padding: 13px 14px; border-radius: 2px;
}
textarea { min-height: 120px; resize: vertical; }
.row-2, .row-3 { display: grid; gap: 14px; }
.row-2 { grid-template-columns: 1fr 1fr; }
.row-3 { grid-template-columns: 1fr 1fr 1fr; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--stone); }
.check input { width: auto; margin-top: 4px; }
.note { font-size: 13px; color: var(--stone); }
.success {
  display: none; background: var(--white); border: 1px solid var(--line); padding: 28px;
}
.success.show { display: block; }
.file-preview { display: flex; flex-wrap: wrap; gap: 8px; }
.file-preview img { width: 72px; height: 72px; object-fit: cover; border: 1px solid var(--line); }

/* Contact strip */
.cta-band {
  background: var(--ink); color: #efe8dc; padding: 72px 48px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c9bbae; max-width: 36rem; margin: 12px 0 28px; }

/* Footer */
footer { background: #1c1814; color: #d8cfc3; padding: 64px 0 28px; }
.foot {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px;
}
.foot .logo img.mark { height: 72px; }
.foot .logo { margin-bottom: 14px; }
.foot a:hover { color: #fff; }
.legal {
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px;
  font-size: 12px; color: #9b8e82; display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}

/* Lightbox */
.lb {
  position: fixed; inset: 0; background: rgba(16,13,10,.9); display: none;
  place-items: center; z-index: 100; padding: 24px;
}
.lb.open { display: grid; }
.lb img { max-width: 92vw; max-height: 88vh; }
.lb button { position: absolute; top: 16px; right: 18px; background: none; border: 0; color: #fff; font-size: 30px; cursor: pointer; }

/* Mobile bar */
.mobile-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: rgba(246,242,235,.94); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr 1fr; gap: 8px;
}
.mobile-bar a {
  text-align: center; font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid var(--line); padding: 10px 6px;
}
.mobile-bar a.primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }

@media (max-width: 720px) {
  .logo-type { display: none; }
  .logo img.mark { height: 42px; }
}
@media (max-width: 980px) {
  .nav-links { display: none; position: absolute; top: 82px; left: 0; right: 0;
    background: var(--paper); flex-direction: column; align-items: flex-start;
    padding: 22px 24px 28px; border-bottom: 1px solid var(--line); gap: 16px; }
  .nav-links.open { display: flex; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .split, .cards-4, .cards-3, .cards-2, .palette, .color-stage, .row-2, .row-3, .why li, .foot {
    grid-template-columns: 1fr;
  }
  .palette { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 2; }
  .split img { height: 340px; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 72px; }
  section { padding: 72px 0; }
}
@media (max-width: 560px) {
  .palette { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 1; }
  .hero { min-height: 86vh; }
}
