/* ===================================================
   WE SHIP WINES — Stylesheet
   Colors from Celina's brand board: #97173e (burgundy), #F7F3EF (warm off-white, tonal variation of brand white), #000000 (black)
   Fonts from Celina's brand board: Bebas Neue (display), Manrope (body)
   =================================================== */

/* ---- Fonts ---- */
@font-face {
  font-family: 'Bebas Neue';
  src: url('assets/fonts/BebasNeue.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('assets/fonts/Manrope-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --burgundy: #97173e;
  --burgundy-dark: #6e1030;
  --burgundy-light: #b23a5e;
  --black: #000000;
  --cream: #F7F3EF;
  --cream-darker: #ece5dd;
  --white: #ffffff;
  --gray-text: #5a5450;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --max-width: 1180px;
  --radius: 4px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--black);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 3px solid var(--burgundy); outline-offset: 2px; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.05;
  text-transform: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--burgundy);
}

section { padding: 96px 0; }
@media (max-width: 640px) { section { padding: 64px 0; } }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(151, 23, 62, 0.28);
}
.btn-primary:hover { background: var(--burgundy-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(151, 23, 62, 0.35); }
.btn-secondary {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}
.btn-secondary:hover { background: var(--burgundy); color: var(--white); transform: translateY(-2px); }
.btn-light {
  background: var(--cream);
  color: var(--burgundy);
}
.btn-light:hover { background: var(--white); transform: translateY(-2px); }

.btn-group { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.btn-connector {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  font-size: 0.95rem;
  white-space: nowrap;
  align-self: flex-start;
}
.btn-caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
  max-width: 280px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.btn-caption strong { color: var(--burgundy); font-weight: 700; }
.hero .btn-caption strong { color: var(--white); }
.btn-stack { display: flex; flex-direction: column; }

/* ---- Nav ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
}
.nav-logo img { height: 100px; width: auto; }
.nav-links {
  display: flex;
  gap: 34px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover { color: var(--burgundy); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--white); }
.nav-cta { display: none; }
@media (min-width: 981px) { .nav-cta.btn { display: inline-flex; } }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--black); border-radius: 2px; transition: 0.2s; }

@media (max-width: 980px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 16px;
    left: auto;
    width: min(280px, 80vw);
    background: rgba(247, 243, 239, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.16);
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
    gap: 18px;
    display: none;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-links .nav-cta { display: inline-flex; margin-top: 6px; }
  .nav-toggle { display: flex; }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/ship-wine-from-mendoza-hero.webp');
  background-size: cover;
  background-position: center 65%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.68) 45%, rgba(0,0,0,0.42) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 640px; }
.hero .eyebrow { color: #e8b3c2; margin-bottom: 18px; display: block; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  margin-bottom: 22px;
  text-shadow: 0 2px 18px rgba(0,0,0,0.35);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 38px;
  max-width: 520px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.55);
}
.hero-sub strong { font-weight: 800; }
.hero-sub em { font-style: italic; }

/* ---- Section headers (shared) ---- */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-top: 10px; color: var(--black); }
.section-head p { font-size: 1.08rem; color: var(--gray-text); margin-top: 16px; }
.section-head p strong { color: var(--burgundy); font-weight: 700; }
.section-head p em { font-style: italic; }

/* ---- How It Works ---- */
.how {
  position: relative;
  color: var(--white);
}
.how-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/wine-shipping-from-mendoza-barrel-cellar.webp');
  background-size: cover; background-position: center;
  z-index: 0;
}
.how-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.88) 100%);
  z-index: 1;
}
.how .container { position: relative; z-index: 2; }
.how .eyebrow { color: #e8b3c2; }
.how .section-head h2 { color: var(--white); }
.how .section-head p { color: rgba(255,255,255,0.82); }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .how-steps { grid-template-columns: 1fr; } }

.how-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--burgundy-light);
  line-height: 1;
  margin-bottom: 14px;
}
.how-step h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--white);
}
.how-step p { color: rgba(255,255,255,0.78); font-size: 0.98rem; }
.how-step p strong { color: var(--white); font-weight: 800; }

.how-close {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 36px;
  max-width: 640px;
}
.how-close h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 10px;
}
.how-close p { color: rgba(255,255,255,0.82); }

/* ---- Why Choose Us ---- */
.why { background: var(--white); position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; gap: 40px; } }

.why-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }

.why-pillars { display: flex; flex-direction: column; gap: 34px; }
.pillar { display: flex; gap: 20px; }
.pillar-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--burgundy);
  line-height: 1;
  min-width: 56px;
}
.pillar h3 { font-family: var(--font-body); font-weight: 800; font-size: 1.08rem; margin-bottom: 6px; }
.pillar p { color: var(--gray-text); font-size: 0.98rem; }
.pillar p strong { color: var(--burgundy); font-weight: 700; }

