/* ============================
   Drew Imports — Design Tokens
   ============================ */
:root {
  --navy: #24304f;
  --navy-deep: #182136;
  --red: #a83b34;
  --red-deep: #862c27;
  --cream: #f8f3e7;
  --cream-soft: #f1e9d8;
  --linen: #d8c6a4;
  --gingham: #b7cfe0;
  --white: #ffffff;
  --ink: #2a2a2a;
  --ink-soft: #5c5a52;

  --font-display: "Playfair Display", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-soft: 0 10px 30px rgba(24, 33, 54, 0.12);
  --shadow-card: 0 8px 24px rgba(24, 33, 54, 0.08);
  --container-w: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

p { line-height: 1.65; color: var(--ink-soft); margin: 0 0 1em; }

.script {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--red);
  line-height: 1.15;
}

.cursive {
  font-family: var(--font-script);
  color: var(--navy);
  font-weight: 400;
  line-height: 1;
}

.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin: 0 0 0.6em;
}
.eyebrow.center { text-align: center; }

.section-title { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-title.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--red-deep); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-small { padding: 9px 18px; font-size: 0.82rem; }
.btn-large { padding: 17px 38px; font-size: 1.05rem; }

/* ============================
   Header
   ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 243, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(36, 48, 79, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}

.brand { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.brand-star { width: 20px; height: 20px; fill: var(--navy); flex-shrink: 0; }
.brand-text { display: inline-flex; align-items: baseline; gap: 4px; white-space: nowrap; }
.brand-drew {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--red);
  font-size: 1.5rem;
}
.brand-imports {
  font-family: var(--font-script);
  color: var(--navy);
  font-size: 1.3rem;
}

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
}
.main-nav a:not(.btn):hover { color: var(--red); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.25s; }

/* ============================
   Hero
   ============================ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(36, 48, 79, 0.05) 0px,
      rgba(36, 48, 79, 0.05) 2px,
      transparent 2px,
      transparent 34px
    ),
    var(--cream);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
.hero-sub { font-size: 1.02rem; max-width: 46ch; }

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 24px; }

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
.hero-badges li {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

/* Flag badge illustration */
.hero-visual { display: flex; justify-content: center; }
.flag-badge { display: flex; flex-direction: column; align-items: center; gap: 18px; }
.flag-badge-ring {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: var(--gingham);
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.55) 0 18px, transparent 18px 36px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.55) 0 18px, transparent 18px 36px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  border: 6px solid var(--white);
}
.flag-illustration {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--navy);
  outline: 8px solid var(--cream);
  outline-offset: -14px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.flag-stripes {
  width: 130px;
  height: 88px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(36,48,79,0.15);
  position: relative;
}
.flag-stripes span { flex: 1; background: var(--red); }
.flag-stripes span:nth-child(even) { background: var(--cream); }
.flag-union {
  position: absolute;
  top: 0; left: 0;
  width: 56px;
  height: 44px;
  background: var(--navy);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-items: center;
  padding: 3px;
}
.flag-star { color: var(--cream); font-size: 8px; line-height: 1; }
.flag-badge-caption {
  font-family: var(--font-script);
  color: var(--navy);
  font-size: 1.6rem;
}

/* ============================
   Trust strip
   ============================ */
.trust-strip { background: var(--navy); padding: 26px 0; }
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-item strong { color: var(--cream); font-family: var(--font-display); font-size: 1.05rem; }
.trust-item span { color: rgba(248,243,231,0.7); font-size: 0.82rem; }

/* ============================
   Products
   ============================ */
.products { padding: 96px 0; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }

