/* ─── CSS VARIABLES ─── */
:root {
  --cream: #F5EFE0;
  --dark: #1A0F06;
  --espresso: #2C1A0E;
  --caramel: #C17D3C;
  --gold: #D4A855;
  --rust: #8B3A1A;
  --mist: #E8DFD0;
  --ink: #3D2512;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Schibsted Grotesk', sans-serif;
  overflow-x: hidden;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ─── TYPOGRAPHY HELPERS ─── */
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(193, 125, 60, 0.3);
  max-width: 60px;
}

.section-label.center {
  justify-content: center;
}

.section-label.center::after { display: none; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 4rem;
  max-width: 500px;
}

.section-title em {
  font-style: italic;
  color: var(--caramel);
}

.section-title.center {
  text-align: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  background: var(--espresso);
  color: var(--cream);
  padding: 1rem 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  border: 1.5px solid var(--espresso);
}

.btn-primary:hover {
  background: transparent;
  color: var(--espresso);
}

.btn-primary.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}

.btn-primary.gold:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--cream);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--espresso);
  padding: 1rem 2.4rem;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  border: 1.5px solid rgba(44, 26, 14, 0.35);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--caramel);
  color: var(--caramel);
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ─── NAVIGATION ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(245, 239, 224, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(193, 125, 60, 0.2);
  transition: box-shadow 0.3s;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--espresso);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--espresso);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--caramel) !important;
  color: var(--cream) !important;
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--espresso);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 3rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 85, 0.18) 0%, transparent 70%);
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-bg-ring {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(193, 125, 60, 0.15);
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  animation: spin 40s linear infinite;
}

@keyframes spin { to { transform: translateY(-50%) rotate(360deg); } }

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--caramel);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

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

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 440px;
  opacity: 0.85;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-globe {
  width: 360px;
  height: 360px;
}

.globe-svg {
  width: 100%;
  height: 100%;
  animation: float 6s ease-in-out infinite;
}

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

.hero-stat-strip {
  display: flex;
  gap: 3rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(193, 125, 60, 0.25);
}

.stat h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--caramel);
  line-height: 1;
}

.stat p {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-top: 0.3rem;
}

/* ─── HOW IT WORKS ─── */
#how {
  background: var(--espresso);
  color: var(--cream);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}

#how::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(193,125,60,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

#how .section-label { color: var(--gold); }
#how .section-label::after { background: rgba(212, 168, 85, 0.3); }
#how .section-title { color: var(--cream); position: relative; z-index: 1; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  z-index: 1;
}

.step {
  padding: 3rem 2.5rem;
  border-left: 1px solid rgba(245, 239, 224, 0.1);
  transition: background 0.3s;
}

.step:first-child { border-left: none; }
.step:hover { background: rgba(212, 168, 85, 0.06); }

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: rgba(212, 168, 85, 0.2);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 1.2rem;
  display: block;
}

.step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.step p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(245, 239, 224, 0.65);
}

/* ─── ORIGINS ─── */
#origins {
  padding: 7rem 3rem;
  background: var(--cream);
}

.origins-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}

.origins-header .section-title { margin-bottom: 0; }

.origins-intro {
  max-width: 280px;
  font-size: 0.88rem;
  opacity: 0.65;
  line-height: 1.7;
  text-align: right;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(193, 125, 60, 0.15);
  border: 1px solid rgba(193, 125, 60, 0.15);
  margin-top: 1rem;
}

.country-card {
  background: var(--cream);
  padding: 2rem 1.8rem;
  transition: background 0.3s;
}

.country-card:hover { background: var(--mist); }

.country-flag {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.country-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.4rem;
}

.country-notes {
  font-size: 0.72rem;
  color: var(--caramel);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.country-desc {
  font-size: 0.82rem;
  color: var(--ink);
  opacity: 0.65;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ─── WHAT'S IN THE BOX ─── */
#inbox {
  background: #1A0F06;
  padding: 7rem 3rem;
  color: var(--cream);
}

#inbox .section-label { color: var(--gold); }
#inbox .section-label::after { background: rgba(212,168,85,0.3); }
#inbox .section-title { color: var(--cream); }

.inbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  margin-top: 4rem;
}

