/*
Theme Name: Tavči Kuhna Classic
Theme URI: https://tavci-kuhna.si
Author: Peter Šranc / Hermes build
Author URI: https://tavci-kuhna.si
Description: Custom Apple-inspired theme for Tavči Kuhna × Ayatana — vegan restaurant near Bled, Slovenia. Phase 5 (Aug 2026) — Clean v8 install, Elementor overrides, all sections Apple-style.
Version: 3.0.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: tavci-kuhna
Tags: one-column, custom-colors, custom-menu, custom-logo, featured-images, translation-ready, elementor
*/

/* ==========================================================================
   TAVČI KUHNA — CLEAN INSTALL (v8 Apple-style)
   No legacy rules. Pure Apple HIG + Open Design.
   ========================================================================== */

:root {
  --bg-light: #fbfbfd;
  --bg-cream: #f5f0e3;
  --bg-paper: #fcfaf3;
  --ink: #1d1d1f;
  --ink-soft: rgba(0, 0, 0, 0.72);
  --ink-muted: rgba(0, 0, 0, 0.48);
  --line: rgba(0, 0, 0, 0.08);
  --forest: #3f5d2a;
  --forest-deep: #2c421d;
  --terracotta: #b85c3a;
  --accent: #b85c3a;
  --accent-hover: #9a4a2e;
  --gold-soft: #f1d595;
  --wolt: #00c2e8;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --nav-bg: rgba(251, 251, 253, 0.82);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  background: var(--bg-light);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.022em;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ==========================================================================
   UTILITY BAR — top contact info
   ========================================================================== */
.utility-bar {
  background: var(--forest-deep);
  color: #fff;
  font-size: 12.5px;
  padding: 8px 0;
}
.utility-bar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.utility-left, .utility-right {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.util-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 400;
}
.util-item:hover { color: var(--gold-soft); }
.util-icon { font-size: 13px; opacity: 0.8; }
@media (max-width: 720px) {
  .utility-bar .wrap { justify-content: center; text-align: center; }
  .utility-left, .utility-right { gap: 16px; font-size: 11px; }
}

/* ==========================================================================
   HEADER + NAV — Apple glass effect
   ========================================================================== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.022em;
}
.nav-links ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.nav-links a {
  font-size: 13.5px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 400;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.15s ease;
  display: inline-block;
}
.nav-links a:hover { color: var(--ink); background: rgba(0, 0, 0, 0.04); }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: space-around;
}
.nav-toggle .bar { display: block; height: 2px; width: 24px; background: var(--ink); border-radius: 1px; }
@media (max-width: 980px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  }
  .nav-links.open {
    display: block !important;
  }
  .nav-links ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--line);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    width: 100%;
    text-align: left;
    border-radius: 0;
    font-size: 15px;
  }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 10;
  }
  header.site-header { position: relative; }
  .nav-wrap { position: relative; }
}

/* Animated hamburger */
.nav-toggle .bar {
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   CONTAINER
   ========================================================================== */
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

/* ==========================================================================
   HERO — Apple cinematic
   ========================================================================== */
section.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.78) 100%),
    var(--hero-bg, url('https://tavci-kuhna.si/wp-content/uploads/2026/05/tavci-g-vegan-food-lesce-ayatana-kombucha-spread.webp'));
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
}
section.hero .sub {
  color: #fff !important;
  font-weight: 500 !important;
  font-size: 19px !important;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}
section.hero .hours-line {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}
.hero-badge {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  margin-bottom: 24px;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 auto 20px;
  max-width: 760px;
  color: #fff;
}
.hero h1 em {
  font-style: italic;
  color: #fff;
}
.hero .sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 18px;
}
.hero .hours-line {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 auto 32px;
}
.hero .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   PILL CTAs — Apple signature (white pill = primary dark, dark pill = white text)
   ========================================================================== */
.pill {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 980px;
  font-size: 17px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: -0.022em;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.2;
}
.pill-primary {
  background: #fff !important;
  color: var(--ink) !important;
}
.pill-primary:hover { background: rgba(255, 255, 255, 0.92) !important; }
.pill-dark {
  background: var(--ink) !important;
  color: #fff !important;
}
.pill-dark:hover { background: #000 !important; }
.pill-ghost {
  background: transparent !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
}
.pill-ghost:hover { background: rgba(255, 255, 255, 0.1) !important; }
.pill-line {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1px solid var(--accent) !important;
}
.pill-line:hover {
  background: var(--accent) !important;
  color: #fff !important;
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
section { padding: 110px 0; background: var(--bg-light); }
section.alt { background: var(--bg-cream) !important; }
section.dark { background: var(--forest-deep) !important; color: #fff; }
section.dark .section-head h2 { color: #fff !important; }
section.dark .section-head p { color: rgba(255, 255, 255, 0.85) !important; }
section.paper { background: var(--bg-paper) !important; }
/* Default for sections that aren't .alt/.dark/.paper — make cream background */
section:not(.alt):not(.dark):not(.paper):not(.hero) { background: var(--bg-cream) !important; }

.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.section-head .kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
  font-family: var(--font-body);
}
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px) !important;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 14px;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
}

/* ==========================================================================
   TRUST STRIP
   ========================================================================== */
.trust-strip { padding: 56px 0; background: var(--forest-deep) !important; color: #fff; }
.trust-strip .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.trust-rating .num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  color: var(--gold-soft);
  letter-spacing: -0.03em;
}
.trust-rating .label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 10px;
}
.trust-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  margin: 0;
  color: #fff;
}
.trust-meta { font-size: 13px; line-height: 1.7; color: rgba(255, 255, 255, 0.85); }

