/* ============================================================
   THE CIGAR VAULT — Stylesheet
   Pine Brook, NJ  |  Frisky Cigars NJ LLC DBA The Cigar Vault
   ============================================================ */

/* ---- Custom Properties ---- */
:root {
  --gold:            #C9A84C;
  --gold-light:      #E0BC6E;
  --gold-dark:       #A8893A;
  --teal:            #1D4A4A;
  --teal-light:      #2A6060;
  --teal-mid:        #162E2E;
  --teal-dark:       #0F2020;
  --cream:           #FAF6EE;
  --cream-muted:     #C8BDA8;
  --charcoal:        #1C1A17;
  --charcoal-mid:    #242220;
  --charcoal-light:  #2E2C28;
  --charcoal-lifted: #3A3834;
  --border:          rgba(201, 168, 76, 0.22);
  --shadow-gold:     0 6px 32px rgba(201, 168, 76, 0.14);
  --transition:      0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--charcoal);
  color: var(--cream);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.125rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold-light); }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--cream);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }

.section-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.85rem;
}

/* ---- Layout ---- */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ---- Gold Rule Divider ---- */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem auto;
  width: fit-content;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  display: block;
  height: 1px;
  width: 70px;
}
.gold-rule::before { background: linear-gradient(to right, transparent, var(--gold)); }
.gold-rule::after  { background: linear-gradient(to left,  transparent, var(--gold)); }
.gold-rule span { color: var(--gold); font-size: 0.9rem; opacity: 0.8; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250, 246, 238, 0.5);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-teal {
  background: var(--teal);
  color: var(--cream);
  border: 1px solid var(--teal-light);
}
.btn-teal:hover {
  background: var(--teal-light);
  color: var(--cream);
  box-shadow: 0 6px 28px rgba(29, 74, 74, 0.45);
  transform: translateY(-2px);
}

/* ---- Navigation ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.9rem 0;
  background: rgba(28, 26, 23, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: padding var(--transition);
}
#navbar.scrolled { padding: 0.5rem 0; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 58px;
  width: auto;
  max-width: 300px;
  display: block;
  transition: opacity var(--transition);
}
.nav-brand:hover .nav-logo { opacity: 0.82; }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.2rem;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.nav-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--cream);
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  padding: 1rem 0 0.25rem;
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ---- Hero ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 0;
  background: var(--charcoal); /* fallback while image loads */
  overflow: hidden;
}

/* Hero background — div with background-image ensures center/center works reliably */
.hero-bg-logo {
  position: absolute;
  top: 4.5rem;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  background-image: url('../assets/AI%20Vault%20Logo.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 0;
}

/* Overlay — covers image area only; charcoal shows clean in the border strip outside */
.hero-overlay {
  position: absolute;
  top: 4.5rem;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  background: rgba(20, 18, 14, 0.60);
  z-index: 1;
}

/* Warm grain texture sits above the overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  pointer-events: none;
  opacity: 0.4;
  z-index: 2;
}

/* Thin gold rule at the bottom edge */
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem; /* flex centering handles vertical position; image is framed by brackets */
}

.hero-tagline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.hero-location {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream-muted);
  margin-bottom: 2.75rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- Ornate corner brackets ---- */
.hero-corner {
  position: absolute;
  width: 110px;
  height: 110px;
  z-index: 3;
}

/* Inner bracket — inset double-line effect */
.hero-corner::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
}

/* Diamond ornament at the corner apex */
.hero-corner::after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* — Top-left — */
.hero-corner--tl {
  top: 4.5rem; left: 2rem;
  border-top: 2px solid rgba(201, 168, 76, 0.88);
  border-left: 2px solid rgba(201, 168, 76, 0.88);
}
.hero-corner--tl::before {
  top: 10px; left: 10px;
  border-top: 1px solid rgba(201, 168, 76, 0.38);
  border-left: 1px solid rgba(201, 168, 76, 0.38);
}
.hero-corner--tl::after { top: -5px; left: -5px; }

/* — Top-right — */
.hero-corner--tr {
  top: 4.5rem; right: 2rem;
  border-top: 2px solid rgba(201, 168, 76, 0.88);
  border-right: 2px solid rgba(201, 168, 76, 0.88);
}
.hero-corner--tr::before {
  top: 10px; right: 10px;
  border-top: 1px solid rgba(201, 168, 76, 0.38);
  border-right: 1px solid rgba(201, 168, 76, 0.38);
}
.hero-corner--tr::after { top: -5px; right: -5px; }

/* — Bottom-left — */
.hero-corner--bl {
  bottom: 2rem; left: 2rem;
  border-bottom: 2px solid rgba(201, 168, 76, 0.88);
  border-left: 2px solid rgba(201, 168, 76, 0.88);
}
.hero-corner--bl::before {
  bottom: 10px; left: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.38);
  border-left: 1px solid rgba(201, 168, 76, 0.38);
}
.hero-corner--bl::after { bottom: -5px; left: -5px; }

