:root {
  --ink: #2c2a26;
  --muted: #6b6760;
  --paper: #faf8f4;
  --paper-alt: #f1ece3;
  --accent: #8a7b63;
  --line: #ddd5c8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.7;
}

a { color: var(--accent); }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--paper-alt), var(--paper));
}

.nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  padding: 2rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a { text-decoration: none; color: var(--muted); transition: color 0.2s; }
.nav a:hover { color: var(--ink); }

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}

.names {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(3rem, 12vw, 7rem);
  line-height: 1.05;
  margin: 0;
}

.amp { color: var(--accent); font-style: italic; font-weight: 400; }

.subhead {
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 1.5rem;
}

/* Sections */
.section {
  max-width: 860px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
  text-align: center;
}

.section-alt {
  max-width: none;
  background: var(--paper-alt);
}

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

.section h2::after {
  content: "";
  display: block;
  width: 48px;
  height: 1px;
  background: var(--accent);
  margin: 1.25rem auto 0;
}

.placeholder { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* Detail cards */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 860px;
  margin: 0 auto;
}

.detail-card {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 2.5rem 1.5rem;
}

.detail-card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
  letter-spacing: 0.05em;
}

.detail-card p { margin: 0; color: var(--muted); }
.detail-sub { font-size: 0.8rem; letter-spacing: 0.05em; opacity: 0.8; }

/* Carousel */
.carousel {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  outline: none;
}

.carousel-stage {
  overflow: hidden;
  border-radius: 4px;
  background: var(--paper-alt);
  box-shadow: 0 12px 40px rgba(44, 42, 38, 0.12);
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  height: min(70vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(250, 248, 244, 0.85);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(44, 42, 38, 0.18);
  transition: background 0.2s, transform 0.2s;
}

.carousel-btn:hover { background: #fff; }
.carousel-btn.prev { left: 12px; }
.carousel-btn.next { right: 12px; }
.carousel-btn.prev:hover { transform: translateY(-50%) translateX(-2px); }
.carousel-btn.next:hover { transform: translateY(-50%) translateX(2px); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--line);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dot:hover { background: var(--muted); }
.carousel-dot.active { background: var(--accent); transform: scale(1.3); }

@media (max-width: 600px) {
  .carousel-btn { width: 38px; height: 38px; font-size: 1.3rem; }
  .carousel-slide { height: min(60vh, 440px); }
}

/* Footer */
.footer {
  text-align: center;
  padding: 3rem 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.footer p { margin: 0.25rem 0; letter-spacing: 0.08em; }
