/* TOBACAM LLC — Premium Luxury Tobacco Brand */

:root {
  --white: #ffffff;
  --cream: #f5e6d3;
  --cream-dark: #ede0cf;
  --cream-panel: #f0e4d4;
  --espresso: #3d2914;
  --chocolate: #4a3728;
  --mocha: #5c4033;
  --latte: #8b6914;
  --gold: #c9a227;
  --gold-soft: rgba(201, 162, 39, 0.35);
  --terracotta: #a04a2e;
  --chocolate-deep: #5d2e17;
  --booking-brown: #6b3d28;
  --cream-input: #f2e8da;
  --text: #2c1810;
  --text-muted: #6b5344;
  --radius-xl: 1.75rem;
  --radius-lg: 1.25rem;
  --radius-md: 0.875rem;
  --shadow-card: 0 1rem 2.5rem rgba(61, 41, 20, 0.1);
  --shadow-soft: 0 0.35rem 1.25rem rgba(61, 41, 20, 0.06);
  --shadow-premium: 0 1.25rem 3.5rem rgba(61, 41, 20, 0.14);
  --shadow-gold: 0 0 2.5rem var(--gold-soft);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Poppins", system-ui, sans-serif;
  --page-gutter: clamp(1rem, 2vw, 1.5rem);
  --container-max: 96rem;
  --container: min(var(--container-max), calc(100% - var(--page-gutter) * 2));
  --section-gap: clamp(2.75rem, 4.5vw, 4rem);
  --section-head-gap: 1.75rem;
  --card-gap: clamp(0.75rem, 1.5vw, 1.25rem);
  --content-gap: var(--page-gutter);
  --prose-width: 42rem;
  --media-radius: var(--radius-lg);
  --ratio-portrait: 4 / 5;
  --ratio-card: 4 / 3;
  --ratio-landscape: 16 / 10;
  --ratio-square: 1 / 1;

  --text-xs: 0.8125rem;
  --text-sm: 0.9375rem;
  --text-base: 1rem;
  --text-md: 1.0625rem;
  --text-nav: 0.9375rem;
  --text-hero: clamp(2.75rem, 4.2vw, 4rem);
  --text-h2: clamp(2rem, 3vw, 2.625rem);
  --text-h3: clamp(1.25rem, 1.5vw, 1.5rem);
  --text-card: 1.0625rem;
  --leading-tight: 1.18;
  --leading-body: 1.65;
  --leading-snug: 1.45;
  --tracking-heading: -0.02em;
  --tracking-nav: 0.04em;
  --tracking-label: 0.14em;
  --weight-heading: 500;
  --weight-body: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.55);
}

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

html {
  font-size: 100%;
  scroll-behavior: auto;
  overflow-x: clip;
  max-width: 100%;
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 0;
}

html.is-loading,
html.is-loading body,
html.lightbox-open,
html.lightbox-open body {
  overflow: hidden;
  touch-action: none;
}

body,
body.site-body {
  margin: 0;
  padding: 0;
  height: auto;
  min-height: 0;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-body);
  line-height: var(--leading-body);
  color: var(--text);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch;
}

body.site-body > .site-footer-premium {
  margin-bottom: 0;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: smooth; }
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: var(--weight-heading);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-heading);
  color: var(--espresso);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); }

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

/* Shared media frames — consistent crop, radius, shadow */
.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--media-radius);
  box-shadow: var(--shadow-card);
  background: var(--cream-panel);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.media-frame--portrait { aspect-ratio: var(--ratio-portrait); }
.media-frame--landscape { aspect-ratio: var(--ratio-landscape); }
.media-frame--card { aspect-ratio: var(--ratio-card); }

.page-wrap { padding-bottom: 0; }

.container-cafe {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--page-gutter);
}

.container-fluid.container-cafe {
  --bs-gutter-x: clamp(0.75rem, 1.5vw, 1.25rem);
}

.container-cafe > .row {
  margin-inline: calc(var(--bs-gutter-x) * -0.5);
  max-width: calc(100% + var(--bs-gutter-x));
  align-items: stretch;
}

/* ——— Section system ——— */
section {
  margin: 0;
}

.section-premium {
  position: relative;
  padding-block: var(--section-gap);
}

/* Hero: no double top/bottom gap from .section-premium */
section.block-hero.section-premium {
  padding-block: 0;
  padding: var(--page-gutter) var(--page-gutter) 0;
}

/* Contact: tighter gap before footer */
section.block-contact.section-premium {
  padding-bottom: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 0;
}

.section-alt {
  background:
    linear-gradient(165deg, var(--cream-panel) 0%, var(--cream) 45%, var(--cream-panel) 100%);
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(201, 162, 39, 0.08), transparent 55%),
    radial-gradient(ellipse 45% 35% at 90% 80%, rgba(61, 41, 20, 0.06), transparent 50%);
}

