/* ============================================
   GOMILK — styles.css
   Luxury | Minimal | Editorial
   ============================================ */

/* ── TOKENS ── */
:root {
  --cream: #FDFAF5;
  --cream-2: #F5F0E8;
  --sage: #8CA888;
  --sage-dark: #5F7A5B;
  --sage-light: #C8D9C5;
  --charcoal: #1A1A1A;
  --charcoal-2: #2A2A2A;
  --mid-grey: #6B6B6B;
  --light-grey: #D4D0C8;
  --white: #FFFFFF;
  --gold: #C9A96E;
  --gold-light: #E8D5AA;
  --green-dark: #1C2B1A;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --nav-h: 72px;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 12px rgba(0, 0, 0, .06);
  --shadow-md: 0 8px 40px rgba(0, 0, 0, .10);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, .14);
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

/* ── TYPOGRAPHY ── */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

em {
  font-style: italic;
  color: var(--sage-dark);
}

/* ── LAYOUT ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: .85rem;
}

.section-eyebrow--light {
  color: var(--sage-light);
}

.section-title {
  margin-bottom: 1.1rem;
}

.section-title--light {
  color: var(--white);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  max-width: 560px;
  margin: 0 auto;
}

.section-sub--light {
  color: var(--sage-light);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2.2rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 500;
  letter-spacing: .04em;
  border-radius: 60px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .12);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn:hover::after {
  opacity: 1;
}

.btn--primary {
  background: var(--charcoal);
  color: var(--cream);
  box-shadow: 0 4px 20px rgba(26, 26, 26, .22);
}

.btn--primary:hover {
  background: var(--charcoal-2);
  box-shadow: 0 8px 32px rgba(26, 26, 26, .35);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid rgba(26, 26, 26, .25);
}

.btn--ghost:hover {
  border-color: var(--charcoal);
  background: transparent;
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.8rem;
  font-size: .95rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

.btn--whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37, 211, 102, .25);
  font-size: .9rem;
  gap: .65rem;
  padding: .9rem 2rem;
  border-radius: 60px;
}

.btn--whatsapp:hover {
  background: #20bc5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, .35);
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(253, 250, 245, .92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.nav.scrolled {
  border-color: var(--light-grey);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .07);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.01em;
  flex-shrink: 0;
}

.logo-mark {
  color: var(--charcoal);
}

.logo-accent {
  color: var(--sage-dark);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(.75rem, 2vw, 2rem);
  flex-wrap: wrap;
}

.nav__link {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--mid-grey);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--sage-dark);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.nav__link:hover {
  color: var(--charcoal);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__cta {
  background: var(--charcoal);
  color: var(--cream) !important;
  padding: .55rem 1.3rem;
  border-radius: 60px;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: all var(--transition);
  white-space: nowrap;
}

.nav__cta:hover {
  background: var(--sage-dark);
  transform: translateY(-1px);
}

.nav__cta::after {
  display: none;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}

.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--charcoal);
  transition: all var(--transition);
  border-radius: 2px;
}

.nav__burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4.5px, 4.5px);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
}

.nav__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ══════════════════════════════════════════
   HERO
══════════════════════════════════════════ */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: clamp(1.25rem, 5vw, 3rem);
  padding-right: clamp(1.25rem, 5vw, 3rem);
  padding-bottom: 5rem;
  position: relative;
  overflow: visible;
}

.hero__bg-pattern {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 30%, rgba(140, 168, 136, .10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(201, 169, 110, .07) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 1.2rem;
  position: relative;
  padding-left: 2rem;
}

.hero__eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1px;
  background: var(--sage-dark);
}

.hero__title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--mid-grey);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__tags {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.tag {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--sage-dark);
  background: rgba(140, 168, 136, .12);
  border: 1px solid rgba(140, 168, 136, .3);
  padding: .3rem .85rem;
  border-radius: 60px;
}

/* Hero Visual */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__product-card {
  position: relative;
  width: 320px;
  height: 420px;
}

.product-carton {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
}

.carton__top {
  height: 40px;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  clip-path: polygon(15% 0%, 85% 0%, 100% 100%, 0% 100%);
  border-radius: 2px 2px 0 0;
}

.carton__body {
  background: linear-gradient(160deg, var(--cream-2), var(--gold-light) 60%, var(--cream-2));
  border: 1.5px solid var(--gold-light);
  border-top: none;
  padding: 1.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  height: 210px;
  border-radius: 0 0 6px 6px;
  box-shadow: var(--shadow-md);
}

