:root {
  --container: min(1180px, calc(100% - 48px));
  --bg: #ffffff;
  --bg-soft: #f5f5f6;
  --bg-dark: #1f1f21;
  --bg-darker: #121214;
  --surface: #ffffff;
  --surface-dark: #2a2a2d;
  --text: #27272a;
  --text-soft: #67676d;
  --text-invert: #f4f4f5;
  --line: #d7d7db;
  --line-dark: rgba(255,255,255,.14);
  --accent: #4a4a50;
  --accent-2: #7e7e86;
  --shadow: 0 18px 50px rgba(16,16,18,.10);
  --radius: 22px;
  --radius-sm: 16px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.skip-link {
  position: absolute;
  left: 10px;
  top: -50px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--bg-dark);
  color: white;
  z-index: 9999;
}
.skip-link:focus { top: 10px; }

.section, .section-soft, .section-dark {
  padding: 104px 0;
}
.section-soft { background: var(--bg-soft); }
.section-dark {
  color: var(--text-invert);
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
}
.section-heading {
  max-width: 760px;
  margin-bottom: 44px;
}
.section-heading.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-heading.light p,
.section-heading.light h2 { color: var(--text-invert); }
.section-kicker,
.eyebrow {
  margin: 0 0 10px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
}
.section-dark .section-kicker,
.section-dark .eyebrow,
.light { color: rgba(255,255,255,.70); }
.section-heading h2,
.story-copy h2,
.celebrations-copy h2,
.booking-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.3rem, 4vw, 4rem);
  line-height: .96;
}
.section-heading p:last-child,
.section-note,
.story-copy p,
.branch-body p,
.moment-card p,
.value-card p,
.product-body p,
.booking-copy p,
.footer-brand p {
  color: var(--text-soft);
}
.section-dark .booking-copy p,
.section-dark .value-card p,
.section-dark .section-heading p:last-child { color: rgba(255,255,255,.70); }
.lead {
  font-size: 1.08rem;
  color: var(--text);
}
blockquote {
  margin: 28px 0 0;
  padding-left: 22px;
  border-left: 3px solid var(--accent);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--accent);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  border-color: rgba(31,31,33,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}
.header-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 360px;
  max-width: min(42vw, 360px);
  height: auto;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-nav a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4e4e56;
}
.main-nav a:hover,
.main-nav a:focus-visible,
.text-link:hover { color: var(--bg-dark); }
.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #333339;
  background: #333339;
  color: #fff !important;
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #333339;
  transition: transform .2s ease, opacity .2s ease;
}

/* Hero / carousel */
.hero,
.carousel,
.hero-content { min-height: 95vh; }
.hero { position: relative; }
.carousel { position: relative; overflow: hidden; }
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility .7s ease;
}
.carousel-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.carousel-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,18,20,.70) 0%, rgba(18,18,20,.45) 50%, rgba(18,18,20,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #fff;
  padding-top: 108px;
}
.hero-content h1,
.hero-content h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: .88;
  font-size: clamp(3.8rem, 7vw, 7rem);
}
.hero-content span { color: #d6d6da; }
.hero-content p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 1.02rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: #ececef;
  border: 1px solid #ececef;
  color: #1f1f21;
}
.button-secondary,
.button-dark {
  background: #323238;
  border: 1px solid #323238;
  color: #fff;
}
.button-ghost {
  background: transparent;
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
}
.button-ghost:hover { background: rgba(255,255,255,.10); }
.carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(6px);
}
.carousel-prev { left: 24px; }
.carousel-next { right: 24px; }
.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 3;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}
.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.40);
  cursor: pointer;
}
.carousel-dots button.is-active { background: #fff; }

/* Story */
.story-grid,
.celebrations-grid,
.booking-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.story-art img,
.celebrations-art img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.story-copy { max-width: 580px; }

/* Dark values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.value-card {
  min-height: 220px;
  padding: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.04);
}
.value-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.09);
  color: #d9d9de;
  font-size: .84rem;
  font-weight: 700;
}
.value-card h3,
.moment-card h3,
.product-body h3,
.branch-body h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

/* Moments */
.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.moment-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 10px 30px rgba(20,20,22,.04);
}

