/* ============================================================
   SSS Africa — design system
   Palette pulled from the logo:
     gold  #F4B400   (sunburst petals)
     green #7CB342   (inner leaves)
     ink   #0F0F0F   (SSS letters)
   Type:
     Fraunces (serif) for headlines — pairs with the SSS serif
     Inter (sans)     for body & UI
   ============================================================ */

:root {
  --gold:        #F4B400;
  --gold-dark:   #D89A00;
  --gold-soft:   #FFF6DC;
  --green:       #7CB342;
  --green-dark:  #5E9527;
  --green-soft:  #ECF6DE;
  --ink:         #0F0F0F;
  --ink-2:       #2A2A2A;
  --ink-soft:    #5A5A5A;
  --paper:       #FFFFFF;
  --cream:       #FBF7EE;
  --cream-2:     #F4EEDF;
  --line:        #E8E1CE;
  --line-soft:   #F0EADA;
  --whatsapp:    #25D366;
  --whatsapp-dk: #1FB957;
  --radius:      14px;
  --radius-sm:   8px;
  --max:         1180px;
  --shadow-sm:   0 1px 2px rgba(15,15,15,.04), 0 1px 1px rgba(15,15,15,.03);
  --shadow-md:   0 8px 24px rgba(15,15,15,.06), 0 2px 6px rgba(15,15,15,.04);
  --shadow-lg:   0 24px 48px rgba(15,15,15,.10), 0 4px 12px rgba(15,15,15,.05);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-variation-settings: "opsz" 144;
  letter-spacing: -.015em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0 0 .55em;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.15rem; font-family: "Inter", sans-serif; font-weight: 600; letter-spacing: -.005em; line-height: 1.35; }
p  { margin: 0 0 1em; color: var(--ink-soft); }
strong { color: var(--ink-2); font-weight: 600; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.serif-italic {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-variation-settings: "opsz" 144;
  font-weight: 500;
  color: var(--green-dark);
}
em { font-style: italic; color: var(--gold-dark); font-weight: 700; }
h1 em {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
}

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

.eyebrow {
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--ink-2);
  font-weight: 600;
  margin: 0 0 .8em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}

.section-head { margin-bottom: 48px; max-width: 60ch; }
.section-sub  { color: var(--ink-soft); max-width: 56ch; margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  font-family: inherit;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .08s ease, background .18s ease, color .18s ease, box-shadow .18s ease, border-color .18s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: var(--cream);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--ink-2);
  box-shadow: var(--shadow-md);
}
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--cream); }
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 8px 18px rgba(37,211,102,.25);
}
.btn-whatsapp:hover { background: var(--whatsapp-dk); }
.btn-block { display: flex; width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 238, .85);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  height: 72px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 44px; height: 44px;
  object-fit: contain;
  background: transparent;
  mix-blend-mode: multiply; /* helps the JPEG background blend on cream */
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -.01em;
  color: var(--ink);
}
.brand-tag {
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-weight: 500;
}
.nav { display: none; gap: 28px; }
.nav a { color: var(--ink-soft); font-weight: 500; font-size: .93rem; transition: color .15s ease; }
.nav a:hover { color: var(--ink); }
@media (min-width: 880px) { .nav { display: flex; } }

