/*
Theme Name: Brousko
Theme URI: https://brousko.de
Author: Brousko
Description: Modernes, individuelles WordPress-Theme fuer das griechische Restaurant Brousko in Karlsruhe-Durlach (ACF-gestuetzt).
Version: 1.0.0
Requires PHP: 7.4
Text Domain: brousko
*/

/* =========================================================
   DESIGN TOKENS
   ========================================================= */
:root{
  --color-blue:        #63a8d1;
  --color-blue-light:  #6ec1e4;
  --color-blue-dark:   #3d7ba0;
  --color-blue-deep:   #1f4a63;
  --color-cream:        #f7dbb1;
  --color-cream-light:  #f7efe3;
  --color-gold:        #f7b95b;
  --color-gold-dark:   #dd9a35;
  --color-ink:         #2c2a26;
  --color-body:        #55524c;
  --color-muted:       #7a7a7a;
  --color-line:        #ece1cf;
  --color-surface:     #ffffff;
  --color-surface-alt: #fbf6ec;
  --color-surface-deep:#173a4f;

  --font-display: 'Dalek', 'Fredoka', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Fredoka', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Nunito Sans', 'Segoe UI', Arial, sans-serif;

  --container: 1200px;
  --container-narrow: 780px;
  --radius: 22px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 14px rgba(40, 60, 80, 0.08);
  --shadow-md: 0 16px 36px rgba(40, 60, 80, 0.14);
  --shadow-lg: 0 26px 64px rgba(23, 58, 79, 0.22);
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;
}

/* =========================================================
   BRAND FONT (self-hosted, same file used on the original site)
   ========================================================= */
@font-face{
  font-family: 'Dalek';
  src: url('assets/fonts/Dalek.woff2') format('woff2'),
       url('assets/fonts/Dalek.woff') format('woff'),
       url('assets/fonts/Dalek.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   RESET / BASE
   ========================================================= */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-body);
  background: var(--color-surface);
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; height: auto; display: block; }
svg{ width: 1em; height: 1em; }
a{ color: var(--color-blue-dark); text-decoration: none; transition: color .18s ease; }
a:hover{ color: var(--color-gold-dark); }
ul, ol{ padding: 0; margin: 0; }
p{ margin: 0 0 1.1em; }
p:last-child{ margin-bottom: 0; }
button{ font-family: inherit; }

h1, h2, h3, h4, h5, h6{
  font-family: var(--font-heading);
  color: var(--color-blue-dark);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.55em;
  text-wrap: balance;
}
h1{ font-size: clamp(2.4rem, 1.8rem + 2.4vw, 3.8rem); }
h2{ font-size: clamp(1.8rem, 1.5rem + 1.3vw, 2.5rem); }
h3{ font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem); }
h4{ font-size: 1.15rem; }

