/* ================================================================
   CIRKUSZ BUDAPEST — Main Stylesheet
   Fonts: Cabin (headings) · Open Sans (body) · Gloria Hallelujah (accents)
   Colors: #66cccc (teal) · #212e4e (navy) · #d5c3a0 (sand)
   ================================================================ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  width: 100vw;
  overflow-x: hidden;
}
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  background: #fff;
  color: #222;
  overflow-x: hidden;
  width: 100vw;
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
h4,
h5 {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  color: #212e4e;
  line-height: 1.15;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
ul {
  list-style: none;
}

/* ── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --teal: #6ccbd9;
  --teal-d: #4db8b8;
  --teal-l: #e0f4f4;
  --navy: #0c162d;
  --sand: #d5c3a0;
  --sand-l: #f0e9db;
  --sand-ll: #faf7f2;
  --white: #ffffff;
  --muted: #555;
  --border: #ddd;
  --body-font-size: 1.2rem;
}

/* ── TYPOGRAPHY UTILITIES ──────────────────────────────────────── */
.font-script {
  font-family: "Gloria Hallelujah", cursive;
}
.label {
  display: block;
  font-family: "Cabin", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.9rem;
}

/* ── BUTTONS ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  font-size: 0.9;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all 0.28s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-d);
  border-color: var(--teal-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 204, 204, 0.32);
}
.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(12, 22, 45, 0.18);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
}

/* ── NAVIGATION ────────────────────────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(102, 204, 204, 0.18);
  transition: box-shadow 0.3s;
}
.nav-wrap.scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.07);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo — gentle float + hover glow */
.nav-logo img {
  height: 54px;
  width: auto;
  animation: logoFloat 6s ease-in-out infinite;
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 4px 14px rgba(102, 204, 204, 0.55));
  animation-play-state: paused;
  transform: scale(1.06);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-link {
  font-family: "Cabin", sans-serif;
  font-size: 0.9;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  transition: color 0.28s;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  height: 2px;
  width: 0;
  background: var(--teal);
  border-radius: 1px;
  transition: width 0.3s ease;
}
.nav-link:hover {
  color: var(--teal);
}
.nav-link:hover::after {
  width: 100%;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 210;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-hamburger {
    display: flex;
  }
  .nav-links {
    display: none !important;
  }
  .nav-inner {
    padding: 0 1.5rem;
  }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 190;
  border-bottom: 3px solid var(--teal);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.25s ease both;
}
.mobile-menu.open {
  display: block;
}
.mobile-nav {
  padding: 1.2rem 2rem 1.8rem;
  display: flex;
  flex-direction: column;
}
.mobile-link {
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  padding: 1rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-link:last-of-type {
  border-bottom: none;
}
.mobile-link:hover {
  color: var(--teal);
  padding-left: 0.5rem;
}
.mobile-cta {
  margin-top: 1.2rem;
}

/* ── BRAND STAMP SECTION ───────────────────────────────────────── */
.brand-stamp {
  position: relative;
  padding: 4rem 2rem 3.5rem;
  overflow: hidden;
  background: var(--teal);
  text-align: center;
}
/* Diamond pattern overlay */
.brand-stamp::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/header_bg.png") repeat;
  background-size: 130px auto;
  mix-blend-mode: multiply;
  opacity: 0.35;
  pointer-events: none;
}
.brand-stamp-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 40px 0;
}
/* White circular logo medallion */
.brand-stamp-medallion {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 50px rgba(0, 0, 0, 0.18),
    0 0 0 8px rgba(255, 255, 255, 0.25);
  animation: logoReveal 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.3s both;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.brand-stamp-medallion:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22),
    0 0 0 10px rgba(255, 255, 255, 0.3);
}
.brand-stamp-medallion img {
  width: 120px;
  height: auto;
  animation: logoGlow 4s ease-in-out 1.3s infinite;
}
/* Decorative ring around medallion */
.brand-stamp-medallion::after {
  content: "";
  position: absolute;
  width: 195px;
  height: 195px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.45);
  animation: ringRotate 18s linear infinite;
  pointer-events: none;
}
.brand-stamp-tagline {
  font-family: "Gloria Hallelujah", cursive;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #fff;
  line-height: 1.75;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.brand-stamp-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: "Cabin", sans-serif;
  font-weight: 600;
}