.header-actions {
  display: flex; align-items: center; gap: 8px;
}
.lang-picker {
  display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px 7px 12px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
  transition: border-color .15s ease;
}
.lang-picker:hover { border-color: var(--ink); }
.lang-globe {
  width: 16px; height: 16px;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.lang-picker select {
  border: none; background: transparent;
  font-family: inherit;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  appearance: none; padding-right: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path fill='%235A5A5A' d='M2 3.5l3 3 3-3z'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}
.lang-picker select:focus { outline: none; }

.country-picker {
  display: flex; align-items: center; gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 10px 7px 12px;
  background: var(--paper);
  box-shadow: var(--shadow-sm);
}
.country-flag { font-size: 1.1rem; }
.country-picker select {
  border: none; background: transparent;
  font-family: inherit;
  font-size: .9rem; font-weight: 500; color: var(--ink);
  appearance: none; padding-right: 18px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'><path fill='%235A5A5A' d='M2 3.5l3 3 3-3z'/></svg>");
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}
.country-picker select:focus { outline: none; }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero-pattern {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 600px at 110% -10%, var(--gold-soft) 0%, transparent 55%),
    radial-gradient(700px 500px at -10% 110%, var(--green-soft) 0%, transparent 55%);
  z-index: -1;
}
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(15,15,15,.025) 0, rgba(15,15,15,.025) 1px, transparent 1px, transparent 28px),
    repeating-linear-gradient(90deg, rgba(15,15,15,.025) 0, rgba(15,15,15,.025) 1px, transparent 1px, transparent 28px);
  mask-image: radial-gradient(circle at 50% 50%, #000 0%, transparent 75%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 64px; }
}
.hero-copy h1 { max-width: 14ch; margin-bottom: .55em; }
.lead {
  font-size: 1.12rem;
  max-width: 50ch;
  color: var(--ink-2);
  margin-bottom: 28px;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-bottom: 36px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 28px;
  margin: 0;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  max-width: 480px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats dt {
  font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.hero-stats dd {
  margin: 4px 0 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600; font-size: 1.05rem;
  color: var(--ink);
}

/* Hero visual */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(460px, 100%);
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}

/* Hero visual: product collage */
.hero-collage {
  position: relative;
  width: 100%;
  height: 100%;
}
.collage-item {
  position: absolute;
  border-radius: 14px;
  background: var(--paper);
  box-shadow:
    0 14px 32px rgba(15,15,15,.14),
    0 3px 8px rgba(15,15,15,.06),
    0 0 0 4px rgba(255,255,255,.9);
  object-fit: cover;
  transition: rotate .35s ease, transform .35s ease, box-shadow .35s ease;
}
.hero-collage:hover .collage-item {
  rotate: 0deg;
}
.collage-item:hover {
  transform: translateY(-4px) scale(1.04);
  z-index: 20 !important;
  box-shadow:
    0 22px 44px rgba(15,15,15,.18),
    0 6px 12px rgba(15,15,15,.08),
    0 0 0 4px rgba(255,255,255,.95);
}

/* Centerpiece — largest, slight tilt */
.is-1 {
  width: 52%;
  aspect-ratio: 4 / 5;
  top: 22%;
  left: 24%;
  rotate: -3deg;
  z-index: 5;
}
/* Top-left medium */
.is-2 {
  width: 36%;
  aspect-ratio: 4 / 5;
  top: 0;
  left: 2%;
  rotate: 5deg;
  z-index: 3;
}
/* Bottom-left medium */
.is-3 {
  width: 34%;
  aspect-ratio: 1 / 1;
  bottom: 4%;
  left: 0;
  rotate: -7deg;
  z-index: 4;
}
/* Top-right medium */
.is-4 {
  width: 30%;
  aspect-ratio: 1 / 1;
  top: 6%;
  right: 4%;
  rotate: -8deg;
  z-index: 3;
}
/* Bottom-right medium */
.is-5 {
  width: 34%;
  aspect-ratio: 4 / 5;
  bottom: 0;
  right: 0;
  rotate: 6deg;
  z-index: 4;
}
/* Small "peeker" upper-middle */
.is-6 {
  width: 22%;
  aspect-ratio: 1 / 1;
  top: 2%;
  left: 44%;
  rotate: 14deg;
  z-index: 6;
}
/* Small "peeker" lower-middle */
.is-7 {
  width: 22%;
  aspect-ratio: 1 / 1;
  bottom: 8%;
  left: 36%;
  rotate: -12deg;
  z-index: 7;
}

@media (max-width: 600px) {
  .hero-visual { width: min(380px, 100%); }
  .collage-item { border-radius: 10px; }
}

/* Hero visual: shipping route stack */
.hero-route {
  display: flex; flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}
.route-cards {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
  width: 100%;
}
.route-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
  transition: rotate .35s ease, box-shadow .35s ease;
}
.route-card:nth-child(1) { rotate: -1.8deg; }
.route-card:nth-child(2) { rotate:  1.4deg; }
.route-card:nth-child(3) { rotate: -1deg;   }
.route-card:nth-child(4) { rotate:  1.6deg; }
.hero-route:hover .route-card { rotate: 0deg; }

.route-card-flag { font-size: 1.65rem; line-height: 1; }
.route-card-meta {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
  line-height: 1.25;
}
.route-card-meta strong {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
}
.route-card-meta span {
  font-size: .78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.route-tag {
  font-size: .68rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  letter-spacing: .03em;
  white-space: nowrap;
  border: 1px solid var(--green);
  box-shadow: 0 0 0 3px var(--green-soft);
}
.hero-logo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--paper);
  border-radius: 5px;
  /*box-shadow: var(--shadow-lg);*/
  display: grid; place-items: center;
  padding: 28px;
  z-index: 1;
  rotate: -3deg;
  transition: rotate .4s ease;
}
.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 5px;
  background: linear-gradient(125deg, #FAF7EE 0%, #F0C700 100%);
  z-index: -1;
  filter: blur(50px);
  opacity: .35;
}
.hero-visual:hover .hero-logo-wrap { rotate: 0deg; }
.hero-logo { width: 100%; height: auto; mix-blend-mode: multiply; }
.hero-visual .badge-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  justify-content: space-between;
  overflow: hidden;
}