/* ==========================================================================
   REVIEWS SLIDER
   ========================================================================== */
.reviews-swiper { padding: 0 16px 50px; }
.review-card {
  background: #fff;
  border-radius: 18px;
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  height: 100%;
}
.review-card .stars { color: #f1b81a; margin-bottom: 14px; font-size: 16px; }
.review-card .text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  margin: 0 0 22px;
  color: var(--ink);
}
.review-card .author { display: flex; align-items: center; gap: 12px; }
.review-card .avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--forest); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; font-size: 18px;
}
.review-card .author-name { font-weight: 500; font-size: 14.5px; color: var(--ink); }
.review-card .date { font-size: 12px; color: var(--ink-muted); }
.swiper-button-next, .swiper-button-prev { color: var(--ink); }

/* ==========================================================================
   CATEGORIES — 7 tile grid
   ========================================================================== */
.cats-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
}
section.cats-section { padding: 110px 0; background: var(--forest-deep) !important; }
section.cats-section .section-head h2 { color: #fff !important; }
section.cats-section .section-head h2 em { color: var(--gold-soft) !important; font-style: italic; }
section.cats-section .section-head p { color: rgba(255, 255, 255, 0.85) !important; }
section.cats-section .kicker { color: var(--gold-soft) !important; }
.cat {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 28px 14px 22px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: block;
}
.cat:hover {
  transform: translateY(-4px);
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cat .ico { font-size: 32px; margin-bottom: 10px; }
.cat h3 {
  font-size: 22px !important;
  font-weight: 500;
  margin: 0 0 6px;
  color: #fff !important;
  font-family: var(--font-display) !important;
  letter-spacing: -0.018em;
  line-height: 1.2;
}
.cat span {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   NEAR BLED
   ========================================================================== */
.near-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.near-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.near-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.near-card .ico { font-size: 28px; margin-bottom: 14px; display: block; }
.near-card h3 {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink) !important;
  letter-spacing: -0.018em;
  line-height: 1.3;
}
.near-card .distance {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 12px;
}
.near-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.5; margin: 0; }

/* ==========================================================================
   CAKES SECTION
   ========================================================================== */
.cakes-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cakes-img {
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-cream);
  aspect-ratio: 4/5;
  background-image: url('https://tavci-kuhna.si/wp-content/uploads/2026/05/tavci-cakes-vegan-lesce-bled.webp');
  background-size: cover;
  background-position: center;
}
.cakes-content .artisan-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--forest);
  color: #fff;
  border-radius: 980px;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.cakes-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 16px;
  color: var(--ink);
}
.cakes-content h2 em { font-style: italic; color: var(--accent); }
.cakes-content p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 18px; }
.cakes-content p strong { color: var(--ink); font-weight: 600; }

/* ==========================================================================
   ATMOSPHERE — image placeholders (paper background)
   ========================================================================== */
section.atmosphere { background: var(--bg-paper) !important; padding: 110px 0; }
section.atmosphere .section-head h2 { color: var(--ink) !important; }
section.atmosphere .section-head h2 em { color: var(--accent) !important; }
section.atmosphere .section-head p { color: var(--ink-soft) !important; }
.atm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.atm-cell {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background-color: var(--bg-cream);
  border: 2px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 24px;
  position: relative;
  transition: border-color 0.2s;
}
.atm-cell:hover { border-color: var(--accent); }
.atm-cell::before {
  content: '📷';
  font-size: 40px;
  display: block;
  margin-bottom: 12px;
  opacity: 0.4;
}
.atm-cell::after {
  content: attr(data-label);
  display: block;
  line-height: 1.4;
}
.atm-cell.has-image {
  background-size: cover;
  background-position: center;
  border: none;
  padding: 0;
}
.atm-cell.has-image::before,
.atm-cell.has-image::after { display: none; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about-section .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-content .kicker {
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 500;
}
.about-content h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 16px;
  color: var(--ink);
}
.about-content h2 em { font-style: italic; }
.about-content p { font-size: 16.5px; color: var(--ink-soft); line-height: 1.6; margin: 0 0 18px; }
.about-content p strong { color: var(--ink); font-weight: 600; }
.about-img {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-cream);
  background-image: url('https://tavci-kuhna.si/wp-content/uploads/2026/05/tavci-ayatana-team-lesce-vegan.webp');
  background-size: cover;
  background-position: center;
}

