/* =====================================================
   JOYBITE. BAKERY AND COFFEE — SHARED STYLES
   Paleta: Teal #2BB5B0 · Blanco · Negro #1A1A1A
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..500;9..600&display=swap');

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); background: var(--white); color: var(--black); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* === CSS VARIABLES === */
:root {
  --teal: #2BB5B0;
  --teal-mid: #4EC9C4;
  --teal-light: #A8E0DD;
  --teal-pale: #EBF8F7;
  --teal-dark: #1B8E89;
  --teal-alpha: rgba(43,181,176,0.10);
  --black: #1A1A1A;
  --dark: #2C2C2C;
  --gray: #6B7280;
  --gray-light: #D1D5DB;
  --gray-pale: #F3F4F6;
  --white: #FFFFFF;
  --off-white: #F8FAFA;
  --warm: #C8916A;
  --warm-pale: #FDF3EC;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 28px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 52px rgba(0,0,0,0.14);
  --shadow-teal: 0 8px 28px rgba(43,181,176,0.22);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1180px;
  --nav-h: 72px;
}

/* === TYPOGRAPHY SCALE === */
.display-xl { font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5.5rem); font-weight: 900; line-height: 1.08; letter-spacing: -0.02em; }
.display-lg { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.12; letter-spacing: -0.015em; }
.display-md { font-family: var(--font-display); font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; }
.display-sm { font-family: var(--font-display); font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 600; line-height: 1.3; }
.text-lg { font-size: 1.125rem; line-height: 1.7; }
.text-md { font-size: 1rem; line-height: 1.65; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

/* === UTILITY === */
.container { width: min(var(--max-width), 100%); margin-inline: auto; padding-inline: 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.text-teal { color: var(--teal); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }
.bg-teal { background: var(--teal); }
.bg-white { background: var(--white); }
.bg-off-white { background: var(--off-white); }
.bg-teal-pale { background: var(--teal-pale); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  padding: 14px 32px; border-radius: var(--radius-full); border: 2px solid transparent;
  cursor: pointer; transition: var(--transition); white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-primary {
  background: var(--teal); color: var(--white); border-color: var(--teal);
  box-shadow: 0 4px 16px rgba(43,181,176,0.35);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(43,181,176,0.4); }
.btn-outline {
  background: transparent; color: var(--teal); border-color: var(--teal);
}
.btn-outline:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-white {
  background: var(--white); color: var(--teal); border-color: var(--white);
}
.btn-white:hover { background: var(--teal-pale); border-color: var(--teal-pale); transform: translateY(-2px); }
.btn-outline-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 17px 40px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(43,181,176,0.12);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex; flex-direction: column; line-height: 1;
  font-family: var(--font-display); font-weight: 900; color: var(--black);
}
.nav-logo .logo-main { font-size: 1.45rem; letter-spacing: -0.01em; }
.nav-logo .logo-sub { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--teal); font-family: var(--font-body); font-weight: 600; margin-top: 1px; }
.nav-logo span.dot { color: var(--teal); }

.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.9rem; font-weight: 500; color: var(--dark);
  padding: 8px 16px; border-radius: var(--radius-full);
  transition: var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--teal); background: var(--teal-alpha); }
.nav-link.active::after {
  content: ''; position: absolute; bottom: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 4px; background: var(--teal); border-radius: 50%;
}

.nav-cta .btn { padding: 10px 24px; font-size: 0.875rem; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 8px; background: none; border: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--black);
  border-radius: 2px; transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(12px);
  padding: 24px; border-bottom: 1px solid var(--gray-light);
  box-shadow: var(--shadow-lg); z-index: 999;
  flex-direction: column; gap: 8px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link { font-size: 1.05rem; padding: 14px 20px; }
.nav-mobile .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* === PAGE OFFSET === */
.page-content { padding-top: var(--nav-h); }

/* === SECTION BASE === */
section { padding-block: 80px; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 16px;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 2px; background: var(--teal);
  border-radius: 2px;
}
.section-header { margin-bottom: 56px; }
.section-header.text-center .section-label { justify-content: center; }
.section-header.text-center .section-label::before { display: none; }
.section-header.text-center .section-label::after {
  content: ''; display: block; width: 24px; height: 2px; background: var(--teal); border-radius: 2px;
}

/* === HERO (HOME) === */
.hero {
  position: relative; height: 100svh; min-height: 600px; max-height: 900px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #0f3b39 0%, #1b6e6a 40%, #2bb5b0 75%, #7dd4cf 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 70% 50%, rgba(0,0,0,0.3) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(43,181,176,0.4) 0%, transparent 60%);
}
.hero-img {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%;
  opacity: 0.35; mix-blend-mode: luminosity;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(15,59,57,0.88) 0%, rgba(27,110,106,0.65) 50%, rgba(43,181,176,0.30) 100%);
}
.hero-content {
  position: relative; z-index: 2; max-width: 680px; color: var(--white);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-full);
  padding: 6px 16px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; background: #7DD4CF; border-radius: 50%; display: block; }