/* ── HERO ──────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem 0;
  gap: 4rem;
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 3rem;
    min-height: auto;
  }
  .hero-visual {
    display: none;
  }
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--sand-ll);
  border: 1px solid rgba(213, 195, 160, 0.55);
  padding: 0.45rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.8rem;
}
.hero-tag span {
  font-family: "Cabin", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7a6a50;
}
.hero-title {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 1.6rem;
}
.hero-title .script-line {
  font-family: "Gloria Hallelujah", cursive;
  font-weight: 400;
  color: var(--sand);
  font-size: 1.08em;
  display: block;
  white-space: nowrap;
  min-height: 1.2em;
}
.typ-cursor {
  display: inline-block;
  width: 0;
  height: 0.6em;
  border-left: 2px solid var(--sand);
  margin-left: 3px;
  vertical-align: middle;
  animation: typBlink 0.65s step-end infinite;
}
.typ-cursor-hide {
  animation: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
@keyframes typBlink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-sub {
  font-size: var(--body-font-size);
  line-height: 1.8;
  color: #595959;
  max-width: 440px;
  margin-bottom: 2.5rem;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-meta-num {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--navy);
}
.hero-meta-label {
  font-size: 0.72rem;
  color: #555;
  margin-top: 3px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  height: 580px;
}
.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px 6px 100px 6px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.13);
  transition: transform 0.7s ease;
}
.hero-img-main:hover {
  transform: scale(1.015);
}
.hero-accent-dot {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.45;
  z-index: -1;
  animation: accentDotPulse 3.5s ease-in-out infinite;
}
@keyframes accentDotPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.18);
    opacity: 0.28;
  }
}
/* Diamond pattern strip — right edge of hero */
.hero-pattern-strip {
  position: absolute;
  top: 0;
  right: -2.5rem;
  width: 56px;
  height: 100%;
  background: url("../img/header_bg.png") repeat-y center top;
  background-size: 56px auto;
  opacity: 0.18;
  pointer-events: none;
  border-radius: 0 6px 100px 0;
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: #fff;
  border-radius: 4px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  animation: floatBadge 4.5s ease-in-out infinite;
}
.hero-badge-icon {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--teal-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-badge-text strong {
  display: block;
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.hero-badge-text span {
  font-size: 0.68rem;
  color: #555;
}

/* ── SECTIONS ──────────────────────────────────────────────────── */
.section {
  position: relative;
  padding: 6rem 2rem;
}
.section-sm {
  padding: 3.5rem 2rem;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-center {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 3.5rem;
}
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  margin-bottom: 1rem;
  font-weight: bold;
}
.section-body {
  font-size: var(--body-font-size);
  line-height: 1.8;
  color: #595959;
}

/* ── ABOUT ─────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 6px 6px 6px 80px;
}
.about-img-circle {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--sand);
  opacity: 0.35;
  z-index: 0;
  animation: accentDotPulse 3.5s ease-in-out infinite;
}
.about-img {
  position: relative;
  z-index: 1;
}
.about-body p {
  font-size: var(--body-font-size);
  line-height: 1.85;
  color: #555;
  margin-bottom: 1.1rem;
}
.about-quote {
  margin: 2rem 0;
  padding: 1.4rem 1.6rem;
  background: var(--sand-ll);
  border-left: 3px solid var(--sand);
  border-radius: 0 4px 4px 0;
}
.about-quote p {
  font-family: "Gloria Hallelujah", cursive;
  font-size: 1.05rem;
  color: #7a6a50;
  line-height: 1.75;
}

/* ── FOOD BANNER ───────────────────────────────────────────────── */
.food-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}
.food-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transition: transform 0.8s ease;
}
.food-banner:hover img {
  transform: scale(1.03);
}
.food-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(33, 46, 78, 0.72) 0%,
    rgba(33, 46, 78, 0.22) 55%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  padding: 0 6%;
}
.food-banner-content {
  max-width: 650px;
}
.food-banner-content .label {
  color: rgba(255, 255, 255, 0.65);
}
.food-banner-title {
  font-family: "Gloria Hallelujah", cursive;
  font-size: clamp(2.2rem, 4vw, 5.4rem);
  color: #fff;
  font-weight: 400;
  line-height: 0.95em;
  margin-bottom: 1.2rem;
}
.food-banner-sub {
  font-size: var(--body-font-size);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* ── PHOTO GRID ────────────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 400px 400px;
  gap: 5px;
  margin: 5px 0;
}
@media (max-width: 700px) {
  .photo-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 200px 200px 200px;
  }
  .photo-grid-tall {
    grid-row: span 1;
  }
  .photo-grid-wide {
    grid-column: span 1;
  }
}
.photo-grid-item {
  overflow: hidden;
  position: relative;
}
.photo-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.4s ease;
}
.photo-grid-item:hover img {
  transform: scale(1.06);
  filter: brightness(1.04);
}
.photo-grid-tall {
  grid-row: span 2;
}
.photo-grid-wide {
  grid-column: span 2;
}