/* ==========================================================================
   AMENITIES
   ========================================================================== */
.amenities-section { padding: 110px 0; background: var(--bg-cream); }
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.amenity {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform 0.3s, box-shadow 0.3s;
}
.amenity:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.amenity-ico {
  font-size: 32px;
  margin-bottom: 14px;
  width: 56px;
  height: 56px;
  background: var(--bg-cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity h3 {
  font-family: var(--font-display);
  font-size: 22px !important;
  font-weight: 500;
  margin: 0 0 8px;
  color: var(--ink) !important;
  line-height: 1.3;
  letter-spacing: -0.018em;
}
.amenity p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin: 0;
  letter-spacing: -0.01em;
}

/* ==========================================================================
   VISIT
   ========================================================================== */
.visit-section .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}
.visit-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.018em;
  margin: 0 0 18px;
  color: #fff;
}
.visit-section h2 em { font-style: italic; color: var(--gold-soft); }
.visit-section p { font-size: 18px; color: rgba(255, 255, 255, 0.92) !important; line-height: 1.5; max-width: 520px; }
.visit-info {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 32px;
}
.visit-row {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.visit-row:last-child { border-bottom: none; }
.visit-row .label {
  width: 100px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding-top: 4px;
  font-weight: 500;
}
.visit-row .val { font-size: 15px; line-height: 1.5; flex: 1; color: #fff; }
.visit-row .val a { color: var(--gold-soft); text-decoration: none; }

/* HappyCow badge */
.happycow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 980px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
  margin-top: 24px;
}
.happycow-badge:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}
.happycow-badge .hc-logo {
  width: 28px; height: 28px;
  background: #5a9e3a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  color: #fff;
}
.happycow-badge .hc-text { display: flex; flex-direction: column; }
.happycow-badge .hc-text small { font-size: 11px; opacity: 0.7; }

