/* ============================================================
   style.css — The Stir  |  Light / Cream Theme
============================================================ */

/* ---- Reset ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ---- Tokens ---- */
:root {
  --bg: #F1EBE0;
  --white: #FFFFFF;
  --navy: #1A0066;
  --pink: #FF0099;
  --red: #FF0099;
  --body: #3D1A6E;
  --muted: #9B97A8;
  --border: #D4CECC;
  --card-bg: #FAF6EF;
  --dark-bg: #12102E;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--navy);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* ============================================================
   NAVBAR — white bg, larger logo
============================================================ */
.navbar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background: var(--white);
  border-bottom: 1px solid #E8E2D8;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--navy);
}

.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  object-fit: contain;
}


/* ============================================================
   HERO
============================================================ */
.hero {
  display: flex;
  align-items: stretch;
  height: 640px;
  position: relative;
  background: var(--bg);
  overflow: visible;
  z-index: 5;
}

/* Small wave hero → latest */
.hero-wave-btm {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -54px;
  height: 55px;
  line-height: 0;
  z-index: 6;
  pointer-events: none;
}

.hero-wave-btm svg {
  display: block;
  width: 100%;
  height: 55px;
}

.hero-left {
  flex: 0 0 50%;
  padding: 40px 0 40px 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-top-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  object-fit: contain;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.eye-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.hero-h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 800;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 1.06;
  color: var(--navy);
  margin-bottom: 1.6rem;
}

.hero-h1 em {
  font-style: italic;
  color: var(--pink);
}

.hero-desc {
  font-size: 16px;
  line-height: 1.72;
  color: var(--body);
  max-width: 440px;
  margin-bottom: 2rem;
}

.hero-sub-wrap {
  margin-top: 0;
  margin-bottom: 0.9rem;
}

.hero-delivery {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: var(--navy);
  opacity: 0.55;
  margin-top: 0;
  letter-spacing: 0.01em;
}

.hero-features {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.feat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}

.feat-dot {
  color: var(--pink);
  font-size: 8px;
  line-height: 1;
  flex-shrink: 0;
}

.hero-pills,
.route-wrap {
  display: none;
}

.hero-right {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  margin: 0;
}

.hero-img-frame {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 0;
  border: none;
  margin: 0;
  background: var(--bg);
  overflow: hidden;
  box-shadow: none;
}

.hero-img-frame img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: right top;
  display: block;
}


/* ============================================================
   WHAT WE COVER
============================================================ */
.cover {
  background: var(--bg);
  padding: 44px 80px 40px;
  text-align: center;
}

.cover-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}

.cover-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  list-style: none;
}

.cover-pills li {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 9px 26px;
  background: transparent;
  cursor: default;
  transition: background 0.22s ease, color 0.22s ease,
    border-color 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cover-pills li:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--bg);
  transform: translateY(-2px);
}


/* ============================================================
   FOOTER — structured, all text visible
============================================================ */
.footer {
  background: var(--dark-bg);
  padding: 32px 80px 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: 100%;
  margin: 0 auto;
}

.footer-main {
  margin-bottom: 12px;
}

.ft-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: -2px;
}

.ft-dot {
  color: var(--pink);
  font-size: 11px;
}

.ft-wordmark {
  font-size: 17px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.01em;
}

.ft-wordmark strong {
  font-weight: 800;
  letter-spacing: 0.1em;
}

.footer-bottom {
  padding-top: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.60);
  flex: 1;
}

.footer-bottom p:last-child {
  text-align: right;
}

/* Social icons — perfectly centred between the two texts */
.social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex: 1;
}

.social-link {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: color 0.18s;
}

.social-link:hover {
  color: var(--white);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-link {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s;
}

.footer-link:hover {
  color: var(--white);
}


/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
  .hero-left {
    padding: 44px 40px 44px 120px;
  }

  .cover {
    padding: 40px 56px 36px;
  }

  .footer {
    padding: 22px 56px 16px;
  }
}

@media (max-width: 1024px) {
  .hero-left {
    padding: 40px 32px 40px 88px;
  }

  .cover {
    padding: 36px 40px 32px;
  }

  .footer {
    padding: 20px 40px 14px;
  }
}

@media (max-width: 860px) {
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 720px) {
  .hero {
    flex-direction: column;
    height: auto;
  }

  .hero-left {
    flex: none;
    padding: 28px 20px 20px;
  }

  .hero-right {
    flex: none;
    padding: 0;
  }

  .hero-img-frame {
    flex: none;
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .hero-img-frame img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    object-position: center top;
  }

  /* Smaller fonts on mobile */
  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.10em;
    margin-bottom: 12px;
  }

  .hero-h1 {
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .hero-desc {
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .hero-sub-wrap {
    max-width: 320px;
    margin-bottom: 0.5rem;
  }

  .hero-features {
    gap: 12px;
    margin-top: 6px;
  }

  .feat-item {
    font-size: 12px;
  }

  /* Pills collapse to a single inline text line */
  .cover {
    padding: 28px 24px;
  }

  .cover-label {
    margin-bottom: 14px;
  }

  .cover-pills {
    display: block;
    line-height: 2;
  }

  .cover-pills li {
    display: inline;
    border: none;
    padding: 0;
    font-size: 14px;
    transform: none;
  }

  .cover-pills li:hover {
    background: transparent;
    color: var(--navy);
    transform: none;
  }

  .cover-pills li:not(:last-child)::after {
    content: "·";
    color: var(--muted);
    margin: 0 8px;
  }

  .footer {
    padding: 24px 20px 20px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-top: 0;
    gap: 16px;
  }

  .footer-bottom p,
  .footer-bottom p:last-child {
    flex: none;
    text-align: center;
    font-size: 12px;
    line-height: 1.6;
  }

  .social-icons {
    flex: none;
    order: -1;
    gap: 20px;
  }
}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}