:root {
  --bg: #1a1410;
  --paper: #f3ebe1;
  --ink: #2a211c;
  --copper: #c47a3a;
  --copper-deep: #9a5524;
  --champagne: #e8d3b0;
  --muted: #6e6258;
  --line: rgba(42, 33, 28, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(196, 122, 58, 0.18), transparent 45%),
    linear-gradient(180deg, #efe6da 0%, var(--paper) 40%, #e7dccf 100%);
  line-height: 1.7;
}

h1, h2, .brand, .eyebrow, .tag {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.02em;
}

.shell { width: min(1120px, calc(100% - 2rem)); margin-inline: auto; }

.notice {
  background: #2a211c;
  color: var(--champagne);
  text-align: center;
  font-size: 0.78rem;
  padding: 0.45rem 1rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(243, 235, 225, 0.88);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
}
.brand img { display: block; height: 42px; width: auto; }
.links { display: flex; gap: 1.1rem; }
.links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.nav-cta { display: flex; gap: 0.55rem; }

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 0.72rem 1.25rem;
  font: inherit;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.copper {
  background: linear-gradient(135deg, var(--copper), var(--copper-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(154, 85, 36, 0.28);
}
.btn.ghost, .btn.outline {
  background: transparent;
  border: 1.5px solid rgba(42, 33, 28, 0.25);
  color: var(--ink);
}
.btn.outline { border-color: var(--copper); color: var(--copper-deep); }

.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(26, 20, 16, 0.78) 0%, rgba(26, 20, 16, 0.35) 55%, transparent 100%),
    linear-gradient(0deg, rgba(26, 20, 16, 0.7), transparent 45%);
}
.hero-panel {
  position: relative;
  z-index: 1;
  color: #f8f1e8;
  padding: 4.5rem 0 3.2rem;
  max-width: 720px;
  margin-left: max(1rem, calc((100% - 1120px) / 2));
  animation: rise 0.8s ease both;
}
.eyebrow { color: var(--champagne); margin: 0 0 0.6rem; font-size: 1rem; }
.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
  line-height: 1.12;
  color: #fff;
}
.lead { margin: 0 0 1.4rem; color: rgba(248, 241, 232, 0.9); font-size: 1.05rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.hero .btn.outline { color: #fff; border-color: rgba(255,255,255,0.45); }

.strip {
  background: #2a211c;
  color: var(--champagne);
  padding: 1.1rem 0;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.strip span { display: block; font-size: 0.75rem; opacity: 0.7; }
.strip strong { font-size: 1.15rem; color: #fff; }

.block { padding: 4.2rem 0; }
.block.soft { background: rgba(255, 255, 255, 0.35); }
.tag {
  color: var(--copper-deep);
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}
h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1.2;
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.2rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.95fr 1.05fr; }
.checks { padding-left: 1.1rem; }
.checks li { margin: 0.35rem 0; }
.frame {
  margin: 0;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(42, 33, 28, 0.18);
}
.frame img { display: block; width: 100%; height: auto; }
.gallery.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}
.gallery figure {
  margin: 0;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--line);
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.gallery figcaption {
  padding: 0.7rem 0.9rem;
  font-size: 0.88rem;
  color: var(--muted);
}
.note {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 1.1rem 1.25rem;
}
.mosaic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.mosaic-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 0.9rem;
  display: block;
}
.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  padding: 0.9rem 1.1rem;
  margin: 0.6rem 0;
}
.faq summary { cursor: pointer; font-weight: 600; }
.foot {
  background: #1a1410;
  color: var(--champagne);
  padding: 2.5rem 0 3rem;
  text-align: center;
}
.foot img { margin: 0 auto 0.8rem; height: 40px; width: auto; display: block; filter: brightness(1.05); }

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 900px) {
  .links { display: none; }
  .split, .split.reverse, .strip-grid, .gallery.three, .mosaic-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel { margin-left: 1rem; padding-right: 1rem; }
  .gallery img, .mosaic-grid img { height: 200px; }
}

.prose p { margin: 0 0 1rem; color: var(--muted); }
.prose h2 { margin-top: 0; }
.prose strong { color: var(--ink); }


/* Big semantic headings */
.prose h2, .prose-v h2, .prose-b h2, .block h2, .band h2 {
  font-size: clamp(1.85rem, 4.2vw, 2.75rem) !important;
  line-height: 1.15 !important;
  margin: 0 0 1.1rem !important;
  letter-spacing: -0.02em;
}
.prose h3, .prose-v h3, .prose-b h3, .block h3, .band h3 {
  font-size: clamp(1.25rem, 2.6vw, 1.7rem) !important;
  line-height: 1.25 !important;
  margin: 1.6rem 0 0.7rem !important;
  font-weight: 700;
}


/* Manual headings — large */
h1 {
  font-size: clamp(2.4rem, 7vw, 4.1rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.03em !important;
}
.prose h2, .prose-v h2, .prose-b h2, .block h2, .band h2,
.shell h2, .wrap h2, .lane h2 {
  font-size: clamp(2rem, 5vw, 3.15rem) !important;
  line-height: 1.12 !important;
  margin: 0 0 1.15rem !important;
  letter-spacing: -0.025em !important;
  max-width: min(38rem, 100%);
}
.prose h3, .prose-v h3, .prose-b h3, .block h3, .band h3,
.shell h3, .wrap h3, .lane h3 {
  font-size: clamp(1.35rem, 3.2vw, 1.95rem) !important;
  line-height: 1.2 !important;
  margin: 1.85rem 0 0.75rem !important;
  font-weight: 700 !important;
  max-width: min(42rem, 100%);
}
