:root {
  --bg-dark: #0f0d0a;
  --bg-section: #1a1612;
  --bg-card: #241f19;
  --fg: #f5f0e8;
  --fg-muted: #a89e8f;
  --accent: #e8923a;
  --accent-glow: #ff9f43;
  --accent-deep: #c7621a;
  --highlight: #ffcb6b;
  --border: rgba(232, 146, 58, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-dark);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: radial-gradient(ellipse at 50% 80%, rgba(232, 146, 58, 0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 20%, rgba(199, 98, 26, 0.05) 0%, transparent 40%),
              var(--bg-dark);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent,
    transparent 2px,
    rgba(245, 240, 232, 0.01) 2px,
    rgba(245, 240, 232, 0.01) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  max-width: 800px;
}

.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg-muted);
  font-size: 1.5rem;
  animation: float 2s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Story */
.story {
  padding: 8rem 2rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.story-container {
  max-width: 750px;
  margin: 0 auto;
}

.story-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
}

.story h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.highlight {
  color: var(--accent-glow);
}

.story-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 1.2rem;
}

/* Brands */
.brands {
  padding: 8rem 2rem;
  background: var(--bg-dark);
}

.brands-container {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.brand-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease;
}

.brand-card:hover {
  border-color: var(--accent);
}

.brand-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.brand-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.brand-type {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.brand-desc {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}

.brand-proof {
  font-size: 0.8rem;
  color: var(--accent-deep);
  font-weight: 500;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Market / Strategy */
.market {
  padding: 8rem 2rem;
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.market-container {
  max-width: 900px;
  margin: 0 auto;
}

.market-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 3rem;
  font-weight: 600;
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
}

.market-item {
  position: relative;
}

.market-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(232, 146, 58, 0.2);
  margin-bottom: 0.5rem;
}

.market-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.market-item p {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* Closing */
.closing {
  padding: 10rem 2rem;
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(232, 146, 58, 0.06) 0%, transparent 50%),
              var(--bg-dark);
}

.closing-container {
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.closing-location {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}

/* Footer */
.site-footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--bg-dark);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.footer-sub {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--accent);
}

/* ============================================================
   Navigation
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 13, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--fg);
}

.nav-cta {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: #0f0d0a;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-glow);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg);
  border-radius: 2px;
}

/* Offset body so fixed nav doesn't cover content */
body {
  padding-top: 62px;
}

.hero {
  padding-top: 0;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn-primary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--accent);
  color: #0f0d0a;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--accent-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: transparent;
  color: var(--fg);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s, transform 0.1s;
}

.btn-secondary:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* Brand card link */
.brand-link {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}

.brand-link:hover {
  color: var(--accent-glow);
}

/* Closing CTAs */
.closing-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ============================================================
   Shop / Product Catalog
   ============================================================ */
.shop-hero {
  padding: 7rem 2rem 5rem;
  background: radial-gradient(ellipse at 50% 100%, rgba(232, 146, 58, 0.1) 0%, transparent 60%),
              var(--bg-dark);
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.shop-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.shop-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 1.2rem;
  margin-top: 1rem;
  letter-spacing: -0.02em;
}

.shop-hero .btn-primary {
  margin-top: 2rem;
}

.products-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.products-section--wholesale {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.products-container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.section-sub {
  font-size: 0.95rem;
  color: var(--fg-muted);
  margin-bottom: 3rem;
  max-width: 600px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.product-image {
  width: 100%;
  aspect-ratio: 4/3;
  background: #1a1612;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.product-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.product-footer {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-glow);
}

.product-unit {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.product-badge {
  margin-left: auto;
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.out-of-stock {
  background: rgba(168, 158, 143, 0.15);
  color: var(--fg-muted);
}

.products-cta {
  text-align: center;
  padding-top: 1rem;
}

/* ============================================================
   Delivery Section
   ============================================================ */
.delivery-section {
  padding: 6rem 2rem;
  background: var(--bg-dark);
}

.delivery-container {
  max-width: 1000px;
  margin: 0 auto;
}

.delivery-container .section-label {
  margin-bottom: 0.5rem;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 2rem;
}

.delivery-text {
  font-size: 1rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.delivery-zones {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.delivery-zone {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.zone-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.zone-dot--green { background: #4ade80; }
.zone-dot--amber { background: var(--accent); }
.zone-dot--muted { background: var(--fg-muted); }

.delivery-zone strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.delivery-zone p {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.delivery-cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: start;
}

.delivery-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.delivery-cta-box p {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.delivery-contact {
  font-size: 0.8rem !important;
}

.delivery-contact a {
  color: var(--accent);
  text-decoration: none;
}

.delivery-contact a:hover {
  color: var(--accent-glow);
}

/* ============================================================
   Order / Inquiry Form
   ============================================================ */
.order-page {
  padding: 5rem 2rem 8rem;
  min-height: calc(100vh - 62px);
}

.order-container {
  max-width: 680px;
  margin: 0 auto;
}

.order-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.order-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.order-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
}

.form-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.form-errors p {
  font-size: 0.9rem;
  color: #fca5a5;
  margin: 0.2rem 0;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-section-title {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg-muted);
}

.req {
  color: var(--accent);
}

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(168, 158, 143, 0.5);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio cards */
.form-radio-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-radio-group--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: border-color 0.2s;
}

.radio-card:hover {
  border-color: rgba(232, 146, 58, 0.4);
}

.radio-card--selected {
  border-color: var(--accent);
  background: rgba(232, 146, 58, 0.05);
}

.radio-card input[type="radio"] {
  width: auto !important;
  margin-top: 0.2rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.radio-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.radio-card-content strong {
  font-size: 0.9rem;
  font-weight: 600;
}

.radio-card-content span {
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.btn-submit {
  font-size: 1rem;
  padding: 1rem 2.5rem;
  align-self: flex-start;
}

/* Success state */
.order-success {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(74, 222, 128, 0.1);
  border: 2px solid #4ade80;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #4ade80;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.order-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.order-success p {
  color: var(--fg-muted);
  margin-bottom: 2rem;
}

.success-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Error page */
.error-page {
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
}

.error-container {
  max-width: 500px;
}

.error-container h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.error-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ============================================================
   Responsive additions
   ============================================================ */
/* Responsive */
@media (max-width: 768px) {
  .brands-container {
    grid-template-columns: 1fr;
  }
  
  .market-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero {
    min-height: 85vh;
  }
  
  .story,
  .brands,
  .market {
    padding: 5rem 1.5rem;
  }
  
  .closing {
    padding: 6rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(15, 13, 10, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1rem;
  }

  .nav-links--open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  body {
    padding-top: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-radio-group,
  .form-radio-group--3 {
    grid-template-columns: 1fr;
  }

  .delivery-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}