/* ===== Café Mattoni KV — stylesheet ===== */

:root{
  --navy: #0b1026;
  --navy-soft: #131a3a;
  --blue: #20598B;
  --blue-soft: #2c6ea3;
  --gold: #de8a35;
  --gold-soft: #eaa658;
  --bean: #DDA369;
  --ivory: #F7F3EA;
  --cream: #EEE6D8;
  --white: #FFFFFF;

  --ink: #0b1026;
  --ink-soft: rgba(11,16,38,0.68);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1180px;
  --radius: 4px;
  --shadow-soft: 0 20px 50px -25px rgba(11,16,38,0.35);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

img{ max-width: 100%; display: block; }

h1, h2, h3, h4{
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p{ margin: 0 0 1em; }
a{ color: inherit; text-decoration: none; }

.wrap{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 12px 20px;
  z-index: 200;
}
.skip-link:focus{ left: 16px; top: 16px; }

/* Short thematic kickers ("Náš příběh", "Náš unikát"…) read as editorial
   voice, so they get the display serif in italic. */
.eyebrow{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--gold);
  margin: 0 0 0.5em;
}
/* Factual/UI labels (location, category tags) stay on the body sans,
   uppercase and tracked out instead. */
.eyebrow-meta{
  font-family: var(--font-body);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  margin: 0 0 0.9em;
}

.lead{
  font-size: 1.15rem;
  color: var(--ink-soft);
}

/* ===== Buttons ===== */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover{ background: var(--gold-soft); }

.btn-outline{
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover{ border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn-ghost{
  border-color: rgba(11,16,38,0.2);
  color: var(--navy);
  padding: 10px 22px;
}
.btn-ghost:hover{ border-color: var(--navy); }

/* ===== Header ===== */
.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.site-header.scrolled{
  background: rgba(11,16,38,0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px -15px rgba(0,0,0,0.5);
}

.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.logo{
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo img{
  height: 52px;
  width: auto;
  /* dark wordmark on light ground -> white silhouette for dark header/footer */
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}

.main-nav ul{
  list-style: none;
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
}
.main-nav a{
  font-size: 0.76rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.9);
  position: relative;
  padding: 4px 0;
}
.main-nav a::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.main-nav a:hover::after{ transform: scaleX(1); }

.nav-cta{
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.nav-cta:hover{ border-color: var(--white); }

.menu-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.menu-toggle span{
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  background: var(--navy);
  padding: 100px 32px 40px;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  z-index: 90;
}
.mobile-nav.open{ transform: translateY(0); }
.mobile-nav ul{
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.mobile-nav a{
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  color: var(--white);
}
.mobile-nav .btn{ align-self: flex-start; margin-top: 40px; }

/* ===== Intro animation (Vřídlo → pára → logo → hero) ===== */
body.intro-locked{ overflow: hidden; }

.intro-overlay{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
  opacity: 1;
}
.intro-overlay.intro-hide{
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}

.intro-steam{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  max-width: 72vw;
  height: 320px;
}
.intro-steam span{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), rgba(255,255,255,0) 70%);
  filter: blur(18px);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.9s ease, transform 1.3s ease;
}
.intro-steam span:nth-child(1){ transition-delay: 0.25s; }
.intro-steam span:nth-child(2){ transition-delay: 0.35s; left: 24px; top: 8px; }
.intro-steam span:nth-child(3){ transition-delay: 0.43s; left: -28px; top: 16px; }
.intro-overlay.intro-play .intro-steam span{ opacity: 0.85; transform: scale(1); }

.intro-logo{
  position: relative;
  z-index: 1;
  width: 190px;
  height: auto;
  opacity: 0;
  transform: scale(0.95);
  filter: brightness(0) invert(1);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
/* Logo timing is event-driven from JS (video "ended" or the CSS-fallback
   timer), not a fixed delay, since we don't know the video's real length */
.intro-overlay.intro-logo-show .intro-logo{
  opacity: 1;
  transform: scale(1);
}
.intro-overlay.intro-play-reduced .intro-logo{
  transition: opacity 0.5s ease;
}

/* Hero / nav entrance, choreographed to finish once the intro overlay clears */
.intro-target{ opacity: 0; transform: translateY(18px); }
body.intro-ready .hero .eyebrow.intro-target{
  opacity: 1; transform: none;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 0ms, transform 0.7s cubic-bezier(0.16,1,0.3,1) 0ms;
}
body.intro-ready .hero h1.intro-target{
  opacity: 1; transform: none;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 130ms, transform 0.7s cubic-bezier(0.16,1,0.3,1) 130ms;
}
body.intro-ready .hero-lead.intro-target{
  opacity: 1; transform: none;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 260ms, transform 0.7s cubic-bezier(0.16,1,0.3,1) 260ms;
}
body.intro-ready .hero-actions.intro-target{
  opacity: 1; transform: none;
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1) 390ms, transform 0.7s cubic-bezier(0.16,1,0.3,1) 390ms;
}
body.intro-ready .site-header.intro-target{
  opacity: 1; transform: none;
  transition: background 0.35s ease, box-shadow 0.35s ease,
              opacity 0.7s cubic-bezier(0.16,1,0.3,1) 520ms, transform 0.7s cubic-bezier(0.16,1,0.3,1) 520ms;
}

/* Repeat visits within the same session: skip straight to the finished state */
html.intro-skip .intro-overlay{ display: none; }
html.intro-skip .intro-target{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Reduced motion: simple logo fade, no steam/movement */
html.intro-reduced .intro-steam{ display: none; }
html.intro-reduced .intro-target{
  transform: none !important;
  transition: opacity 0.5s ease !important;
}

@media (max-width: 560px){
  .intro-steam{ width: 220px; height: 220px; }
  .intro-logo{ width: 150px; }
}

/* ===== Scroll indicator — coffee bean (hero only) ===== */
.scroll-indicator{
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  opacity: 0;
  transform: translateY(8px) scale(0.9);
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1), transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.scroll-indicator:focus-visible{
  outline: 2px solid var(--bean);
  outline-offset: 3px;
  border-radius: 50%;
}
.scroll-indicator.si-active{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.scroll-indicator.si-hide{
  opacity: 0;
  pointer-events: none;
}

.si-label{
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--navy);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22,0.61,0.36,1);
}
.scroll-indicator:hover .si-label,
.scroll-indicator:focus-visible .si-label{
  opacity: 1;
  transform: translateX(0);
}

.si-bean{
  display: block;
  width: 28px;
  height: 28px;
  transform-origin: 50% 50%;
  animation: si-bob 2s ease-in-out infinite;
}
.si-bean-img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.scroll-indicator:hover .si-bean,
.scroll-indicator:focus-visible .si-bean{
  animation-name: none;
  transform: scale(1.08);
  transition: transform 250ms ease;
}
.scroll-indicator:active .si-bean{
  animation-name: none;
  transform: scale(0.94);
  transition: transform 0.15s ease;
}

@keyframes si-bob{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(5px); }
}

/* Reduced motion: no idle bob, no hover scale/rotate, plain fade only */
html.intro-reduced .scroll-indicator{ transition: opacity 0.4s ease !important; transform: none !important; }
html.intro-reduced .si-bean{ animation: none !important; }
html.intro-reduced .scroll-indicator:hover .si-bean,
html.intro-reduced .scroll-indicator:focus-visible .si-bean{
  transform: none !important;
}
html.intro-reduced .si-label{ transition: opacity 0.35s ease !important; transform: none !important; }

@media (max-width: 560px){
  .scroll-indicator{ right: 10px; bottom: 14px; padding: 16px; }
  .si-label{ display: none; }
}

/* ===== Custom cursor — coffee bean (desktop / precise pointers only) =====
   Unrelated to the scroll indicator above: this replaces the system mouse
   cursor itself, everywhere on the page, once the intro has finished. */
@media (pointer: fine){
  .custom-cursor{
    position: fixed;
    top: 0;
    left: 0;
    width: 28px;
    height: 28px;
    margin: -14px 0 0 -14px;
    pointer-events: none;
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.25s ease;
    will-change: transform;
  }
  .custom-cursor.cc-active{ opacity: 1; }
  .custom-cursor-img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    transform-origin: 50% 50%;
    transition: transform 220ms ease;
  }
  .custom-cursor.cc-hover .custom-cursor-img{
    transform: scale(1.25) rotate(10deg);
  }
  .custom-cursor.cc-click .custom-cursor-img{
    transform: scale(0.9) rotate(10deg);
    transition: transform 120ms ease;
  }
  /* Only hide the real system cursor once the custom one is actually on */
  html.cc-on, html.cc-on a, html.cc-on button{ cursor: none; }
}
html.intro-reduced .custom-cursor-img{ transition: transform 0.2s ease; }
html.intro-reduced .custom-cursor.cc-hover .custom-cursor-img{ transform: scale(1.25); }
html.intro-reduced .custom-cursor.cc-click .custom-cursor-img{ transform: scale(0.9); }

/* ===== Hero ===== */
.hero{
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-scrim{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,16,38,0.55) 0%, rgba(11,16,38,0.35) 35%, rgba(11,16,38,0.85) 100%);
}
.hero-content{
  position: relative;
  z-index: 1;
  padding-bottom: 110px;
  padding-top: 160px;
  max-width: 760px;
}
.hero .eyebrow{ color: var(--gold-soft); }
.hero h1{
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  margin-bottom: 0.35em;
}
.hero-lead{
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
}
.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}