.section-alt > .container-cafe { position: relative; z-index: 1; }

.section-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.65rem;
}

.section-eyebrow-light { color: var(--gold); }

.section-head {
  margin-bottom: var(--section-head-gap);
  width: 100%;
}

.section-head.text-center {
  text-align: center;
}

.section-head.text-center .section-eyebrow {
  display: inline-block;
}

.section-head h2 { margin-bottom: 0.5rem; }

.section-head.text-center h2 { margin-inline: auto; }

.section-lead {
  color: var(--text-muted);
  font-size: var(--text-md);
  max-width: var(--prose-width);
  margin: 0;
  line-height: var(--leading-body);
}

.section-head.text-center .section-lead {
  margin-inline: auto;
}

/* ——— Preloader ——— */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-panel) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;
}

.preloader.hide { opacity: 0; visibility: hidden; pointer-events: none; }

.preloader-inner { text-align: center; color: var(--espresso); }

.preloader-logo {
  width: 5.5rem;
  margin: 0 auto 0.75rem;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.9; }
}

.preloader-inner p {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  margin: 0;
  color: var(--mocha);
}

/* ——— HERO ——— */
.block-hero {
  padding-top: clamp(0.5rem, 1.25vw, var(--page-gutter));
  padding-inline: var(--page-gutter);
  padding-bottom: 0;
}

.card-hero {
  position: relative;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  background: var(--cream-panel);
  border-radius: var(--radius-xl);
  padding: 1.35rem var(--page-gutter) 2rem;
  box-shadow: var(--shadow-premium);
  overflow: hidden;
}

.hero-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l4 12h12l-10 8 4 12-10-8-10 8 4-12-10-8h12z' fill='%238b6914' fill-opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(201, 162, 39, 0.12), transparent 50%),
    radial-gradient(ellipse 50% 50% at 100% 100%, rgba(61, 41, 20, 0.08), transparent 55%);
  pointer-events: none;
}

.hero-shadow-leaves {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 40% 50% at 95% 10%, rgba(61, 41, 20, 0.07), transparent 70%),
    radial-gradient(ellipse 35% 45% at 5% 90%, rgba(61, 41, 20, 0.06), transparent 65%);
}

.nav-in-hero {
  position: relative;
  z-index: 3;
  padding-bottom: 1.75rem;
}

.brand-logo { height: 3.25rem; width: auto; max-width: 11rem; object-fit: contain; transition: transform 0.25s, opacity 0.25s; }
.brand-logo-wrap:hover .brand-logo { transform: scale(1.03); opacity: 0.9; }

.nav-in-hero .nav-link {
  font-size: var(--text-nav);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-nav);
  color: var(--text-muted);
  padding: 0.4rem 0.85rem !important;
  transition: color 0.2s;
}

.nav-in-hero .nav-link:hover,
.nav-in-hero .nav-link.active { color: var(--espresso); }

.btn-signup {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.6rem;
  background: linear-gradient(135deg, var(--espresso), var(--chocolate));
  color: var(--cream) !important;
  font-weight: var(--weight-semibold);
  font-size: var(--text-nav);
  border-radius: 999px;
  box-shadow: 0 0.35rem 1.25rem rgba(61, 41, 20, 0.25);
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1.5rem rgba(61, 41, 20, 0.35);
  color: var(--white) !important;
}

.navbar-toggler { border: none; padding: 0.5rem; display: flex; flex-direction: column; gap: 0.35rem; }
.navbar-toggler span { display: block; width: 1.5rem; height: 2px; background: var(--espresso); border-radius: 2px; }

.hero-body { position: relative; z-index: 2; }

.hero-text h1 {
  margin-bottom: 0.75rem;
  max-width: 16ch;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--mocha);
  margin-bottom: 0.85rem;
  max-width: 36rem;
  line-height: var(--leading-snug);
}

.hero-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 34rem;
  margin-bottom: 1.5rem;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, var(--espresso), var(--chocolate-deep));
  color: var(--cream);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}

.btn-book:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-premium);
  color: var(--white);
}

.btn-book-outline {
  background: transparent;
  color: var(--espresso);
  border: 2px solid var(--espresso);
  box-shadow: none;
}

.btn-book-outline:hover {
  background: var(--espresso);
  color: var(--cream);
}