.container{
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow{ max-width: var(--container-narrow); }
.text-center{ text-align: center; }
.justify-center{ justify-content: center; }

.section{ padding: var(--space-xl) 0; position: relative; }
.section--tight{ padding: var(--space-lg) 0; }
.section--alt{ background: var(--color-surface-alt); }
.section--navy{ background: var(--color-blue-deep); color: #d6e9f4; }
.section--navy h2, .section--navy h3{ color: #fff; }
.section--navy a:not(.btn){ color: var(--color-cream); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--color-gold-dark);
  margin-bottom: 0.9em;
}
.eyebrow::before{
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 3px;
  background: var(--color-gold);
  display: inline-block;
}
.eyebrow--center{ justify-content: center; }
.eyebrow--light{ color: var(--color-cream); }
.eyebrow--light::before{ background: var(--color-cream); }
.text-center .eyebrow{ justify-content: center; }

.lede{
  font-size: 1.15rem;
  color: var(--color-ink);
  font-weight: 600;
}

.signature{
  font-family: var(--font-heading);
  font-style: normal;
  color: var(--color-blue-dark);
  font-size: 1.2rem;
  margin: 0;
}
.about-signature{ display: flex; align-items: center; gap: 18px; margin-top: 1.8em; }
.signature-photo{
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-surface);
  box-shadow: var(--shadow-md);
  flex-shrink: 0;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95em 1.9em;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .22s ease;
  line-height: 1.2;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--color-blue); color: #fff; border-color: var(--color-blue); }
.btn-primary:hover{ background: var(--color-gold); border-color: var(--color-gold); color: var(--color-blue-deep); }
.btn-gold{ background: var(--color-gold); color: var(--color-blue-deep); border-color: var(--color-gold); }
.btn-gold:hover{ background: var(--color-gold-dark); border-color: var(--color-gold-dark); color: #fff; }
.btn-outline{ background: transparent; color: var(--color-blue-dark); border-color: var(--color-blue); }
.btn-outline:hover{ background: var(--color-blue); color: #fff; }
.btn-outline-light{ background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-light:hover{ background: #fff; color: var(--color-blue-dark); border-color: #fff; }
.btn svg{ width: 18px; height: 18px; flex-shrink: 0; }

/* =========================================================
   HEADER — floats transparently over the hero image; solidifies
   to a white bar once the page scrolls past it (.is-scrolled,
   toggled in main.js). Deliberately not a single solid bar.
   ========================================================= */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled{
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(140%) blur(8px);
  box-shadow: var(--shadow-sm);
}
.top-bar{
  background: var(--color-blue-deep);
  color: #b9d2e2;
  max-height: 38px;
  overflow: hidden;
  opacity: 1;
  transition: max-height .3s ease, opacity .25s ease;
}
.site-header.is-scrolled .top-bar{ max-height: 0; opacity: 0; }
.top-bar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 600;
}
.top-bar-links{ display: flex; align-items: center; gap: 22px; }
.top-bar-links a{ display: inline-flex; align-items: center; gap: 7px; color: #dcebf3; }
.top-bar-links a:hover{ color: var(--color-gold); }
.top-bar-links svg{ width: 14px; height: 14px; color: var(--color-gold); }

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  transition: padding-top .3s ease, padding-bottom .3s ease;
}
.site-header.is-scrolled .header-inner{ padding-top: 10px; padding-bottom: 10px; }

.site-logo{ display: flex; flex-direction: column; align-items: flex-start; line-height: 1.1; }
.site-logo img{ height: 60px; width: auto; }
.site-logo-text{
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2.1rem;
  color: var(--color-cream);
  transition: color .3s ease;
}
.site-header.is-scrolled .site-logo-text{ color: var(--color-blue); }
.site-logo-tagline{
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  transition: color .3s ease;
}
.site-header.is-scrolled .site-logo-tagline{ color: var(--color-gold-dark); }
.mobile-nav-header .site-logo-text{ color: var(--color-cream); }

.header-actions{ display: flex; align-items: center; gap: 18px; }
.header-cta{ padding: 0.75em 1.6em; font-size: 0.92rem; }

.main-nav{ display: flex; align-items: center; }
.main-nav ul{ display: flex; align-items: center; list-style: none; gap: 2px; }
.main-nav > ul > li{ position: relative; }
.main-nav > ul > li > a{
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.96rem;
  color: #fff;
  border-radius: 100px;
  transition: color .3s ease, background .3s ease;
}
.site-header.is-scrolled .main-nav > ul > li > a{ color: var(--color-ink); }
.main-nav > ul > li > a:hover,
.main-nav > ul > li.current-menu-item > a,
.main-nav > ul > li.current_page_ancestor > a,
.main-nav > ul > li.current-menu-ancestor > a{ color: #fff; background: rgba(255,255,255,.16); }
.site-header.is-scrolled .main-nav > ul > li > a:hover,
.site-header.is-scrolled .main-nav > ul > li.current-menu-item > a,
.site-header.is-scrolled .main-nav > ul > li.current_page_ancestor > a,
.site-header.is-scrolled .main-nav > ul > li.current-menu-ancestor > a{ color: var(--color-blue-dark); background: var(--color-surface-alt); }

.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.12);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  transition: color .3s ease, background .3s ease, border-color .3s ease;
}
.nav-toggle svg{ width: 20px; height: 20px; }
.site-header.is-scrolled .nav-toggle{
  border-color: rgba(99, 168, 209, 0.35);
  background: rgba(99, 168, 209, 0.14);
  color: var(--color-blue-dark);
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--color-blue-deep);
  padding-top: 132px;
}
.hero-slides{ position: absolute; inset: 0; }
.hero-slide{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.is-active{ opacity: 1; }
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(15,38,53,.28) 0%, rgba(15,38,53,.52) 100%),
    linear-gradient(180deg, rgba(23,58,79,.38) 0%, rgba(23,58,79,.65) 100%);
  z-index: 1;
}
.hero-content{ position: relative; z-index: 2; max-width: 760px; margin: 0 auto; padding: var(--space-lg) 0 var(--space-xl); text-align: center; }
.hero-content h1{ font-family: var(--font-display); font-weight: 400; font-size: clamp(3rem, 2.2rem + 3.5vw, 5.2rem); color: var(--color-cream); margin-bottom: 0.35em; }
.hero-content p{ font-size: 1.2rem; color: #eef3f8; margin: 0 auto 1.8em; max-width: 52ch; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 18px; align-items: center; justify-content: center; }
.hero-content .breadcrumb{ justify-content: center; }
.hero-dots{
  position: relative; z-index: 2;
  display: flex; gap: 8px; margin: 2.2rem auto 0; justify-content: center;
}
.hero-dots button{
  width: 34px; height: 4px; border-radius: 4px; border: 0;
  background: rgba(255,255,255,.35); cursor: pointer; padding: 0;
}
.hero-dots button.is-active{ background: var(--color-gold); }
.hero-wave{
  position: absolute; left: 0; right: 0; bottom: -1px; z-index: 2;
  line-height: 0;
}
.hero-wave svg{ width: 100%; height: 48px; display: block; }
.hero-wave path{ fill: var(--color-surface); }

.hero--compact{ min-height: 52vh; }

/* breadcrumb */
.breadcrumb{
  position: relative; z-index: 2;
  font-size: 0.85rem; font-weight: 600;
  color: #cfe1ec; margin-bottom: 1.2rem;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.breadcrumb a{ color: #cfe1ec; }
.breadcrumb a:hover{ color: #fff; }
.breadcrumb span.sep{ opacity: .6; }

/* =========================================================
   WELCOME / SPLIT LAYOUT
   ========================================================= */
.welcome .rich-text{ max-width: none; }
.welcome .rich-text p{ max-width: 60ch; margin-left: auto; margin-right: auto; }

.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.split--reverse .split-media{ order: 2; }
.split-media img{ border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }
.split-actions{ display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin-top: 1.6em; }

.check-list{ list-style: none; display: grid; gap: 12px; }
.check-list li{
  display: flex; align-items: flex-start; gap: 12px;
  font-weight: 600; color: var(--color-ink);
}
.check-list li svg{
  flex-shrink: 0; width: 22px; height: 22px; margin-top: 2px;
  color: var(--color-gold-dark);
}

/* Rich text (legal pages, section copy) */
.rich-text{ max-width: var(--container-narrow); }
.rich-text h2{ margin-top: 1.6em; }
.rich-text h3{ margin-top: 1.3em; font-size: 1.2rem; }
.rich-text ul{ margin: 1em 0; padding-left: 1.3em; }
.rich-text li{ margin-bottom: .5em; }
.rich-text p{ max-width: 68ch; }
.split-body .rich-text p{ max-width: none; }

/* =========================================================
   OPENING HOURS
   ========================================================= */
.hours-section{
  background-size: cover;
  background-position: center;
  position: relative;
}
.hours-section-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(23,58,79,.82) 0%, rgba(31,74,99,.68) 100%);
}
.hours-card{
  position: relative;
  max-width: 560px;
  background: rgba(247, 219, 177, 0.92);
  border-radius: var(--radius);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}
.hours-card h2{
  display: flex; align-items: center; gap: 12px;
  color: var(--color-blue-deep);
}
.hours-card h2 svg{ width: 30px; height: 30px; color: var(--color-gold-dark); }
.hours-list{ margin: 1.2em 0 0; display: grid; gap: 8px; }
.hours-row{ display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; border-bottom: 1px solid rgba(31,74,99,.14); font-weight: 700; color: var(--color-ink); }
.hours-row:last-child{ border-bottom: 0; }
.hours-row dt, .hours-row dd{ margin: 0; }
.hours-row.is-highlight{ color: #b8412a; }
.hours-note{ margin-top: 1.2em; font-size: 0.92rem; color: var(--color-blue-deep); font-weight: 600; }
.hours-list--compact{ margin-top: .6em; }
.hours-list--compact .hours-row{ background: transparent; padding: 6px 0; font-size: 0.92rem; }

.footer-hours{ display: grid; gap: 8px; margin: 0; }
.footer-hours .hours-row{ border: 0; padding: 0; color: #cfe1ec; font-weight: 600; font-size: 0.92rem; justify-content: flex-start; gap: 8px; }
.footer-hours .hours-row dt::after{ content: ":"; margin-right: 4px; }
.footer-hours .hours-row.is-highlight{ color: var(--color-gold); }

/* =========================================================
   RESERVATION CTA — one bold gradient panel: pitch on the left,
   tap-to-call number + booking button on the right.
   ========================================================= */
.reservation-panel{
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 40px;
  align-items: center;
  background: linear-gradient(120deg, var(--color-blue-deep) 0%, var(--color-blue-dark) 100%);
  border-radius: var(--radius);
  padding: 56px 64px;
  box-shadow: var(--shadow-lg);
}
.reservation-panel::before{
  content: "";
  position: absolute;
  top: -55%; right: -6%;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.reservation-panel-text{ position: relative; }
.reservation-panel-text h2{ color: #fff; margin-bottom: 0.35em; }
.reservation-panel-text .lede{ color: #dcebf3; font-weight: 500; }
.reservation-panel-text .closing-line{ color: #b9d2e2; font-size: 1rem; margin-top: 0.8em; }
.reservation-panel-cta{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 18px;
}
.reservation-phone-big{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.5rem, 1.2rem + 1vw, 2rem);
  color: #fff;
  white-space: nowrap;
}
.reservation-phone-big svg{ width: 24px; height: 24px; color: var(--color-gold); flex-shrink: 0; }
.reservation-phone-big:hover{ color: var(--color-gold-light); }

/* =========================================================
   MENU DOWNLOADS
   ========================================================= */
.menu-downloads{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: var(--space-lg);
  text-align: left;
}
.menu-download-card{
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-surface-alt);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 22px 26px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-ink);
  transition: all .2s ease;
}
.menu-download-card:hover{ background: var(--color-blue); color: #fff; border-color: var(--color-blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.menu-download-card svg:first-child{ width: 24px; height: 24px; color: var(--color-gold-dark); flex-shrink: 0; }
.menu-download-card:hover svg:first-child{ color: var(--color-cream); }
.menu-download-card span{ flex: 1; }
.menu-download-card svg:last-child{ width: 18px; height: 18px; flex-shrink: 0; }

/* =========================================================
   IMAGE BANNER (Terrasse / Feste Feiern) — one equal-height card:
   tinted text panel + photo, so a single short line of copy still
   reads as a designed unit instead of floating next to a tall photo.
   ========================================================= */
.banner-card{
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 360px;
}
.banner-card--reverse{ grid-template-columns: 1.1fr 1fr; }
.banner-card--reverse .banner-body{ order: 2; }
.banner-card--reverse .banner-media{ order: 1; }
.banner-body{
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.banner-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(99, 168, 209, 0.14);
  color: var(--color-gold-dark);
  margin-bottom: 18px;
}
.banner-icon svg{ width: 26px; height: 26px; }
.banner-body h2{ margin-bottom: 0.3em; }
.banner-body .lede{ font-weight: 500; color: var(--color-body); }
.banner-body .split-actions{ margin-top: 1.4em; }
.banner-media{ position: relative; min-height: 260px; }
.banner-media img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* =========================================================
   VOUCHERS
   ========================================================= */
.voucher-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(247, 185, 91, 0.18);
  color: var(--color-gold);
  margin-bottom: 1em;
}
.voucher-icon svg{ width: 30px; height: 30px; }
.section--navy .rich-text{ color: #d6e9f4; margin-left: auto; margin-right: auto; }
.section--navy .rich-text a{ color: var(--color-cream); text-decoration: underline; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 14px;
  margin-top: var(--space-lg);
}
.gallery-item{
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
}
.gallery-item img{ width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-item:hover img{ transform: scale(1.07); }
.gallery-item:nth-child(5n+1){ grid-row: span 2; }

.lightbox-overlay{
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(23,58,79,.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox-overlay.is-open{ display: flex; }
.lightbox-overlay img{ max-width: 100%; max-height: 88vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox-close{
  position: absolute; top: 24px; right: 28px;
  width: 46px; height: 46px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4); background: transparent;
  color: #fff; font-size: 1.8rem; line-height: 1; cursor: pointer;
}

/* =========================================================
   CONTACT / RESERVATION FORM BLOCK
   ========================================================= */
.contact-block{ display: grid; grid-template-columns: 1fr 1.1fr; gap: var(--space-lg); align-items: start; }
.contact-hours{ margin-top: 1.2em; }
.contact-hours p{ margin: 0 0 .4em; }

.map-embed{
  margin-top: var(--space-lg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-embed iframe{ width: 100%; height: 420px; border: 0; display: block; }
@media (max-width: 640px){
  .map-embed iframe{ height: 280px; }
}
.contact-form-wrap{
  background: var(--color-surface-alt);
  border-radius: var(--radius);
  padding: var(--space-lg);
}
.contact-form-wrap h3{ margin-bottom: .3em; }

/* wpcf7 styling */
.wpcf7 label{ display: block; font-weight: 700; font-family: var(--font-heading); color: var(--color-blue-dark); margin-bottom: 6px; font-size: 0.92rem; }
.wpcf7-form-fieldset{ border: 0; padding: 0; margin: 0 0 10px; }
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 input[type=date], .wpcf7 input[type=time], .wpcf7 input[type=number], .wpcf7 textarea{
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: #fff;
  margin-bottom: 18px;
  transition: border-color .18s ease;
}
.wpcf7 input:focus, .wpcf7 textarea:focus{ outline: none; border-color: var(--color-blue); }
.wpcf7 textarea{ min-height: 110px; resize: vertical; }
.wpcf7 .wpcf7-acceptance{ margin-bottom: 18px; display: block; font-size: 0.88rem; color: var(--color-muted); }
.wpcf7 .wpcf7-list-item{ margin: 0; }
.wpcf7-form-control-wrap{ display:block; }
.wpcf7-not-valid-tip{ color: #c0392b; font-size: 0.85rem; margin-top: -12px; margin-bottom: 14px; }
.wpcf7-form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; }
.wpcf7 input[type=submit]{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-weight: 600; font-size: 1rem;
  padding: 0.9em 2em; border-radius: 100px; border: 2px solid var(--color-blue);
  background: var(--color-blue); color: #fff; cursor: pointer; transition: all .2s ease;
}
.wpcf7 input[type=submit]:hover{ background: var(--color-gold); border-color: var(--color-gold); color: var(--color-blue-deep); }
.wpcf7-response-output{ border-radius: var(--radius-sm) !important; margin: 18px 0 0 !important; padding: 14px 18px !important; }
.wpcf7-spinner{ margin-left: 10px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--color-blue-deep); color: #cfe1ec; padding-top: calc(var(--space-xl) + 30px); position: relative; }
.footer-wave{ position: absolute; left: 0; right: 0; bottom: 100%; margin-bottom: -1px; line-height: 0; }
.footer-wave svg{ width: 100%; height: 44px; }
.footer-wave path{ fill: var(--color-blue-deep); }
.footer-top{ display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: var(--space-lg); padding-bottom: var(--space-lg); }
.footer-brand .site-logo-text{ color: var(--color-cream); font-size: 2.1rem; display: block; margin-bottom: 14px; }
.footer-brand p{ color: #a9c1d1; font-size: 0.95rem; }
.footer-col h4{ color: #fff; font-size: 1rem; margin-bottom: 1.1em; }
.footer-col ul{ list-style: none; display: grid; gap: 10px; }
.footer-col a{ color: #cfe1ec; font-size: 0.95rem; }
.footer-col a:hover{ color: var(--color-gold); }
.footer-icon-list{ list-style: none; display: grid; gap: 14px; }
.footer-icon-list li{ display: flex; gap: 12px; align-items: flex-start; }
.footer-icon-list svg{ width: 18px; height: 18px; color: var(--color-gold); flex-shrink: 0; margin-top: 3px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: #86a1b4;
}
.footer-bottom a{ color: #86a1b4; }
.footer-bottom a:hover{ color: #fff; }
.footer-legal ul{ display: flex; gap: 18px; flex-wrap: wrap; list-style: none; }
.footer-legal li{ list-style: none; margin: 0; }

/* =========================================================
   MISC
   ========================================================= */
.skip-link{ position: absolute; left: -9999px; top: 0; background: var(--color-blue); color: #fff; padding: 12px 20px; z-index: 10000; }
.skip-link:focus{ left: 12px; top: 12px; }

.page-content > *:first-child{ margin-top: 0; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px){
  .main-nav{ display: none; }
  .nav-toggle{ display: inline-flex; }
  .header-cta{ display: none; }
  .top-bar-item{ display: none; }
  .split, .contact-block, .wpcf7-form-row, .banner-card, .banner-card--reverse, .reservation-panel{ grid-template-columns: 1fr; }
  .reservation-panel{ text-align: center; padding: 40px 32px; }
  .reservation-panel-cta{ align-items: center; margin-top: 8px; }
  .split-media{ order: -1 !important; }
  .banner-media, .banner-card--reverse .banner-media{ order: -1; min-height: 240px; }
  .banner-card--reverse .banner-body{ order: 2; }
  .menu-downloads{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 640px){
  body{ font-size: 16px; }
  .section{ padding: 2.75rem 0; }
  .section--tight{ padding: 2rem 0; }
  .top-bar{ display: none; }
  .footer-top{ grid-template-columns: 1fr; }
  .site-footer{ padding-top: calc(var(--space-lg) + 40px); }
  .hero{ min-height: 76vh; padding-top: 92px; }
  .hero--compact{ min-height: 50vh; }
  .hero-content{ max-width: 100%; }
  .hero-actions{ flex-direction: column; flex-wrap: nowrap; align-items: stretch; width: 100%; }
  .hero-actions .btn{ justify-content: center; width: 100%; box-sizing: border-box; }
  .site-logo img{ height: 48px; }
  .site-logo-text{ font-size: 1.5rem; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item:nth-child(5n+1){ grid-row: span 1; }
  .gallery-item:last-child:nth-child(odd){ grid-column: 1 / -1; }
  .hours-card{ padding: var(--space-md); }
  .contact-form-wrap{ padding: var(--space-md); }
  .banner-body{ padding: var(--space-sm); }
  .banner-media{ min-height: 150px; }
  .banner-icon{ width: 40px; height: 40px; margin-bottom: 8px; }
  .banner-icon svg{ width: 20px; height: 20px; }
}

/* Mobile nav drawer */
.mobile-nav{
  position: fixed; inset: 0; z-index: 1200;
  background: var(--color-blue-deep);
  color: #fff;
  transform: translateX(100%);
  transition: transform .28s ease;
  overflow-y: auto;
}
.mobile-nav.is-open{ transform: translateX(0); }
.mobile-nav-header{ display: flex; justify-content: space-between; align-items: center; padding: 18px 24px; border-bottom: 1px solid rgba(255,255,255,.14); }
.mobile-nav-close{ width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.3); background: transparent; color: #fff; display:flex; align-items:center; justify-content:center; cursor:pointer; flex-shrink: 0; }
.mobile-nav-close svg{ width: 18px; height: 18px; }
.mobile-nav ul{ list-style: none; padding: 12px 12px 40px; }
.mobile-nav > ul > li{ border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-nav a{ display: block; padding: 14px 12px; color: #fff; font-family: var(--font-heading); font-weight: 600; }
.mobile-nav-overlay-lock{ overflow: hidden; }

/* =========================================================
   SCROLL REVEAL — a restrained fade + slight rise, once per
   element (toggled in main.js via IntersectionObserver). No
   bounce, no rotation, no repeat-on-rescroll.
   ========================================================= */
@media (prefers-reduced-motion: no-preference){
  /* Scoped to .js (set by an inline script in header.php) so content
     stays fully visible by default if JavaScript is unavailable —
     the reveal is a progressive enhancement, never a gate on content. */
  .js .reveal{
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s cubic-bezier(.25,.1,.25,1), transform .7s cubic-bezier(.25,.1,.25,1);
  }
  .js .reveal.is-visible{ opacity: 1; transform: translateY(0); }

  .js .reveal-stagger > *{
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s cubic-bezier(.25,.1,.25,1), transform .6s cubic-bezier(.25,.1,.25,1);
  }
  .js .reveal-stagger.is-visible > *{ opacity: 1; transform: translateY(0); }
  .js .reveal-stagger.is-visible > *:nth-child(2){ transition-delay: .08s; }
  .js .reveal-stagger.is-visible > *:nth-child(3){ transition-delay: .16s; }
  .js .reveal-stagger.is-visible > *:nth-child(4){ transition-delay: .24s; }
  .js .reveal-stagger.is-visible > *:nth-child(n+5){ transition-delay: .3s; }
}