/* Branches */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.branch-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.branch-image {
  position: relative;
  min-height: 320px;
}
.branch-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}
.branch-label {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  color: #2c2c31;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.branch-body { padding: 30px; }
.branch-tagline {
  margin: 0 0 8px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--accent-2) !important;
}
.branch-data {
  display: grid;
  gap: 14px;
  margin: 22px 0 28px;
}
.branch-data div {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.branch-data dt {
  font-size: .80rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: #4f4f57;
}
.branch-data dd { margin: 0; color: var(--text-soft); }
.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.text-link {
  font-size: .90rem;
  font-weight: 700;
  color: #404048;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 34px;
}
.filter-button {
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: #4d4d54;
  font-weight: 700;
  cursor: pointer;
}
.filter-button.is-active,
.filter-button:hover {
  background: #333339;
  border-color: #333339;
  color: #fff;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  padding: 0;
  text-align: left;
  background: #dedee2;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.64));
}
.gallery-meta {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #fff;
}
.gallery-meta strong {
  font-size: .95rem;
  line-height: 1.2;
}
.gallery-meta small {
  font-size: .72rem;
  color: rgba(255,255,255,.82);
}
.gallery-item[hidden] { display: none !important; }

/* Celebrations */
.feature-list {
  margin: 22px 0 30px;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--text-soft);
}
.feature-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

/* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(16,16,18,.06);
}
.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.product-body { padding: 22px; }
.product-tag {
  margin: 0 0 10px;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-2) !important;
}

/* Booking */
.booking-inner { align-items: start; }
.booking-options {
  display: grid;
  gap: 18px;
}
.booking-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding: 24px 28px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.05);
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.booking-card:hover {
  transform: translateX(4px);
  background: rgba(255,255,255,.08);
}
.booking-card strong {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
}
.booking-card span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
}
.whatsapp-card { border-color: rgba(162, 207, 176, .24); }

/* Footer */
.site-footer {
  padding: 80px 0 24px;
  background: #0f1012;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 38px;
}
.footer-brand img {
  width: 240px;
  max-width: 100%;
  margin-bottom: 18px;
}
.site-footer h2 {
  margin: 0 0 16px;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}
.site-footer p,
.site-footer li,
.site-footer a {
  color: rgba(255,255,255,.68);
  font-size: .90rem;
}
.site-footer ul { margin: 0; padding: 0; list-style: none; }
.site-footer li { margin-bottom: 10px; }
.site-footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,.62); }

/* Floating WA */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: .82rem;
  font-weight: 800;
  box-shadow: 0 15px 36px rgba(0,0,0,.24);
}

/* Lightbox */
.lightbox {
  width: min(1080px, calc(100% - 30px));
  max-height: calc(100vh - 30px);
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #09090b;
  color: #fff;
  overflow: hidden;
}
.lightbox::backdrop {
  background: rgba(0,0,0,.84);
  backdrop-filter: blur(6px);
}
.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #000;
}
.lightbox p {
  margin: 0;
  padding: 16px 22px 20px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,.68);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 1120px) {
  .values-grid,
  .moments-grid,
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  :root { --container: min(100% - 30px, 760px); }
  .section, .section-soft, .section-dark { padding: 84px 0; }
  .menu-toggle { display: block; position: relative; z-index: 1002; }
  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 1001;
    display: grid;
    place-items: center;
    background: rgba(15,16,18,.98);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
  }
  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 24px;
  }
  .main-nav a {
    color: #fff;
    font-size: 1rem;
  }
  .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); }
  .hero, .carousel, .hero-content { min-height: 720px; }
  .hero-content {
    align-items: center;
    text-align: center;
    padding-top: 120px;
  }
  .hero-actions { justify-content: center; }
  .carousel-arrow {
    top: auto;
    bottom: 78px;
    transform: none;
  }
  .story-grid,
  .celebrations-grid,
  .booking-inner,
  .branch-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 230px; }
}

@media (max-width: 620px) {
  :root { --container: calc(100% - 24px); }
  .header-inner { min-height: 88px; }
  .brand img { width: 230px; max-width: 66vw; }
  .hero, .carousel, .hero-content { min-height: 660px; }
  .hero-content h1, .hero-content h2 { font-size: clamp(3rem, 12vw, 4.6rem); }
  .hero-actions { width: 100%; }
  .hero-actions .button { width: 100%; }
  .values-grid,
  .moments-grid,
  .product-grid,
  .footer-grid,
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-wide,
  .gallery-tall { grid-column: auto; grid-row: auto; }
  .branch-body { padding: 24px 20px; }
  .branch-data div { grid-template-columns: 1fr; gap: 4px; }
  .booking-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
