:root {
  --ink: #171116;
  --muted: #6d646b;
  --paper: #fffaf7;
  --surface: #fff;
  --card: #fff;
  --soft: #f6ece8;
  --rose: #a4002a;
  --rose-dark: #730022;
  --blue: #08a0df;
  --mint: #86d3c5;
  --gold: #c4934f;
  --line: rgba(23, 17, 22, 0.12);
  --header-bg: rgba(255, 250, 247, 0.82);
  --nav-text: #31272f;
  --nav-hover: #fff;
  --testimonials-bg: linear-gradient(180deg, var(--paper), #f0fbf8);
  --footer-bg: #120e12;
  --footer-text: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(44, 24, 34, 0.16);
  --map-filter: grayscale(0.2) contrast(1.1);
  color-scheme: light;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: Manrope, Arial, sans-serif;
}

body[data-theme="dark"] {
  --ink: #fff8f3;
  --muted: #cbbfc6;
  --paper: #110d10;
  --surface: #171116;
  --card: #21181f;
  --soft: #2a1f27;
  --rose: #cf1748;
  --rose-dark: #8e062e;
  --blue: #55c4ee;
  --mint: #8ee1d2;
  --gold: #d8ae68;
  --line: rgba(255, 248, 243, 0.14);
  --header-bg: rgba(17, 13, 16, 0.82);
  --nav-text: #fff8f3;
  --nav-hover: rgba(255, 248, 243, 0.1);
  --testimonials-bg: linear-gradient(180deg, #110d10, #171116);
  --footer-bg: #080608;
  --footer-text: rgba(255, 248, 243, 0.72);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  --map-filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(1.1);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.5;
  transition: background-color 180ms ease, color 180ms ease;
  cursor: none;
}

a, button, input, select, textarea {
  cursor: none;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  padding: 14px clamp(18px, 4vw, 58px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 154px;
  height: 54px;
  object-fit: contain;
  object-position: center;
}

.logo-dark {
  display: none;
}

body[data-theme="dark"] .logo-light {
  display: none;
}

body[data-theme="dark"] .logo-dark {
  display: block;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-left {
  justify-self: end;
}

.nav-right {
  justify-self: start;
}

.nav-group a,
.theme-toggle {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--nav-text);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.nav-group a:active,
.theme-toggle:active {
  transform: scale(0.96);
}

.nav-group a:hover,
.nav-group a:focus-visible,
.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: var(--nav-hover);
  outline: 2px solid transparent;
}

.nav-group .nav-cta {
  color: #fff;
  background: var(--rose);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.theme-toggle {
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  justify-content: center;
  width: 46px;
  padding: 0;
}

.theme-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.theme-icon-moon {
  display: none;
}

body[data-theme="light"] .theme-icon-sun {
  display: none;
}

body[data-theme="light"] .theme-icon-moon {
  display: inline;
}

.hero {
  min-height: 94vh;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 130px clamp(22px, 5vw, 72px) 58px;
  background:
    linear-gradient(90deg, rgba(23, 17, 22, 0.1) 0%, rgba(23, 17, 22, 0.3) 42%, rgba(23, 17, 22, 0.78) 100%),
    linear-gradient(180deg, rgba(23, 17, 22, 0.08), rgba(23, 17, 22, 0.24)),
    url("assets/reenz-bridal-wide-clean.jpg") center / cover no-repeat fixed;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  color: #fff;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(4.4rem, 14vw, 11rem);
  letter-spacing: -0.03em;
  background: linear-gradient(to right, #fff 20%, var(--gold) 50%, #fff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 5s linear infinite;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

h2 {
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

h3 {
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 32px;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #fff;
  background: var(--rose);
}

.button.primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 8px 20px rgba(164, 0, 42, 0.3);
}

body[data-theme="dark"] .button.primary:hover {
  box-shadow: 0 8px 20px rgba(207, 23, 72, 0.3);
}

.button.secondary {
  color: var(--ink);
  background: var(--card);
  border-color: rgba(23, 17, 22, 0.16);
}

.button.secondary:hover {
  box-shadow: 0 8px 20px rgba(23, 17, 22, 0.08);
}

body[data-theme="dark"] .button.secondary:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.hero .eyebrow {
  color: #8ee1d2;
}

.hero .button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero-panel {
  align-self: end;
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 50px rgba(39, 17, 26, 0.12);
}

.hero-panel img {
  width: 220px;
}

.hero-panel strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 2rem;
}

.hero-panel span {
  color: var(--muted);
}

.section-pad {
  padding: clamp(72px, 10vw, 120px) clamp(22px, 5vw, 72px);
}

.intro {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: clamp(26px, 6vw, 86px);
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

.image-story {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.85fr) 1fr;
  gap: 16px;
  padding: 18px clamp(22px, 5vw, 72px) clamp(72px, 8vw, 104px);
  background: var(--surface);
}

.image-story figure {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
}

.image-story img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.image-story figure:hover img {
  transform: scale(1.05);
}

.image-story figure:nth-child(1) img {
  object-position: center 28%;
}

.image-story figure:nth-child(2) img {
  object-position: center;
}

.image-story figure:nth-child(3) img {
  object-position: center 24%;
}

.image-story figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border-radius: 999px;
  padding: 0 14px;
  color: #fff;
  background: rgba(23, 17, 22, 0.68);
  font-size: 0.86rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.intro h2,
.section-heading h2,
.story-copy h2,
.brows-text h2,
.contact h2 {
  margin-bottom: 18px;
}

.intro p,
.brows-text p,
.story-copy p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.services {
  background: var(--paper);
}

.service-grid,
.quote-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.quote-grid figure,
.location-card {
  min-height: 220px;
  margin: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--card);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover,
.quote-grid figure:hover,
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card span.service-icon {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--gold);
}

.service-card p,
.location-card p,
.quote-grid blockquote {
  color: var(--muted);
}

.brows {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(70px, 10vw, 130px) clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(125deg, rgba(23, 17, 22, 0.96), rgba(115, 0, 34, 0.9)),
    #25111b;
}

.brows .eyebrow,
.contact .eyebrow {
  color: #8ee1d2;
}

.brows-text p {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: #fff;
  font-weight: 900;
  text-underline-offset: 7px;
}

.brow-visual {
  position: relative;
  min-height: 400px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--card);
  box-shadow: var(--shadow);
}

.brow-visual img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.brow-visual:hover img {
  transform: scale(1.04);
}

.story {
  display: grid;
  grid-template-columns: minmax(260px, 440px) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: center;
  background: var(--surface);
}

.story-media {
  max-height: 640px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  position: relative;
}

.story-media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23, 17, 22, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.story-media:hover .story-media-overlay {
  opacity: 1;
}

.story-media-overlay .read-text {
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 24px;
  border: 2px solid var(--gold);
  border-radius: 999px;
  transform: translateY(10px);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  background: rgba(23, 17, 22, 0.6);
}

.story-media:hover .read-text {
  transform: translateY(0);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-media:hover img {
  transform: scale(1.04);
}

blockquote {
  margin: 0;
}

.story-copy blockquote {
  max-width: 620px;
  margin-top: 28px;
  padding-left: 22px;
  border-left: 5px solid var(--rose);
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.testimonials {
  background: var(--testimonials-bg);
}

.quote-grid figure {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.quote-grid blockquote {
  font-size: 1.08rem;
}

.quote-grid figcaption {
  color: var(--gold);
  font-weight: 900;
}

/* Carousel */
.carousel-wrapper {
  overflow: hidden;
  margin: 0 -22px;
  padding: 0 22px 30px;
}
.carousel-track {
  display: flex !important;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar {
  display: none;
}
.carousel-slide {
  flex: 0 0 85%;
  max-width: 420px;
  scroll-snap-align: center;
}
@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 45%;
  }
}
@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 30%;
  }
}

.locations {
  background: var(--surface);
  text-align: center;
}

.locations .section-heading {
  margin-left: auto;
  margin-right: auto;
}

.location-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.location-card {
  min-height: 240px;
  text-align: left;
  flex: 1 1 300px;
  max-width: 400px;
  padding: 32px;
  border-radius: 8px;
  background: var(--card);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.location-card h3 {
  font-family: var(--display);
  font-size: 1.7rem;
}

.location-card a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--rose);
  font-weight: 900;
  text-decoration: none;
}

.hours {
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 24px;
  align-items: center;
  padding: clamp(54px, 8vw, 82px) clamp(22px, 5vw, 72px);
  color: #fff;
  background:
    linear-gradient(115deg, rgba(115, 0, 34, 0.97), rgba(23, 17, 22, 0.94)),
    var(--rose-dark);
}

.contact-actions {
  justify-content: flex-end;
}

.expanded-footer {
  display: block;
  padding: 70px clamp(22px, 5vw, 72px) 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img { width: 160px; margin-bottom: 20px; display: block; }
.footer-brand p { color: var(--footer-text); max-width: 320px; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 14px; }
.footer-links h4, .footer-newsletter h4 {
  color: #fff;
  margin-bottom: 16px;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 600;
}
.footer-links a {
  color: var(--footer-text);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-links a:hover { color: var(--gold); }
.footer-newsletter p { color: var(--footer-text); margin-bottom: 16px; font-size: 0.95rem; }
.newsletter-form {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.newsletter-form input {
  background: transparent;
  border: none;
  color: #fff;
  padding: 12px 0;
  flex-grow: 1;
  outline: none;
  font-family: var(--body);
}
.newsletter-form button {
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 1.4rem;
  cursor: none;
  padding: 0 10px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.9rem;
}
.footer-actions { display: flex; gap: 16px; align-items: center; }

@media (max-width: 900px) {
  .site-header {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .nav-group {
    position: absolute;
    left: 18px;
    right: 18px;
    width: auto;
    justify-self: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--card);
    box-shadow: var(--shadow);
  }

  .nav-left {
    top: calc(100% + 10px);
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 16px 34px rgba(39, 17, 26, 0.08);
  }

  .nav-right {
    top: calc(100% + 114px);
    border-top: 0;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 24px 50px rgba(39, 17, 26, 0.14);
  }

  .site-header.nav-open .nav-group {
    display: flex;
  }

  .nav-group a {
    justify-content: center;
    border-radius: 6px;
  }

  .intro,
  .brows,
  .story,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 720px;
    padding-top: 118px;
    justify-content: flex-start;
    background:
      linear-gradient(90deg, rgba(23, 17, 22, 0.78) 0%, rgba(23, 17, 22, 0.45) 55%, rgba(23, 17, 22, 0.18) 100%),
      linear-gradient(180deg, rgba(23, 17, 22, 0.08), rgba(23, 17, 22, 0.34)),
      url("assets/reenz-bridal-wide-clean.jpg") 54% center / cover no-repeat fixed;
  }

  .image-story {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .quote-grid,
  .location-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .brand img {
    width: 132px;
  }

  h1 {
    font-size: clamp(4rem, 24vw, 6.8rem);
  }

  .section-pad,
  .image-story,
  .brows,
  .contact {
    padding-left: 18px;
    padding-right: 18px;
  }

  .service-grid,
  .image-story,
  .quote-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .quote-grid figure,
  .location-card {
    min-height: auto;
  }

  .image-story figure,
  .brow-visual {
    min-height: 310px;
  }

  .brow-visual img {
    min-height: 310px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 20px;
  }
  body, a, button, input, select, textarea { cursor: auto; }
  .custom-cursor { display: none; }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 100;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background-color 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
  background-color: #20ba56;
}

@media (max-width: 620px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  
  .whatsapp-float svg {
    width: 24px;
    height: 24px;
  }
}

/* Custom Cursor */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease, background-color 0.2s ease;
}
.custom-cursor.hover {
  width: 48px;
  height: 48px;
  background-color: rgba(196, 147, 79, 0.15);
}

/* Modal Styles */
.article-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.article-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-content {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  border-radius: 12px;
  overflow-y: auto;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  border: 1px solid var(--line);
}

.article-modal.is-open .modal-content {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal-close:hover {
  background: var(--gold);
  color: #fff;
  transform: rotate(90deg);
}

.modal-body {
  padding: 40px clamp(24px, 5vw, 56px);
}

.modal-body h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 24px;
  padding-right: 40px;
}

.modal-body p {
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--muted);
}

.modal-body p strong {
  color: var(--ink);
  font-size: 1.15rem;
}

/* Service Menu */
.menu {
  background: var(--surface);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.menu-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  padding: 26px;
  min-height: 220px;
  margin: 0;
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.menu-card h3 {
  margin: 0 0 12px 0;
  font-family: var(--display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}

.menu-card p {
  color: var(--muted);
  flex-grow: 1;
}

.menu-subcategory {
  margin: 28px 0 16px 0;
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--rose);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.menu-subcategory:first-child {
  margin-top: 8px;
}

.menu-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: rgba(142, 225, 210, 0.1);
  color: var(--gold);
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.menu-card:hover .menu-icon {
  background: var(--gold);
  color: var(--ink);
  transform: scale(1.1);
}

.menu-icon svg {
  width: 24px;
  height: 24px;
}

.action-text {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--gold);
  font-size: 0.95rem;
  transition: transform 0.3s ease;
}

.menu-card:hover .action-text {
  transform: translateX(4px);
}

.menu-content {
  padding: 0 24px 24px;
}

.menu-disclaimer {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 16px;
}

.menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.menu-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--muted);
}

.menu-list li:last-child {
  border-bottom: none;
}

.item-name {
  font-weight: 600;
  color: var(--ink);
}

.item-price {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}

/* Celebrities Marquee */
.celebs {
  background: var(--paper);
  padding: 80px 0;
  overflow: hidden;
}

.marquee-container {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
  gap: 32px;
  padding: 10px 0;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.celeb-card {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.celeb-card:hover {
  transform: translateY(-8px);
}

.celeb-card img {
  width: 200px;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 3px solid var(--gold);
  box-shadow: var(--shadow);
}

.celeb-card p {
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 16px)); /* 50% of track minus half gap */
  }
}

/* FAQ Section */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.faq-question {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 40px;
  transition: color 0.3s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding-top: 16px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.faq-item[open] .faq-question {
  color: var(--rose);
}

/* Scroll Animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Staggering for lists */
.menu-card:nth-child(2) { transition-delay: 0.1s; }
.menu-card:nth-child(3) { transition-delay: 0.2s; }
.menu-card:nth-child(4) { transition-delay: 0.3s; }
.location-card:nth-child(2) { transition-delay: 0.2s; }
.faq-item:nth-child(2) { transition-delay: 0.1s; }
.faq-item:nth-child(3) { transition-delay: 0.2s; }
.faq-item:nth-child(4) { transition-delay: 0.3s; }
.faq-item:nth-child(5) { transition-delay: 0.4s; }

/* Dark Mode Maps */
.styled-map {
  filter: var(--map-filter);
  transition: filter 0.5s ease;
}
