:root {
  --bg:      #0D0A07;
  --bg2:     #181410;
  --card:    #1E1A15;
  --gold:    #C9A84C;
  --gold2:   #E8C97E;
  --cream:   #F5EFE6;
  --muted:   #9A8A78;
  --burgundy:#8B2020;
  --nav-h:   72px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; width: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}
.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 16px auto;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  transition: background 0.4s, box-shadow 0.4s;
}
nav.scrolled {
  background: rgba(13,10,7,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(201,168,76,0.15);
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  cursor: pointer;
}
.nav-logo span:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-logo span:last-child {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.8;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--gold); }

.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--gold);
  padding: 10px 22px;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold2); }

/* mobile burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,10,7,0.98);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--cream);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  height: 100%;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,10,7,0.55) 0%,
    rgba(13,10,7,0.45) 50%,
    rgba(13,10,7,0.85) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 800px;
}
.hero-content .label { color: var(--gold2); margin-bottom: 20px; }
.hero-content h1 {
  font-size: clamp(44px, 7vw, 96px);
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 24px;
}
.hero-content h1 em { font-style: italic; color: var(--gold2); }
.hero-content p {
  color: rgba(245,239,230,0.75);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 40px;
}
.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 40px;
  border-radius: 2px;
  transition: 0.25s;
  cursor: pointer;
}
.btn-gold {
  background: var(--gold);
  color: var(--bg);
}
.btn-gold:hover { background: var(--gold2); }
.btn-outline {
  border: 1px solid rgba(245,239,230,0.4);
  color: var(--cream);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── SECTIONS ── */
section { padding: 100px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(36px, 4vw, 62px); margin-top: 8px; }
.section-header p {
  color: var(--muted);
  max-width: 480px;
  margin: 16px auto 0;
  font-size: 15px;
}

/* ── INTRO STRIP ── */
.intro-strip {
  background: var(--bg2);
  padding: 80px 24px;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
}
.intro-strip .section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  text-align: center;
}
.intro-item .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}
.intro-item p {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 6px;
  text-transform: uppercase;
}

/* ── FEATURED BOARDS ── */
.boards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.board-card {
  background: var(--card);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.35s, box-shadow 0.35s;
}
.board-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}
.board-card-img {
  height: 260px;
  overflow: hidden;
}
.board-card-img img {
  height: 100%;
  transition: transform 0.6s;
}
.board-card:hover .board-card-img img { transform: scale(1.05); }
.board-card-body { padding: 28px 28px 32px; }
.board-card-body .tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.35);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.board-card-body h3 {
  font-size: 26px;
  margin-bottom: 10px;
}
.board-card-body p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.board-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 20px;
}
.board-price .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
}
.board-price .suffix { font-size: 12px; color: var(--muted); }

/* ── SPLIT SECTION ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
}
.split-img { height: 100%; min-height: 420px; }
.split-img img { height: 100%; }
.split-text {
  background: var(--bg2);
  display: flex;
  align-items: center;
  padding: 60px 56px;
}
.split-text-inner { max-width: 440px; }
.split-text h2 { font-size: clamp(32px, 3.5vw, 52px); margin: 12px 0 20px; }
.split-text p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.split-text .btn { margin-top: 12px; }

/* ── PRICING PAGE ── */
.pricing-section { background: var(--bg2); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
}
.pricing-card {
  background: var(--card);
  padding: 40px 36px;
}
.pricing-card h3 {
  font-size: 28px;
  margin: 12px 0 8px;
}
.pricing-card .desc {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(245,239,230,0.06);
}
.price-row:last-child { border-bottom: none; }
.price-row .name { font-size: 14px; }
.price-row .min { font-size: 11px; color: var(--muted); margin-top: 2px; }
.price-row .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--gold);
  white-space: nowrap;
}
.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 4px;
}

/* ── GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-grid .tall { grid-row: span 2; }
.gallery-item {
  overflow: hidden;
  border-radius: 3px;
}
.gallery-item img {
  height: 320px;
  transition: transform 0.5s;
  cursor: pointer;
}
.gallery-item.tall img { height: 100%; min-height: 652px; }
.gallery-item:hover img { transform: scale(1.04); }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info h2 { font-size: clamp(32px, 4vw, 54px); margin: 12px 0 20px; }
.contact-info p { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
}
.contact-detail-text strong { display: block; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-detail-text span { font-size: 14px; color: var(--muted); }
.contact-detail-text a { color: var(--cream); transition: color 0.2s; }
.contact-detail-text a:hover { color: var(--gold); }

.order-box {
  background: var(--card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 48px 40px;
}
.order-box h3 { font-size: 30px; margin: 8px 0 16px; }
.order-box p { color: var(--muted); font-size: 14px; margin-bottom: 28px; line-height: 1.7; }
.order-box .btn { width: 100%; text-align: center; display: block; padding: 18px; font-size: 12px; }
.order-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
}
.order-divider::before, .order-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(245,239,230,0.08);
}
.order-email {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.06em;
  border-radius: 2px;
  transition: 0.2s;
}
.order-email:hover { background: rgba(201,168,76,0.06); }

/* ── TESTIMONIAL ── */
.testimonial-strip {
  background: var(--burgundy);
  padding: 80px 24px;
  text-align: center;
}
.testimonial-strip blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 36px);
  font-style: italic;
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto 20px;
  line-height: 1.5;
}
.testimonial-strip cite {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,239,230,0.6);
  font-style: normal;
}

/* ── FOOTER ── */
footer {
  background: #080604;
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .nav-logo { cursor: default; }
.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 240px;
  line-height: 1.7;
}
.footer-links h4 {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  border-top: 1px solid rgba(245,239,230,0.06);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  height: 380px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { height: 100%; }
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,10,7,0.72);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content h1 {
  font-size: clamp(40px, 5vw, 72px);
  color: var(--cream);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .split { grid-template-columns: 1fr; }
  .split-img { min-height: 300px; }
  .split-text { padding: 40px 28px; }
  .intro-strip .section-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .tall { grid-row: span 1; }
  .gallery-item.tall img { min-height: 320px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  nav { padding: 0 20px; }
  section { padding: 70px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .order-box { padding: 32px 24px; }
  .split-text { padding: 32px 20px; }
}