/* — Bottom-right — */
.hero-corner--br {
  bottom: 2rem; right: 2rem;
  border-bottom: 2px solid rgba(201, 168, 76, 0.88);
  border-right: 2px solid rgba(201, 168, 76, 0.88);
}
.hero-corner--br::before {
  bottom: 10px; right: 10px;
  border-bottom: 1px solid rgba(201, 168, 76, 0.38);
  border-right: 1px solid rgba(201, 168, 76, 0.38);
}
.hero-corner--br::after { bottom: -5px; right: -5px; }

/* Hero browse note */
.hero-browse-note {
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--cream-muted);
  font-style: italic;
  opacity: 0.75;
}

/* ---- Our Story ---- */
#our-story {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.story-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Vintage photo frame */
.story-photo-wrapper {
  position: relative;
  max-width: 460px;
  margin: 0 auto 3.5rem;
  padding: 10px 10px 36px; /* bottom padding simulates photo border with space for caption */
  background: #e8dece;
  box-shadow:
    0 2px 0 #d4c5ae,
    0 12px 48px rgba(0, 0, 0, 0.55),
    0 4px 12px rgba(0, 0, 0, 0.35);
  transform: rotate(-0.6deg); /* very subtle tilt */
}

.story-photo {
  display: block;
  width: 100%;
  filter: sepia(0.28) contrast(1.06) brightness(0.88) saturate(0.78);
}

/* Warm radial vignette over the photo */
.story-photo-vignette {
  position: absolute;
  inset: 10px 10px 36px 10px; /* match photo area */
  background: radial-gradient(
    ellipse at center,
    transparent 45%,
    rgba(18, 10, 4, 0.32) 100%
  );
  pointer-events: none;
}

/* Two-column layout */
.story-split {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4.5rem;
  align-items: start;
}

/* Story text column */
.story-body {
  text-align: left;
}

.story-body p {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--cream);
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.story-lead {
  font-family: 'Playfair Display', serif !important;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem) !important;
  font-style: italic;
  text-align: left;
  color: var(--cream) !important;
  margin-bottom: 2rem !important;
  line-height: 1.5 !important;
}

/* Selim's personal closing line — gold separator above */
.story-intro-line {
  margin-top: 1.75rem !important;
  padding-top: 1.5rem !important;
  border-top: 1px solid rgba(201, 168, 76, 0.25) !important;
  font-style: italic;
  color: var(--cream) !important;
}

.story-closing {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.2rem !important;
  font-style: italic;
  color: var(--gold) !important;
  text-align: left;
  margin-top: 1.75rem !important;
  margin-bottom: 0 !important;
  letter-spacing: 0.04em;
}

/* Portrait column */
.story-portrait-col {
  position: sticky;
  top: 6rem; /* stays in view as text scrolls */
}

/* Gold-framed portrait */
.story-portrait-wrapper {
  position: relative;
  border: 2px solid rgba(201, 168, 76, 0.65);
  padding: 7px;
  background: var(--charcoal-light);
  box-shadow:
    0 14px 52px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 168, 76, 0.08);
}

/* Inner gold hairline — double-border luxury effect */
.story-portrait-wrapper::before {
  content: '';
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  pointer-events: none;
  z-index: 1;
}

.story-portrait {
  display: block;
  width: 100%;
  height: auto;
}

.story-portrait-caption {
  margin-top: 0.9rem;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  font-size: 1.1rem;
  color: var(--cream-muted);
  max-width: 560px;
  margin: 1rem auto 0;
}

/* ---- Merch ---- */
#merch { background: var(--charcoal); }

/* Product Cards */
.products-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.product-card {
  flex: 0 0 calc(33.333% - 1rem);
  min-width: 220px;
  background: var(--charcoal-mid);
  border: 1px solid var(--border);
  padding: 0 1.75rem 2.25rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.product-card:hover::before,
.product-card.active::before { transform: scaleX(1); }
.product-card:hover,
.product-card.active {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}

/* Product image wrapper */
.product-img-wrapper {
  margin: 0 -1.75rem 1.5rem;
  height: 210px;
  background: #f5f1ea;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.75rem;
  transition: transform 0.35s ease;
}

.product-card:hover .product-img {
  transform: scale(1.04);
}

.product-img-placeholder {
  background: var(--charcoal-mid);
  border-bottom: 1px solid var(--border);
}

.product-icon { font-size: 2.4rem; margin-bottom: 1rem; }

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}