.hero-customers { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero-customers p { margin: 0; font-size: var(--text-sm); color: var(--text-muted); }

.avatar-stack { display: flex; }
.avatar-stack span {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 2px solid var(--cream-panel);
  margin-left: -0.5rem;
  background: linear-gradient(135deg, var(--mocha), var(--chocolate));
}
.avatar-stack span:first-child { margin-left: 0; }
.avatar-stack span:nth-child(2) { background: linear-gradient(135deg, #6b5344, #4a3728); }
.avatar-stack span:nth-child(3) { background: linear-gradient(135deg, #8b6914, #5c4033); }
.avatar-stack span:nth-child(4) { background: linear-gradient(135deg, #3d2914, #2c1810); }

.hero-media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  max-width: 26rem;
  margin-inline: auto;
  border-radius: var(--media-radius);
  overflow: hidden;
  aspect-ratio: var(--ratio-portrait);
  box-shadow: var(--shadow-premium);
}

.hero-photo-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 60% 40%, var(--gold-soft), transparent 55%);
  z-index: 0;
  pointer-events: none;
}

.hero-photo-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.04) sepia(0.06);
}

.hero-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--espresso);
  box-shadow: var(--shadow-soft);
}

.hero-photo-badge i { color: var(--gold); }

.float-soft { animation: float-soft 6s ease-in-out infinite; }

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ——— HERO → ABOUT BRIDGE ——— */
.hero-bridge {
  position: relative;
  margin-top: clamp(1.25rem, 2.5vw, 2rem);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 0;
  color: var(--cream);
  overflow: hidden;
  isolation: isolate;
}

.hero-bridge-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(155deg, #1a0f08 0%, #2c1810 35%, #3d2914 68%, #2a1810 100%);
}

.hero-bridge-texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='120' height='120' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M60 8c-12 18-28 26-28 48s16 32 28 48c12-16 28-26 28-48S72 26 60 8z' fill='%23c9a227' fill-opacity='0.07'/%3E%3C/svg%3E");
  background-size: 120px 120px;
}

.hero-bridge-glow {
  position: absolute;
  width: min(50vw, 22rem);
  height: min(50vw, 22rem);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.4;
  pointer-events: none;
}

.hero-bridge-glow--left {
  top: -10%;
  left: -8%;
  background: var(--gold);
}

.hero-bridge-glow--right {
  bottom: 10%;
  right: -6%;
  background: var(--terracotta);
}

.hero-bridge-smoke {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(255, 255, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 100%, rgba(201, 162, 39, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-bridge-marquee {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-block: 1px solid rgba(201, 162, 39, 0.2);
  background: rgba(0, 0, 0, 0.2);
  padding-block: 0.65rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}

.hero-bridge-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  width: max-content;
  animation: bridge-marquee 32s linear infinite;
  white-space: nowrap;
}

.hero-bridge-marquee-track span {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.75);
}

.marquee-dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--gold-soft);
}

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

.hero-bridge-inner {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.hero-bridge-head {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.hero-bridge-eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.hero-bridge-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  font-weight: var(--weight-heading);
  color: var(--cream);
  margin: 0;
  line-height: var(--leading-tight);
}

.hero-bridge-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.bridge-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.28);
  backdrop-filter: blur(14px);
  box-shadow:
    0 0.75rem 2rem rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}

.bridge-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow:
    0 1.25rem 2.5rem rgba(0, 0, 0, 0.45),
    0 0 2rem var(--gold-soft),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.bridge-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.25), rgba(201, 162, 39, 0.08));
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold);
  font-size: 1.25rem;
  transition: transform 0.35s, background 0.35s;
}

.bridge-card:hover .bridge-card-icon {
  transform: scale(1.08);
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.45), rgba(201, 162, 39, 0.15));
}

.bridge-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  font-weight: var(--weight-semibold);
  color: var(--cream);
  margin: 0 0 0.45rem;
  line-height: 1.25;
}

.bridge-card p {
  margin: 0;
  flex: 1;
  font-size: var(--text-sm);
  color: rgba(245, 230, 211, 0.78);
  line-height: var(--leading-body);
}

.hero-bridge-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
}

.bridge-stat {
  text-align: center;
  padding: 1rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(201, 162, 39, 0.2);
  transition: border-color 0.3s, transform 0.3s;
}

.bridge-stat:hover {
  border-color: rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

.bridge-stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.2rem;
}

.bridge-stat span {
  font-size: var(--text-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 230, 211, 0.65);
}

.hero-bridge-wave {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  line-height: 0;
  color: var(--cream-panel);
  margin-top: -1px;
}

.hero-bridge-wave svg {
  display: block;
  width: 100%;
  height: clamp(2.5rem, 5vw, 4rem);
}

.block-about.section-alt {
  padding-top: clamp(2rem, 4vw, 3rem);
}

/* ——— FEATURE CARDS (legacy) ——— */
.block-features {
  padding-block: 1.25rem 0;
}

.block-features .row > [class*="col"] {
  display: flex;
}

.mini-dark-card {
  position: relative;
  width: 100%;
  min-height: 12.5rem;
  padding: 1.5rem 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(160deg, rgba(61, 41, 20, 0.92), rgba(44, 24, 16, 0.96));
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}

.mini-dark-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.mini-dark-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transition: opacity 0.4s, transform 0.6s;
}

