/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: #0d0d0d; color: #f5f0e8; font-family: Georgia, serif; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ─── CSS Variables ─── */
:root {
  --black:  #0d0d0d;
  --cream:  #f5f0e8;
  --gold:   #c9a84c;
  --gold-l: #e8c96a;
  --red:    #8b1a10;
  --red-dk: #6b0f08;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════
   NAVBAR
══════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(13,13,13,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; height: 76px; gap: 1.5rem;
}
.nav-logo img { width: 68px; height: 68px; border-radius: 50%; transition: opacity .2s; }
.nav-logo img:hover { opacity: .88; }
.nav-links { display: flex; gap: 1.5rem; flex: 1; }
.nav-links a {
  font-size: .7rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(245,240,232,.8);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); border-color: var(--gold); }
.nav-phone {
  margin-left: auto;
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 8px 18px; font-size: .85rem; font-weight: 700;
  color: var(--cream); transition: all .25s;
  white-space: nowrap;
}
.nav-phone:hover { background: var(--gold); color: var(--black); }
.nav-phone svg { width: 16px; height: 16px; flex-shrink: 0; }
.hamburger { display: none; background: none; border: none; color: var(--cream); cursor: pointer; padding: 6px; margin-left: auto; }
.hamburger svg { width: 26px; height: 26px; }
.mobile-menu {
  display: none; background: var(--black);
  border-top: 1px solid rgba(201,168,76,.2);
  padding: 1rem 1.5rem;
}
.mobile-menu a {
  display: block; padding: .7rem 0;
  border-bottom: 1px solid rgba(201,168,76,.1);
  font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 700;
  color: rgba(245,240,232,.8);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mob-phone {
  margin-top: 1rem; display: flex; justify-content: center;
  align-items: center; gap: 8px;
  border: 1px solid var(--gold); border-radius: 999px;
  padding: 12px; font-size: .85rem; font-weight: 700; color: var(--cream);
}
.mobile-menu.open { display: block; }

/* ══════════════════════════════════
   HERO — DESKTOP
══════════════════════════════════ */
.hero-desktop {
  position: relative; overflow: hidden;
  min-height: 100svh;
}
.hero-desktop .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  z-index: 0;
}
.hero-desktop .hero-nav-grad {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to bottom, rgba(4,2,1,.62) 0%, rgba(4,2,1,.18) 10%, transparent 22%);
}
/* transparent hit-areas over baked-in buttons */
.hero-desktop .hero-btns {
  position: absolute; z-index: 10;
  display: flex; gap: .75rem;
  bottom: calc(15% + 90px);
  left: clamp(40px, 8.5vw, 160px);
}
.hero-desktop .hero-btns a {
  display: inline-block; min-width: 148px; min-height: 44px;
  border-radius: 6px; cursor: pointer;
}
.hero-desktop .hero-btns a.wide { min-width: 170px; }
.hero-spacer { min-height: 100svh; }