/* ── MENU ──────────────────────────────────────────────────────── */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }
}

.menu-card {
  border: 1px solid #efefef;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}
.menu-card-img-wrap {
  overflow: hidden;
}
.menu-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.menu-card:hover .menu-card-img {
  transform: scale(1.05);
}
.menu-card-body {
  padding: 1.4rem;
}
.menu-card-tag {
  font-family: "Cabin", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.5rem;
}
.menu-card-title {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.menu-card-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.65;
}

/* ── VIBE / SPLIT ──────────────────────────────────────────────── */
.vibe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
@media (max-width: 900px) {
  .vibe-grid {
    grid-template-columns: 1fr;
  }
}
.vibe-img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
}
.vibe-text {
  background: var(--navy);
  padding: 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .vibe-text {
    padding: 3rem 2rem;
  }
}
.vibe-text .label {
  color: var(--teal);
}
.vibe-title {
  font-family: "Gloria Hallelujah", cursive;
  font-size: clamp(1.9rem, 3.2vw, 4rem);
  color: #fff;
  font-weight: 400;
  line-height: 0.95em;
  margin-bottom: 1.5rem;
}
.vibe-desc {
  font-size: var(--body-font-size);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
}
.vibe-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.vibe-stat-num {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--sand);
}
.vibe-stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3px;
}

/* ── COFFEE ────────────────────────────────────────────────────── */
.coffee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
@media (max-width: 900px) {
  .coffee-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.coffee-img-outer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.coffee-img-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  @media (max-width: 600px) {
    width: 260px;
    margin-bottom: 40px;
  }
}
.coffee-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--sand);
  animation: pulseRing 3.2s ease-in-out infinite;
}
.coffee-ring-1 {
  inset: -22px;
}
.coffee-ring-2 {
  inset: -44px;
  animation-delay: 1s;
  border-color: var(--sand);
}
.coffee-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 1;
}
.coffee-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2rem;
}
.coffee-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  background: var(--sand-ll);
  color: var(--navy);
  border-radius: 2px;
  font-family: "Cabin", sans-serif;
  font-size: 0.73rem;
  font-weight: 600;
}
.coffee-badge i {
  color: var(--teal);
  font-size: 0.75rem;
}
.coffee-body p {
  font-size: var(--body-font-size);
  line-height: 1.85;
  color: #555;
  margin-bottom: 1rem;
}

/* ── TEAM ──────────────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
  */