.hero-visual .badge-c {
  position: relative;
  font-size: .78rem;
  font-weight: 600;
  white-space: nowrap;
  background: var(--paper);
  padding: 4px 14px;
  border-radius: 999px;
  border: .5px solid;
}

@media screen and (max-width: 768px) {
  .hero-logo-wrap { rotate: 0deg; }
  .hero-visual .badge-wrapper {
    padding: 10px;
  }
  .hero-visual .badge-c {
    font-size: 0.65rem;
  }
}

.badge-c.border-gold { border-color: var(--gold); }
.badge-c.border-green { border-color: var(--green); }
.badge-c.border-gold { box-shadow: 0 0 0 4px var(--gold-soft); }
.badge-c.border-green { box-shadow: 0 0 0 4px var(--green-soft); }

.badge {
  position: absolute;
  font-size: .78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--paper);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  z-index: 2;
  white-space: nowrap;
}
.badge-gold {
  top: 10%;
  left: -4%;
  color: var(--ink);
}
.badge-gold::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.badge-green {
  bottom: 8%;
  right: -6%;
  color: var(--ink);
}
.badge-green::before {
  content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); margin-right: 8px; vertical-align: middle;
  box-shadow: 0 0 0 4px var(--green-soft);
}

/* ============ MARQUEE ============ */
.marquee {
  background: var(--cream-2);
  padding: 48px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.marquee-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.marquee-label::before,
.marquee-label::after {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--line);
  display: inline-block;
}
.marquee-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; align-items: center;
  gap: 36px;
  justify-content: center;
  flex-wrap: wrap;
}
.marquee-list li {
  display: inline-flex; align-items: center;
  transition: transform .15s ease;
}
.marquee-list li:hover { transform: translateY(-2px); }
.marquee-list img {
  height: 30px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
  opacity: .9;
  transition: opacity .15s ease;
}
.marquee-list img:hover { opacity: 1; }

@media (max-width: 600px) {
  .marquee { padding: 36px 0; }
  .marquee-list { gap: 24px; }
  .marquee-list img { height: 24px; }
}

/* ============ SECTION SPACING ============ */
section { padding: 96px 0; }
.about, .why { background: var(--paper); }
.contact { background: var(--cream-2); }

