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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c96a;
  --dark: #0d0b07;
  --dark-brown: #1a1006;
  --red-dark: #3d0b0b;
  --text-light: #f0e8d0;
  --text-muted: #b8a888;
}

body {
  background: var(--dark);
  color: #fff;
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: linear-gradient(to bottom, rgba(0,0,0,.75) 0%, transparent 100%);
  transition: background .35s ease, padding .35s ease;
}
nav.scrolled {
  background: rgba(0,0,0,.92);
  padding: 12px 60px;
  border-bottom: 1px solid rgba(201,168,76,.15);
  backdrop-filter: blur(6px);
}
nav .nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  letter-spacing: .15em;
  color: var(--gold);
  text-decoration: none;
}
nav ul {
  display: flex;
  gap: 36px;
  list-style: none;
}
nav ul a {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s;
}
nav ul a:hover { color: var(--gold); }

/* ── BURGER ── */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 110;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: transform .3s ease, opacity .3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 105;
  background: rgba(0,0,0,.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .gold-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
}

/* ── HERO ── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
#hero .hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
#hero .hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}
#hero .hero-content { position: relative; z-index: 1; padding: 0 20px; }
#hero h1 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(6rem, 18vw, 250px);
  font-weight: 400;
  font-style: normal;
  line-height: .85;
  color: #fff;
  text-shadow: 0 8px 16px rgba(0,0,0,.5), 0 2px 2px rgba(0,0,0,.4);
}
#hero .hero-sub {
  font-family: Georgia, serif;
  font-style: normal;
  font-size: 30pt;
  color: var(--gold-light);
  margin-top: 3px;
  letter-spacing: normal;
}
#hero p {
  max-width: 520px;
  margin: 22px auto 0;
  font-size: .95rem;
  color: var(--text-muted);
}
.btn {
  display: inline-block;
  margin-top: 32px;
  padding: 12px 36px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Cinzel', serif;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.btn:hover { background: var(--gold); color: var(--dark); }

/* ── GOLD DIVIDER ── */
.gold-divider {
  width: 100%;
  height: 142px;
  object-fit: cover;
}

/* ── WELCOME ── */
#welcome {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
#welcome .welcome-bg {
  position: absolute;
  inset: 0;
  background: url('../imgs/repeatinggold_pattern.jpg') center/cover no-repeat;
  opacity: .18;
  z-index: 0;
}
#welcome::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--dark-brown);
  z-index: -1;
}
#welcome .welcome-text {
  position: relative;
  z-index: 1;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#welcome .welcome-text .tag {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}
#welcome .welcome-text .emblem {
  width: 193.14px;
  height: 193.14px;
  margin-bottom: 20px;
}
#welcome .welcome-text h2 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--gold-light);
  margin-bottom: 22px;
  line-height: 1.2;
}
#welcome .welcome-text p {
  color: #fff;
  font-size: 16px;
  margin-bottom: 14px;
}
#welcome .couple-panel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
}
#welcome .couple-panel img {
  width: 830px;
  height: 639px;
  aspect-ratio: 113/87;
  object-fit: cover;
  object-position: left top;
  display: block;
}

/* ── QUOTE BANNER ── */
.quote-banner {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  text-align: center;
  padding: 28px 40px;
}
.quote-banner p {
  font-family: 'Cinzel', serif;
  font-size: clamp(.9rem, 2.2vw, 1.25rem);
  letter-spacing: .1em;
  color: var(--gold-light);
}

/* ── SOUND / BLADE SECTIONS ── */
.lore-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 90px 60px;
}
.lore-section .lore-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.lore-section .lore-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.85) 45%, rgba(0,0,0,.2) 100%);
}
#the-sound .lore-bg { background-image: url('../imgs/thesoundbg.jpg'); }
#the-blade .lore-bg { background-image: url('../imgs/thebladebg.jpg'); }
#the-blade .lore-overlay {
  background: linear-gradient(to right, rgba(40,5,5,.9) 45%, rgba(40,5,5,.3) 100%);
}
.lore-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}
.lore-label {
  font-family: 'Alfa Slab One', serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin-bottom: 4px;
}
.lore-content h2 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.1;
}
.lore-content p {
  font-size: 16px;
  color: #fff;
  margin-bottom: 12px;
}
.lore-content a.btn { margin-top: 20px; }

/* ── PATTERN BAND ── */
.pattern-band {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

/* ── SOLAR THRONE ── */
#solar-throne {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
#solar-throne .throne-bg {
  position: absolute;
  top: 0;
  right: 0;
  background: url('../imgs/solarthrone.png') center/cover no-repeat;
  width: 1038px;
  height: 782px;
  aspect-ratio: 73/55;
}
#solar-throne .throne-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.1) 60%);
}
#solar-throne .throne-content {
  position: relative;
  z-index: 1;
  padding: 60px;
  width: 100%;
}
#solar-throne .throne-tag {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
}
#solar-throne .throne-name {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  letter-spacing: .15em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
#solar-throne h2 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
}
#solar-throne p {
  max-width: 440px;
  font-size: 16px;
  color: #fff;
}

