@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Jost:wght@300;400;500;600&display=swap');

/* ── Variables ──────────────────────────────────────────── */
:root {
  --navy:   #15233F;
  --gold:   #C9A84C;
  --cream:  #F6F3EC;
  --white:  #FFFFFF;
  --text:   #2C2C2C;
  --muted:  #6B7280;
  --border: #E7E1D2;
  --gold-light: #E7CF92;
  --navy-light: #1e3060;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Jost', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 500; }
p  { font-size: 1rem; line-height: 1.75; }
.label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
}
.gold-rule {
  display: flex; align-items: center; gap: 12px;
  color: var(--gold);
}
.gold-rule::before {
  content: ''; display: block;
  width: 28px; height: 1.5px; background: var(--gold);
}

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 56px 0; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: 'Jost', sans-serif; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-gold {
  background: var(--gold); color: var(--navy);
}
.btn-gold:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent; color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-navy {
  background: var(--navy); color: var(--gold);
}
.btn-navy:hover { background: var(--navy-light); }

/* ── Header ──────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-link {
  display: flex; align-items: center; gap: 14px;
}
.logo-link img { width: 42px; height: 42px; object-fit: contain; }
.logo-wordmark {
  display: flex; flex-direction: column; gap: 1px;
}
.logo-wordmark .name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 600; letter-spacing: 0.06em;
  color: var(--white); line-height: 1;
}
.logo-wordmark .sub {
  font-size: 0.6rem; letter-spacing: 0.38em; text-transform: uppercase;
  color: var(--gold); line-height: 1;
}
.site-nav { display: flex; align-items: center; gap: 32px; }
.site-nav a {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 500; transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--gold); }
.nav-cta {
  padding: 10px 22px !important;
  background: var(--gold); color: var(--navy) !important;
  font-weight: 600 !important; letter-spacing: 0.15em !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.3s; }
.mobile-nav {
  display: none; flex-direction: column; gap: 0;
  background: var(--navy); border-top: 1px solid rgba(201,168,76,0.2);
  padding: 16px 24px 24px;
}
.mobile-nav a {
  padding: 12px 0; font-size: 0.85rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-nav a:last-child { border-bottom: none; margin-top: 8px; }
.mobile-nav.open { display: flex; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 96px 0 80px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-label { color: var(--gold); margin-bottom: 20px; }
.hero-title { color: var(--white); margin-bottom: 24px; }
.hero-title span { color: var(--gold); }
.hero-body { color: rgba(255,255,255,0.72); font-size: 1.05rem; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-image img { max-height: 420px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)); }

/* ── Brand Cards ─────────────────────────────────────────── */
.brand-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.brand-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 32px 24px; text-align: center;
  transition: all 0.3s; position: relative;
}
.brand-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.brand-card:hover { box-shadow: 0 8px 32px rgba(21,35,63,0.12); transform: translateY(-4px); }
.brand-card:hover::after { transform: scaleX(1); }
.brand-card img { height: 180px; object-fit: contain; margin: 0 auto 20px; }
.brand-card h3 { margin-bottom: 8px; color: var(--navy); }
.brand-card .aroma { color: var(--muted); font-size: 0.8rem; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 12px; }
.brand-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; }
.brand-card .card-link {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.brand-card .card-link:hover { gap: 10px; }

/* ── Feature 3-col ───────────────────────────────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.feature-item { text-align: center; padding: 32px 24px; }
.feature-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(201,168,76,0.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem;
}
.feature-item h3 { color: var(--navy); margin-bottom: 12px; }
.feature-item p { color: var(--muted); font-size: 0.95rem; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner {
  background: var(--navy); padding: 64px 0; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1.05rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ── Section headers ─────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .label { color: var(--gold); margin-bottom: 12px; }
.section-header h2 { color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ── Brand page hero ─────────────────────────────────────── */
.brand-hero {
  background: var(--navy); padding: 72px 0 56px;
}
.brand-hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.brand-hero-label { color: var(--gold); margin-bottom: 16px; }
.brand-hero h1 { color: var(--white); margin-bottom: 16px; }
.brand-hero .tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-style: italic;
  color: var(--gold-light); margin-bottom: 20px;
}
.brand-hero .body { color: rgba(255,255,255,0.72); margin-bottom: 32px; }
.brand-hero-image { display: flex; justify-content: center; }
.brand-hero-image img {
  max-height: 380px; object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0,0,0,0.5));
}

/* ── Product Grid ─────────────────────────────────────────── */
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.product-card {
  background: var(--white); border: 1px solid var(--border);
  padding: 28px 20px 24px; text-align: center;
  transition: all 0.25s;
}
.product-card:hover {
  box-shadow: 0 8px 28px rgba(21,35,63,0.1);
  transform: translateY(-3px);
}
.product-card img {
  height: 200px; object-fit: contain; margin: 0 auto 20px;
}
.product-card .product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.product-card .product-spec {
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.product-card .product-desc {
  font-size: 0.88rem; color: var(--muted); line-height: 1.65;
  margin-bottom: 16px;
}
.product-card .product-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--navy); font-weight: 600;
}
.product-card .product-case {
  font-size: 0.78rem; color: var(--muted); margin-top: 4px;
}
.product-badge {
  display: inline-block; padding: 4px 10px;
  background: rgba(201,168,76,0.12); color: var(--gold);
  font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 12px;
}

