/* =========================================================
   SUGAR MAMA'S — Santa Catalina, Panama
   Vintage bistro tropical aesthetic
   ========================================================= */

:root {
  /* Palette extracted from the logo */
  --blue: #1F4FB6;          /* foulard blue */
  --blue-deep: #163E8F;
  --yellow: #E8B53C;        /* jaguar yellow */
  --yellow-soft: #F5D78E;
  --cream: #FBF6EC;         /* background */
  --cream-warm: #F4EBD9;
  --peach: #F2A28E;         /* cheeks */
  --black: #0E0E10;
  --ink: #1A1A20;

  /* Type */
  --font-display: 'Caveat Brush', cursive;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'DM Sans', sans-serif;
  --font-stamp: 'Bebas Neue', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Grain overlay - removed for performance */
.grain { display: none; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background: var(--cream);
  border-bottom: 1px solid rgba(14, 14, 16, 0.08);
}

.nav-logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue);
}

.nav-links {
  display: flex;
  gap: 32px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s;
}

.nav-links a:hover { color: var(--blue); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: transform 0.2s, background 0.2s;
}

.nav-cta:hover { transform: translateY(-2px); background: var(--blue-deep); }

.nav-cta .dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
}

@media (max-width: 720px) {
  .nav { padding: 12px 16px; }
  .nav-links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: calc(100vh - 80px);
  padding: 60px 0 0;
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  transform: translateZ(0);
}

.shape-1 { width: 350px; height: 350px; background: var(--yellow-soft); top: -50px; left: -80px; }
.shape-2 { width: 300px; height: 300px; background: var(--peach); top: 50%; right: -60px; }
.shape-3 { width: 250px; height: 250px; background: var(--blue); opacity: 0.15; bottom: 100px; left: 30%; }

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-text { animation: fadeUp 0.6s ease-out; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-stamp);
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 24px;
  padding: 6px 14px;
  border: 1.5px solid var(--blue);
  border-radius: 4px;
  background: rgba(31, 79, 182, 0.05);
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 8vw, 110px);
  line-height: 0.95;
  margin: 0 0 28px;
  color: var(--black);
  letter-spacing: -2px;
}

.hero-title .line { display: block; }
.hero-title .line-1 { font-style: italic; font-weight: 400; }
.hero-title .line-2 {
  font-family: var(--font-display);
  color: var(--blue);
  font-size: 1.3em;
  letter-spacing: 0;
  transform: rotate(-3deg) translateX(40px);
  display: inline-block;
  margin: 8px 0;
}
.hero-title .line-2 em { font-style: normal; }
.hero-title .line-3 { font-weight: 600; }

.hero-sub {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  margin: 0 0 36px;
  opacity: 0.8;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.25s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--black);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(31, 79, 182, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-ghost:hover {
  background: var(--black);
  color: var(--cream);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost-light:hover {
  background: var(--cream);
  color: var(--blue);
}

.hero-logo {
  position: relative;
}

.hero-logo img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  transform: rotate(2deg);
  filter: drop-shadow(0 12px 24px rgba(31, 79, 182, 0.18));
}

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; padding: 20px 24px 60px; }
  .hero-logo img { max-width: 320px; }
  .hero-title .line-2 { transform: rotate(-3deg) translateX(0); }
}

/* MARQUEE */
.marquee {
  position: relative;
  z-index: 2;
  background: var(--black);
  padding: 18px 0;
  overflow: hidden;
  transform: rotate(-1deg);
  margin: 0 -20px;
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--cream);
  will-change: transform;
}

.marquee-track span:not(.dot-sep) { padding: 0 8px; }
.marquee-track .dot-sep { color: var(--yellow); font-size: 28px; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================================================
   STORY
   ========================================================= */
.story {
  padding: 120px 0;
  position: relative;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-label {
  font-family: var(--font-stamp);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 16px;
}

.section-label.light { color: var(--yellow); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  margin: 0 0 32px;
  color: var(--black);
  letter-spacing: -1px;
}

.section-title.light { color: var(--cream); }

.lead {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 20px;
  color: var(--ink);
}

.story-text p { font-size: 17px; }

/* Story portrait - Carolina photo */
.story-portrait {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: 12px 12px 0 var(--blue);
  transform: rotate(-1.5deg);
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}

.story-portrait:hover {
  transform: rotate(0) translateY(-4px);
}

.story-portrait img {
  width: 100%;
  height: auto;
  display: block;
}

.story-portrait-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--black);
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  box-shadow: 3px 3px 0 var(--yellow);
}

.story-portrait-tag span {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--blue);
}

.story-portrait-tag em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 12px;
  color: var(--ink);
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* Mini cards row below the portrait */
.story-mini-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-card {
  background: var(--cream-warm);
  border: 1.5px solid var(--black);
  border-radius: 14px;
  padding: 14px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: transform 0.2s, box-shadow 0.2s;
}

.mini-card:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 var(--blue);
}

