/* ============================================
   Noble Leaf - Premium Cigar Landing Page
   Mobile-First Responsive Stylesheet
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --bg-primary: #0D0D0D;
  --bg-warm: #1A1714;
  --bg-card: #1E1A16;
  --tobacco-dark: #3C2415;
  --tobacco: #5C3D2E;
  --gold: #C8A96E;
  --gold-light: #D4BA82;
  --gold-dim: rgba(200, 169, 110, 0.15);
  --text-primary: #F5F0E8;
  --text-secondary: #E8DFD0;
  --text-muted: #9A9084;
  --border: rgba(200, 169, 110, 0.12);
  --border-hover: rgba(200, 169, 110, 0.3);

  /* Typography */
  --font-heading: 'Playfair Display', 'Noto Serif SC', Georgia, serif;
  --font-body: 'Inter', 'Noto Sans SC', -apple-system, sans-serif;
  --line-height-body: 1.8;
  --line-height-heading: 1.2;

  /* Spacing */
  --section-pad-y: 80px;
  --section-pad-x: 20px;
  --container-max: 1200px;

  /* Transitions */
  --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
  --duration-reveal: 800ms;
  --duration-hover: 350ms;

  /* Radius */
  --radius: 2px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: var(--line-height-body);
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  line-height: var(--line-height-heading);
  color: var(--text-primary);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: var(--line-height-body);
  max-width: 560px;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-reveal) var(--ease-smooth),
              transform var(--duration-reveal) var(--ease-smooth);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background var(--duration-hover) var(--ease-smooth);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--section-pad-x);
  max-width: var(--container-max);
  margin: 0 auto;
}

.nav-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-brand span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

.nav-links {
  display: none;
}

.nav-links li a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color var(--duration-hover) var(--ease-smooth);
  padding: 8px 0;
}

.nav-links li a:hover {
  color: var(--gold);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  gap: 5px;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--gold);
  transition: all 300ms var(--ease-smooth);
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 400ms var(--ease-smooth), visibility 400ms;
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-secondary);
  letter-spacing: 1px;
  transition: color var(--duration-hover) var(--ease-smooth);
  padding: 12px 24px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu-link:hover {
  color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 13, 13, 0.4) 0%,
    rgba(13, 13, 13, 0.2) 40%,
    rgba(13, 13, 13, 0.6) 70%,
    rgba(13, 13, 13, 0.95) 100%
  );
}

/* --- Smoke Animation --- */
.hero-smoke {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.smoke-particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle at center,
    rgba(220, 195, 150, 0.35) 0%,
    rgba(200, 169, 110, 0.15) 35%,
    rgba(180, 150, 100, 0.05) 60%,
    transparent 75%
  );
  filter: blur(20px);
  will-change: transform, opacity;
  animation: smokeRise linear infinite;
}

@keyframes smokeRise {
  0% {
    transform: translateY(0) translateX(0) scale(0.5);
    opacity: 0;
  }
  10% {
    opacity: var(--particle-opacity, 0.25);
  }
  40% {
    opacity: calc(var(--particle-opacity, 0.2) * 0.8);
  }
  70% {
    opacity: calc(var(--particle-opacity, 0.15) * 0.3);
  }
  100% {
    transform: translateY(-100vh) translateX(var(--drift, 30px)) scale(2.5);
    opacity: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px var(--section-pad-x) 60px;
  max-width: 680px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 16px 32px;
  min-height: 44px;
  transition: all var(--duration-hover) var(--ease-smooth);
  border-radius: var(--radius);
}

.hero-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-hover) var(--ease-smooth);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.5;
  animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll span {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 0.8; transform: scaleY(1); }
}

/* --- Hero Noble Circle Entry --- */
.hero-cta-secondary {
  margin-top: 16px;
  background: transparent;
  color: var(--gold);
  border-color: rgba(200, 169, 110, 0.4);
}

.hero-cta-secondary:hover {
  background: rgba(200, 169, 110, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.hero-cta-secondary {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: none;
}

.hero-cta-secondary svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   BRAND STORY SECTION
   ============================================ */
.brand-story {
  padding: var(--section-pad-y) 0;
  background: var(--bg-warm);
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.brand-story-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: var(--line-height-body);
  margin-bottom: 16px;
}

.brand-story-quote {
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
  margin-top: 32px;
  padding-left: 20px;
  border-left: 2px solid var(--gold);
}

.brand-story-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.brand-story-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 600ms var(--ease-smooth);
}

.brand-story-visual:hover img {
  transform: scale(1.03);
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products {
  padding: var(--section-pad-y) 0;
  background: var(--bg-primary);
}

.products-header {
  text-align: center;
  margin-bottom: 48px;
}

.products-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--duration-hover) var(--ease-smooth),
              transform var(--duration-hover) var(--ease-smooth);
}

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

.product-card-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-smooth);
}

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

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(13, 13, 13, 0.85);
  padding: 6px 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.product-card-info {
  padding: 24px;
}