.mini-dark-card:hover::before { opacity: 0.55; transform: scale(1.05); }

.mini-dark-card h3,
.mini-dark-card p { position: relative; z-index: 1; }

.mini-dark-card h3 {
  font-family: var(--font-serif);
  font-size: var(--text-card);
  color: var(--cream);
  margin-bottom: 0.35rem;
}

.mini-dark-card p {
  margin: 0;
  font-size: var(--text-sm);
  opacity: 0.92;
  line-height: var(--leading-snug);
}

/* ——— ABOUT ——— */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 2vw, 1.75rem);
  align-items: stretch;
  margin-bottom: 2rem;
}

.about-collage {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  aspect-ratio: var(--ratio-landscape);
  max-height: 22rem;
  width: 100%;
}

.collage-item {
  position: relative;
  min-height: 0;
  border-radius: var(--media-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.collage-main { grid-row: 1 / -1; grid-column: 1; }
.collage-top { grid-column: 2; grid-row: 1; }
.collage-bottom { grid-column: 2; grid-row: 2; }

.collage-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s;
}

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

.glass-panel {
  background: var(--glass);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: clamp(1.35rem, 2vw, 1.75rem);
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.glass-panel p {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  line-height: var(--leading-body);
}

.glass-panel p:last-child { margin-bottom: 0; }

.stats-row { margin-top: 0; }

.stats-row > [class*="col"] {
  display: flex;
}

.stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(61, 41, 20, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s, box-shadow 0.35s;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--terracotta);
  margin-bottom: 0.25rem;
}

.stat-card span { font-size: var(--text-sm); color: var(--text-muted); }

/* ——— CONTENT BLOCKS ——— */
.card-about {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(61, 41, 20, 0.05);
}

.about-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--mocha);
  margin-bottom: 1rem;
}

.about-photo {
  border-radius: var(--media-radius);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: var(--ratio-landscape);
  max-height: 22rem;
  width: 100%;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.leadership-photo {
  aspect-ratio: var(--ratio-portrait);
  max-height: 26rem;
  max-width: 22rem;
  margin-inline: auto;
}

.spec-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: var(--text-base);
  color: var(--text-muted);
}
.spec-list i { color: var(--terracotta); margin-top: 0.2rem; }

.block-content { position: relative; }
.block-content-alt { background: linear-gradient(180deg, var(--cream-panel), var(--cream)); }

.block-features.section-premium {
  padding-top: 1.25rem;
}

.section-products.section-premium {
  padding-top: clamp(2rem, 3vw, 2.75rem);
}

/* ——— PRODUCTS ——— */
.section-products { background: linear-gradient(180deg, var(--cream) 0%, var(--cream-panel) 100%); }

.products-shell {
  position: relative;
  background: linear-gradient(145deg, #2c1810 0%, #3d2914 40%, #4a3728 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 3vw, 2.75rem) clamp(1.25rem, 2vw, 1.75rem) clamp(2.25rem, 3vw, 3rem);
  overflow: hidden;
  box-shadow: var(--shadow-premium), var(--shadow-gold);
}

.products-shell .section-head {
  margin-bottom: 1.5rem;
}

.products-shell .section-eyebrow { color: var(--gold); }
.products-shell .section-head h2,
.products-shell .section-lead { color: var(--cream); }
.products-shell .section-lead { opacity: 0.88; }

.products-leaves-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 15%, rgba(201, 162, 39, 0.15), transparent 30%),
    radial-gradient(circle at 92% 85%, rgba(245, 230, 211, 0.08), transparent 35%);
}

.products-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2), transparent 65%);
  pointer-events: none;
}

.products-swiper {
  padding-bottom: 3rem !important;
  position: relative;
  z-index: 2;
}

.products-swiper .swiper-slide { height: auto; }

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.25);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s;
  transform-style: preserve-3d;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.32), var(--shadow-gold);
}

.product-card-media {
  position: relative;
  aspect-ratio: var(--ratio-card);
  overflow: hidden;
  flex-shrink: 0;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s;
  filter: saturate(1.06) contrast(1.04) sepia(0.06);
}

.product-card:hover .product-card-media img { transform: scale(1.08); }

.product-card-media--contain {
  background: var(--cream-panel, #f5efe6);
}

.product-card-media--contain img {
  object-fit: contain;
  padding: 0.75rem;
  filter: none;
}

.product-card-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.product-card:hover .product-card-shine { transform: translateX(100%); }

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.85rem;
  background: var(--gold);
  color: var(--espresso);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  border-radius: 999px;
  z-index: 2;
}

.product-card-body {
  padding: 1.35rem 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: var(--text-h3);
  margin-bottom: 0.5rem;
  color: var(--espresso);
}

.product-card-body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: var(--leading-body);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--terracotta);
  transition: gap 0.25s, color 0.25s;
}