.product-price {
  font-family: 'Lato', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.product-swatches {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.swatch {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}

.product-sizes {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--cream-muted);
  text-transform: uppercase;
}

.select-hint {
  display: block;
  margin-top: 1rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .select-hint,
.product-card.active .select-hint { opacity: 1; }

/* Order Form */
.order-form-wrapper {
  background: var(--charcoal-mid);
  border: 1px solid var(--border);
  padding: 3rem;
  max-width: 720px;
  margin: 0 auto;
}
.order-form-wrapper h3 {
  text-align: center;
  margin-bottom: 0.5rem;
}
.form-subtitle {
  text-align: center;
  font-style: italic;
  font-size: 1rem;
  color: var(--cream-muted);
  margin-bottom: 2rem;
}

/* ---- Forms ---- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full { grid-column: 1 / -1; }

label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  background: var(--charcoal-light);
  border: 1px solid var(--charcoal-lifted);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), background var(--transition);
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  background: var(--charcoal-lifted);
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

input[type="number"]::-webkit-inner-spin-button { opacity: 0.3; }

textarea {
  resize: vertical;
  min-height: 90px;
}

input::placeholder,
textarea::placeholder {
  color: var(--charcoal-lifted);
  opacity: 1;
}

/* Radio buttons */
.radio-group {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 0.25rem;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: var(--cream);
  text-transform: none;
}

input[type="radio"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  cursor: pointer;
}

/* Form submit */
.form-submit { margin-top: 1.75rem; text-align: center; }
.form-submit .btn { min-width: 220px; }

.form-message {
  margin-top: 1.25rem;
  padding: 0.85rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-align: center;
  display: none;
}
.form-message.success {
  background: rgba(29, 74, 74, 0.3);
  border: 1px solid rgba(42, 96, 96, 0.6);
  color: #8ecda8;
  display: block;
}
.form-message.error {
  background: rgba(90, 25, 25, 0.3);
  border: 1px solid rgba(120, 40, 40, 0.6);
  color: #c88888;
  display: block;
}

/* ---- NJ Tax Petition ---- */
#petition {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(29, 74, 74, 0.25) 0%, transparent 60%),
    var(--teal-mid);
  border-top: 1px solid rgba(42, 96, 96, 0.35);
  border-bottom: 1px solid rgba(42, 96, 96, 0.35);
}

.petition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.petition-context h2 { margin-bottom: 1.5rem; }

.petition-context p {
  color: rgba(250, 246, 238, 0.82);
  margin-bottom: 1.1rem;
  font-size: 1.05rem;
}

.petition-stat {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.75rem 0;
  padding: 1.25rem 1.5rem;
  background: rgba(0, 0, 0, 0.22);
  border-left: 3px solid var(--gold);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
}

.stat-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-muted);
  line-height: 1.5;
}

.petition-form-wrapper {
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 2.75rem;
}
.petition-form-wrapper h3 { margin-bottom: 0.4rem; }
.petition-form-wrapper .form-subtitle { text-align: left; }

/* ---- Visit Us ---- */
#visit { background: var(--charcoal-mid); }

.visit-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.visit-info h2 { margin-bottom: 2rem; }

.info-block { margin-bottom: 2.25rem; }

.info-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.35rem 0;
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}
.hours-table td:first-child { color: var(--cream-muted); padding-right: 2rem; }
.hours-table td:last-child  { color: var(--cream); text-align: right; }
.hours-table tr:last-child td { border-bottom: none; }

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  color: var(--gold);
  transition: color var(--transition);
}
.instagram-link:hover { color: var(--gold-light); }
.instagram-link svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.map-card {
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(29, 74, 74, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.map-pin { font-size: 3rem; position: relative; z-index: 1; }

.map-card-location {
  position: relative;
  z-index: 1;
}
.map-card-location strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.map-card-location span {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
}

/* Browse callout in Visit Us */
.browse-callout {
  margin-top: 0.5rem;
  padding: 1.5rem;
  background: rgba(29, 74, 74, 0.18);
  border: 1px solid rgba(29, 74, 74, 0.45);
  border-left: 3px solid var(--teal-light);
}

.browse-callout-text {
  font-size: 1rem;
  color: var(--cream-muted);
  line-height: 1.75;
}

.browse-callout-text strong {
  color: var(--cream);
  font-style: normal;
}

/* ---- Footer ---- */
footer {
  background: #100E0B;
  border-top: 1px solid var(--border);
  padding: 2.75rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand { display: flex; align-items: center; }

.footer-logo {
  height: 48px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(201, 168, 76, 0.15));
}

.footer-legal {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.7;
}

.footer-nav {
  display: flex;
  gap: 1.75rem;
}
.footer-nav a {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

/* ---- Scroll Reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Active nav state (multi-page site) ---- */
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-mobile a.active { color: var(--gold); }

/* ---- Subpage: push first section below fixed nav ---- */
.page-section--first { padding-top: 9rem; }

/* ---- Homepage intro blurb ---- */
#intro {
  background: var(--charcoal);
  border-bottom: 1px solid var(--border);
  padding: 4rem 0;
  text-align: center;
}
.intro-inner { max-width: 760px; margin: 0 auto; }
.intro-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.85;
  color: var(--cream-muted);
  font-style: italic;
}

/* ---- Homepage page-cards (explore section) ---- */
#explore {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border);
}