/* ===== Section base ===== */
section{ padding: 110px 0; }
.section-head{
  max-width: 620px;
  margin: 0 0 56px;
}
.section-head h2{ font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ===== Signature (Káva z vřídelní vody) ===== */
.signature{
  background: var(--navy);
  color: var(--white);
}
.signature-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.signature-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.signature h2{ color: var(--white); font-size: clamp(2rem, 3.6vw, 2.8rem); }
.signature .lead{ color: rgba(255,255,255,0.82); }
.signature-text p{ color: rgba(255,255,255,0.72); }
.signature-text p:last-child{
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-soft);
}

.recipe-card{
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 20px;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 22px;
  margin: 32px 0;
}
.recipe-media{
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.recipe-media img{ width: 100%; height: 100%; object-fit: cover; }
.recipe-body h3{
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.6em;
}
.recipe-list{
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
}
.recipe-list li{
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
}
.recipe-price{
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-soft);
}

@media (min-width: 981px){
  .signature-media{
    position: sticky;
    top: 120px;
  }
}

/* ===== Offer ===== */
.offer{ background: var(--ivory); }
.offer-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.offer-card{
  background: transparent;
  display: flex;
  flex-direction: column;
}
.offer-media{ aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.offer-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.offer-card:hover .offer-media img{ transform: scale(1.05); }
.offer-card h3{
  padding: 22px 0 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.menu-items{
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.menu-items li{
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px dotted rgba(11,16,38,0.15);
  font-size: 0.9rem;
}
.menu-items li:last-child{ border-bottom: none; }
.menu-items li span:first-child{ color: var(--ink); }
.menu-items li span:last-child{
  margin-left: auto;
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.offer-card-note{
  padding: 10px 0 0;
  margin: auto 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.offer-note{
  margin-top: 48px;
  text-align: center;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.05rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.offer-menu-link{
  display: flex;
  width: fit-content;
  margin: 22px auto 0;
}

/* ===== About ===== */
.about{ background: var(--cream); position: relative; overflow: hidden; }
.about-blob{
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 420px;
  height: 420px;
  max-width: 55vw;
  max-height: 55vw;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 70%);
  opacity: 0.16;
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}
.about-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-media img{ border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.about-text p{ color: var(--ink-soft); }

/* ===== Events / Akce ===== */
.events{ background: var(--cream); }
.events .section-head{ max-width: 680px; }
.events-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  margin-top: 56px;
}
.event-feature{ display: flex; flex-direction: column; }
.event-media{ aspect-ratio: 4/3; overflow: hidden; border-radius: var(--radius); }
.event-media img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-feature:hover .event-media img{ transform: scale(1.04); }
.event-feature h3{ padding-top: 22px; font-size: 1.2rem; font-weight: 500; }
.event-feature p{ color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

.event-mosaic{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.event-mosaic img{ width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.event-feature-mosaic:hover .event-mosaic img{ transform: scale(1.04); }

/* ===== Gallery ===== */
.gallery{ background: var(--ivory); }
.gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}
.gallery-item{
  overflow: hidden;
  border-radius: var(--radius);
}
.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img{ transform: scale(1.06); }
.gallery-item.span-2{
  grid-column: span 2;
  grid-row: span 2;
}

/* ===== Visit / Contact ===== */
.visit{ background: var(--navy); color: var(--white); }
.visit .eyebrow{ color: var(--gold-soft); }
.visit h2{ color: var(--white); font-size: clamp(1.9rem, 3.4vw, 2.5rem); }

.visit-grid{
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-list{
  margin: 36px 0;
  display: grid;
  gap: 26px;
}
.contact-item dt{
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-soft);
  margin-bottom: 6px;
}
.contact-item dd{
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
}
.contact-item a:hover{ color: var(--gold-soft); }

.hours-row{
  display: flex;
  justify-content: space-between;
  max-width: 320px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.98rem;
  color: rgba(255,255,255,0.85);
}
.hours-row:last-child{ border-bottom: none; }

.social-links{
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.social-links a{
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.35);
  padding-bottom: 2px;
}
.social-links a:hover{ border-color: var(--gold); color: var(--gold-soft); }

.visit-map iframe{
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

/* ===== Footer ===== */
.site-footer{
  background: var(--navy-soft);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}
.footer-inner{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p{
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-soft);
}
.logo-footer img{ height: 44px; }

.footer-nav{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a:hover{ color: var(--gold-soft); }

.footer-contact{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a:hover{ color: var(--gold-soft); }
.footer-contact .social-links{ margin-top: 8px; gap: 18px; }
.footer-contact .social-links a{ border: none; font-weight: 500; padding: 0; }

.footer-bottom{
  padding: 22px 24px;
  font-size: 0.82rem;
  text-align: center;
  color: rgba(255,255,255,0.45);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  .main-nav, .nav-cta{ display: none; }
  .menu-toggle{ display: flex; }
  .mobile-nav{ display: flex; }

  .signature-grid, .about-grid, .visit-grid, .events-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-media{ order: -1; }

  .offer-grid{ grid-template-columns: 1fr; }

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

  .footer-inner{ grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 560px){
  section{ padding: 76px 0; }
  .hero-content{ padding-top: 140px; padding-bottom: 90px; }
  .hero-actions{ flex-direction: column; align-items: stretch; }
  .gallery-grid{ grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .gallery-item.span-2{ grid-column: span 2; grid-row: span 1; aspect-ratio: 16/10; height: auto; }
  .visit-map iframe{ min-height: 280px; }
}