.carton__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
}

.cl-g {
  color: var(--charcoal);
}

.cl-a {
  color: var(--sage-dark);
}

.carton__sub {
  font-size: .6rem;
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid-grey);
  line-height: 1.4;
}

.carton__leaf {
  font-size: 1.4rem;
}

.carton__vol {
  font-size: .75rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

/* Coffee cup */
.hero__coffee-cup {
  position: absolute;
  bottom: 30px;
  right: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cup__body {
  width: 70px;
  height: 72px;
  background: linear-gradient(160deg, var(--cream-2) 0%, var(--cream) 100%);
  border: 1.5px solid var(--light-grey);
  border-radius: 0 0 50% 50% / 0 0 40% 40%;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cup__latte-art {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background:
    radial-gradient(circle 14px at 50% 50%, #C49A6C 0%, transparent 100%),
    radial-gradient(ellipse 34px 10px at 50% 55%, rgba(196, 154, 108, .4) 0%, transparent 100%),
    radial-gradient(ellipse 20px 6px at 50% 65%, rgba(196, 154, 108, .3) 0%, transparent 100%),
    #f0e8d8;
}

.cup__saucer {
  width: 86px;
  height: 10px;
  background: linear-gradient(180deg, var(--light-grey), var(--cream-2));
  border-radius: 50%;
  border: 1px solid var(--light-grey);
}

/* Floating badges */
.floating-badge {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--light-grey);
  border-radius: var(--radius-lg);
  padding: .5rem .85rem;
  font-size: .72rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  box-shadow: var(--shadow-sm);
  animation: float 3s ease-in-out infinite;
  color: var(--charcoal);
}

.floating-badge span {
  color: var(--sage-dark);
  font-size: .9rem;
  font-family: var(--font-display);
  display: block;
}

.float-1 {
  top: 10px;
  right: 0px;
  animation-delay: 0s;
}

.float-2 {
  top: 20px;
  left: 0px;
  animation-delay: -1.5s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* ══════════════════════════════════════════
   FEATURES
══════════════════════════════════════════ */
.features {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5px;
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border: 1.5px solid var(--light-grey);
  transition: background var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.feature-card:hover {
  background: var(--white);
  z-index: 1;
  box-shadow: var(--shadow-md);
}

.feature-card--usage {
  grid-column: span 2;
}

.feature-card__icon {
  width: 44px;
  height: 44px;
  color: var(--sage-dark);
}

.feature-card__icon svg {
  width: 100%;
  height: 100%;
}

.feature-card__title {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 600;
}

.feature-card__text {
  font-size: .875rem;
  color: var(--mid-grey);
}

.usage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: .5rem;
}

.usage-tag {
  font-size: .78rem;
  font-weight: 500;
  color: var(--sage-dark);
  background: rgba(140, 168, 136, .1);
  border: 1px solid rgba(140, 168, 136, .25);
  padding: .35rem .85rem;
  border-radius: 60px;
}

/* ══════════════════════════════════════════
   MOCKUP STRIP
══════════════════════════════════════════ */
.mockup-strip {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-2);
}

.mockup-strip__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.mockup-strip__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.mockup-strip__text p {
  color: var(--mid-grey);
  margin-bottom: 1.5rem;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--charcoal);
}

.check {
  color: var(--sage-dark);
  font-weight: 700;
  font-size: 1rem;
}

/* Product showcase */
.product-showcase {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
}

.ps-carton {
  position: absolute;
  bottom: 20px;
  display: flex;
  flex-direction: column;
}

.ps-carton--main {
  width: 150px;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  animation: float 4s ease-in-out infinite;
}

.ps-carton--side {
  width: 110px;
  z-index: 1;
  left: calc(50% + 80px);
  opacity: .7;
  filter: brightness(.9);
  animation: float 4s ease-in-out infinite;
  animation-delay: -2s;
}

.psc__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(140, 168, 136, .18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.psc__top {
  height: 40px;
  background: linear-gradient(135deg, var(--charcoal) 0%, #333 100%);
  clip-path: polygon(12% 0%, 88% 0%, 100% 100%, 0% 100%);
}

.ps-carton--side .psc__top {
  height: 30px;
}

.psc__body {
  flex: 1;
  min-height: 220px;
  background: linear-gradient(155deg, var(--cream-2) 0%, var(--gold-light) 50%, var(--cream-2) 100%);
  border: 1.5px solid var(--gold-light);
  border-top: none;
  border-radius: 0 0 8px 8px;
  padding: 1.5rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  box-shadow: var(--shadow-lg);
}

.ps-carton--side .psc__body {
  min-height: 170px;
  padding: 1rem .75rem .75rem;
}

.psc__brand {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 700;
}

.psc__brand span {
  color: var(--charcoal);
}

.psc__brand em {
  color: var(--sage-dark);
  font-style: italic;
}

.ps-carton--side .psc__brand {
  font-size: 1.25rem;
}

.psc__tagline {
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--mid-grey);
  line-height: 1.5;
}

.psc__icon {
  font-size: 1.4rem;
}

.ps-carton--side .psc__icon {
  font-size: 1.1rem;
}

.psc__vol {
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
}

.psc__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
}

.psc__badges span {
  font-size: .55rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: rgba(140, 168, 136, .12);
  border-radius: 60px;
  padding: .2rem .6rem;
}

.ps-shadow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 24px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .15) 0%, transparent 70%);
  border-radius: 50%;
}