/* ── Brand Story ──────────────────────────────────────────── */
.brand-story { background: var(--cream); }
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.story-label { color: var(--gold); margin-bottom: 16px; }
.story-grid h2 { color: var(--navy); margin-bottom: 20px; }
.story-grid p { color: var(--muted); margin-bottom: 16px; }
.story-stats { display: flex; gap: 32px; margin-top: 32px; }
.stat { text-align: center; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1;
}
.stat .stat-label { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.story-image img {
  width: 100%; object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(21,35,63,0.15));
}

/* ── Occasion tags ───────────────────────────────────────── */
.occasion-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.tag {
  padding: 6px 14px; border: 1px solid var(--border);
  font-size: 0.75rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase;
}

/* ── Trade page ──────────────────────────────────────────── */
.trade-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.trade-form { background: var(--white); border: 1px solid var(--border); padding: 40px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--navy); font-weight: 600;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); background: var(--cream);
  font-family: 'Jost', sans-serif; font-size: 0.95rem; color: var(--text);
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 120px; resize: vertical; }
.checkbox-group { display: flex; flex-direction: column; gap: 10px; }
.checkbox-group label {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; letter-spacing: 0; text-transform: none;
  font-weight: 400; cursor: pointer;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0;
  accent-color: var(--gold);
}
.trust-signals { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.trust-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: var(--cream); }
.trust-icon { font-size: 1.4rem; margin-top: 2px; }
.trust-item h4 { color: var(--navy); margin-bottom: 4px; font-size: 1rem; }
.trust-item p { font-size: 0.88rem; color: var(--muted); }

/* ── Where to buy ────────────────────────────────────────── */
.stockist-placeholder {
  text-align: center; padding: 80px 40px;
  border: 2px dashed var(--border); background: var(--cream);
}
.stockist-placeholder h3 { color: var(--navy); margin-bottom: 12px; }
.stockist-placeholder p { color: var(--muted); max-width: 400px; margin: 0 auto 24px; }

.stockist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.stockist-card {
  border: 1px solid var(--border); overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.stockist-card:hover {
  box-shadow: 0 8px 28px rgba(21,35,63,0.12);
  transform: translateY(-3px);
}
.stockist-logo-area {
  height: 120px; display: flex; align-items: center; justify-content: center;
  padding: 24px 32px;
}
.stockist-logo-area img {
  max-height: 72px; max-width: 220px;
  object-fit: contain; display: block;
}
.stockist-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 600;
  color: white; text-align: center; letter-spacing: 0.02em;
}
.stockist-card-body { padding: 28px; background: white; }
.stockist-card-body p { color: var(--muted); font-size: 0.9rem; margin-bottom: 16px; }
.stockist-brands { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.brand-pill {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(201,168,76,0.1); color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
}
.stockist-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; color: var(--navy); font-weight: 600;
  margin-bottom: 20px;
}
.stockist-price span { font-size: 0.78rem; font-family: 'Jost', sans-serif; color: var(--muted); font-weight: 400; letter-spacing: 0.05em; margin-left: 4px; }

@media (max-width: 640px) {
  .stockist-grid { grid-template-columns: 1fr; }
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--navy); color: rgba(255,255,255,0.6);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand .logo-wordmark .name { color: var(--white); }
.footer-brand p { font-size: 0.88rem; margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: 'Jost', sans-serif; font-size: 0.7rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px; font-weight: 600;
}
.footer-col a {
  display: block; font-size: 0.88rem; margin-bottom: 10px;
  color: rgba(255,255,255,0.6); transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ── Divider ─────────────────────────────────────────────── */
.gold-divider {
  width: 48px; height: 2px; background: var(--gold); margin: 24px 0;
}
.gold-divider-center { margin: 24px auto; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream); padding: 14px 0;
  font-size: 0.78rem; color: var(--muted);
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { margin: 0 8px; }

/* ── Page hero (non-brand) ───────────────────────────────── */
.page-hero { background: var(--navy); padding: 64px 0; text-align: center; }
.page-hero .label { color: var(--gold); margin-bottom: 16px; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; font-size: 1.05rem; }

/* ── Language Switch ─────────────────────────────────────── */
.lang-switch {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.72rem; letter-spacing: 0.12em; margin-left: 8px;
}
.lang-switch a { color: rgba(255,255,255,0.5); font-weight: 500; transition: color 0.2s; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch a.lang-active { color: var(--gold); font-weight: 600; }
.lang-switch span { color: rgba(255,255,255,0.25); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 960px) {
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .brand-hero-inner { grid-template-columns: 1fr; }
  .brand-hero-image { display: none; }
  .story-grid { grid-template-columns: 1fr; }
  .story-image { display: none; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .trade-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .brand-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .story-stats { gap: 20px; }
  .hero-actions { flex-direction: column; }
  .cta-actions { flex-direction: column; align-items: center; }
}