/* ============ ABOUT ============ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
@media (min-width: 880px) {
  .about-inner { grid-template-columns: 1fr 1.6fr; gap: 80px; }
}
.about-side h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); }
.about-body .big {
  font-size: 1.15rem;
  color: var(--ink-2);
}
.about-body p { max-width: 60ch; }

/* ============ SHOP CARDS ============ */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.shop-card {
  position: relative;
  display: block;
  padding: 32px 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.shop-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.shop-rule {
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
}
.shop-card[data-tone="coral"] .shop-rule { background: linear-gradient(90deg, #FF7A59, #F4B400); }
.shop-card[data-tone="ink"]   .shop-rule { background: linear-gradient(90deg, #0F0F0F, #5A5A5A); }
.shop-card[data-tone="gold"]  .shop-rule { background: linear-gradient(90deg, var(--gold), var(--green)); }
.shop-card[data-tone="green"] .shop-rule { background: linear-gradient(90deg, var(--green), #2E7D32); }

.shop-logo {
  position: absolute;
  top: 24px;
  right: 24px;
  height: 28px;
  max-width: 80px;
  width: auto;
  object-fit: contain;
  opacity: .95;
}

.shop-num {
  font-family: "Fraunces", Georgia, serif;
  font-style: italic;
  font-size: .9rem;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.shop-name {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 6px 0 12px;
  color: var(--ink);
}
.shop-card p { font-size: .96rem; margin-bottom: 24px; }
.shop-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: .92rem; color: var(--ink);
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
  transition: color .15s ease, border-color .15s ease, gap .2s ease;
}
.shop-link-light {
  font-size: 12px;
  display: block;
}
.shop-card:hover .shop-link {
  color: var(--green-dark);
  border-color: var(--green-dark);
  gap: 10px;
}

/* ============ STEPS ============ */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 24px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 32px; }
}

.step {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px 28px;
  box-shadow: var(--shadow-sm);
}
.step-rail {
  display: none;
  position: absolute;
  top: 48px;
  right: -34px;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
@media (min-width: 880px) {
  .step-rail { display: block; }
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold-soft);
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
}
.step-num span {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 9;
}
.step h3 { font-family: "Fraunces", Georgia, serif; font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: .98rem; margin: 0; line-height: 1.6; }

/* ============ WHY US ============ */
.why-grid {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1000px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }

.why-grid li { display: flex; flex-direction: column; }
.why-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green-dark);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.why-icon svg { width: 22px; height: 22px; }
.why-grid h3 { margin-bottom: 6px; font-size: 1.05rem; }
.why-grid p { font-size: .95rem; margin: 0; }

/* ============ ORDER ============ */
.order {
  background:
    radial-gradient(700px 400px at 100% 0%, var(--gold-soft) 0%, transparent 60%),
    var(--cream);
}
.order-inner {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) {
  .order-inner { grid-template-columns: 1fr 1.05fr; gap: 64px; }
}
.order-copy h2 { font-size: clamp(2rem, 3.4vw, 2.75rem); }
.order-copy > p { max-width: 50ch; }

.payment-hint {
  margin-top: 28px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.payment-hint p { margin: 0; }
.payment-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 6px !important;
}
.payment-currency { font-family: "Inter", sans-serif; font-weight: 400; color: var(--ink-soft); font-size: .9rem; }
#payment-methods { color: var(--ink-2); font-size: .95rem; }

.order-aside { margin-top: 22px; font-size: .9rem; color: var(--ink-soft); }
.whatsapp-pill {
  display: inline-block;
  background: var(--whatsapp);
  color: #fff;
  padding: 1px 8px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  vertical-align: middle;
}

.order-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: grid;
  gap: 16px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 540px) { .form-row { grid-template-columns: 1.4fr 1fr; } }

.order-form label {
  display: flex; flex-direction: column;
  gap: 8px;
}
.lbl {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.lbl-soft { text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--ink-soft); }

.order-form input,
.order-form select,
.order-form textarea {
  font: inherit;
  font-size: 1rem;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.order-form input::placeholder,
.order-form textarea::placeholder { color: #a8a08c; }
.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  outline: none;
  background: var(--paper);
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-soft);
}
.order-form textarea { resize: vertical; min-height: 90px; }
.form-foot { font-size: .82rem; color: var(--ink-soft); margin: 4px 0 0; text-align: center; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
@media (min-width: 720px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
}

.contact-card-head { display: flex; align-items: center; gap: 14px; }
.contact-card-titles { display: flex; flex-direction: column; line-height: 1.2; }
.flag { font-size: 2rem; }
.contact-country {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
}
.contact-city {
  font-size: .9rem;
  color: var(--ink-soft);
  margin-top: 2px;
}
.contact-person {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--ink-2);
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--line);
}
.contact-rows {
  display: flex; flex-direction: column;
  gap: 10px;
}
.contact-row {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .92rem;
  color: var(--ink-2);
  transition: color .15s ease;
  word-break: break-word;
  font-variant-numeric: tabular-nums;
}
.contact-row svg {
  flex-shrink: 0;
  color: var(--ink-soft);
  transition: color .15s ease;
}
.contact-row:hover,
.contact-row:hover svg { color: var(--green-dark); }
.contact-wa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--whatsapp);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  margin-top: auto;
  transition: background .15s ease;
}
.contact-wa-btn:hover { background: var(--whatsapp-dk); }
.contact-email { margin-top: 28px; color: var(--ink-soft); text-align: center; }
.contact-email a { color: var(--ink); font-weight: 600; border-bottom: 1.5px solid var(--gold); padding-bottom: 1px; }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: #d4d0c4;
  padding: 64px 0 24px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 40px;
}
@media (min-width: 760px) {
  .footer-inner { grid-template-columns: 1.2fr 1fr; gap: 60px; }
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  width: 56px; height: 56px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 12px;
  padding: 6px;
}
.footer-name {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
}
.footer-tag { font-size: .82rem; color: #9c9889; margin-top: 2px; }

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.footer-cols a {
  display: block;
  color: #d4d0c4;
  padding: 4px 0;
  font-size: .9rem;
  transition: color .15s ease;
}
.footer-cols a:hover { color: var(--gold); }
.footer-h {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  margin: 0 0 12px;
}

.footer-base {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .82rem;
  color: #87826e;
}

/* ============ WHATSAPP FAB ============ */
#whatsapp-fab {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, .4);
  z-index: 60;
  transition: transform .15s ease, box-shadow .15s ease;
}
#whatsapp-fab::before {
  content: "";
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--whatsapp);
  opacity: .4;
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1);   opacity: .5; }
  100% { transform: scale(1.4); opacity: 0;  }
}
#whatsapp-fab:hover { transform: scale(1.06); }

/* RESPONSIVE */
@media screen and (max-width: 600px) {
  section { padding: 30px 0; }
  .hero { padding: 30px 0 80px; }
  .brand-tag { display: none; }
  .hero-stats { gap: 18px; }
  .badge-gold { top: 2%; }
  .badge-green { bottom: 2%; }
}