.mini-icon {
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mini-icon svg { width: 18px; height: 18px; }

.story-mini-cards .mini-card:nth-child(2) .mini-icon { background: var(--yellow); color: var(--black); }
.story-mini-cards .mini-card:nth-child(3) .mini-icon { background: var(--peach); color: var(--black); }

@media (max-width: 880px) {
  .story-portrait { box-shadow: 6px 6px 0 var(--blue); }
  .story-mini-cards { grid-template-columns: 1fr; }
  .mini-card { flex-direction: row; justify-content: flex-start; padding: 12px 16px; }
}

@media (max-width: 880px) {
  .story { padding: 80px 0; }
  .story-grid { grid-template-columns: 1fr; gap: 50px; }
  .card-2 { margin-left: 0; }
}

/* =========================================================
   MENU
   ========================================================= */
.menu {
  background: var(--black);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.menu::before {
  content: none;
}

.menu-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  position: relative;
  z-index: 2;
}

.menu-intro {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--cream-warm);
  opacity: 0.85;
  margin-top: 16px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(251, 246, 236, 0.2);
}

.menu-cat {
  padding: 36px 30px;
  border-bottom: 1px solid rgba(251, 246, 236, 0.2);
  border-right: 1px solid rgba(251, 246, 236, 0.2);
  transition: background 0.3s;
  position: relative;
}

.menu-cat:nth-child(3n) { border-right: none; }

.menu-cat:hover { background: rgba(31, 79, 182, 0.15); }

.cat-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 6px;
}

.cat-num {
  font-family: var(--font-stamp);
  font-size: 26px;
  color: var(--yellow);
  letter-spacing: 2px;
}

.menu-cat h3 {
  font-family: var(--font-display);
  font-size: 36px;
  margin: 0;
  color: var(--cream);
  letter-spacing: 1px;
  line-height: 1;
}

.cat-tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--yellow-soft);
  opacity: 0.85;
  margin: 0 0 18px;
  padding-left: 2px;
}

.cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cat-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px dashed rgba(251, 246, 236, 0.15);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.4;
  color: var(--cream-warm);
}

.cat-list li:last-child { border-bottom: none; }

.cat-list li > span:first-child {
  flex: 1;
  opacity: 0.95;
}

.cat-list .price {
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  color: var(--yellow);
  letter-spacing: 0.5px;
}

.menu-note {
  text-align: center;
  margin: 60px auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--yellow-soft);
  font-size: 17px;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-cat:nth-child(3n) { border-right: 1px solid rgba(251, 246, 236, 0.2); }
  .menu-cat:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .menu { padding: 80px 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-cat { border-right: none !important; padding: 30px 22px; }
  .menu-cat h3 { font-size: 32px; }
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { padding: 120px 0; background: var(--cream-warm); }

.gallery-header { text-align: center; margin-bottom: 60px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 180px;
  gap: 16px;
}

.g-item {
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.g-item:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 var(--blue);
}

.g-item:hover img {
  transform: scale(1.05);
}

.g-1 { grid-column: span 2; grid-row: span 2; }
.g-2 { grid-column: span 2; }
.g-3 { grid-column: span 2; }
.g-4 { grid-column: span 2; }
.g-5 { grid-column: span 2; }
.g-6 { grid-column: span 2; grid-row: span 2; }

.gallery-note {
  text-align: center;
  margin-top: 40px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  opacity: 0.7;
}

.gallery-note a {
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-weight: 500;
  transition: opacity 0.2s;
}

.gallery-note a:hover { opacity: 0.7; }

@media (max-width: 880px) {
  .gallery { padding: 80px 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .g-1, .g-6 { grid-column: span 2; grid-row: span 1; }
  .g-2, .g-3, .g-4, .g-5 { grid-column: span 1; }
}

/* =========================================================
   VIP CLUB / WHATSAPP CHANNEL
   ========================================================= */
.vipclub {
  position: relative;
  padding: 120px 0;
  background: var(--cream-warm);
  overflow: hidden;
}

.vipclub-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.vc-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
}
.vc-shape-1 {
  width: 350px; height: 350px;
  background: var(--yellow-soft);
  top: -80px; right: -80px;
}
.vc-shape-2 {
  width: 300px; height: 300px;
  background: var(--peach);
  bottom: -80px; left: -60px;
  opacity: 0.35;
}

.vipclub-inner {
  position: relative;
  z-index: 2;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 32px;
  font-family: var(--font-stamp);
  font-size: 14px;
  letter-spacing: 3px;
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  color: var(--ink);
  opacity: 0.4;
  font-family: var(--font-stamp);
  font-size: 14px;
  letter-spacing: 3px;
  border-radius: 4px;
  transition: opacity 0.2s, color 0.2s, background 0.2s;
}

.lang-btn:hover { opacity: 0.8; }

.lang-btn.is-active {
  opacity: 1;
  color: var(--blue);
  background: rgba(31, 79, 182, 0.08);
}

.lang-sep { color: var(--ink); opacity: 0.3; }

/* Card */
.vc-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border: 1.5px solid var(--black);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  box-shadow: 8px 8px 0 var(--blue);
}

