/* ===== Design tokens ===== */
:root {
  --accent: #5178A1;
  --accent-dark: #3c5b7d;
  --text: #545454;
  --text-light: #727272;
  --bg-light: #F4F4F4;
  --header-bar: #1a1a1a;
  --font-heading: 'Jost', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-heading-weight: 600;
  --heading-transform: uppercase;
  --h1-size: 2.9rem;
  --h2-size: 2.6rem;
  --nav-font-size: 0.95rem;
  --max-width: 1180px;
  --btn-book-bg: var(--accent);
  --btn-book-border: var(--accent);
  --btn-book-color: #fff;
  --btn-book-hover-bg: var(--accent-dark);
  --btn-book-hover-border: var(--accent-dark);
  --btn-book-hover-color: #fff;
  --btn-book-font-size: .88rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  margin: 0 0 .5em;
  font-weight: var(--font-heading-weight);
  text-transform: var(--heading-transform);
  line-height: 1.2;
}
h1 { font-size: var(--h1-size); }
h2 { font-size: var(--h2-size); letter-spacing: .02em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ===== Top bar ===== */
.topbar {
  background: var(--header-bar);
  color: #fff;
  font-size: .8rem;
}
.topbar .container {
  display: flex; align-items: center; justify-content: flex-end; gap: 24px;
  padding-top: 10px; padding-bottom: 10px;
  flex-wrap: wrap;
}
.topbar.has-rate .container { justify-content: space-between; }
.topbar-links { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar .rate-msg { font-size: .8rem; opacity: .92; }
.topbar a { color: #fff; opacity: .85; display: inline-flex; align-items: center; }
.topbar a:hover { opacity: 1; }
.topbar .icon { width: 14px; height: 14px; margin-right: 6px; fill: currentColor; flex-shrink: 0; }
@media (max-width: 700px) {
  .topbar.has-rate .container { flex-direction: column; align-items: center; gap: 8px; }
  .topbar.has-rate .topbar-links { order: 1; justify-content: center; }
  .topbar.has-rate .rate-msg { order: 2; display: block; text-align: center; }
}

/* ===== Header ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; padding-bottom: 16px;
}
.logo { display: inline-block; line-height: 0; }
.logo img { height: 54px; width: auto; display: block; }
.logo-footer img { height: 42px; }
nav.main-nav {
  display: flex; align-items: center; gap: 32px;
}
nav.main-nav a {
  font-size: var(--nav-font-size);
  letter-spacing: .05em;
  font-weight: 500;
  color: var(--text);
}
nav.main-nav a:hover { color: var(--accent); }
.btn-book {
  background: var(--btn-book-bg) !important;
  border: 2px solid var(--btn-book-border) !important;
  color: var(--btn-book-color) !important;
  border-radius: 50px;
  padding: 10px 26px !important;
  text-transform: uppercase;
  font-size: var(--btn-book-font-size) !important;
}
.btn-book:hover {
  background: var(--btn-book-hover-bg) !important;
  border-color: var(--btn-book-hover-border) !important;
  color: var(--btn-book-hover-color) !important;
}
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  width: 40px; height: 40px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text);
  margin: 5px auto;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 62vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.45));
}
.hero-inner {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 60px 0 40px;
  width: 100%;
}
.hero h1 { color: #fff; font-size: clamp(2rem, 5vw, calc(var(--h1-size) + .6rem)); margin-bottom: .2em; }
.hero .kicker {
  text-transform: uppercase; letter-spacing: .15em; font-size: .8rem; opacity: .9;
}

/* ===== Booking widget bar ===== */
.booking-bar-wrap {
  background: var(--header-bar);
  color: #fff;
}
.booking-bar-wrap .container { padding-top: 18px; padding-bottom: 18px; }
.kross-container { color: #333; min-height: 40px; }

/* ===== Sections ===== */
section { padding: 72px 0; }
section.alt { background: var(--bg-light); }
.section-title {
  text-align: center;
  margin-bottom: 40px;
}
.section-title h2 { color: var(--accent); }
.section-title p { color: var(--text-light); max-width: 640px; margin: 0 auto; }

/* ===== Property grid ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
}
.card {
  display: block;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #ddd;
}
.card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.card:hover img { transform: scale(1.06); }
.card .card-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 20px;
  background: linear-gradient(0deg, rgba(0,0,0,.75), transparent);
  color: #fff;
}
.card .card-caption h3 { color: #fff; margin-bottom: .15em; font-size: 1.15rem; }
.card .card-caption span { font-size: .82rem; opacity: .9; }
.filter-tabs {
  display: flex; justify-content: center; gap: 12px; margin-bottom: 32px; flex-wrap: wrap;
}
.filter-tabs button {
  border: 1px solid #ddd; background: #fff; padding: 8px 20px; border-radius: 30px;
  cursor: pointer; font-size: .85rem; font-family: var(--font-body); color: var(--text);
}
.filter-tabs button.active, .filter-tabs button:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ===== Nero homepage rooms grid: 2-per-row, larger cards ===== */
.container-rooms { max-width: 1520px; }
.grid-rooms { grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-rooms .card { aspect-ratio: 16 / 10; }
@media (min-width: 1025px) {
  .grid-rooms { gap: 28px; }
  .grid-rooms .card .card-caption h3 { font-size: 1.5rem; }
  .grid-rooms .card .card-caption span { font-size: .95rem; }
}
@media (max-width: 560px) {
  .grid-rooms { grid-template-columns: 1fr; }
}

/* ===== Rooms & Suites — editorial cards (legacy, unused by neroHome now) ===== */
.rooms-grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.room-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
}
.room-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.room-card:hover img { transform: scale(1.04); }
.room-card-info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: #fff;
  padding: 26px 32px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
}
.room-card:nth-child(even) .room-card-info { left: auto; right: 28px; }
.room-card-info h3 {
  color: var(--accent);
  font-size: 1.3rem;
  margin-bottom: .35em;
}
.room-card-info .tagline {
  display: block;
  color: var(--text-light);
  font-size: .85rem;
  margin-bottom: 14px;
}
.room-card-info .read-more {
  display: inline-block;
  color: var(--accent-dark);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .room-card-info {
    position: static;
    max-width: none;
    box-shadow: none;
    padding: 20px 4px 0;
  }
  .room-card:nth-child(even) .room-card-info { right: auto; }
}

/* ===== Amenities / features ===== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 32px 28px;
}
.feature h4 { color: var(--accent-dark); font-size: 1rem; margin-bottom: .3em; }
.feature p { color: var(--text-light); font-size: .92rem; margin: 0; }

/* ===== Direct booking value banner ===== */
.value-banner {
  background: var(--accent);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: .92rem;
  letter-spacing: .01em;
}
.value-banner strong { text-decoration: underline; }

/* ===== Detail page ===== */
.detail-hero {
  min-height: 46vh;
}
.detail-gallery {
  display: grid;
  grid-template-columns: repeat(var(--gallery-cols, 4), 1fr);
  gap: 8px;
}
.detail-gallery a { aspect-ratio: 1/1; overflow: hidden; border-radius: 3px; display: block; }
.detail-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.detail-gallery a:hover img { transform: scale(1.08); }
.detail-desc { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.detail-desc p { color: var(--text-light); font-size: 1.02rem; }
.info-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.reach-block { margin-bottom: 20px; }
.reach-block h4 { margin-bottom: .3em; color: var(--accent-dark); }
.reach-block p { color: var(--text-light); font-size: .92rem; }
.addr-box {
  background: var(--bg-light); padding: 24px; border-radius: 6px; font-size: .88rem; color: var(--text-light);
}
.addr-box h4 { color: var(--text); margin-bottom: .5em; }

/* ===== Floor plan ===== */
.floorplan-wrap {
  background: #fff;
  padding: 16px;
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border: 1px solid #eee;
}
.floorplan-wrap img { width: 100%; height: auto; display: block; }
.address-line {
  text-align: center;
  color: var(--text-light);
  font-size: .88rem;
  margin: 28px 0 0;
}
.address-line strong { color: var(--text); }
@media (max-width: 700px) {
  .info-columns { grid-template-columns: 1fr; }
}

/* ===== Amenities & Floor plan (room detail specs) ===== */
.specs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.specs-heading {
  display: flex; align-items: center; gap: 18px;
  color: var(--accent); font-size: 1.15rem; margin-bottom: 24px;
}
.specs-heading::after { content: ""; flex: 1; height: 1px; background: #ddd; }
.amenities-box { background: #fff; border: 1px solid #eee; border-radius: 6px; padding: 8px 32px; }
.amenities-list { list-style: none; margin: 0; padding: 0; }
.amenities-list li {
  padding: 12px 0; border-bottom: 1px solid #f0f0f0;
  color: var(--text-light); font-size: .92rem;
}
.amenities-list li:last-child { border-bottom: none; }
.amenities-list li::before { content: "▸ "; color: var(--accent); }
.plan-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.plan-table td { padding: 10px 0; border-bottom: 1px solid #eee; font-size: .9rem; }
.plan-table td:first-child { color: var(--text); font-weight: 500; width: 42%; }
.plan-table td:last-child { color: var(--text-light); }
@media (max-width: 700px) {
  .specs-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ===== 404 error page (Nero) ===== */
.error-404 { text-align: center; padding: 140px 0; }
.error-404 .kicker {
  color: var(--accent); text-transform: uppercase; letter-spacing: .15em;
  font-size: .85rem; margin-bottom: 14px;
}
.error-404 h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .4em; }
.error-404 p { color: var(--text-light); font-size: 1.05rem; max-width: 460px; margin: 0 auto 32px; }
.error-404 .btn-primary {
  display: inline-block;
  background: var(--accent); color: #fff; padding: 14px 40px;
  border-radius: 50px; text-transform: uppercase; font-size: .85rem; letter-spacing: .05em;
}
.error-404 .btn-primary:hover { background: var(--accent-dark); }
@media (max-width: 700px) {
  .error-404 { padding: 90px 0; }
}

/* ===== CTA strip ===== */
.cta-strip {
  background: var(--header-bar);
  color: #fff; text-align: center;
  padding: 56px 0;
}
.cta-strip h2 { color: #fff; }
.cta-strip .btn-primary {
  display: inline-block; margin-top: 18px;
  background: var(--accent); color: #fff; padding: 14px 40px;
  border-radius: 50px; text-transform: uppercase; font-size: .85rem; letter-spacing: .05em;
}
.cta-strip .btn-primary:hover { background: #fff; color: var(--text); }

/* ===== Footer ===== */
footer.site-footer {
  background: var(--header-bar);
  color: #ccc;
  padding: 48px 0 24px;
  font-size: .88rem;
}
footer .footer-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px;
  margin-bottom: 32px;
}
footer h4 { color: #fff; font-size: .95rem; margin-bottom: .8em; }
footer a:hover { color: #fff; }
footer .social a { display: inline-block; margin-right: 14px; }
footer .bottom-line {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 18px; text-align: center; font-size: .78rem; color: #999;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.9);
  display: none; align-items: center; justify-content: center; z-index: 999; padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; }
.lightbox .close { position: absolute; top: 20px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer; background:none; border:none; }
.lightbox .nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.15); border: none; color: #fff; font-size: 1.6rem; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; }
.lightbox .prev { left: 20px; }
.lightbox .next { right: 20px; }

/* ===== Overlay header (transparent over hero) ===== */
.hero-wrap { position: relative; }
.hero-wrap .site-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 20;
  background: transparent; border-bottom: none;
}
.hero-wrap .site-header nav.main-nav a { color: #fff; }
.hero-wrap .site-header nav.main-nav a:hover { color: #fff; opacity: .78; }
.hero-wrap .site-header .nav-toggle span { background: #fff; }
.logo-overlay img { height: 92px; }
@media (max-width: 860px) {
  .logo-overlay img { height: 70px; }
}
.hero-wrap .hero { min-height: 78vh; }
.hero-wrap .hero::before { background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.18)); }
.hero-wrap .hero h1 { font-weight: 700; }
.hero .subtitle {
  color: #fff; opacity: .92; font-size: .95rem; letter-spacing: .03em;
  text-transform: uppercase; margin-top: .5em; max-width: 460px;
}

/* ===== Room detail hero: white nav for legibility over colorful covers ===== */
.hero-wrap-detail .site-header nav.main-nav a { color: #fff; }
.hero-wrap-detail .site-header nav.main-nav a:hover { color: #fff; opacity: .78; }
.hero-wrap-detail .site-header .nav-toggle span { background: #fff; }
.hero-wrap-detail .hero::before { background: linear-gradient(180deg, rgba(0,0,0,.10), rgba(0,0,0,.22)); }
.hero-wrap-detail .hero { min-height: 0; height: 46vh; max-height: 500px; }
.hero-wrap-detail .hero { background-image: var(--hero-bg-mobile); }
@media (max-width: 860px) {
  .hero-wrap-detail .nav-toggle span { background: #fff; }
}
@media (max-width: 700px) {
  .hero-wrap-detail .hero { height: 40vh; max-height: 300px; }
}
@media (min-width: 701px) {
  .hero-wrap-detail .hero { background-image: var(--hero-bg-desktop); }
}

/* ===== Room detail: tighter spacing between description and gallery ===== */
.room-desc-section { padding: 72px 0 8px; }
.room-desc-section .detail-desc { margin-bottom: 0; }
.gallery-section { padding: 8px 0 72px; }

/* ===== Welcome text section ===== */
.section-welcome { text-align: center; max-width: 760px; margin: 0 auto; padding: 72px 24px 24px; }
.section-welcome p { color: var(--text-light); font-size: 1.02rem; }

/* ===== Full-bleed content sections (Secret Garden / Taormina) ===== */
.section-fullbleed {
  position: relative; min-height: 44vh; background-size: cover; background-position: center;
  display: flex; align-items: center; color: #fff;
}
.section-fullbleed::before {
  content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.55);
}
.section-fullbleed .container { position: relative; z-index: 1; }
.section-fullbleed h2 { color: #fff; }
.section-fullbleed p { color: rgba(255,255,255,.88); max-width: 520px; }
@media (min-width: 761px) {
  .section-secret-garden .container { text-align: right; }
  .section-secret-garden .container p { margin-left: auto; margin-right: 0; }
}
.taormina-flex { display: flex; align-items: center; justify-content: space-between; gap: 72px; flex-wrap: wrap; }
.taormina-circle {
  width: 240px; height: 240px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 3px solid rgba(255,255,255,.25);
  margin-left: auto;
}
.taormina-circle img { width: 100%; height: 100%; object-fit: cover; }
.wiki-link {
  display: inline-block; margin-top: 18px; color: #fff; text-decoration: underline;
  font-size: .82rem; letter-spacing: .06em; text-transform: uppercase;
}

/* ===== Gallery carousel ===== */
.gallery-carousel { padding: 24px 0 48px; }
.gallery-track {
  display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 0 24px; scrollbar-width: none; -ms-overflow-style: none;
  scroll-behavior: auto;
}
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  scroll-snap-align: start; width: 320px; height: 230px; object-fit: cover;
  border-radius: 4px; flex-shrink: 0;
}
.gallery-nav { display: flex; justify-content: center; gap: 12px; margin-top: 18px; }
.gallery-nav button {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid #ddd; background: #fff;
  cursor: pointer; font-size: 1rem; color: var(--text);
}
.gallery-nav button:hover { background: #fff; color: var(--text); border-color: var(--text); box-shadow: 0 2px 10px rgba(0,0,0,.15); }

/* ===== Footer (3-column layout) ===== */
footer.site-footer .footer-columns {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  gap: 28px; padding-bottom: 32px;
}
footer.site-footer .footer-info { justify-self: start; }
footer.site-footer .footer-logo { justify-self: center; }
footer.site-footer .footer-cta { justify-self: end; }
footer.site-footer .footer-info p { margin: 0 0 8px; font-size: .85rem; }
footer.site-footer .footer-info strong { color: #fff; }
footer.site-footer .footer-logo img { height: 88px; width: auto; max-width: none; flex-shrink: 0; }
@media (max-width: 700px) {
  footer.site-footer .footer-columns {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }
  footer.site-footer .footer-info,
  footer.site-footer .footer-logo,
  footer.site-footer .footer-cta {
    justify-self: center;
  }
  footer.site-footer .footer-logo img { height: 64px; width: auto; }
}
.btn-book-footer {
  display: inline-block; border: 1px solid #fff; border-radius: 50px; padding: 12px 32px;
  text-transform: uppercase; font-size: .8rem; letter-spacing: .05em; color: #fff;
}
.btn-book-footer:hover { background: #fff; border-color: #fff; color: var(--text); }

/* ===== Taormina Guide page ===== */
.guide-intro { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.guide-intro p { color: var(--text-light); font-size: 1.02rem; }
.guide-quicknav { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin: 0 0 8px; }
.guide-quicknav a {
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; color: var(--accent-dark);
  border: 1px solid #ddd; border-radius: 30px; padding: 9px 20px; font-weight: 500;
}
.guide-quicknav a:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
.guide-section-intro { max-width: 700px; margin: 0 auto 40px; text-align: center; color: var(--text-light); }
.guide-group { margin-bottom: 44px; }
.guide-group:last-child { margin-bottom: 0; }
.guide-group-title {
  font-size: 1.05rem; color: var(--accent-dark); margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 1px solid #e2e2e2; font-family: var(--font-heading); text-transform: var(--heading-transform);
}
.guide-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.guide-card { background: #fff; border: 1px solid #eee; border-radius: 6px; overflow: hidden; }
.guide-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; }
.guide-card-body { padding: 16px 18px 18px; }
.guide-card-body h4 { font-size: 1rem; margin-bottom: .35em; color: var(--text); font-family: var(--font-heading); }
.guide-card-body p { font-size: .86rem; color: var(--text-light); margin-bottom: .7em; line-height: 1.5; }
.guide-map-link {
  display: inline-block; font-size: .74rem; letter-spacing: .05em; text-transform: uppercase;
  color: var(--accent-dark); font-weight: 600;
}
.guide-map-link:hover { color: var(--accent); }
.guide-section-alt { background: var(--bg-light); }
@media (max-width: 1024px) { .guide-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .guide-grid { grid-template-columns: 1fr; } }

/* ===== Responsive ===== */
.hero-wrap .site-header .container,
.hero-wrap .hero-inner { padding-left: 32px; }
@media (max-width: 900px) {
  .topbar.has-rate .container { flex-direction: column; align-items: center; gap: 8px; }
  .topbar.has-rate .topbar-links { order: 1; justify-content: center; }
  .topbar.has-rate .rate-msg { order: 2; display: block; text-align: center; }
}
@media (min-width: 761px) and (max-width: 900px) {
  .taormina-flex { flex-wrap: nowrap; gap: 28px; }
  .taormina-circle { width: 150px; height: 150px; }
  .section-taormina .container p { max-width: 440px; }
}
@media (max-width: 860px) {
  .site-header { position: relative; }
  nav.main-nav {
    position: absolute; top: 100%; left: 0; right: 0; width: 100%; max-height: 0;
    background: #fff; flex-direction: column; align-items: center; justify-content: flex-start;
    gap: 4px; padding: 0 24px; box-shadow: 0 14px 30px rgba(0,0,0,.14);
    transition: max-height .35s ease; z-index: 30; overflow: hidden;
  }
  nav.main-nav.open { max-height: 480px; padding: 28px 24px 36px; }
  nav.main-nav a {
    width: auto; padding: 11px 0; border-bottom: none;
    text-align: center; letter-spacing: .1em;
    color: var(--text) !important;
  }
  nav.main-nav .btn-book {
    display: inline-block; width: auto; margin: 16px 0 0; box-sizing: border-box;
    background: var(--btn-book-bg) !important; border: 2px solid var(--btn-book-border) !important;
    color: var(--btn-book-color) !important;
  }
  nav.main-nav .btn-book:hover {
    background: var(--btn-book-hover-bg) !important; border-color: var(--btn-book-hover-border) !important;
    color: var(--btn-book-hover-color) !important;
  }
  .nav-toggle { display: block; position: relative; z-index: 31; }
  .hero-wrap .site-header .nav-toggle span,
  .nav-toggle span { background: var(--text); }
}
@media (max-width: 700px) {
  .taormina-flex { justify-content: center; text-align: center; }
  .taormina-circle { margin: 0 auto; }
  .section-secret-garden .container,
  .section-secret-garden .container p { text-align: center; margin: 0 auto; }
  .gallery-track img { width: 240px; height: 180px; }
}