/* ---- Mid-page CTA ---- */
.mid-cta {
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
}
.mid-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 18px;
}
.mid-cta .mid-sub {
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}
.mid-cta .btn-group { justify-content: center; }
.mid-cta .btn-group { align-items: center; }
.mid-cta .btn-group { justify-content: center; }
.mid-cta .btn-group { align-items: center; }
.mid-cta .btn-connector { align-self: center; }
.mid-cta .btn-caption { color: rgba(255,255,255,0.78); margin-left: auto; margin-right: auto; }
.mid-cta .btn-caption strong { color: var(--white); }
.mid-cta .btn-connector { color: rgba(255,255,255,0.75); }
.mid-cta .btn-primary { background: var(--white); color: var(--burgundy); box-shadow: none; }
.mid-cta .btn-primary:hover { background: var(--cream); }
.mid-cta .btn-secondary { border-color: var(--white); color: var(--white); }
.mid-cta .btn-secondary:hover { background: var(--white); color: var(--burgundy); }

/* ---- Pricing ---- */
.pricing { position: relative; color: var(--white); }
.pricing-bg {
  position: absolute; inset: 0;
  background-image: url('assets/images/wine-shipping-service-argentina-bottle-rack.webp');
  background-size: cover; background-position: center;
}
.pricing-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.85), rgba(0,0,0,0.9));
}
.pricing .container { position: relative; z-index: 2; }
.pricing .eyebrow { color: #e8b3c2; }
.pricing .section-head h2 { color: var(--white); }
.pricing .section-head p { color: rgba(255,255,255,0.85); }

.price-tables { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 800px) { .price-tables { grid-template-columns: 1fr; } }

.price-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 34px;
  backdrop-filter: blur(4px);
}
.price-card h3 {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--burgundy-light);
  margin-bottom: 22px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.price-row:last-of-type { border-bottom: none; }
.price-row span:first-child { color: rgba(255,255,255,0.85); font-size: 0.96rem; }
.price-row span:last-child { font-family: var(--font-display); font-size: 1.5rem; color: var(--white); }
.price-note { font-size: 0.85rem; color: rgba(255,255,255,0.68); margin-top: 18px; line-height: 1.5; }

.pricing-footer {
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  padding-top: 8px;
}

/* ---- FAQ ---- */
.faq { background: var(--cream); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--black);
}
.faq-question .plus { font-size: 1.4rem; color: var(--burgundy); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item[open] .faq-question .plus { transform: rotate(45deg); }
.faq-answer { padding: 0 0 26px; color: var(--gray-text); font-size: 1rem; max-width: 640px; }
.faq-answer strong { color: var(--burgundy); font-weight: 700; }

/* ---- For Latin America ---- */
.latam {
  position: relative;
  color: var(--white);
}
.latam-bg {
  position: absolute; inset: 0;
 background-image: url('assets/images/vinedo-we-ship-wines-mendoza.webp');
  background-size: cover; background-position: center;
}
.latam-overlay {
  position: absolute; inset: 0;
 background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.5) 70%, rgba(0,0,0,0.25) 100%);
}
.latam .container { position: relative; z-index: 2; }
.latam-content { max-width: 640px; }
.latam h2 { font-size: clamp(2rem, 4.5vw, 3rem); color: var(--white); margin-bottom: 16px; }
.latam-sub { font-size: 1.1rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; }
.latam p.body-text { color: rgba(255,255,255,0.88); margin-bottom: 20px; font-size: 1.02rem; }
.latam p.body-text strong { color: var(--white); font-weight: 800; }
.latam .btn-caption { color: rgba(255,255,255,0.78); max-width: 560px; }
.latam .btn-caption strong { color: var(--white); }
.latam .btn-connector { color: rgba(255,255,255,0.75); }
.latam .btn-primary { background: var(--white); color: var(--burgundy); }
.latam .btn-secondary { border-color: var(--white); color: var(--white); }
.latam .btn-secondary:hover { background: var(--white); color: var(--burgundy); }
.latam-ctas { display: flex; flex-direction: column; gap: 26px; margin-top: 36px; }

/* ---- Contact ---- */
.contact { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-lead h2 { font-size: clamp(2rem, 4vw, 2.9rem); margin-bottom: 4px; }
.contact-lead .lead-line {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--burgundy);
  margin: 6px 0 22px;
}
.contact-lead p { color: var(--gray-text); font-size: 1.02rem; max-width: 420px; }
.contact-lead p strong { color: var(--burgundy); font-weight: 700; }

.contact-alt { margin-top: 34px; font-size: 0.95rem; color: var(--gray-text); }
.contact-alt a { color: var(--burgundy); font-weight: 700; border-bottom: 1px solid var(--burgundy); }

.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--cream);
  transition: border-color 0.15s ease;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--burgundy); outline: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ---- Footer ---- */
.footer {
  background: var(--black);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; margin-bottom: 46px; }
.footer-logo img { height: 300px; }
.footer-tagline { font-family: var(--font-display); font-size: 1.4rem; color: var(--white); max-width: 460px; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-bottom: 40px; }
.footer-nav a { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.75); }
.footer-nav a:hover { color: var(--white); }
.footer-trust { text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.45); font-style: italic; margin-bottom: 22px; }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.4); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; }

/* ---- Utility ---- */
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