.product-link:hover { color: var(--espresso); gap: 0.55rem; }

.product-prices {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  border-top: 1px solid rgba(61, 41, 20, 0.08);
  padding-top: 0.85rem;
}

.product-prices li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.35rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.product-prices li strong {
  margin-right: 0.15rem;
}

.product-prices li:last-child { margin-bottom: 0; }

.product-prices span { font-weight: var(--weight-medium); color: var(--mocha); }

.product-prices strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--terracotta);
  font-weight: var(--weight-heading);
}

.products-customization {
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.customization-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  backdrop-filter: blur(10px);
}

.customization-panel h3 {
  font-size: var(--text-h3);
  color: var(--cream);
  margin-bottom: 0.65rem;
}

.customization-lead {
  color: rgba(245, 230, 211, 0.9);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  margin-bottom: 1.25rem;
  max-width: 52rem;
}

.customization-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: 0.65rem 1.25rem;
}

.customization-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-sm);
  color: var(--cream);
}

.customization-features i { color: var(--gold); font-size: 1rem; }

.btn-customization {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1.5rem;
  background: var(--gold);
  color: var(--espresso);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  border-radius: 999px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.btn-customization:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--chocolate-deep);
}

.products-pagination { bottom: 0 !important; }
.products-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 0.5rem;
  height: 0.5rem;
}
.products-pagination .swiper-pagination-bullet-active { background: var(--gold); width: 1.5rem; border-radius: 999px; }

.products-prev,
.products-next {
  color: var(--cream) !important;
  width: 2.75rem !important;
  height: 2.75rem !important;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transition: background 0.25s, transform 0.25s;
}

.products-prev::after,
.products-next::after { font-size: 1rem !important; font-weight: 700; }

.products-prev:hover,
.products-next:hover { background: rgba(201, 162, 39, 0.35); transform: scale(1.08); }

/* ——— GALLERY ——— */
.section-gallery {
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 12% 0%, rgba(201, 162, 39, 0.14) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 88% 100%, rgba(160, 74, 46, 0.12) 0%, transparent 50%),
    linear-gradient(168deg, #100804 0%, var(--chocolate-deep) 42%, #1a0f08 100%);
  color: var(--cream);
  overflow: hidden;
}

.section-gallery .section-eyebrow { color: var(--gold); }
.section-gallery .gallery-head h2,
.section-gallery .gallery-head .section-lead { color: var(--cream); }
.section-gallery .gallery-head .section-lead { opacity: 0.88; }

.gallery-ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l3 9h9l-7 6 3 9-8-6-8 6 3-9-7-6h9z' fill='%23c9a227' fill-opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.section-gallery .container-cafe { position: relative; z-index: 1; }

.gallery-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-xl);
  padding: clamp(1rem, 2vw, 1.35rem);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.18);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.gallery-filter {
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: rgba(245, 230, 211, 0.9);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}

.gallery-filter:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 162, 39, 0.4);
}

.gallery-filter.active {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.gallery-result {
  margin: 0;
  flex-shrink: 0;
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  color: rgba(245, 230, 211, 0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.gallery-result strong {
  color: var(--gold);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--card-gap);
  transition: opacity 0.3s ease;
}

.gallery-grid.is-filtering { opacity: 0.55; }

.gallery-grid.is-solo {
  grid-template-columns: 1fr;
  max-width: 40rem;
  margin-inline: auto;
}

.gallery-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--media-radius);
  border: 1px solid rgba(201, 162, 39, 0.2);
  background: #0c0704;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.4);
  text-decoration: none;
  transition:
    opacity 0.35s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.gallery-card.is-hidden { display: none !important; }

.gallery-grid.is-solo .gallery-card-media {
  aspect-ratio: var(--ratio-landscape);
}

.gallery-card-media {
  position: relative;
  aspect-ratio: var(--ratio-card);
  flex-shrink: 0;
  overflow: hidden;
}

.gallery-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  filter: saturate(1.04) contrast(1.03);
}

.gallery-card--contain .gallery-card-media {
  background: var(--cream-panel);
}

.gallery-card--contain .gallery-card-media img {
  object-fit: contain;
  padding: 0.5rem;
  filter: none;
}

.gallery-card-foot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(12, 7, 4, 0.92);
  border-top: 1px solid rgba(201, 162, 39, 0.15);
  flex-shrink: 0;
}

.gallery-card-tag {
  flex-shrink: 0;
  padding: 0.15rem 0.45rem;
  font-size: 0.65rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--espresso);
  background: var(--gold);
  border-radius: 3px;
}

.gallery-card-title {
  flex: 1;
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(0.85rem, 1.1vw, 0.95rem);
  font-weight: var(--weight-semibold);
  line-height: 1.25;
  color: var(--cream);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery-card-zoom {
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.15);
  color: var(--gold);
  font-size: 0.85rem;
  transition: background 0.25s, transform 0.25s;
}