/* ══════════════════════════════════════════
   WHY CAFES
══════════════════════════════════════════ */
.why-cafes {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-2);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage) 0%, var(--sage-dark) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-card__num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(140, 168, 136, .2);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  line-height: 1;
}

.why-card__icon {
  width: 52px;
  height: 52px;
  color: var(--sage-dark);
  margin-bottom: 1.25rem;
}

.why-card__icon svg {
  width: 100%;
  height: 100%;
}

.why-card__title {
  font-size: 1.15rem;
  margin-bottom: .75rem;
}

.why-card__text {
  font-size: .875rem;
  color: var(--mid-grey);
}

/* ══════════════════════════════════════════
   WHO WE SERVE
══════════════════════════════════════════ */
.who-we-serve {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-2);
}

.serve__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.serve-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--cream-2);
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.serve-card__icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.serve-card__title {
  font-size: 1rem;
  margin-bottom: .6rem;
  font-family: var(--font-display);
}

.serve-card p {
  font-size: .82rem;
  color: var(--mid-grey);
}

/* ══════════════════════════════════════════
   CITIES
══════════════════════════════════════════ */
.cities {
  background: var(--green-dark);
  overflow: hidden;
}

.cities__inner {
  padding: clamp(5rem, 10vw, 8rem) 0;
}

.cities__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.cities__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.city-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: all var(--transition);
  cursor: default;
}

.city-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.city-item:hover {
  padding-left: .5rem;
}

.city-num {
  font-family: var(--font-display);
  font-size: .75rem;
  color: var(--sage-light);
  letter-spacing: .1em;
  min-width: 2.5rem;
}

.city-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  transition: color var(--transition);
}

.city-item:hover .city-name {
  color: var(--sage-light);
}

/* ══════════════════════════════════════════
   PARTNERSHIP
══════════════════════════════════════════ */
.partnership {
  padding: clamp(6rem, 12vw, 10rem) 0;
  background: var(--cream);
  text-align: center;
}

.partnership__inner {
  max-width: 720px;
  margin: 0 auto;
}

.partnership__inner .section-title {
  margin-bottom: 1.5rem;
}

.partnership__inner .section-sub {
  margin-bottom: 3rem;
}

/* ══════════════════════════════════════════
   FOUNDERS
══════════════════════════════════════════ */
.founders {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream-2);
}

.founders__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.founder-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  border: 1px solid var(--cream-2);
  transition: transform var(--transition), box-shadow var(--transition);
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.founder-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.founder-avatar--photo {
  border: 3px solid var(--sage-light);
  box-shadow: 0 4px 18px rgba(95, 122, 91, .2);
}

.founder-avatar--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}

.founder-avatar--f {
  background: linear-gradient(135deg, var(--sage-light) 0%, rgba(140, 168, 136, .2) 100%);
  color: var(--sage-dark);
}

.founder-avatar--m {
  background: linear-gradient(135deg, var(--gold-light) 0%, rgba(201, 169, 110, .2) 100%);
  color: var(--gold);
}

.founder-avatar svg {
  width: 60px;
  height: 60px;
}

.founder-card__role {
  display: block;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--sage-dark);
  font-weight: 600;
  margin-bottom: .35rem;
}

.founder-card__name {
  font-size: 1.25rem;
  margin-bottom: .6rem;
}

.founder-card__bio {
  font-size: .875rem;
  color: var(--mid-grey);
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: var(--cream-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sage-dark);
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
}

.contact-detail__label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid-grey);
  font-weight: 600;
  margin-bottom: .2rem;
}