.team-card {
  text-align: center;
  transition: transform 0.32s ease;
}
.team-card:hover {
  transform: translateY(-6px);
}
.team-img-wrap {
  overflow: hidden;
  margin-bottom: 1.3rem;
}
.team-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 6px 6px 50px 6px;
  transition: all 0.5s ease;
}
.team-card:hover .team-img {
  transform: scale(1.04);
  border-radius: 6px;
}
.team-role {
  font-family: "Cabin", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.35rem;
}
.team-name {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.team-note {
  font-size: 0.9;
  color: #555;
  line-height: 1.55;
}
.team-fun-fact {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: "Cabin", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
}

/* ── TRIPADVISOR / AWARDS ──────────────────────────────────────── */
/* Diamond pattern accent strip above awards */
.pattern-divider {
  height: 70px;
  background: url("../img/header_bg.png") repeat-x center;
  background-size: auto 70px;
  opacity: 0.55;
}

.ta-highlight {
  background: var(--sand-ll);
  border: 1px solid rgba(213, 195, 160, 0.5);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.ta-logo-wrap img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}
.ta-divider {
  width: 1px;
  height: 56px;
  background: rgba(213, 195, 160, 0.7);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .ta-divider {
    display: none;
  }
}
.ta-text-title {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.ta-text-desc {
  font-size: 0.8rem;
  color: #555;
  line-height: 1.5;
}

.awards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .awards-grid {
    grid-template-columns: 1fr;
  }
}
.award-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: border-color 0.28s, box-shadow 0.28s;
}
.award-item:last-child {
  margin-bottom: 0;
}
.award-item:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(102, 204, 204, 0.1);
}
.award-icon {
  width: 52px;
  height: 52px;
  border-radius: 4px;
  background: var(--teal-l);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 1.3rem;
}
.award-title {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: var(--body-font-size);
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.award-desc {
  font-size: 0.9;
  color: #555;
}
.awards-visual {
  position: relative;
  padding: 0 1.5rem 2.5rem 0;
}
.awards-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
}
.awards-pullquote {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--teal);
  color: #fff;
  padding: 1.4rem 1.6rem;
  max-width: 270px;
  border-radius: 4px;
}
.awards-pullquote p {
  font-family: "Gloria Hallelujah", cursive;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0.4rem;
}
.awards-pullquote small {
  font-size: 0.75rem;
}
.awards-body-text {
  font-size: var(--body-font-size);
  line-height: 1.85;
  color: #555;
  margin-bottom: 2rem;
}

/* ── VISIT / MAP ───────────────────────────────────────────────── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) {
  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.visit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--border);
}
.visit-item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.visit-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-l);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.visit-label {
  font-family: "Cabin", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 0.3rem;
}
.visit-val {
  font-family: "Cabin", sans-serif;
  font-weight: 600;
  font-size: var(--body-font-size);
  color: var(--navy);
}
.visit-sub {
  font-size: 0.9;
  color: #555;
  margin-top: 2px;
}
.social-row {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.8rem;
}
.soc-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: all 0.28s;
}
.soc-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.map-wrap {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* ── FOOTER ────────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: #fff;
  padding: 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.footer-logo {
  height: 42px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.1rem;
  animation: logoPulse 5s ease-in-out infinite;
  transition: filter 0.3s, transform 0.3s;
}
.footer-logo:hover {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(102, 204, 204, 0.8));
  transform: scale(1.04);
}
.footer-tagline {
  font-size: 0.84rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.48);
  max-width: 320px;
}
.footer-soc {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.footer-soc a {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  transition: all 0.28s;
}
.footer-soc a:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.footer-contact-heading {
  font-family: "Cabin", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.2rem;
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}
.footer-contact-row i {
  color: var(--teal);
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-row a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.28s;
}
.footer-contact-row a:hover {
  color: var(--teal);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.8);
}
.footer-stars {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-stars i {
  color: var(--teal);
  font-size: 0.65rem;
}
.footer-stars span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  margin-left: 0.35rem;
}

/* ── ANIMATIONS ────────────────────────────────────────────────── */
@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-4px);
  }
}
@keyframes logoGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 0px rgba(102, 204, 204, 0));
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(102, 204, 204, 0.55));
  }
}
@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.82);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes logoPulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 1;
  }
}
@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes pulseRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.45;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(26px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Hero on-load — held invisible until body.hero-ready is added by JS */
.h-tag,
.h-title,
.h-sub,
.h-btns,
.h-meta,
.h-visual {
  opacity: 0;
}
body.hero-ready .h-tag {
  animation: fadeUp 0.7s ease 0.05s both;
}
body.hero-ready .h-title {
  animation: fadeUp 0.8s ease 0.15s both;
}
body.hero-ready .h-sub {
  animation: fadeUp 0.8s ease 0.28s both;
}
body.hero-ready .h-btns {
  animation: fadeUp 0.8s ease 0.4s both;
}
body.hero-ready .h-meta {
  animation: fadeUp 0.8s ease 0.52s both;
}
body.hero-ready .h-visual {
  animation: scaleIn 0.9s ease 0.1s both;
}

/* Scroll reveal */
.rv-up,
.rv-left,
.rv-right,
.rv-scale {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.rv-up {
  transform: translateY(26px);
}
.rv-left {
  transform: translateX(-26px);
}
.rv-right {
  transform: translateX(26px);
}
.rv-scale {
  transform: scale(0.95);
}
.rv-up.vis,
.rv-left.vis,
.rv-right.vis,
.rv-scale.vis {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.08s;
}
.d2 {
  transition-delay: 0.18s;
}
.d3 {
  transition-delay: 0.28s;
}
.d4 {
  transition-delay: 0.38s;
}

/* ── INSTAGRAM GALLERY ─────────────────────────────────────────── */
.instagram-section {
  position: relative;
  padding: 5rem 0 3px;
  background: #fff;
}
.instagram-header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.instagram-identity {
  display: flex;
  align-items: center;
  gap: 1rem;
}
/* Instagram gradient icon */
.ig-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(220, 39, 67, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ig-icon:hover {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(220, 39, 67, 0.4);
}
.ig-handle {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  display: block;
  margin-bottom: 0.15rem;
}
.ig-sub {
  font-size: 0.9;
  color: var(--muted);
}
.ig-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 2px;
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  background-size: 200% 200%;
  background-position: left center;
  color: #fff;
  font-family: "Cabin", sans-serif;
  font-size: 0.9;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-position 0.5s ease, transform 0.28s, box-shadow 0.28s;
  box-shadow: 0 4px 18px rgba(220, 39, 67, 0.25);
}
.ig-follow-btn:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(220, 39, 67, 0.38);
}

/* Photo grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
}
@media (max-width: 900px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 500px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ig-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
  background: #f0f0f0;
}
.ig-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  display: block;
}
.ig-photo:hover img {
  transform: scale(1.08);
  filter: brightness(0.75);
}
/* Hover overlay */
.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  opacity: 0;
  transition: opacity 0.35s ease;
  background: rgba(18, 18, 18, 0.25);
}
.ig-photo:hover .ig-overlay {
  opacity: 1;
}
.ig-overlay i {
  color: #fff;
  font-size: 1.8rem;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}