.gallery-card:hover,
.gallery-card:focus-visible {
  border-color: rgba(201, 162, 39, 0.55);
  box-shadow: 0 1rem 2.5rem rgba(0, 0, 0, 0.5), var(--shadow-gold);
  transform: translateY(-3px);
  outline: none;
}

.gallery-card:hover .gallery-card-media img,
.gallery-card:focus-visible .gallery-card-media img {
  transform: scale(1.05);
}

.gallery-card:hover .gallery-card-zoom,
.gallery-card:focus-visible .gallery-card-zoom {
  background: var(--gold);
  color: var(--espresso);
  transform: scale(1.08);
}

.gallery-empty {
  display: none;
  text-align: center;
  padding: 3.5rem 1.5rem;
  color: rgba(245, 230, 211, 0.7);
  font-size: var(--text-md);
  border: 1px dashed rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-lg);
  margin-top: 1rem;
}

.gallery-empty:not([hidden]) { display: block; }

.gallery-grid:not([hidden]) + .gallery-empty { display: none; }

/* Lightbox — fixed overlay, never affects document flow */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
  margin: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox.is-open {
  display: flex;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 4, 0.92);
  backdrop-filter: blur(14px);
}

.lightbox-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 58rem);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, rgba(44, 24, 16, 0.98) 0%, rgba(26, 15, 8, 0.99) 100%);
  border: 1px solid rgba(201, 162, 39, 0.35);
  border-radius: var(--radius-xl);
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.6), var(--shadow-gold);
  overflow: hidden;
}

.lightbox-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(201, 162, 39, 0.2);
}

.lightbox-header-text { min-width: 0; }

.lightbox-index {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.lightbox-caption {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream);
  line-height: 1.35;
}

.lightbox-close {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.lightbox-close:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
}

.lightbox-figure {
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem 1.25rem;
  flex: 1;
  min-height: 0;
}

.lightbox-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  max-height: calc(92vh - 6rem);
}

.lightbox-img {
  max-width: 100%;
  max-height: calc(92vh - 6rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.lightbox-nav {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cream);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--espresso);
  border-color: var(--gold);
  transform: scale(1.06);
}

/* ——— PRICING ——— */
.pricing-table-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  box-shadow: var(--shadow-card);
  margin-bottom: 1.75rem;
  border: 1px solid rgba(61, 41, 20, 0.06);
}

.pricing-table { width: 100%; min-width: 20rem; border-collapse: collapse; font-size: var(--text-base); }
.pricing-table th,
.pricing-table td { padding: 1.1rem 1.5rem; border-bottom: 1px solid var(--cream-dark); }
.pricing-table th { background: linear-gradient(135deg, var(--espresso), var(--chocolate)); color: var(--cream); text-align: left; }
.pricing-table tbody tr:hover { background: rgba(245, 230, 211, 0.4); }
.pricing-table td strong { color: var(--terracotta); font-size: 1.05em; }

.pricing-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  justify-content: center;
}

.pricing-notes li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.pricing-notes i { color: var(--terracotta); }

/* ——— SERVICES ——— */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--card-gap);
  align-items: stretch;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--media-radius);
  padding: 1.5rem 1.35rem;
  height: 100%;
  min-height: 10.5rem;
  border: 1px solid rgba(61, 41, 20, 0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s, box-shadow 0.35s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
}

.service-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cream), var(--cream-panel));
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  font-size: 1.35rem;
  color: var(--terracotta);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: var(--text-card);
  font-weight: var(--weight-semibold);
  color: var(--espresso);
  margin-bottom: 0.5rem;
  letter-spacing: 0;
  min-height: 2.6em;
  line-height: 1.3;
}

.service-card p {
  margin: 0;
  flex: 1;
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-body);
}

/* ——— WHY US ——— */
.why-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1rem;
  background: var(--white);
  border-radius: var(--radius-md);
  height: 100%;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--espresso);
  border: 1px solid rgba(61, 41, 20, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.why-item i { color: var(--terracotta); font-size: 1.1rem; }

/* ——— EXPORT MARKETS ——— */
.section-markets {
  background: linear-gradient(180deg, var(--white), var(--cream-panel));
}

.why-grid > [class*="col"],
.community-big-row > [class*="col"] {
  display: flex;
}

.export-map-wrap {
  position: relative;
  margin-bottom: 2rem;
}

.export-map-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 1px solid rgba(61, 41, 20, 0.08);
  min-height: 20rem;
}

.world-map { width: 100%; height: auto; display: block; color: var(--terracotta); }

.map-route { animation: dash-route 12s linear infinite; }

@keyframes dash-route {
  to { stroke-dashoffset: -100; }
}