.product-icon-wrap {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-icon-wrap.perfume { background: #f1e0dd; }
.product-icon-wrap.clothes { background: #dde6ee; }
.product-icon-wrap.electronics { background: var(--cream-soft); }
.product-icon { width: 42px; height: 42px; fill: var(--red); }
.product-icon-wrap.clothes .product-icon { fill: var(--navy); }
.product-icon-wrap.electronics .product-icon { fill: var(--navy); }
.icon-accent { fill: var(--cream); }
.icon-stroke { stroke: var(--navy); }

.product-card h3 { font-size: 1.3rem; }
.product-card p { font-size: 0.92rem; }

.product-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  background: var(--cream-soft);
  padding: 6px 14px;
  border-radius: 999px;
}

.product-disclaimer {
  max-width: 640px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--navy);
  background: var(--cream-soft);
  border: 1px solid rgba(36, 48, 79, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
}

/* ============================
   How it works
   ============================ */
.how-it-works { padding: 96px 0; background: var(--cream-soft); }
.steps {
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  position: relative;
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; }
.step p { font-size: 0.88rem; margin-bottom: 0; }

/* ============================
   Why us
   ============================ */
.why-us { padding: 96px 0; }
.why-us-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}
.why-list { list-style: none; padding: 0; margin: 24px 0 32px; display: grid; gap: 18px; }
.why-list li { display: flex; flex-direction: column; gap: 2px; }
.why-list strong { color: var(--navy); font-family: var(--font-display); font-size: 1.05rem; }
.why-list span { color: var(--ink-soft); font-size: 0.9rem; }
.why-us-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

/* ============================
   Instagram strip
   ============================ */
.insta-strip { padding: 96px 0; background: var(--navy); }
.insta-strip .eyebrow { color: var(--gingham); }
.insta-strip .section-title { color: var(--cream); }
.insta-strip .section-title .script { color: var(--linen); }
.insta-sub { color: rgba(248,243,231,0.72); max-width: 480px; margin: 0 auto; }

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 640px;
  margin: 40px auto;
}
.insta-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.insta-tile-flag {
  background: var(--gingham);
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.55) 0 12px, transparent 12px 24px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.55) 0 12px, transparent 12px 24px);
}
.mini-flag { width: 66%; }
.mini-flag .flag-stripes { width: 100%; height: 60px; border: 1px solid rgba(36,48,79,0.2); }
.mini-flag .flag-union { width: 40px; height: 32px; }
.mini-flag .flag-star { font-size: 6px; }

.insta-tile-logo {
  background:
    repeating-linear-gradient(90deg, rgba(36,48,79,0.06) 0 2px, transparent 2px 18px),
    var(--cream);
  flex-direction: column;
  gap: 2px;
}
.insta-tile-logo .brand-drew { font-size: 1.6rem; }
.insta-tile-logo .brand-imports { font-size: 1.3rem; }

.insta-tile-quote { background: var(--linen); }
.insta-quote { font-size: 1.7rem; text-align: center; }

.insta-cta { display: block; width: fit-content; margin: 0 auto; border-color: var(--cream); color: var(--cream); }
.insta-cta:hover { background: var(--cream); color: var(--navy); }

/* ============================
   Final CTA
   ============================ */
.final-cta { padding: 90px 0; background: var(--red); text-align: center; }
.final-cta h2 { color: var(--white); font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.final-cta p { color: rgba(255,255,255,0.85); max-width: 440px; margin: 0 auto 28px; }
.final-cta .btn-primary { background: var(--navy); }
.final-cta .btn-primary:hover { background: var(--navy-deep); }

/* ============================
   Footer
   ============================ */
.site-footer { background: var(--navy-deep); padding: 48px 0 32px; text-align: center; }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.footer-tagline { color: rgba(248,243,231,0.75); font-size: 0.9rem; margin: 0; }
.footer-insta { color: var(--linen); text-decoration: none; font-weight: 600; }
.footer-insta:hover { text-decoration: underline; }
.footer-copy { color: rgba(248,243,231,0.45); font-size: 0.76rem; margin: 12px 0 0; }
.brand-footer .brand-drew,
.brand-footer .brand-imports { color: var(--cream); }
.brand-footer .brand-drew { color: var(--linen); }

/* ============================
   Scroll reveal
   ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================
   Responsive
   ============================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .flag-badge-ring { width: 220px; height: 220px; }
  .flag-illustration { width: 150px; height: 150px; }
  .why-us-inner { grid-template-columns: 1fr; }
  .why-us-visual { order: -1; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(36,48,79,0.1);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-toggle { display: flex; }
  .product-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
}