.vc-card .section-label {
  text-align: center;
  margin-bottom: 12px;
}

.vc-title {
  text-align: center;
  margin-bottom: 24px;
}

.vc-title em {
  font-family: var(--font-display);
  color: var(--blue);
  font-style: normal;
  font-size: 1.05em;
  letter-spacing: 0;
}

.vc-lead {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.85;
  margin: 0 auto 36px;
  max-width: 560px;
}

/* Perks list */
.vc-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  text-align: left;
}

.vc-perks li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: var(--cream-warm);
  border-radius: 14px;
  border: 1px solid rgba(14, 14, 16, 0.08);
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.45;
}

.vc-perks li strong {
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.3px;
  color: var(--blue);
}

.vc-perk-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--blue);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vc-perks li:nth-child(2) .vc-perk-icon { background: var(--yellow); color: var(--black); }
.vc-perks li:nth-child(3) .vc-perk-icon { background: var(--peach); color: var(--black); }
.vc-perks li:nth-child(4) .vc-perk-icon { background: var(--black); color: var(--cream); }

.vc-perks li:nth-child(2) strong { color: var(--blue-deep); }
.vc-perks li:nth-child(3) strong { color: var(--blue); }
.vc-perks li:nth-child(4) strong { color: var(--blue); }

.vc-perk-icon svg { width: 18px; height: 18px; }

/* CTA button */
.vc-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 36px;
  background: #25D366;
  color: white;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.5px;
  border: 2px solid #25D366;
  transition: all 0.25s ease;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

.vc-cta:hover {
  background: #1FAD52;
  border-color: #1FAD52;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.4);
}

.vc-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.vc-cta-icon svg {
  width: 22px;
  height: 22px;
}

.vc-fineprint {
  margin: 22px auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink);
  opacity: 0.6;
}

@media (max-width: 720px) {
  .vipclub { padding: 80px 0; }
  .vc-card { padding: 40px 24px; box-shadow: 5px 5px 0 var(--blue); }
  .vc-perks { grid-template-columns: 1fr; gap: 12px; }
  .vc-cta { padding: 16px 28px; font-size: 15px; }
  .vc-lead { font-size: 17px; }
}


.visit {
  background: var(--blue);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.visit::before {
  content: none;
}

.visit-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.info-block {
  margin: 32px 0;
  padding-left: 20px;
  border-left: 2px solid var(--yellow);
}

.info-label {
  font-family: var(--font-stamp);
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0 0 6px;
}

.info-value {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0;
  line-height: 1.4;
}

.info-link {
  font-family: var(--font-serif);
  font-size: 22px;
  border-bottom: 1px solid var(--yellow);
  transition: color 0.2s;
}

.info-link:hover { color: var(--yellow); }

.visit-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 36px; }

.visit-actions .btn-primary { background: var(--yellow); color: var(--black); }
.visit-actions .btn-primary:hover { background: var(--cream); color: var(--blue); }

/* Cafe interior photo */
.visit-illustration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
}

.cafe-photo {
  position: relative;
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid var(--cream);
  box-shadow: 12px 12px 0 var(--yellow), 0 20px 40px rgba(0,0,0,0.25);
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}

.cafe-photo:hover {
  transform: rotate(0) translateY(-4px);
}

.cafe-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.cafe-photo-secondary {
  max-width: 280px;
  margin-left: auto;
  margin-right: -20px;
  margin-top: -40px;
  transform: rotate(-3deg);
  border-color: var(--yellow);
  box-shadow: -8px 8px 0 var(--cream), 0 16px 32px rgba(0,0,0,0.3);
  z-index: 2;
}

@media (max-width: 880px) {
  .cafe-photo { max-width: 320px; transform: rotate(2deg); box-shadow: 8px 8px 0 var(--yellow); }
  .cafe-photo-secondary { max-width: 220px; margin-right: -10px; box-shadow: -6px 6px 0 var(--cream); }
  .visit { padding: 80px 0; }
  .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  .visit-illustration { order: -1; }
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 60px 0 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.footer-script {
  font-family: var(--font-display);
  font-size: 56px;
  margin: 0;
  color: var(--cream);
  line-height: 1;
}

.footer-tag {
  font-family: var(--font-serif);
  font-style: italic;
  margin: 8px 0 0;
  color: var(--yellow-soft);
  font-size: 16px;
}

.footer-meta p, .footer-credit p {
  margin: 4px 0;
  font-size: 14px;
  opacity: 0.8;
}

.footer-meta a:hover { color: var(--yellow); }

.footer-credit { text-align: right; }

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-credit { text-align: center; }
  .footer-script { font-size: 44px; }
}

/* =========================================================
   FLOATING WHATSAPP
   ========================================================= */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform 0.2s;
}

.wa-float svg { width: 32px; height: 32px; }

.wa-float:hover { transform: scale(1.1); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* Honor user prefs for reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