.map-marker {
  position: absolute;
  left: var(--x);
  top: var(--y);
  transform: translate(-50%, -50%);
  color: var(--terracotta);
  font-size: 0.65rem;
  animation: marker-pulse 2.5s ease-in-out infinite;
}

.map-marker:first-of-type {
  font-size: 1.25rem;
  color: var(--gold);
  filter: drop-shadow(0 0 8px var(--gold-soft));
}

@keyframes marker-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.85; }
}

.export-stats-float {
  display: flex;
  flex-wrap: wrap;
  gap: var(--card-gap);
  justify-content: center;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
  padding-inline: var(--page-gutter);
}

.export-stat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.25rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-premium);
  border-top: 3px solid var(--gold);
  min-width: 8rem;
}

.export-stat-card strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  color: var(--terracotta);
}

.export-stat-card span { font-size: var(--text-sm); color: var(--text-muted); }

.community-big-card {
  position: relative;
  width: 100%;
  min-height: 16rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow-card);
  transition: transform 0.4s;
}

.community-big-card:hover { transform: translateY(-4px); }

.community-big-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s;
}

.community-big-card:hover::before { transform: scale(1.05); }

.community-big-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 15%, rgba(44, 24, 16, 0.88));
}

.community-big-card > * { position: relative; z-index: 2; }

.cbc-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: auto; padding-bottom: 1rem; }
.cbc-tags span {
  font-size: var(--text-xs);
  padding: 0.4rem 0.85rem;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.community-big-card h3 { color: var(--cream); margin-bottom: 0.5rem; }
.cbc-text { font-size: var(--text-sm); opacity: 0.92; margin-bottom: 1.25rem; line-height: var(--leading-body); }

.btn-join {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.7rem 1.5rem;
  background: var(--cream);
  color: var(--espresso);
  font-weight: var(--weight-semibold);
  font-size: var(--text-sm);
  border-radius: 999px;
  transition: transform 0.25s, background 0.25s;
}

.btn-join:hover { background: var(--white); transform: translateY(-2px); }

.markets-industries { margin-top: 1.75rem; }
.markets-industries h3 { font-size: var(--text-h3); margin-bottom: 1rem; text-align: center; }

.industry-tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--white);
  color: var(--espresso);
  border-radius: 999px;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border: 1px solid rgba(61, 41, 20, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s, background 0.25s;
}

.industry-tag:hover {
  transform: translateY(-2px);
  background: var(--cream);
}

/* ——— TESTIMONIALS ——— */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--gold);
  transition: transform 0.35s, box-shadow 0.35s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-premium);
}

.testimonial-card p {
  font-size: var(--text-base);
  font-style: italic;
  color: var(--text);
  line-height: var(--leading-body);
  margin-bottom: 0.85rem;
  flex: 1;
}

.testimonial-card footer { font-size: var(--text-sm); color: var(--text-muted); }

/* ——— CONTACT ——— */
.section-contact {
  position: relative;
  background: linear-gradient(165deg, var(--cream-panel), var(--cream), var(--white));
  overflow: hidden;
}

.contact-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 5c-8 12-20 18-20 35s12 28 20 35c8-7 20-18 20-35S48 17 40 5z' fill='%238b6914' fill-opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
}

.section-contact .container-cafe { position: relative; z-index: 1; }

.contact-title {
  font-size: var(--text-h2);
  color: var(--terracotta);
  margin-bottom: 0.35rem;
}

.contact-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: var(--text-md);
  color: var(--mocha);
  margin-bottom: 1rem;
}