.product-card-name {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.product-card-origin {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.product-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-card-meta {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.product-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-meta-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.product-meta-value {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text-primary);
}

/* ============================================
   CRAFTSMANSHIP SECTION
   ============================================ */
.craftsmanship {
  padding: var(--section-pad-y) 0;
  background: var(--bg-warm);
}

.craft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.craft-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.craft-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.craft-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.craft-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.craft-step-num {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  min-width: 36px;
}

.craft-step-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.craft-step-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   TASTING SECTION
   ============================================ */
.tasting {
  padding: var(--section-pad-y) 0;
  background: var(--bg-primary);
  position: relative;
}

.tasting-header {
  text-align: center;
  margin-bottom: 48px;
}

.tasting-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.tasting-visual {
  margin-bottom: 48px;
  overflow: hidden;
  border-radius: var(--radius);
}

.tasting-visual img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.tasting-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tasting-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color var(--duration-hover) var(--ease-smooth);
}

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

.tasting-card-icon {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 16px;
}

.tasting-card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.tasting-card-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  padding: var(--section-pad-y) 0;
  background: var(--bg-warm);
}

.faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  text-align: left;
  min-height: 44px;
  transition: color var(--duration-hover) var(--ease-smooth);
  gap: 16px;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 300ms var(--ease-smooth);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms var(--ease-smooth), padding 400ms var(--ease-smooth);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: var(--section-pad-y) 0;
  background: var(--bg-primary);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.contact-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: var(--line-height-body);
  margin-bottom: 32px;
  max-width: 420px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-detail-value {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--gold);
}

/* --- Form --- */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.form-required {
  color: var(--gold);
}

.form-input {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  min-height: 48px;
  transition: border-color var(--duration-hover) var(--ease-smooth),
              box-shadow var(--duration-hover) var(--ease-smooth);
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px var(--gold-dim);
}

.form-input-error {
  border-color: #c0392b !important;
}

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

.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 16px 32px;
  min-height: 52px;
  cursor: pointer;
  transition: all var(--duration-hover) var(--ease-smooth);
  margin-top: 4px;
}

.form-submit:hover {
  background: var(--gold-light);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  background: rgba(200, 169, 110, 0.08);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  animation: fadeInUp 400ms var(--ease-smooth);
}

.form-success p {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  color: var(--gold);
  line-height: 1.6;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   NOBLE CIRCLE (VIP Section)
   ============================================ */
.noble-circle {
  position: relative;
  padding: 100px 0;
  background: var(--bg-warm);
  overflow: hidden;
  text-align: center;
}

.noble-circle-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(200, 169, 110, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(200, 169, 110, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.noble-circle-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.noble-circle-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border-hover);
  padding: 8px 16px;
  border-radius: var(--radius);
  margin-bottom: 28px;
}

.noble-circle-title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--gold);
  margin-bottom: 24px;
}

.noble-circle-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 32px;
}

.noble-circle-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  text-align: left;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.noble-circle-perks li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.noble-circle-perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.noble-circle-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 36px;
  min-height: 52px;
  cursor: pointer;
  transition: all var(--duration-hover) var(--ease-smooth);
}

.noble-circle-cta:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(200, 169, 110, 0.2);
}

.noble-circle-cta svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-hover) var(--ease-smooth);
}

.noble-circle-cta:hover svg {
  transform: translateX(4px);
}

/* --- Modal --- */
.noble-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms var(--ease-smooth), visibility 300ms;
  padding: 20px;
}

.noble-modal.open {
  opacity: 1;
  visibility: visible;
}

.noble-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.noble-modal-content {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 40px 24px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.97);
  transition: transform 300ms var(--ease-smooth);
}

.noble-modal.open .noble-modal-content {
  transform: translateY(0) scale(1);
}

.noble-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color var(--duration-hover) var(--ease-smooth);
  cursor: pointer;
  background: none;
  border: none;
}

.noble-modal-close:hover {
  color: var(--gold);
}

.noble-modal-close svg {
  width: 20px;
  height: 20px;
}

.noble-modal-header {
  text-align: center;
  margin-bottom: 28px;
}

.noble-modal-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.noble-modal-subtitle {
  font-size: 14px;
  color: var(--text-muted);
}

.noble-form-submit {
  width: 100%;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23C8A96E' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 32px;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--duration-hover) var(--ease-smooth);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-legal {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.7;
  max-width: 480px;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE - Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
  :root {
    --section-pad-y: 100px;
    --section-pad-x: 40px;
  }

  body {
    font-size: 16px;
  }

  .nav-inner {
    height: 72px;
  }

  .nav-links {
    display: flex;
    gap: 32px;
  }

  .nav-hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }

  .hero-title {
    font-size: 56px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 40px;
  }

  .brand-story-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .brand-story-visual img {
    height: 100%;
    min-height: 400px;
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .craft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .craft-image img {
    height: 100%;
    min-height: 450px;
  }

  .tasting-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .tasting-visual img {
    height: 380px;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

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

  .contact-form-wrap {
    padding: 40px 32px;
  }

  .noble-modal-content {
    padding: 48px 36px;
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links a {
    min-height: auto;
  }
}

/* ============================================
   RESPONSIVE - Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  :root {
    --section-pad-y: 120px;
    --section-pad-x: 60px;
  }

  .hero-title {
    font-size: 68px;
  }

  .section-title {
    font-size: 48px;
  }

  .brand-story-grid {
    gap: 80px;
  }

  .brand-story-quote {
    font-size: 20px;
  }

  .craft-grid {
    gap: 80px;
  }

  .tasting-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .faq-question {
    font-size: 18px;
  }
}

/* ============================================
   RESPONSIVE - Large Desktop (1280px+)
   ============================================ */
@media (min-width: 1280px) {
  .hero-title {
    font-size: 76px;
  }

  .products-grid {
    gap: 32px;
  }
}