/* ── HOUSES CAROUSEL ── */
#houses {
  background: #000;
  padding: 60px 0 60px;
}
.houses-heading {
  text-align: center;
  padding: 0 40px 48px;
}
.houses-heading .houses-label {
  font-family: 'Cinzel', serif;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.houses-heading h2 {
  font-family: 'Alfa Slab One', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
}
.carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 40px;
}
.carousel-track-outer {
  overflow: hidden;
  flex: 1;
}
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.house-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: transparent;
  padding: 28px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.house-card img {
  width: 240px;
  height: 247px;
  object-fit: cover;
  transition: transform .4s cubic-bezier(.25,.46,.45,.94), filter .4s ease, box-shadow .4s ease;
  filter: brightness(.85) saturate(.9);
}
.house-card:hover img {
  transform: scale(1.06) translateY(-6px);
  filter: brightness(1.05) saturate(1.15);
  box-shadow: 0 20px 40px rgba(0,0,0,.6), 0 0 24px rgba(201,168,76,.25);
}
.house-card h3 {
  font-family: 'Alfa Slab One', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--gold-light);
  line-height: 1.3;
}
.house-card h3 span {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: .85rem;
  color: var(--text-muted);
}
.house-card p {
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  flex: 1;
}
.house-card .btn { margin-top: 8px; font-size: .7rem; padding: 9px 24px; }
.carousel-btn {
  background: transparent;
  border: 1px solid rgba(201,168,76,.4);
  color: var(--gold);
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .2s, color .2s;
}
.carousel-btn:hover { background: var(--gold); color: var(--dark); }
.carousel-btn:disabled { opacity: .3; cursor: default; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,.3);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.carousel-dots .dot.active { background: var(--gold); }

/* ── NEWSLETTER ── */
#newsletter {
  position: relative;
  height: 397px;
  background: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
}
#newsletter .nl-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 80px;
  text-align: left;
}
#newsletter .nl-tag {
  font-family: 'Cinzel', serif;
  font-size: .7rem;
  letter-spacing: .2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
#newsletter h2 {
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #fff;
  margin-bottom: 16px;
  max-width: 500px;
}
#newsletter p {
  font-size: .92rem;
  color: var(--text-muted);
  max-width: 420px;
  margin: 0 0 28px;
}
#newsletter .nl-image {
  flex-shrink: 0;
  width: 620px;
  height: 928px;
  aspect-ratio: 153/229;
  align-self: flex-end;
  overflow: hidden;
}
#newsletter .nl-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.nl-form {
  display: flex;
  justify-content: flex-start;
  gap: 0;
  max-width: 440px;
}
.nl-form input {
  flex: 1;
  padding: 12px 18px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.4);
  border-right: none;
  color: var(--text-light);
  font-family: 'EB Garamond', serif;
  font-size: .95rem;
  outline: none;
}
.nl-form input::placeholder { color: var(--text-muted); }
.nl-form button {
  padding: 12px 26px;
  background: var(--gold);
  border: none;
  color: var(--dark);
  font-family: 'Cinzel', serif;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.nl-form button:hover { background: var(--gold-light); }

/* ── FOOTER ── */
footer {
  background: #573010;
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 60px 60px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand img { width: 193px; margin-bottom: 14px; }
.footer-brand h3 {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: 10px;
}
.footer-brand p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  font-size: .82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201,168,76,.1);
  padding-top: 24px;
  font-size: .78rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: opacity .75s ease, transform .75s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: opacity .75s ease, transform .75s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.house-card { opacity: 0; transform: translateY(30px); transition: opacity .5s ease, transform .5s ease; }
.house-card.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav ul { gap: 18px; }
  #welcome { grid-template-columns: 1fr; }
  #welcome .couple-panel img {
    width: 100%;
    height: auto;
    aspect-ratio: 113/87;
  }
  .lore-section { padding: 70px 24px; }
  .house-card { flex: 0 0 calc((100% - 24px) / 2); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  #solar-throne .throne-content { padding: 40px 24px; }
}
@media (max-width: 580px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 10px 20px; }
  nav ul { display: none; }
  .burger { display: flex; }
  .mobile-menu { display: flex; }
  .house-card { flex: 0 0 100%; }
  .carousel-wrapper { padding: 0 16px; }
  .footer-top { grid-template-columns: 1fr; }
  footer { padding: 40px 24px 30px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }

  #newsletter {
    height: auto;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0;
  }
  #newsletter .nl-content {
    padding: 60px 24px 40px;
  }
  #newsletter h2 {
    font-size: 1.4rem;
    max-width: 100%;
  }
  #newsletter .nl-image {
    width: 100%;
    height: auto;
    aspect-ratio: 153/229;
    align-self: stretch;
  }
  .nl-form {
    max-width: 100%;
  }
}