.contact-details { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.contact-details li { margin-bottom: 0.65rem; font-size: var(--text-base); color: var(--text-muted); line-height: var(--leading-snug); }
.contact-details li strong { display: block; color: var(--espresso); }
.contact-details li span { display: block; font-size: var(--text-sm); color: var(--terracotta); }
.contact-details a { color: var(--mocha); }
.contact-details a:hover { color: var(--terracotta); }
.contact-details i { color: var(--terracotta); margin-right: 0.4rem; }

.contact-visual {
  border-radius: var(--media-radius);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  aspect-ratio: var(--ratio-card);
  max-height: 16rem;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-split .col-lg-7 {
  display: flex;
}

.contact-split .booking-card {
  width: 100%;
}

.booking-card {
  background: linear-gradient(145deg, var(--booking-brown), var(--chocolate-deep));
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-premium);
  color: var(--cream-input);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.booking-card-head h3 {
  font-family: var(--font-sans);
  font-size: var(--text-md);
  font-weight: var(--weight-semibold);
  color: var(--white);
  margin: 0 0 0.35rem;
}

.booking-card-head p { margin: 0 0 1.25rem; font-size: var(--text-sm); opacity: 0.88; }

.booking-fieldset { border: none; padding: 0; margin: 0 0 1.25rem; }
.booking-fieldset legend { font-size: var(--text-sm); font-weight: var(--weight-semibold); color: var(--white); margin-bottom: 0.75rem; }

.seat-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.seat-pill {
  padding: 0.5rem 1rem;
  font-size: var(--text-sm);
  font-family: var(--font-sans);
  color: var(--cream-input);
  background: transparent;
  border: 1px solid rgba(242, 232, 218, 0.5);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
}

.seat-pill.active {
  background: var(--cream-input);
  color: var(--chocolate-deep);
  border-color: var(--cream-input);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.booking-input-wrap { position: relative; display: block; }

.booking-input-wrap input {
  width: 100%;
  padding: 0.9rem 2.75rem 0.9rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--cream-input);
  color: var(--chocolate-deep);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
}

.booking-input-wrap input:focus { outline: 2px solid rgba(255, 255, 255, 0.35); }
.booking-input-wrap i { position: absolute; right: 1rem; top: 50%; transform: translateY(-50%); color: var(--terracotta); pointer-events: none; }

.booking-message-wrap textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: none;
  border-radius: var(--radius-md);
  background: var(--cream-input);
  color: var(--chocolate-deep);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  min-height: 6.5rem;
  resize: vertical;
  margin-bottom: 1.25rem;
}

.btn-reserve {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: transparent;
  color: var(--white);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.btn-reserve:hover {
  background: var(--cream-input);
  color: var(--chocolate-deep);
  transform: translateY(-2px);
}

.booking-msg { margin-top: 1rem; padding: 0.75rem; border-radius: var(--radius-md); font-size: var(--text-sm); }
.booking-msg.success { background: rgba(255, 255, 255, 0.15); color: var(--cream-input); }
.booking-msg.error { background: rgba(0, 0, 0, 0.25); color: #ffcdd2; }

/* ——— FOOTER ——— */
.site-footer-premium {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
  padding-bottom: 0;
  background: linear-gradient(180deg, #2c1810 0%, var(--chocolate-deep) 50%, #1a0f08 100%);
  color: var(--cream-input);
  border-top: 3px solid var(--gold);
  line-height: var(--leading-body);
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  box-shadow: 0 0 3rem 1rem var(--gold-soft);
  pointer-events: none;
}

.footer-main { padding: 4rem 0 2.5rem; position: relative; z-index: 1; }

.footer-logo-link {
  display: inline-block;
  margin-bottom: 0.25rem;
}

.footer-logo-img {
  display: block;
  width: auto;
  max-width: 4.25rem;
  height: auto;
  transition: transform 0.3s, opacity 0.3s;
}

.footer-logo-link:hover .footer-logo-img {
  transform: scale(1.05);
  opacity: 0.92;
}

.footer-about {
  margin-top: 1.25rem;
  font-size: var(--text-sm);
  color: rgba(242, 232, 218, 0.78);
  line-height: var(--leading-body);
  max-width: 24rem;
}

.site-footer h4 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
  color: var(--white);
  margin-bottom: 1.15rem;
  letter-spacing: var(--tracking-nav);
}

.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 0.5rem; }
.footer-list a {
  font-size: var(--text-sm);
  color: rgba(242, 232, 218, 0.75);
  transition: color 0.2s, padding-left 0.2s;
}

.footer-list a:hover { color: var(--gold); padding-left: 4px; }

.footer-call { display: flex; gap: 1rem; align-items: flex-start; }
.footer-call > i { font-size: 1.75rem; color: var(--gold); }
.footer-call-label { display: block; font-size: var(--text-xs); opacity: 0.75; margin-bottom: 0.35rem; }
.footer-phone { font-size: 1.25rem; font-weight: var(--weight-semibold); color: var(--white); display: block; }
.footer-phone:hover { color: var(--gold); }
.footer-email { display: block; font-size: var(--text-sm); margin-top: 0.35rem; opacity: 0.85; }
.footer-email:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 39, 0.25);
  padding: 1.15rem 0 1rem;
  margin: 0;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0;
  padding: 0;
  line-height: 1.45;
}

.footer-bottom p {
  margin: 0;
  padding: 0;
  font-size: var(--text-sm);
  line-height: 1.45;
  opacity: 0.7;
}
.footer-partner-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 0.92;
  transition: opacity 0.25s, transform 0.25s;
}

.footer-partner-logo img {
  display: block;
  width: auto;
  max-width: 160px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.footer-partner-logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 0.5rem 1.5rem rgba(37, 211, 102, 0.45);
  z-index: 100;
  transition: transform 0.25s;
}

.wa-float:hover { color: #fff; transform: scale(1.08); }

/* Reveal helpers (GSAP animates in; stay visible if JS fails) */
.reveal-up { will-change: transform, opacity; }

html:not(.js-gsap-ready) .reveal-up,
html:not(.js-gsap-ready) .reveal-hero {
  opacity: 1;
  transform: none;
}