.inbox-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.coffee-box-art {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--caramel), var(--rust));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,85,0.2);
  animation: float 8s ease-in-out infinite;
}

.inbox-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.inbox-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
}

.inbox-item:last-child { border-bottom: none; }

.inbox-icon {
  width: 44px;
  height: 44px;
  background: rgba(212, 168, 85, 0.15);
  border: 1px solid rgba(212, 168, 85, 0.25);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.inbox-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.3rem;
  color: var(--cream);
}

.inbox-text p {
  font-size: 0.83rem;
  color: rgba(245, 239, 224, 0.55);
  line-height: 1.5;
}

/* ─── PRICING ─── */
#pricing {
  padding: 7rem 3rem;
  background: var(--mist);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
  align-items: start;
}

.pricing-card {
  background: var(--cream);
  border: 1px solid rgba(193, 125, 60, 0.2);
  padding: 3rem 2.5rem;
  border-radius: 3px;
  position: relative;
  transition: all 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(44, 26, 14, 0.12);
  border-color: var(--caramel);
}

.pricing-card.featured {
  background: var(--espresso);
  color: var(--cream);
  border-color: var(--caramel);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-6px);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--espresso);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.plan-name {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--caramel);
  margin-bottom: 0.8rem;
}

.featured .plan-name { color: var(--gold); }

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--espresso);
  margin-bottom: 0.3rem;
}

.featured .plan-price { color: var(--cream); }

.plan-period {
  font-size: 0.78rem;
  color: var(--ink);
  opacity: 0.6;
  margin-bottom: 2rem;
}

.featured .plan-period { color: rgba(245,239,224,0.6); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-bottom: 2.5rem;
}

.plan-features li {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  line-height: 1.4;
}

.featured .plan-features li { color: rgba(245,239,224,0.8); }

.plan-features li::before {
  content: '✦';
  color: var(--caramel);
  font-size: 0.6rem;
  flex-shrink: 0;
}

.featured .plan-features li::before { color: var(--gold); }

.plan-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s;
  border: 1.5px solid var(--espresso);
  color: var(--espresso);
}

.plan-btn:hover {
  background: var(--espresso);
  color: var(--cream);
}

.featured .plan-btn {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--espresso);
}

.featured .plan-btn:hover {
  background: var(--caramel);
  border-color: var(--caramel);
  color: var(--cream);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.8rem;
  opacity: 0.55;
  letter-spacing: 0.05em;
}

/* ─── REVIEWS ─── */
#reviews {
  background: var(--cream);
  padding: 7rem 3rem;
}

.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.review-card {
  padding: 2.5rem;
  border: 1px solid rgba(193, 125, 60, 0.18);
  border-radius: 3px;
  background: var(--cream);
  transition: all 0.3s;
}

.review-card:hover {
  background: var(--mist);
  border-color: var(--caramel);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--espresso);
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--caramel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--cream);
  flex-shrink: 0;
}

.reviewer-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--espresso);
}

.reviewer-origin {
  font-size: 0.72rem;
  color: var(--caramel);
  letter-spacing: 0.05em;
}

/* ─── GUARANTEE ─── */
#guarantee {
  background: var(--espresso);
  padding: 5rem 3rem;
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

#guarantee::before {
  content: '30';
  position: absolute;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22rem;
  font-weight: 300;
  color: rgba(255,255,255,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  line-height: 1;
}

#guarantee .section-label {
  justify-content: center;
  color: var(--gold);
}
#guarantee .section-label::after { display: none; }

#guarantee h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 1.2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

#guarantee p {
  font-size: 1rem;
  opacity: 0.65;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
  position: relative;
}

/* ─── FINAL CTA ─── */
#cta {
  padding: 8rem 3rem;
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-deco {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 10vw, 9rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(193, 125, 60, 0.15);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

#cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 1.2rem;
  position: relative;
}