.page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1.5rem;
}

.page-card {
  background: var(--charcoal-light);
  border: 1px solid var(--border);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  text-decoration: none;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.page-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.page-card:hover::before { transform: scaleX(1); }
.page-card:hover {
  border-color: rgba(201, 168, 76, 0.5);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
  color: var(--cream);
}
.page-card-icon { font-size: 2rem; line-height: 1; margin-bottom: 0.25rem; }
.page-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--cream);
}
.page-card-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  color: var(--cream-muted);
  line-height: 1.6;
  flex: 1;
}
.page-card-cta {
  font-family: 'Lato', sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
}

/* ---- Subpage cross-links bar ---- */
.page-links-section {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}
.page-links-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem 2.5rem;
}
.page-links-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-muted);
  flex-shrink: 0;
}
.page-links-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.75rem;
  list-style: none;
}
.page-links-list a {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-muted);
  transition: color var(--transition);
}
.page-links-list a:hover { color: var(--gold); }

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .products-grid {
    flex-direction: column;
    align-items: center;
  }
  .product-card {
    flex: 0 0 auto;
    width: 100%;
    max-width: 380px;
  }
  .petition-layout,
  .visit-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  /* Story: stack portrait above text on tablet/mobile */
  .story-split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .story-portrait-col {
    position: static;
    max-width: 340px;
    margin: 0 auto;
    order: -1; /* portrait appears above text */
  }
  .story-lead { text-align: center !important; }
  .story-closing { text-align: center !important; }
}

@media (max-width: 768px) {
  section { padding: 4.5rem 0; }

  .nav-links  { display: none; }
  .nav-toggle { display: flex; }

  /* Scale nav logo down on mobile so hamburger has room */
  .nav-logo { height: 38px; max-width: 180px; }

  /* Scale corners down on mobile */
  .hero-corner { width: 64px; height: 64px; }
  .hero-corner::before { width: 32px; height: 32px; }
  .hero-corner--tl { top: 4.5rem; left: 1rem; }
  .hero-corner--tr { top: 4.5rem; right: 1rem; }
  .hero-corner--bl { bottom: 1rem; left: 1rem; }
  .hero-corner--br { bottom: 1rem; right: 1rem; }

  .order-form-wrapper { padding: 2rem 1.5rem; }
  .petition-form-wrapper { padding: 2rem 1.5rem; }

  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  .footer-inner { flex-direction: column; text-align: center; }
  .footer-nav   { justify-content: center; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .radio-group { flex-direction: column; gap: 0.75rem; }
  .stat-number { font-size: 2.2rem; }
}

/* ---- Photo Gallery (homepage) ---- */
#gallery {
  background: var(--charcoal-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* Centering wrapper — narrower for portrait photo */
.hero-gallery {
  max-width: 640px;
  margin: 0 auto;
}

/* Storefront hero — the one visible tile */
.gallery-hero {
  display: block;
  position: relative;
  background: var(--charcoal-mid);
  border: 1px solid var(--border);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 300ms ease, box-shadow 300ms ease;
}
.gallery-hero img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 400ms ease;
}
.gallery-hero:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.3), 0 12px 48px rgba(201, 168, 76, 0.18);
}
.gallery-hero:hover img { transform: scale(1.02); }

/* "VIEW GALLERY" overlay */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background 300ms ease;
  pointer-events: none;
}
.gallery-hero:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.4);
}
.gallery-overlay i,
.gallery-overlay svg {
  width: 28px;
  height: 28px;
  stroke: var(--gold);
  stroke-width: 1.5;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease, transform 300ms ease;
  display: block;
}
.gallery-overlay span {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 300ms ease 40ms, transform 300ms ease 40ms;
}
.gallery-hero:hover .gallery-overlay i,
.gallery-hero:hover .gallery-overlay svg,
.gallery-hero:hover .gallery-overlay span {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Visit page storefront photo ---- */
.visit-storefront {
  margin: 0 0 3.5rem;
  border: 1px solid var(--border);
  overflow: hidden;
}
.visit-storefront img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* ---- Lucide icons on explore cards ---- */
.page-card i,
.page-card svg {
  width: 40px;
  height: 40px;
  stroke: var(--gold);
  stroke-width: 1.5;
  margin-bottom: 16px;
  display: block;
}

/* ---- Gallery + visit responsive ---- */
@media (max-width: 960px) {
  .visit-storefront img { height: 300px; }
}
@media (max-width: 768px) {
  .hero-gallery { max-width: 90vw; }
  .visit-storefront img { height: 240px; }
}
