*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #2b2622;
  --bg-dark: #1e1b18;
  --rose: #c4a89a;
  --sage: #b8c4b0;
  --white: #f5f2ef;
  --text-muted: rgba(245, 242, 239, 0.7);
}

html { scroll-behavior: smooth; }

body {
  font-family: "DM Sans", system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  padding: 1.25rem 2.5rem;
  background: var(--white);
}

.nav a {
  color: var(--bg-dark);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.nav a:first-child { font-weight: 700; }

.section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
}

.eyebrow {
  font-weight: 700;
  font-size: clamp(1.25rem, 3vw, 2rem);
  margin-bottom: 2rem;
}

.hero {
  align-items: center;
  gap: 4.5rem;
  justify-content: flex-start;
  padding-top: 9rem;
}

.hero .eyebrow {
  width: min(900px, 92vw);
  margin-bottom: 0;
  align-self: center;
}

.hero-frame {
  position: relative;
  width: min(900px, 92vw);
  background: transparent;
  padding: 0;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-frame img {
  display: block;
  width: min(640px, 88vw);
  height: auto;
  object-fit: contain;
}

.hero-frame h1 {
  position: static;
  transform: none;
  order: -1;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 400;
  white-space: nowrap;
  color: var(--white);
  pointer-events: none;
  line-height: 0.9;
  margin-bottom: 0.4rem;
  z-index: 1;
}

.split {
  flex-direction: row;
  padding: 0;
  min-height: auto;
}

.panel {
  flex: 1;
  padding: 5rem 2.5rem 4rem;
  color: var(--bg-dark);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.panel-rose { background: var(--rose); }
.panel-sage { background: var(--sage); }

.panel h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.panel p { max-width: 28ch; }

.dark { background: var(--bg-dark); }

.dark .content { max-width: 640px; margin: 0 auto; }

.dark h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0.5rem 0 1.5rem;
}

.lead { color: var(--text-muted); margin-bottom: 3rem; }

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
}

.specs dt {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.specs dd {
  font-size: 1.5rem;
  font-weight: 500;
}

.gallery {
  background: var(--white);
  color: var(--bg-dark);
  gap: 3rem;
}

.gallery-copy {
  width: min(920px, 100%);
  margin: 0 auto;
}

.gallery-copy .eyebrow {
  margin-bottom: 0.5rem;
}

.gallery-copy h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
}

.gallery-grid {
  width: min(1040px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.gallery-grid img {
  width: 100%;
  display: block;
  background: transparent;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}

.footer {
  align-items: center;
  text-align: center;
  background: var(--bg);
  gap: 0.5rem;
}

.footer h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
}

.footer a {
  color: var(--rose);
  margin-top: 1rem;
}

.footer .download-link {
  margin-top: 0.25rem;
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

@media (max-width: 768px) {
  .split { flex-direction: column; }
  .nav { gap: 1rem; padding: 1rem 1.25rem; }
  .hero-frame { min-height: 260px; padding: 1rem; }
  .gallery-grid { grid-template-columns: 1fr; }
}