#cta p {
  font-size: 1rem;
  opacity: 0.65;
  max-width: 480px;
  margin: 0 auto 3rem;
  line-height: 1.7;
  position: relative;
}

.email-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(44, 26, 14, 0.12);
}

.email-form input {
  flex: 1;
  padding: 1.1rem 1.5rem;
  border: 1.5px solid rgba(193, 125, 60, 0.35);
  border-right: none;
  background: var(--cream);
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.88rem;
  color: var(--espresso);
  outline: none;
  border-radius: 2px 0 0 2px;
  transition: border-color 0.2s;
}

.email-form input::placeholder { color: rgba(44, 26, 14, 0.4); }
.email-form input:focus { border-color: var(--caramel); }

.email-form button {
  padding: 1.1rem 1.8rem;
  background: var(--espresso);
  color: var(--cream);
  border: none;
  font-family: 'Schibsted Grotesk', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.email-form button:hover { background: var(--caramel); }

.form-note {
  font-size: 0.72rem;
  opacity: 0.45;
  margin-top: 1rem;
  letter-spacing: 0.05em;
  position: relative;
}

/* ─── LEGAL SECTION ─── */
#legal {
  background: var(--mist);
  padding: 7rem 3rem;
  border-top: 1px solid rgba(193, 125, 60, 0.2);
}

.legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--espresso);
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(193, 125, 60, 0.25);
}

.legal-block {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(193, 125, 60, 0.12);
}

.legal-block:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.legal-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 0.8rem;
  letter-spacing: 0.03em;
}

.legal-block p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.8;
  margin-bottom: 0.6rem;
}

.legal-block p strong {
  color: var(--espresso);
  opacity: 1;
}

.legal-block a {
  color: var(--caramel);
  text-decoration: none;
}

.legal-block a:hover {
  text-decoration: underline;
}

.legal-update {
  font-size: 0.75rem;
  opacity: 0.5;
  margin-top: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ─── FOOTER ─── */
footer {
  background: var(--dark);
  color: rgba(245, 239, 224, 0.55);
  padding: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-top {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(245, 239, 224, 0.1);
  flex-wrap: wrap;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: 0.15em;
  white-space: nowrap;
}

.footer-tagline {
  font-size: 0.83rem;
  line-height: 1.6;
  max-width: 500px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-legal-link {
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  transition: opacity 0.2s;
}

.footer-legal-link:hover { opacity: 0.7; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .countries-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(245, 239, 224, 0.97);
    backdrop-filter: blur(12px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(193, 125, 60, 0.2);
    z-index: 99;
  }

  .nav-hamburger { display: flex; }

  #hero {
    grid-template-columns: 1fr;
    padding: 6rem 1.5rem 4rem;
    min-height: auto;
  }

  .hero-visual { display: none; }
  .hero-bg-circle, .hero-bg-ring { display: none; }

  #how, #origins, #inbox, #pricing, #reviews, #guarantee, #cta, #legal { padding: 5rem 1.5rem; }

  .steps-grid { grid-template-columns: 1fr; }
  .step { border-left: none; border-top: 1px solid rgba(245,239,224,0.1); }
  .step:first-child { border-top: none; }

  .origins-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .origins-intro { text-align: left; max-width: 100%; }
  .countries-grid { grid-template-columns: 1fr 1fr; }

  .inbox-grid { grid-template-columns: 1fr; gap: 3rem; }
  .inbox-visual { display: none; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  .reviews-track { grid-template-columns: 1fr; }

  footer { padding: 2.5rem 1.5rem; }
  .footer-top { gap: 1.5rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-stat-strip { gap: 1.5rem; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-secondary { text-align: center; }
  .countries-grid { grid-template-columns: 1fr; }
  .email-form { flex-direction: column; box-shadow: none; }
  .email-form input { border-right: 1.5px solid rgba(193,125,60,0.35); border-bottom: none; border-radius: 2px 2px 0 0; }
  .email-form button { border-radius: 0 0 2px 2px; }
}
