:root {
  --bg: #12100e;
  --bg-elevated: #1c1916;
  --accent: #d4af37;
  --accent-2: #c45c26;
  --text: #e8e0d4;
  --muted: #a8a29e;
  --border: rgba(212, 175, 55, 0.22);
  --max: 1120px;
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(196, 92, 38, 0.16), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(180deg, #12100e 0%, #0b0a09 100%);
  line-height: 1.6;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 100;
  background: var(--bg-elevated);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
}

.corner-stack {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.75rem 0.9rem;
  background: rgba(18, 16, 14, 0.82);
  border: 1px solid var(--border);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}
.corner-stack a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.corner-stack a:hover,
.corner-stack a:focus { color: var(--accent); }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  padding: 5rem 1.25rem 3rem;
  overflow: hidden;
}
.hero__collage {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__layer {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.hero__layer--back {
  width: 42%;
  right: 4%;
  top: 10%;
  opacity: 0.55;
  transform: rotate(6deg);
}
.hero__layer--mid {
  width: 34%;
  left: 8%;
  top: 18%;
  opacity: 0.72;
  transform: rotate(-8deg);
}
.hero__layer--front {
  width: min(72vw, 760px);
  left: 50%;
  bottom: 8%;
  transform: translateX(-50%);
  border: 1px solid var(--border);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,16,14,0.15) 0%, rgba(18,16,14,0.92) 78%);
}
.hero__copy {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  margin: 0 0 0.5rem;
  color: var(--accent-2);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  line-height: 1.02;
  max-width: 12ch;
}
.hero__tagline {
  margin: 1rem 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 3.5rem 1.25rem;
}
.section-intro h2 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}
.section-intro p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}
.section-intro--left { text-align: left; }
.section-intro--right {
  text-align: right;
  margin-left: auto;
}

.steps {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.1rem 1.2rem;
  background: rgba(28, 25, 22, 0.78);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.steps__num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
}
.steps h3 {
  margin: 0 0 0.35rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
}
.steps p { margin: 0; color: var(--muted); }

.carousel {
  position: relative;
  margin-top: 2rem;
}
.carousel__track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 2.5rem 0.75rem;
  scrollbar-width: thin;
}
.carousel__slide {
  flex: 0 0 min(78vw, 280px);
  scroll-snap-align: start;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}
.carousel__slide img {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.2rem;
  height: 2.2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(18, 16, 14, 0.88);
  color: var(--text);
  cursor: pointer;
}
.carousel__btn--prev { left: 0; }
.carousel__btn--next { right: 0; }

.gallery-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.legal-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(28, 25, 22, 0.72);
  overflow: hidden;
}
.legal-block__toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.legal-block__toggle span:first-child {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
}
.legal-block__hint {
  color: var(--muted);
  font-size: 0.85rem;
}
.legal-block__body {
  padding: 0 1.1rem 1.1rem;
  color: var(--muted);
}
.legal-block__body[hidden] { display: none; }

.site-footer {
  padding: 2rem 1.25rem 5.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 760px) {
  .hero__layer--back,
  .hero__layer--mid { display: none; }
  .gallery-grid { grid-template-columns: 1fr; }
  .section-intro--right { text-align: left; margin-left: 0; }
}