.contact-detail__value {
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 500;
  transition: color var(--transition);
}

.contact-detail__value:hover {
  color: var(--sage-dark);
}

.contact__wa-btn-wrap {
  margin-top: 1rem;
}

/* Contact Form */
.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--cream-2);
}

.form-group {
  margin-bottom: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-group label {
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mid-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--cream);
  border: 1.5px solid var(--light-grey);
  border-radius: var(--radius);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--light-grey);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(140, 168, 136, .15);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #e55;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-note {
  font-size: .78rem;
  color: var(--mid-grey);
  text-align: center;
  margin-top: .85rem;
}

.form-success {
  background: rgba(140, 168, 136, .12);
  border: 1px solid var(--sage-light);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-size: .9rem;
  color: var(--sage-dark);
  text-align: center;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: var(--cream-2);
  padding: clamp(4rem, 8vw, 6rem) 0 2rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer__logo .logo-mark {
  color: var(--cream);
}

.footer__logo .logo-accent {
  color: var(--sage-light);
}

.footer__tagline {
  font-size: .875rem;
  color: var(--light-grey);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer__socials {
  display: flex;
  gap: .75rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-grey);
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--sage-dark);
  border-color: var(--sage-dark);
  color: var(--white);
}

.social-link svg {
  width: 16px;
  height: 16px;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--light-grey);
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer__col li,
.footer__col li a {
  font-size: .85rem;
  color: rgba(212, 208, 200, .65);
  transition: color var(--transition);
}

.footer__col li a:hover {
  color: var(--sage-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .8rem;
  color: rgba(212, 208, 200, .4);
}

/* ══════════════════════════════════════════
   FAB WHATSAPP
══════════════════════════════════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37, 211, 102, .35);
  z-index: 200;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fab-whatsapp svg {
  width: 58px;
  height: 58px;
}

.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, .45);
}

.fab-whatsapp__tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  white-space: nowrap;
  background: var(--charcoal);
  color: var(--white);
  font-size: .75rem;
  font-weight: 500;
  padding: .4rem .85rem;
  border-radius: 60px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: all var(--transition);
}

.fab-whatsapp:hover .fab-whatsapp__tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4, 0, .2, 1), transform .7s cubic-bezier(.4, 0, .2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s cubic-bezier(.4, 0, .2, 1), transform .8s cubic-bezier(.4, 0, .2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal[data-delay="1"] {
  transition-delay: .1s;
}

.reveal[data-delay="2"] {
  transition-delay: .2s;
}

.reveal[data-delay="3"] {
  transition-delay: .3s;
}

.reveal[data-delay="4"] {
  transition-delay: .4s;
}

.reveal[data-delay="5"] {
  transition-delay: .5s;
}

.reveal[data-delay="6"] {
  transition-delay: .6s;
}

.reveal[data-delay="7"] {
  transition-delay: .7s;
}

/* ══════════════════════════════════════════
   MOBILE
══════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + 3rem);
    min-height: auto;
    padding-bottom: 4rem;
  }

  .hero__eyebrow {
    padding-left: 0;
  }

  .hero__eyebrow::before {
    display: none;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__tags {
    justify-content: center;
  }

  .hero__visual {
    margin-top: 2rem;
  }

  .hero__product-card {
    width: 260px;
    height: 350px;
  }

  .mockup-strip__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .mockup-strip__visual {
    order: -1;
  }

  .product-showcase {
    height: 280px;
  }

  .ps-carton--side {
    display: none;
  }

  .cities__content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer__links {
    gap: 2.5rem;
  }

  .feature-card--usage {
    grid-column: span 1;
  }
}

@media (max-width: 650px) {
  .nav__links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0 2rem;
    border-bottom: 1px solid var(--light-grey);
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .nav__links.open {
    display: flex;
  }

  .nav__link {
    padding: .85rem 1.5rem;
    width: 100%;
    font-size: .9rem;
  }

  .nav__link::after {
    display: none;
  }

  .nav__cta {
    margin: .5rem 1.5rem 0;
    text-align: center;
    border-radius: var(--radius);
    padding: .75rem;
  }

  .nav__burger {
    display: flex;
  }

  .why__grid {
    grid-template-columns: 1fr;
  }

  .serve__grid {
    grid-template-columns: 1fr 1fr;
  }

  .founders__grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .footer__links {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .fab-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
  }

  .fab-whatsapp svg {
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 420px) {
  .serve__grid {
    grid-template-columns: 1fr;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}