.hero-title { font-family: var(--font-display); font-weight: 900; line-height: 1.06; letter-spacing: -0.02em; margin-bottom: 24px; color: var(--white); }
.hero-title .italic { font-style: italic; color: var(--teal-light); }
.hero-subtitle { font-size: 1.15rem; line-height: 1.65; color: rgba(255,255,255,0.82); margin-bottom: 40px; font-weight: 300; max-width: 520px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.6); font-size: 0.75rem; letter-spacing: 0.08em;
  text-transform: uppercase; z-index: 2; animation: bounce 2.5s infinite;
}
.hero-scroll .arrow { width: 1px; height: 28px; background: rgba(255,255,255,0.4); margin-inline: auto; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* === TICKER / MARQUEE === */
.ticker {
  background: var(--teal); color: var(--white); padding: 14px 0; overflow: hidden;
}
.ticker-inner {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker-scroll 22s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 20px;
  padding-right: 48px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; flex-shrink: 0;
}
.ticker-item .sep { color: rgba(255,255,255,0.5); }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === FEATURES / PILLARS === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.feature-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  padding: 36px 32px; transition: var(--transition);
}
.feature-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.feature-icon {
  width: 60px; height: 60px; background: var(--teal-pale); border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  font-size: 1.8rem;
}
.feature-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; color: var(--black); }
.feature-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.65; }

/* === PRODUCT CARDS === */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.products-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.product-card {
  border-radius: var(--radius-lg); overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-sm); transition: var(--transition); cursor: pointer;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.product-card-img {
  position: relative; aspect-ratio: 1; overflow: hidden;
}
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--teal); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-full);
}
.product-card-badge.badge-new { background: var(--warm); }
.product-card-body { padding: 20px 18px; }
.product-card-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.product-card-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.5; margin-bottom: 14px; }
.product-card-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.05rem; font-weight: 700; color: var(--teal); }
.product-price .currency { font-size: 0.75rem; font-weight: 500; color: var(--gray); }

/* === ATMOSPHERE SECTION === */
.atmosphere { background: var(--black); color: var(--white); overflow: hidden; }
.atmosphere-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.atmosphere-main { grid-row: span 2; }
.atmosphere-cell { position: relative; overflow: hidden; }
.atmosphere-main { aspect-ratio: 3/4; }
.atmosphere-cell:not(.atmosphere-main) { aspect-ratio: 4/3; }
.atmosphere-cell img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); filter: brightness(0.85); }
.atmosphere-cell:hover img { transform: scale(1.06); filter: brightness(1); }
.atmosphere-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
}
.atmosphere-caption {
  position: absolute; bottom: 20px; left: 20px;
  font-family: var(--font-display); font-size: 1.1rem; font-style: italic;
  color: rgba(255,255,255,0.9);
}
.atm-content { display: flex; flex-direction: column; justify-content: center; padding: 64px 56px; }
.atm-content .section-label { color: var(--teal-light); }
.atm-content .section-label::before { background: var(--teal-light); }
.atm-stat { display: flex; gap: 48px; margin-top: 40px; flex-wrap: wrap; }
.atm-stat-item .num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 900; color: var(--teal-light); line-height: 1; }
.atm-stat-item .label { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-top: 4px; }

/* === INSTAGRAM SECTION === */
.instagram-section { background: var(--off-white); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}
.ig-cell {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  aspect-ratio: 1;
}
.ig-cell img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.ig-overlay {
  position: absolute; inset: 0; background: rgba(43,181,176,0.75);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition);
}
.ig-overlay svg { width: 28px; height: 28px; fill: white; }
.ig-cell:hover .ig-overlay { opacity: 1; }
.ig-cell:hover img { transform: scale(1.08); }
.ig-handle { font-size: 1.1rem; color: var(--gray); margin-bottom: 4px; }
.ig-handle strong { color: var(--teal); }

/* === VISIT MINI === */
.visit-mini { background: var(--teal-pale); }
.visit-mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.visit-info h2 { margin-bottom: 20px; }
.visit-info p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 32px; }
.visit-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; }
.visit-icon { width: 44px; height: 44px; background: var(--white); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; box-shadow: var(--shadow-sm); }
.visit-detail-text strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--black); margin-bottom: 2px; }
.visit-detail-text span { font-size: 0.85rem; color: var(--gray); }
.map-thumb {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3; background: var(--gray-pale); position: relative;
}
.map-thumb iframe { width: 100%; height: 100%; border: none; filter: saturate(0.8); }
.map-thumb-overlay {
  position: absolute; inset: 0; background: transparent;
  cursor: pointer;
}