/* Google Maps embed */
.map-embed {
  border-radius: 18px;
  overflow: hidden;
  margin-top: 32px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { text-align: center; background: var(--bg-paper); }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.5;
}
.final-cta .ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer.site-footer {
  background: #f5f5f7;
  padding: 64px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 14px;
  font-weight: 600;
}
.footer-grid a { color: var(--ink-soft); text-decoration: none; }
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { color: var(--ink-soft); }
.footer-brand {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.footer-brand em { font-style: italic; color: var(--accent); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .cats-grid { grid-template-columns: repeat(3, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .near-grid { grid-template-columns: 1fr; }
  .atm-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip .wrap { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .visit-section .wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cakes-section .wrap, .about-section .wrap { grid-template-columns: 1fr; gap: 40px; }
  section { padding: 80px 0; }
}
@media (max-width: 600px) {
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
  .atm-grid { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ELEMENTOR OVERRIDE — Force Apple-style globally
   This section neutralizes Elementor Kit 6 styles
   ========================================================================== */

/* Typography reset — kill Elementor's Forum/Open Sans defaults */
.elementor-kit-6,
.elementor-kit-6 h1, .elementor-kit-6 h2, .elementor-kit-6 h3,
.elementor-kit-6 h4, .elementor-kit-6 h5, .elementor-kit-6 h6,
.elementor-kit-6 p, .elementor-kit-6 a, .elementor-kit-6 li {
  font-family: var(--font-body) !important;
  color: var(--ink) !important;
}

/* Headings — force display font (Cormorant Garamond) */
.tkc-front h1, .tkc-front h2,
section.hero h1, .section-head h2, .visit-section h2,
.cakes-content h2, .about-content h2, .final-cta h2 {
  font-family: var(--font-display) !important;
  font-weight: 500 !important;
  letter-spacing: -0.025em !important;
  color: var(--ink) !important;
}
section.hero h1, .visit-section h2 {
  color: #fff !important;
}

/* Hero h1 — Apple optical sizing */
section.hero h1 {
  font-size: clamp(36px, 4.2vw, 56px) !important;
  line-height: 1.08 !important;
  color: #fff !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
  max-width: 760px !important;
  margin: 0 auto 20px !important;
}

/* Section headings */
.section-head h2, .visit-section h2, .cakes-content h2,
.about-content h2, .final-cta h2 {
  font-size: clamp(22px, 2.4vw, 28px) !important;
  line-height: 1.2 !important;
}

/* Hero h1 em — italic emphasis */
section.hero h1 em {
  font-style: italic !important;
  color: #fff !important;
}

/* Kicker — uppercase tracking */
.kicker {
  font-size: 13px !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--accent) !important;
  font-weight: 500 !important;
  font-family: var(--font-body) !important;
}

/* Elementor color variables — neutralize */
.elementor-kit-6 {
  --e-global-color-primary: var(--ink) !important;
  --e-global-color-text: var(--ink-soft) !important;
  --e-global-color-secondary: var(--accent) !important;
  --e-global-color-accent: var(--terracotta) !important;
}

/* CRITICAL: Override Elementor's universal a color rule
   .elementor-kit-6 a { color: var(--ink) !important; } was killing our pill text colors */
.elementor-kit-6 a.pill,
.elementor-kit-6 a.pill-primary,
.elementor-kit-6 a.pill-dark,
.elementor-kit-6 a.pill-ghost,
.elementor-kit-6 a.pill-line { color: #fff !important; }
.elementor-kit-6 a.pill-primary { color: var(--ink) !important; }
.elementor-kit-6 a.pill-line { color: var(--accent) !important; }
.elementor-kit-6 a.pill-line:hover { color: #fff !important; }
/* Nav links too */
.elementor-kit-6 .nav-links a,
.elementor-kit-6 .nav-links a:hover { color: var(--ink-soft) !important; }
.elementor-kit-6 .nav-links a:hover { color: var(--ink) !important; }
.elementor-kit-6 .util-item,
.elementor-kit-6 .util-item:hover { color: rgba(255, 255, 255, 0.92) !important; }
.elementor-kit-6 .util-item:hover { color: var(--gold-soft) !important; }
.elementor-kit-6 .visit-row .val a,
.elementor-kit-6 .visit-row .val a:hover { color: var(--gold-soft) !important; }

/* Elementor container max-width */
.e-con { --container-max-width: 1080px !important; }

/* ==========================================================================
   TEXT COLORS — explicit by section context
   ========================================================================== */
/* Default sections (cream bg) */
section:not(.dark) .section-head h2 { color: var(--ink) !important; }
section:not(.dark) .section-head p { color: var(--ink-soft) !important; }
section:not(.dark) .section-head h2 em { color: var(--accent) !important; }
/* Cards on cream bg */
section:not(.dark) .cat h3 { color: var(--ink) !important; }
section:not(.dark) .amenity h3 { color: var(--ink) !important; }
section:not(.dark) .amenity p { color: var(--ink-soft) !important; }
section:not(.dark) .near-card h3 { color: var(--ink) !important; }
section:not(.dark) .near-card p { color: var(--ink-soft) !important; }
/* Cakes section — white bg */
.cakes-content h2 { color: var(--ink) !important; }
.cakes-content p { color: var(--ink-soft) !important; }
/* About section */
.about-content h2 { color: var(--ink) !important; }
.about-content p { color: var(--ink-soft) !important; }
/* Visit section (dark bg) */
.visit-section .visit-row .label { color: rgba(255, 255, 255, 0.6) !important; }
.visit-section .visit-row .val { color: #fff !important; }
.visit-section .visit-row .val a { color: var(--gold-soft) !important; }

/* ==========================================================================
   DARK SECTIONS — beige/cream text colors
   ========================================================================== */
section.dark {
  --ink: #f5f0e3;
  --ink-soft: rgba(245, 240, 227, 0.85);
  --ink-muted: rgba(245, 240, 227, 0.65);
}
section.dark .section-head h2,
section.dark h2 { color: #f5f0e3 !important; }
section.dark .section-head p,
section.dark p { color: rgba(245, 240, 227, 0.85) !important; }
section.dark .section-head h2 em,
section.dark h2 em { color: var(--gold-soft) !important; }
section.dark .kicker,
section.dark .kicker { color: var(--gold-soft) !important; }
section.dark .trust-rating .num { color: var(--gold-soft) !important; }
section.dark .trust-quote,
section.dark .trust-meta { color: rgba(245, 240, 227, 0.92) !important; }
section.dark .trust-meta { color: rgba(245, 240, 227, 0.8) !important; }
section.dark .review-card .text { color: rgba(245, 240, 227, 0.92) !important; }
section.dark .visit-section .visit-row .label { color: rgba(245, 240, 227, 0.7) !important; }
section.dark .visit-section .visit-row .val,
section.dark .visit-row .val { color: #f5f0e3 !important; }
section.dark .visit-section .visit-row .val a,
section.dark .visit-row .val a { color: var(--gold-soft) !important; }
section.dark .cat h3,
section.dark .cat span { color: #f5f0e3 !important; }
section.dark .cat span { color: rgba(245, 240, 227, 0.7) !important; }