.ig-overlay span {
  color: #fff;
  font-family: "Cabin", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5));
}

/* Bottom strip */
.instagram-footer {
  background: var(--sand-ll);
  text-align: center;
  padding: 2.2rem 2rem;
  border-top: 1px solid rgba(213, 195, 160, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.instagram-footer p {
  font-size: 0.88rem;
  color: #777;
  font-style: italic;
}

/* ── HERO MURAL SVG BACKGROUND ─────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      ellipse at 78% 35%,
      rgba(102, 204, 204, 0.09) 0%,
      transparent 52%
    ),
    linear-gradient(148deg, var(--sand-ll) 0%, #fff 58%);
}
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.032;
  pointer-events: none;
  z-index: 0;
}
.hero-scroll-cue {
  position: absolute;
  bottom: 4.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 3;
}
.hero-scroll-cue span {
  display: block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
  transform: rotate(45deg);
  opacity: 0;
  animation: scrollChevron 2s ease-in-out infinite;
}
.hero-scroll-cue span:nth-child(2) {
  animation-delay: 0.25s;
  margin-top: -6px;
}
@keyframes scrollChevron {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-3px, -3px);
  }
  50% {
    opacity: 0.35;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(3px, 3px);
  }
}
@media (max-width: 900px) {
  .hero-scroll-cue {
    display: none;
  }
}
.hero-wave,
.wave-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.wave-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
}
.hero-wave svg,
.wave-top svg,
.wave-bottom svg {
  width: 100%;
  height: 56px;
  display: block;
}
.hero-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
/* Hero content above SVG */
.hero {
  position: relative;
  z-index: 1;
}

/* ── LIGHTBOX ──────────────────────────────────────────────────── */
.lb-trigger {
  display: block;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.lb-trigger img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.lb-trigger:hover img {
  transform: scale(1.04);
}
.lb-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(12, 22, 45, 0.35);
  opacity: 0;
  transition: opacity 0.28s ease;
  color: #fff;
  font-size: 1.4rem;
}
.lb-trigger:hover .lb-icon {
  opacity: 1;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(12, 22, 45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90vw;
  max-height: 90vh;
}
#lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  transition: opacity 0.2s ease;
}
.lb-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-family: "Cabin", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  font-size: 1rem;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255, 255, 255, 0.18);
}
.lb-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
}
.lb-prev,
.lb-next {
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
}
.lb-prev {
  left: 1.5rem;
}
.lb-next {
  right: 1.5rem;
}
@media (max-width: 600px) {
  .lb-prev {
    left: 0.5rem;
  }
  .lb-next {
    right: 0.5rem;
  }
  .lb-close {
    top: 0.75rem;
    right: 0.75rem;
  }
}