/* === CTA BANNER === */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  padding-block: 80px;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -200px; right: -100px;
}
.cta-banner::after {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -150px; left: -50px;
}
.cta-banner-inner { position: relative; z-index: 2; text-align: center; color: var(--white); }
.cta-banner-inner h2 { margin-bottom: 16px; }
.cta-banner-inner p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 40px; max-width: 520px; margin-inline: auto; }
.cta-banner-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  padding: 32px 28px; position: relative; transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--teal-light); box-shadow: var(--shadow-teal); }
.testimonial-stars { color: var(--teal); font-size: 0.9rem; margin-bottom: 14px; }
.testimonial-text { font-family: var(--font-display); font-style: italic; font-size: 1rem; line-height: 1.6; color: var(--dark); margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--teal-light);
}
.testimonial-author-info strong { font-size: 0.9rem; font-weight: 600; display: block; }
.testimonial-author-info span { font-size: 0.8rem; color: var(--gray); }

/* === PAGE HERO (inner pages) === */
.page-hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--dark) 40%, #1B4A48 100%);
  padding-block: 80px 60px;
  color: var(--white); text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 100%, rgba(43,181,176,0.18) 0%, transparent 70%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero .section-label { justify-content: center; color: var(--teal-light); }
.page-hero .section-label::before { display: none; }
.page-hero .section-label::after { content: ''; display: block; width: 24px; height: 2px; background: var(--teal-light); border-radius: 2px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 520px; margin-inline: auto; }

/* === MENU PAGE === */
.menu-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.menu-tab {
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  padding: 10px 24px; border-radius: var(--radius-full); border: 2px solid var(--gray-light);
  background: var(--white); cursor: pointer; transition: var(--transition);
  color: var(--gray);
}
.menu-tab.active, .menu-tab:hover { border-color: var(--teal); color: var(--teal); background: var(--teal-alpha); }
.menu-category-title {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  color: var(--black); margin-bottom: 32px;
  padding-bottom: 16px; border-bottom: 2px solid var(--teal-pale);
  display: flex; align-items: center; gap: 12px;
}
.menu-category-title .cat-icon { font-size: 1.4rem; }
.menu-category { margin-bottom: 64px; }
.menu-note {
  background: var(--teal-pale); border: 1px solid var(--teal-light); border-radius: var(--radius-md);
  padding: 20px 24px; display: flex; gap: 12px; align-items: flex-start;
  margin-bottom: 48px;
}
.menu-note-icon { font-size: 1.3rem; flex-shrink: 0; }
.menu-note p { font-size: 0.9rem; color: var(--teal-dark); line-height: 1.6; }
.menu-note p strong { color: var(--teal-dark); }

/* === NOSOTROS PAGE === */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.story-img { border-radius: var(--radius-xl); overflow: hidden; aspect-ratio: 4/5; }
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story-text .section-label { margin-bottom: 16px; }
.story-text h2 { margin-bottom: 20px; }
.story-text p { color: var(--gray); font-size: 1rem; line-height: 1.78; margin-bottom: 20px; }
.story-text p:last-of-type { margin-bottom: 32px; }

.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center; padding: 40px 24px;
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--teal); box-shadow: var(--shadow-teal); transform: translateY(-4px); }
.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h4 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.value-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }

.map-section { background: var(--off-white); }
.map-full {
  border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  height: 460px; margin-bottom: 48px;
}
.map-full iframe { width: 100%; height: 100%; border: none; }

.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  background: var(--white); border: 1px solid var(--gray-light); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: center; transition: var(--transition);
}
.contact-card:hover { border-color: var(--teal); box-shadow: var(--shadow-teal); }
.contact-card-icon { font-size: 2rem; margin-bottom: 12px; }
.contact-card h4 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.contact-card p { font-size: 0.875rem; color: var(--gray); line-height: 1.6; }
.contact-card a { color: var(--teal); font-weight: 500; }
.contact-card a:hover { text-decoration: underline; }

/* === FOOTER === */
footer {
  background: var(--black); color: rgba(255,255,255,0.7);
  padding-block: 64px 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .nav-logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .nav-logo .nav-logo .logo-sub { color: var(--teal-light); }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 12px; }
.social-link {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
  font-size: 1rem; color: rgba(255,255,255,0.7);
}
.social-link:hover { background: var(--teal); color: var(--white); }
.footer-col h5 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--teal-light); }

/* === ANIMATIONS === */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* === DIVIDER === */
.divider { height: 1px; background: var(--gray-light); margin-inline: 24px; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .atmosphere-grid { grid-template-columns: 1fr; }
  .atmosphere-main { aspect-ratio: 16/9; grid-row: 1; }
  .atm-content { padding: 48px 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .instagram-grid { grid-template-columns: repeat(4, 1fr); }
  .story-grid { gap: 48px; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding-block: 56px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .products-grid.cols-3 { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .atm-stat { gap: 32px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .story-img { aspect-ratio: 16/9; }
  .visit-mini-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner-actions { flex-direction: column; align-items: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-full { height: 320px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; justify-content: center; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 4px; }
  .atm-stat { flex-direction: column; gap: 24px; }
}