/* ══════════════════════════════════
   HERO — MOBILE
══════════════════════════════════ */
.hero-mobile {
  position: relative; overflow: hidden;
  min-height: 100svh; display: none;
}
.hero-mobile .hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 72% top;
  z-index: 0;
}
.hero-mobile .hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to bottom, rgba(4,2,1,.75) 0%, rgba(4,2,1,.65) 55%, rgba(4,2,1,.5) 100%),
    linear-gradient(to right, rgba(4,2,1,.85) 0%, rgba(4,2,1,.5) 60%, transparent 100%);
}
.hero-mobile .hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  padding: 7rem 1.5rem 3rem;
  min-height: 100svh;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 1rem;
}
.hero-eyebrow .line { height: 1px; width: 22px; background: var(--gold); }
.hero-eyebrow span {
  font-size: .58rem; font-weight: 700; letter-spacing: .32em;
  text-transform: uppercase; color: var(--gold);
}
.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 10.5vw, 3.4rem);
  font-weight: 900; letter-spacing: -.01em; line-height: .95;
  color: var(--cream); text-shadow: 0 2px 20px rgba(0,0,0,.9);
  white-space: nowrap; margin-bottom: 0;
}
.hero-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  color: var(--gold); line-height: 1.2;
  text-shadow: 0 2px 16px rgba(0,0,0,.85);
  margin-top: -.3rem;
}
.hero-heart { color: #8b1010; font-size: 1.5rem; vertical-align: middle; margin-left: 3px; }
.hero-rule {
  display: flex; align-items: center; gap: 8px;
  margin: 1.2rem 0 1.3rem;
}
.hero-rule .rline { height: 1px; width: 60px; background: #8b1010; }
.hero-rule .diamond { width: 7px; height: 7px; background: #8b1010; transform: rotate(45deg); flex-shrink: 0; }
.hero-body { font-size: .92rem; line-height: 1.65; color: rgba(232,224,212,.85); max-width: 280px; text-shadow: 0 1px 10px rgba(0,0,0,.95); margin-bottom: .3rem; }
.hero-tagline { font-style: italic; color: var(--gold); font-size: .95rem; text-shadow: 0 1px 10px rgba(0,0,0,.95); margin-bottom: 2rem; }
.hero-cta { display: flex; flex-direction: column; gap: .75rem; max-width: 260px; }
.btn-red {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--red); color: #fff;
  font-family: Georgia, serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 6px;
  box-shadow: 0 4px 20px rgba(139,26,16,.55);
  transition: background .25s;
}
.btn-red:hover { background: #a31f13; }
.btn-red svg { width: 11px; height: 11px; }
.btn-ghost {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px solid rgba(245,240,232,.45);
  background: rgba(0,0,0,.35);
  color: var(--cream);
  font-family: Georgia, serif; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 14px 22px; border-radius: 6px;
  transition: border-color .25s, color .25s;
}
.btn-ghost:hover { border-color: rgba(201,168,76,.7); color: var(--gold); }
.btn-ghost svg { color: var(--gold); width: 13px; height: 13px; }

/* ══════════════════════════════════
   FEATURE STRIP
══════════════════════════════════ */
.strip {
  position: relative;
  background: linear-gradient(135deg, #6b0f08 0%, #8b1810 55%, #6b0f08 100%);
}
.strip-tear {
  position: absolute; left: 0; right: 0; top: -30px; height: 36px;
  overflow: hidden; pointer-events: none;
}
.strip-tear svg { width: 100%; height: 100%; }
.strip-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 2.5rem 2rem 2rem;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.strip-item { display: flex; align-items: flex-start; gap: 1rem; }
.strip-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.strip-icon svg { width: 32px; height: 32px; }
.strip-title { font-size: .6rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.strip-desc { font-size: .74rem; color: rgba(255,255,255,.65); line-height: 1.5; }

/* ══════════════════════════════════
   ABOUT
══════════════════════════════════ */
.about { padding: 6rem 1.5rem; background: #111; }
.about-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-wrap img { width: 100%; border-radius: 4px; }
.about-img-border {
  position: absolute; inset: -12px; border: 2px solid var(--gold);
  border-radius: 4px; pointer-events: none; opacity: .4;
}
.section-eyebrow { font-size: .65rem; letter-spacing: .4em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
.section-h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; }
.section-h2 em { color: var(--gold); font-style: normal; }
.section-rule { width: 56px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.about-text { color: rgba(245,240,232,.75); line-height: 1.85; font-size: .97rem; margin-bottom: 2rem; }
.about-stats { display: flex; gap: 2.5rem; }
.stat-num { font-family: 'Playfair Display', Georgia, serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,240,232,.5); margin-top: 4px; }

/* ══════════════════════════════════
   PRODUCTS
══════════════════════════════════ */
.products { padding: 6rem 1.5rem; background: #0a0a0a; }
.products-inner { max-width: 1280px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.product-card { background: #141414; border: 1px solid rgba(201,168,76,.12); border-radius: 4px; overflow: hidden; transition: transform .3s, box-shadow .3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.4); }
.product-img-wrap { position: relative; height: 220px; overflow: hidden; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.product-card:hover .product-img-wrap img { transform: scale(1.04); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--black);
  font-size: .58rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 2px;
}
.product-info { padding: 1.25rem; }
.product-name { font-family: 'Playfair Display', Georgia, serif; font-size: 1.15rem; font-weight: 700; color: var(--cream); margin-bottom: .5rem; }
.product-desc { font-size: .82rem; color: rgba(245,240,232,.6); line-height: 1.6; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-family: 'Playfair Display', Georgia, serif; font-size: 1.3rem; color: var(--gold); font-weight: 700; }
.product-price::before { content: "$"; font-size: .85rem; }
.product-btn {
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--cream);
  border: 1px solid rgba(245,240,232,.25); padding: 8px 14px; border-radius: 3px;
  transition: all .25s;
}
.product-btn:hover { background: var(--gold); color: var(--black); border-color: var(--gold); }
.products-cta { text-align: center; margin-top: 4rem; }
.products-cta a {
  display: inline-block; border: 2px solid var(--gold); color: var(--gold);
  padding: 1rem 2.5rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; transition: all .25s;
}
.products-cta a:hover { background: var(--gold); color: var(--black); }

/* ══════════════════════════════════
   VIDEOS
══════════════════════════════════ */
.videos { padding: 6rem 1.5rem; background: #111; }
.videos-inner { max-width: 1280px; margin: 0 auto; }
.videos-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
.video-wrap {
  position: relative; border-radius: 4px; overflow: hidden;
  background: #1a1a1a; border: 1px solid rgba(201,168,76,.12);
}
.video-wrap video { width: 100%; display: block; max-height: 320px; object-fit: cover; }
.video-title { padding: .9rem 1rem; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }

/* ══════════════════════════════════
   GALLERY
══════════════════════════════════ */
.gallery { padding: 6rem 1.5rem; background: #0a0a0a; }
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.gallery-grid {
  columns: 2; column-gap: 1rem; margin-top: 3rem;
}
.gallery-item { break-inside: avoid; margin-bottom: 1rem; cursor: pointer; overflow: hidden; border-radius: 3px; }
.gallery-item img { width: 100%; display: block; transition: transform .4s, opacity .3s; }
.gallery-item:hover img { transform: scale(1.04); opacity: .88; }
/* Lightbox */
.lightbox { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(0,0,0,.92); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--cream); cursor: pointer; background: none; border: none; line-height: 1; }

/* ══════════════════════════════════
   ORDER FORM
══════════════════════════════════ */
.order { padding: 6rem 1.5rem; background: #0d0d0d; }
.order-inner { max-width: 720px; margin: 0 auto; }
.form-box { background: #141414; border: 1px solid rgba(201,168,76,.1); padding: 2.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-label { display: block; font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,240,232,.5); margin-bottom: .5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: #1a1a1a; border: 1px solid rgba(201,168,76,.2);
  color: var(--cream); padding: .75rem 1rem; font-size: .88rem;
  font-family: Georgia, serif; outline: none; transition: border-color .2s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(245,240,232,.3); }
.form-select { appearance: none; cursor: pointer; }
option { background: #1a1a1a; }
.form-textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; background: var(--gold); color: var(--black);
  border: none; padding: 1.1rem; font-size: .78rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; cursor: pointer;
  font-family: Georgia, serif; transition: background .25s;
}
.form-submit:hover { background: var(--gold-l); }
.form-note { text-align: center; font-size: .75rem; color: rgba(245,240,232,.35); margin-top: 1rem; }
.form-note a { color: var(--gold); }
.form-msg { text-align: center; padding: 3rem 1.5rem; }
.form-msg .check { font-size: 3rem; color: var(--gold); margin-bottom: 1rem; }
.form-msg h3 { font-family: 'Playfair Display', Georgia, serif; font-size: 1.5rem; color: var(--cream); margin-bottom: .75rem; }
.form-msg p { color: rgba(245,240,232,.6); font-size: .9rem; }
.form-msg a { color: var(--gold); }
.form-error { color: #f87171; font-size: .82rem; margin-top: .5rem; }
.alert-success, .alert-error {
  padding: 1rem 1.5rem; border-radius: 3px; margin-bottom: 1.5rem; font-size: .88rem;
}
.alert-success { background: rgba(201,168,76,.15); border: 1px solid rgba(201,168,76,.4); color: var(--gold); }
.alert-error { background: rgba(248,113,113,.15); border: 1px solid rgba(248,113,113,.4); color: #f87171; }

/* ══════════════════════════════════
   CONTACT
══════════════════════════════════ */
.contact { padding: 6rem 1.5rem; background: #111; }
.contact-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.contact-info h2 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--cream); margin-bottom: 1rem; }
.contact-info h2 em { color: var(--gold); font-style: normal; }
.contact-rule { width: 56px; height: 2px; background: var(--gold); margin-bottom: 1.5rem; }
.contact-info p { color: rgba(245,240,232,.7); line-height: 1.8; margin-bottom: 2rem; font-size: .95rem; }
.contact-links { display: flex; flex-direction: column; gap: 1rem; }
.contact-link { display: flex; align-items: center; gap: .9rem; }
.contact-link-icon { width: 44px; height: 44px; border: 1px solid rgba(201,168,76,.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-link-icon svg { width: 18px; height: 18px; }
.contact-link-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(245,240,232,.5); margin-bottom: 2px; }
.contact-link-val { font-size: .97rem; color: var(--cream); font-weight: 600; }
.contact-map { background: #1a1a1a; border: 1px solid rgba(201,168,76,.12); border-radius: 4px; overflow: hidden; min-height: 320px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 1rem; }
.contact-map p { color: rgba(245,240,232,.5); font-size: .88rem; text-align: center; }
.contact-map .map-icon { font-size: 3rem; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
footer { background: #080808; border-top: 1px solid rgba(201,168,76,.15); padding: 3rem 1.5rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { display: flex; align-items: center; gap: 1rem; }
.footer-logo img { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand { font-family: 'Playfair Display', Georgia, serif; font-size: 1rem; font-weight: 700; color: var(--cream); }
.footer-brand span { display: block; font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-top: 2px; font-family: Georgia, serif; font-weight: 400; }
.footer-copy { font-size: .75rem; color: rgba(245,240,232,.35); text-align: center; }
.footer-phone a { color: var(--gold); font-size: .85rem; font-weight: 700; }

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 900px) {
  .hero-desktop { display: none; }
  .hero-mobile  { display: block; }
  .nav-links, .nav-phone { display: none; }
  .hamburger { display: block; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img-wrap { max-width: 480px; margin: 0 auto; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .videos-grid { grid-template-columns: 1fr; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid  { columns: 2; }
  .about-stats   { gap: 1.5rem; }
}

/* ══════════════════════════════════
   ANIMATIONS
══════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp .8s cubic-bezier(.22,1,.36,1) forwards; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
.delay-4 { animation-delay: .55s; }
.delay-5 { animation-delay: .7s; }