/* ── PDF MENU MODAL ────────────────────────────────────────────── */
.pdf-modal {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(12, 22, 45, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.pdf-modal.open {
  opacity: 1;
  pointer-events: all;
}
.pdf-modal-inner {
  background: #fff;
  border-radius: 6px;
  width: 100%;
  max-width: 960px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
  transform: translateY(12px);
  transition: transform 0.28s ease;
}
.pdf-modal.open .pdf-modal-inner {
  transform: translateY(0);
}
.pdf-modal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
  background: var(--sand-ll);
}
.pdf-modal-title {
  font-family: "Cabin", sans-serif;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  flex: 1;
}
.pdf-modal-external {
  font-family: "Cabin", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-d);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.pdf-modal-external:hover {
  opacity: 0.7;
}
.pdf-modal-close {
  background: none;
  border: none;
  color: var(--navy);
  cursor: pointer;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: background 0.2s;
  flex-shrink: 0;
}
.pdf-modal-close:hover {
  background: var(--sand);
}
.pdf-modal-frame {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
}
@media (max-width: 600px) {
  .pdf-modal {
    padding: 0;
    align-items: flex-end;
  }
  .pdf-modal-inner {
    border-radius: 12px 12px 0 0;
    height: 92vh;
    max-width: 100%;
  }
}

/* ── LOADER ────────────────────────────────────────────────────── */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--sand-ll);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
.loader.loader-out {
  opacity: 0;
  pointer-events: none;
}
.loader-svg {
  width: min(420px, 82vw);
  overflow: visible;
}
.lp {
  fill-opacity: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 9999;
  stroke-dashoffset: 9999;
}
.lp-c {
  fill: #6ccbd9;
  stroke: #6ccbd9;
  stroke-width: 2.5;
}
.lp-b {
  fill: #6ccbd9;
  stroke: none;
}
/* Cirkusz: stroke-draw then fill */
.loader-animate .lp-c {
  animation: loaderDraw 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards,
    loaderFill 0.35s ease-in forwards;
}
/* Cirkusz — C (child 6) draws first, then i, r, k, usz */
.loader-animate .lp-c:nth-child(6) {
  animation-delay: 0s, 1.3s;
}
.loader-animate .lp-c:nth-child(1) {
  animation-delay: 0.12s, 1.3s;
}
.loader-animate .lp-c:nth-child(2) {
  animation-delay: 0.24s, 1.3s;
}
.loader-animate .lp-c:nth-child(3) {
  animation-delay: 0.36s, 1.3s;
}
.loader-animate .lp-c:nth-child(4) {
  animation-delay: 0.48s, 1.3s;
}
.loader-animate .lp-c:nth-child(5) {
  animation-delay: 0.6s, 1.3s;
}
/* Budapest: simple fade-in, letter by letter, no draw phase */
.loader-animate .lp-b {
  animation: loaderFill 0.25s ease-out forwards;
}
.loader-animate .lp-b:nth-child(7) {
  animation-delay: 1.35s;
}
.loader-animate .lp-b:nth-child(8) {
  animation-delay: 1.45s;
}
.loader-animate .lp-b:nth-child(9) {
  animation-delay: 1.55s;
}
.loader-animate .lp-b:nth-child(10) {
  animation-delay: 1.65s;
}
.loader-animate .lp-b:nth-child(11) {
  animation-delay: 1.75s;
}
.loader-animate .lp-b:nth-child(12) {
  animation-delay: 1.85s;
}
.loader-animate .lp-b:nth-child(13) {
  animation-delay: 1.95s;
}
.loader-animate .lp-b:nth-child(14) {
  animation-delay: 2.05s;
}
@keyframes loaderDraw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes loaderFill {
  to {
    fill-opacity: 1;
  }
}
