:root {
  --bg: #f3ede3;
  --bg-soft: #fbf7f2;
  --bg-deep: #e5d7c7;
  --paper: rgba(255, 251, 245, 0.76);
  --paper-strong: rgba(255, 250, 244, 0.92);
  --ink: #1f1712;
  --muted: #67584e;
  --muted-strong: #4f4239;
  --line: rgba(103, 82, 64, 0.18);
  --line-strong: rgba(103, 82, 64, 0.32);
  --accent: #b55339;
  --accent-deep: #8d3f2b;
  --accent-soft: rgba(181, 83, 57, 0.12);
  --accent-text: #fff7f2;
  --whatsapp: #25d366;
  --whatsapp-deep: #128c7e;
  --whatsapp-soft: rgba(37, 211, 102, 0.14);
  --whatsapp-text: #f6fffa;
  --danger: #9d3c30;
  --shadow-soft: 0 20px 50px -32px rgba(66, 43, 28, 0.34);
  --shadow-lift: 0 36px 90px -46px rgba(66, 43, 28, 0.48);
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;
  --space-section: clamp(3.5rem, 7vw, 7rem);
  --space-grid: clamp(0.85rem, 1.6vw, 1.5rem);
  --focus-ring: 0 0 0 3px rgba(181, 83, 57, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
  background:
    linear-gradient(140deg, rgba(255, 251, 245, 0.74), rgba(239, 230, 220, 0.84)),
    linear-gradient(180deg, #fbf7f1 0%, #f3eadf 42%, #e7d7c4 100%);
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(181, 83, 57, 0.14), transparent 28%),
    radial-gradient(circle at 84% 18%, rgba(180, 135, 87, 0.16), transparent 24%),
    radial-gradient(circle at 70% 82%, rgba(181, 83, 57, 0.09), transparent 32%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    linear-gradient(90deg, rgba(118, 88, 68, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(118, 88, 68, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

body[data-page="about"]::before {
  background:
    radial-gradient(circle at 12% 12%, rgba(127, 74, 52, 0.16), transparent 30%),
    radial-gradient(circle at 85% 16%, rgba(183, 143, 94, 0.18), transparent 24%),
    radial-gradient(circle at 68% 82%, rgba(104, 69, 51, 0.14), transparent 30%);
}

body[data-page="gallery"]::before {
  background:
    radial-gradient(circle at 8% 16%, rgba(181, 83, 57, 0.18), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(93, 65, 49, 0.18), transparent 28%),
    radial-gradient(circle at 65% 80%, rgba(181, 122, 57, 0.12), transparent 32%);
}

body[data-page="contact"]::before {
  background:
    radial-gradient(circle at 10% 12%, rgba(181, 83, 57, 0.12), transparent 24%),
    radial-gradient(circle at 82% 20%, rgba(181, 145, 102, 0.18), transparent 28%),
    radial-gradient(circle at 78% 82%, rgba(82, 60, 49, 0.14), transparent 30%);
}

body.is-lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main img {
  cursor: zoom-in;
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    filter 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

main img:hover {
  transform: scale(1.035);
  filter: saturate(1.06) brightness(1.01);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Cormorant Garamond", "Outfit", serif;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.8rem, 3.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
}

p {
  margin: 0;
}

::selection {
  background: rgba(181, 83, 57, 0.16);
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.container {
  width: min(1380px, calc(100% - 2rem));
  margin-inline: auto;
}

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 60;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-deep), var(--accent));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: 1rem;
  transition: padding-top 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  padding-top: 0.5rem;
}

.header-shell {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 1rem;
  padding: 0.72rem 0.9rem 0.72rem 1.25rem;
  border: 1px solid rgba(114, 89, 68, 0.18);
  border-radius: 999px;
  background: rgba(255, 248, 242, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 1px 2px rgba(68, 46, 30, 0.06),
    0 12px 28px -20px rgba(68, 46, 30, 0.32);
  backdrop-filter: blur(20px) saturate(1.4);
}

.header-shell::before {
  content: "";
  position: absolute;
  inset: 0.36rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  pointer-events: none;
}

.site-header.is-scrolled .header-shell {
  background: rgba(255, 249, 244, 0.94);
  border-color: rgba(114, 89, 68, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 1px 2px rgba(58, 38, 24, 0.05),
    0 16px 40px -24px rgba(58, 38, 24, 0.28);
}

.brand {
  display: grid;
  gap: 0.18rem;
  line-height: 1;
}

.brand-main {
  font-size: 1.38rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand-sub {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(79, 66, 57, 0.76);
}

.nav-toggle {
  display: none;
  padding: 0.55rem 0.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 0.8rem;
  background: rgba(255, 249, 244, 0.84);
  color: var(--ink);
}

.nav-toggle svg {
  width: 1rem;
  height: 1rem;
}

.nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.nav-list > a,
.nav-dropdown-toggle {
  padding: 0.55rem 0.82rem;
  border: 0;
  border-radius: 0.72rem;
  background: transparent;
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    background-color 0.24s ease,
    color 0.24s ease,
    transform 0.24s ease;
}

.nav-list > a:hover,
.nav-list > a:focus-visible,
.nav-list > a.is-active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle.is-active {
  color: var(--accent);
  background: rgba(181, 83, 57, 0.1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.7rem);
  left: 0;
  display: grid;
  gap: 0.35rem;
  min-width: 15rem;
  padding: 0.7rem;
  border: 1px solid rgba(114, 89, 68, 0.2);
  border-radius: 1rem;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-menu a {
  padding: 0.72rem 0.84rem;
  border-radius: 0.82rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 600;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a:focus-visible,
.nav-dropdown-menu a.is-active {
  background: rgba(181, 83, 57, 0.1);
  color: var(--accent);
  transform: translateX(2px);
}

.header-cta,
.button-accent,
.button-whatsapp,
.button-line,
.lightbox-controls button,
.lightbox-close,
.filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.82rem 1.08rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.24s ease,
    border-color 0.24s ease,
    color 0.24s ease;
}

.header-cta,
.button-accent,
.button-whatsapp {
  border: 1px solid transparent;
  color: var(--accent-text);
  box-shadow: 0 14px 28px -24px rgba(141, 63, 43, 0.42);
}

.header-cta,
.button-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.button-whatsapp {
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.9), rgba(18, 140, 126, 0.9));
  color: var(--whatsapp-text);
  box-shadow: 0 14px 30px -24px rgba(18, 140, 126, 0.4);
}

.header-cta {
  min-height: 2.8rem;
  padding-inline: 1rem;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  border-color: rgba(18, 140, 126, 0.18);
  background: rgba(37, 211, 102, 0.08);
  color: var(--whatsapp-deep);
  box-shadow: none;
}

.button-line,
.filter-button,
.lightbox-controls button,
.lightbox-close {
  border: 1px solid var(--line-strong);
  background: rgba(255, 249, 244, 0.84);
  color: var(--ink);
}

.header-cta:hover,
.button-accent:hover,
.button-whatsapp:hover,
.button-line:hover,
.filter-button:hover,
.lightbox-controls button:hover,
.lightbox-close:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px -8px rgba(66, 43, 28, 0.22);
}

.header-cta:active,
.button-accent:active,
.button-whatsapp:active,
.button-line:active,
.filter-button:active,
.lightbox-controls button:active,
.lightbox-close:active {
  transform: translateY(1px) scale(0.982);
  box-shadow: none;
}

.page-main {
  padding-bottom: 4rem;
  overflow: clip;
}

.page-hero {
  padding-block: clamp(2.6rem, 6vw, 5rem) clamp(3rem, 6vw, 5.5rem);
}

.page-hero--inner {
  padding-block: clamp(2rem, 4.5vw, 3.5rem) clamp(2.8rem, 5vw, 4.8rem);
}

/* contact: no grid, just stacked text */
.page-hero--compact {
  padding-block: clamp(3rem, 6vw, 5rem) clamp(2.4rem, 4vw, 4rem);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  align-items: center;
  gap: clamp(1.8rem, 4vw, 4rem);
}

.page-hero-copy {
  display: grid;
  gap: 1.15rem;
  max-width: 36rem;
}

.page-hero-copy h1 {
  max-width: 18ch;
  text-wrap: balance;
}

/* ── HOME HERO (full-bleed cinematic) ── */
.home-hero {
  position: relative;
  min-height: clamp(32rem, 80vh, 50rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.home-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-hero.is-visible .home-hero__media img {
  transform: scale(1);
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      0deg,
      rgba(22, 14, 9, 0.92) 0%,
      rgba(22, 14, 9, 0.62) 30%,
      rgba(22, 14, 9, 0.18) 60%,
      rgba(22, 14, 9, 0.04) 100%
    ),
    linear-gradient(
      120deg,
      rgba(22, 14, 9, 0.32) 0%,
      transparent 50%
    );
}

/* fine grain texture over hero image */
.home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.home-hero__content {
  position: relative;
  z-index: 2;
  padding-block: clamp(5rem, 12vw, 8rem) clamp(2.8rem, 5vw, 4rem);
  display: grid;
  gap: 2.4rem;
}

.home-hero__copy {
  display: grid;
  gap: 1.2rem;
  max-width: 40rem;
}

.home-hero__copy .kicker {
  color: rgba(255, 244, 237, 0.6);
  margin-bottom: 0;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
}

.home-hero__copy h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #fffaf6;
  text-wrap: balance;
  text-shadow: 0 2px 32px rgba(22, 14, 9, 0.35);
}

.home-hero__copy .lead {
  color: rgba(255, 244, 237, 0.78);
  max-width: 32rem;
  font-size: clamp(0.92rem, 1.3vw, 1.06rem);
  line-height: 1.72;
}

.home-hero__copy .hero-actions .button-line {
  color: rgba(255, 244, 237, 0.92);
  border-color: rgba(255, 244, 237, 0.3);
  background: rgba(255, 244, 237, 0.06);
}

.home-hero__copy .hero-actions .button-line:hover {
  background: rgba(255, 244, 237, 0.14);
  border-color: rgba(255, 244, 237, 0.5);
}

.home-hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 244, 237, 0.42);
}

.home-hero__proof span {
  position: relative;
  padding-left: 0.9rem;
}

.home-hero__proof span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(181, 83, 57, 0.6);
  transform: translateY(-50%);
}

.home-hero__proof span:first-child {
  padding-left: 0;
}

.home-hero__proof span:first-child::before {
  display: none;
}

.kicker {
  margin-bottom: 0.15rem;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.lead,
.section-copy,
.panel p,
.process-card p,
.city-card p,
.city-detail__item p,
.service-body p,
.editorial-copy p,
.cta-band p,
.map-shell p,
.state-panel p,
.helper,
.gallery-item figcaption {
  max-width: 60ch;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.76;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  padding-top: 0.35rem;
}

.hero-actions > a,
.hero-actions > button {
  flex: 0 1 auto;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-facts span {
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(114, 89, 68, 0.14);
  border-radius: 999px;
  background: rgba(255, 251, 246, 0.72);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero-media-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(18rem, 24rem) minmax(9rem, 12rem);
  gap: 1rem;
}

.hero-media-stack:has(.hero-card--primary:only-child) {
  grid-template-columns: 1fr;
  grid-template-rows: minmax(20rem, 28rem);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.3rem, 2.6vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-lift);
  background: rgba(255, 248, 243, 0.64);
}

.hero-card img {
  object-position: center;
}

.hero-card::after,
.service-card::after,
.panel::after,
.gallery-item::after,
.map-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 50%), rgba(255, 255, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.hero-card:hover::after,
.service-card.is-hot::after,
.panel.is-hot::after,
.gallery-item.is-hot::after,
.map-shell.is-hot::after {
  opacity: 1;
}

.hero-card--primary {
  grid-column: 1 / 3;
  grid-row: 1 / 2;
}

.hero-card--secondary {
  transform: translateY(1rem);
}

.hero-card--accent {
  transform: translateY(2rem);
}

body[data-page="about"] .hero-media-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

body[data-page="gallery"] .hero-media-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(17rem, 21rem) minmax(10rem, 12rem);
}

body[data-page="gallery"] .hero-card--primary {
  grid-column: 1 / 3;
}

body[data-page="about"] .hero-card--primary img {
  object-position: center 34%;
}

body[data-page="destination-weddings"] .hero-card--primary img {
  object-position: center 48%;
}

body[data-page="gallery"] .hero-card--primary img {
  object-position: center 46%;
}

body[data-page="contact"] .hero-card--primary img {
  object-position: center 40%;
}

body[data-page="venue-selection"] .hero-card--primary img {
  object-position: center 56%;
}

.section {
  padding-block: var(--space-section);
}

.section--dense {
  padding-top: 1.8rem;
}

.section--tint {
  position: relative;
}

.section--tint::before {
  content: "";
  position: absolute;
  inset: 0.8rem 0;
  z-index: -1;
  border: 1px solid rgba(114, 89, 68, 0.09);
  border-radius: calc(var(--radius-xl) + 0.8rem);
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.72), rgba(245, 236, 227, 0.56));
}

.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: clamp(1.6rem, 3.5vw, 2.8rem);
  align-content: start;
}

.section-head h2 {
  max-width: 28ch;
  text-wrap: balance;
}

.section-head::before {
  content: "";
  width: min(4.5rem, 16vw);
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.page-intro-band {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: var(--space-grid);
  align-items: start;
}

.page-intro-band--reverse {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
}

.page-intro-band__meta {
  display: grid;
  gap: var(--space-grid);
}

.page-promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-grid);
}

.page-promise-grid--wide {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.page-promise--wide {
  grid-column: span 2;
}

.page-promise,
.venue-checkpoint,
.contact-direct__card {
  display: grid;
  align-content: start;
  gap: 0.7rem;
  min-height: 100%;
}

.page-promise .signal-label,
.venue-checkpoint .signal-label,
.contact-direct__card .signal-label {
  display: inline-flex;
  width: fit-content;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--space-grid);
}

.contact-direct__card a:not(.action-link) {
  word-break: break-word;
}

.contact-direct__card--whatsapp {
  background: linear-gradient(145deg, #06331c, #042714);
  border-color: transparent;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 1px 3px rgba(4, 39, 20, 0.12),
    0 12px 36px -20px rgba(4, 39, 20, 0.4);
}

.contact-direct__card--whatsapp p,
.contact-direct__card--whatsapp h3,
.contact-direct__card--whatsapp .kicker,
.contact-direct__card--whatsapp a,
.contact-direct__card--whatsapp .action-link,
.contact-direct__card--whatsapp .action-link::after {
  color: #fff;
}

.contact-direct__card--whatsapp .signal-label {
  color: rgba(255, 255, 255, 0.92);
}

.venue-checklist {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: var(--space-grid);
}

.signal-band,
.panel,
.service-card,
.process-card,
.city-card,
.gallery-item,
.state-panel,
.map-shell,
.cta-band {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(114, 89, 68, 0.1);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 1px 3px rgba(66, 43, 28, 0.06),
    0 12px 36px -20px rgba(66, 43, 28, 0.18);
  backdrop-filter: blur(10px);
}

.panel,
.service-card,
.process-card,
.city-card,
.gallery-item,
.state-panel,
.map-shell {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  transition:
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover,
.city-card:hover,
.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 1px 3px rgba(66, 43, 28, 0.06),
    0 20px 48px -24px rgba(66, 43, 28, 0.22);
}

.panel--statement {
  padding: clamp(1.6rem, 3vw, 2.25rem);
}

/* ── visual break (atmospheric inline image) ── */
.visual-break {
  margin-block: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
}

.visual-break img {
  width: 100%;
  height: clamp(14rem, 30vw, 22rem);
  object-fit: cover;
  display: block;
}

/* ── statement panel with image (split layout) ── */
.panel--visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.panel--visual__text {
  padding: clamp(1.6rem, 3vw, 2.25rem);
  display: flex;
  align-items: center;
}

.panel--visual__media {
  margin: 0;
  line-height: 0;
}

.panel--visual__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 14rem;
}

/* ── service showcase (3-image strip) ── */
.service-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.5rem, 1.2vw, 1rem);
}

.service-showcase figure {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  line-height: 0;
}

.service-showcase img {
  width: 100%;
  height: clamp(12rem, 22vw, 18rem);
  object-fit: cover;
  display: block;
}

.panel--accent,
.cta-band {
  background:
    linear-gradient(145deg, rgba(181, 83, 57, 0.96), rgba(141, 63, 43, 0.96)),
    rgba(141, 63, 43, 0.96);
  border-color: transparent;
  color: var(--accent-text);
}

.panel--accent p,
.panel--accent h3,
.panel--accent .kicker,
.cta-band p {
  color: var(--accent-text);
}

.panel--accent .signal-label,
.contact-direct__card.panel--accent .signal-label {
  color: rgba(255, 244, 237, 0.8);
}

.panel--accent .action-link,
.panel--accent .action-link::after {
  color: var(--accent-text);
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(114, 89, 68, 0.12);
}

.signal-band article {
  display: grid;
  gap: 0.45rem;
  min-height: 100%;
  padding: 1.25rem 1.4rem;
  background: rgba(255, 251, 246, 0.88);
}

.signal-label {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.signal-band a,
.signal-band span:last-child {
  font-weight: 700;
  line-height: 1.55;
  word-break: break-word;
}

.signal-band article:nth-child(2) {
  background: linear-gradient(180deg, rgba(37, 211, 102, 0.08), rgba(255, 251, 246, 0.92));
}

.signal-band article:nth-child(2) a {
  color: var(--whatsapp-deep);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(1.2rem, 3vw, 2rem);
}

.editorial-copy {
  display: grid;
  gap: 1rem;
}

.editorial-panels,
.gallery-preview__stack {
  display: grid;
  gap: var(--space-grid);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: var(--space-grid);
}

.service-card {
  display: grid;
  gap: 1rem;
  grid-column: span 4;
}

.service-card--flagship {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.92), rgba(246, 236, 226, 0.86)),
    rgba(255, 251, 246, 0.88);
  border-color: rgba(181, 83, 57, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 28px 64px -40px rgba(98, 62, 42, 0.42);
}

.service-card--flagship .service-media {
  min-height: 100%;
}

.service-card--flagship .service-body {
  gap: 1rem;
}

.service-card--flagship h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
}

.service-card--flagship::before {
  content: "Flagship Route";
  position: absolute;
  top: 1.15rem;
  right: 1.15rem;
  z-index: 2;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(181, 83, 57, 0.1);
  color: var(--accent-deep);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-card--wide {
  grid-column: span 8;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.service-card--tall {
  grid-column: span 4;
}

.service-media {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.4rem);
}

.service-body {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.action-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent);
  transition: gap 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-link::after {
  content: "\2192";
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.action-link:hover {
  gap: 0.7rem;
}

.action-link:hover::after,
.action-link:focus-visible::after {
  transform: translateX(3px);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-grid);
}

.city-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
  align-items: start;
}

.city-card figure,
.gallery-preview__hero,
.gallery-preview__stack figure,
.city-detail__item figure,
.map-media,
.gallery-item {
  overflow: hidden;
  border-radius: calc(var(--radius-xl) - 0.4rem);
}

.gallery-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: var(--space-grid);
}

.gallery-preview__hero {
  min-height: 30rem;
}

.gallery-preview__stack figure {
  min-height: 14rem;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.2rem, 2.5vw, 1.8rem) clamp(1.4rem, 3vw, 2.2rem);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--space-grid);
  align-items: stretch;
}

.trust-quote {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.trust-quote p:first-of-type {
  font-size: clamp(1.2rem, 1.9vw, 1.7rem);
  line-height: 1.45;
  color: var(--ink);
  max-width: 24ch;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-grid);
}

.trust-note {
  display: grid;
  gap: 0.7rem;
  min-height: 100%;
}

.trust-note h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
}

.trust-note p {
  color: var(--muted);
}

.state-panel {
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.copy-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.55rem;
  color: var(--muted);
  line-height: 1.6;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-grid);
}

.process-card {
  display: grid;
  gap: 0.75rem;
}

.list-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--space-grid);
}

.city-detail {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.1rem);
}

.city-detail__item {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  align-items: center;
  padding-left: 1.2rem;
  border-left: 1px solid rgba(114, 89, 68, 0.12);
}

.city-detail__item--reverse {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
}

.city-detail__item--reverse figure {
  order: 2;
}

.city-detail__item--reverse > div {
  order: 1;
}

.city-detail__item--jodhpur {
  border-left-color: rgba(165, 88, 54, 0.4);
}

.city-detail__item--jaipur {
  border-left-color: rgba(173, 120, 85, 0.42);
}

.city-detail__item--udaipur {
  border-left-color: rgba(111, 129, 142, 0.44);
}

.city-detail__item--jaisalmer {
  border-left-color: rgba(177, 144, 90, 0.46);
}

.city-detail__item--jodhpur .kicker {
  color: #9c4e31;
}

.city-detail__item--jaipur .kicker {
  color: #a76643;
}

.city-detail__item--udaipur .kicker {
  color: #5e6f7e;
}

.city-detail__item--jaisalmer .kicker {
  color: #9a7a38;
}

.filter-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.6rem;
  position: sticky;
  top: 5rem;
  z-index: 12;
  padding: 0.8rem;
  border: 1px solid rgba(114, 89, 68, 0.14);
  border-radius: 1.4rem;
  background: rgba(255, 249, 244, 0.9);
  backdrop-filter: blur(18px);
}

.filter-summary {
  margin-bottom: 1.5rem;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.filter-button.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: var(--accent-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-grid);
}

.gallery-grid--full .gallery-item {
  display: grid;
  gap: 0.85rem;
}

.gallery-item--feature {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item--wide {
  grid-column: span 2;
}

.gallery-item--tall {
  grid-row: span 2;
}

.gallery-grid--full .gallery-item img {
  min-height: 18rem;
}

.gallery-item--feature img,
.gallery-item--tall img {
  min-height: 100%;
}

.gallery-item figcaption {
  padding-bottom: 0.3rem;
  font-weight: 600;
  line-height: 1.45;
}

.gallery-item.is-hidden {
  display: none;
}

.contact-grid {
  display: grid;
  gap: var(--space-grid);
}

.page-promise .signal-label,
.venue-checkpoint .signal-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.65rem;
  min-height: 2.65rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  letter-spacing: 0.08em;
}

.panel--accent.page-promise .signal-label,
.panel--accent.venue-checkpoint .signal-label {
  background: rgba(255, 244, 237, 0.18);
  color: rgba(255, 244, 237, 0.92);
}

.contact-grid--cards {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.map-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: center;
}

.map-media {
  min-height: 20rem;
}

.site-footer {
  padding: 1.2rem 0 1.6rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(114, 89, 68, 0.12);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(160deg, rgba(68, 48, 36, 0.92), rgba(48, 33, 26, 0.96)),
    rgba(48, 33, 26, 0.95);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 -1px 0 rgba(255, 255, 255, 0.04),
    0 24px 52px -32px rgba(32, 20, 14, 0.5);
}

.footer-grid p,
.footer-grid small,
.footer-grid a,
.footer-grid .kicker {
  color: rgba(252, 247, 243, 0.88);
}

.footer-grid small {
  line-height: 1.6;
  color: rgba(252, 247, 243, 0.52);
}

.footer-grid a:hover {
  color: rgba(252, 247, 243, 1);
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 0.88s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.88s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--d, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* staggered cascade for grid children */
.reveal:nth-child(1) { --d: 0ms; }
.reveal:nth-child(2) { --d: 80ms; }
.reveal:nth-child(3) { --d: 160ms; }
.reveal:nth-child(4) { --d: 240ms; }
.reveal:nth-child(5) { --d: 320ms; }
.reveal:nth-child(6) { --d: 400ms; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(18, 13, 10, 0.74);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

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

.lightbox-frame {
  width: min(72rem, 100%);
  max-height: calc(100dvh - 2rem);
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1.5rem;
  background: rgba(28, 20, 15, 0.96);
  box-shadow: 0 30px 90px -40px rgba(0, 0, 0, 0.9);
}

.lightbox-top,
.lightbox-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.lightbox-copy {
  display: grid;
  gap: 0.2rem;
  color: rgba(255, 247, 241, 0.92);
}

.lightbox-copy span {
  color: rgba(255, 247, 241, 0.7);
}

.lightbox-media {
  overflow: hidden;
  border-radius: 1rem;
}

.lightbox-media img {
  width: 100%;
  max-height: calc(100dvh - 12rem);
  object-fit: contain;
  background: rgba(0, 0, 0, 0.16);
}

@media (max-width: 1120px) {
  .header-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
  }

  .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    width: auto;
  }

  .nav-list {
    position: absolute;
    top: calc(100% + 0.8rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border: 1px solid rgba(114, 89, 68, 0.18);
    border-radius: 1.35rem;
    background: rgba(255, 250, 245, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .nav-list.is-open {
    display: flex;
  }

  .nav-list > a,
  .nav-dropdown-toggle {
    width: 100%;
    text-align: left;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.5rem;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: rgba(249, 242, 234, 0.92);
    box-shadow: none;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
  }

  .page-hero-grid,
  .editorial-grid,
  .page-intro-band,
  .trust-strip,
  .list-panels,
  .map-shell,
  .gallery-preview,
  .city-detail__item,
  .city-detail__item--reverse,
  .city-card {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: none;
  }

  .page-hero-copy h1 {
    max-width: none;
  }

  .city-detail__item--reverse figure,
  .city-detail__item--reverse > div {
    order: initial;
  }

  .service-grid,
  .trust-grid,
  .contact-grid--cards,
  .contact-direct,
  .page-promise-grid,
  .page-promise-grid--wide,
  .venue-checklist {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card--wide,
  .service-card--tall {
    grid-column: auto;
  }

  .service-card--wide {
    grid-template-columns: 1fr;
  }

  .service-card--flagship {
    padding: 0;
  }

  .service-card--flagship .service-media {
    border-radius: calc(var(--radius-xl) - 1px) calc(var(--radius-xl) - 1px) 0 0;
  }

  .service-card--flagship .service-body {
    padding: clamp(1.2rem, 2vw, 1.6rem);
  }

  .service-card--flagship::before {
    top: 0.75rem;
    right: 0.75rem;
  }

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

  .hero-media-stack {
    grid-template-rows: minmax(14rem, 20rem) minmax(8rem, 11rem);
  }

  .hero-card--secondary,
  .hero-card--accent {
    transform: none;
  }

}

@media (max-width: 760px) {
  .container {
    width: min(100%, calc(100% - 1.25rem));
  }

  .site-header {
    padding-top: 0.65rem;
  }

  .header-shell {
    border-radius: 1.35rem;
    padding: 0.7rem 0.8rem 0.7rem 1rem;
  }

  .header-shell::before {
    border-radius: 1rem;
  }

  .header-cta {
    display: none;
  }

  .button-accent,
  .button-whatsapp,
  .button-line,
  .filter-button,
  .lightbox-controls button,
  .lightbox-close {
    width: 100%;
    min-height: 3.25rem;
    padding-inline: 1.1rem;
    font-size: 0.95rem;
  }

  .hero-actions > a,
  .hero-actions > button,
  .cta-band a,
  .map-shell .hero-actions a,
  .state-panel .hero-actions a {
    width: 100%;
  }

  .hero-media-stack {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: minmax(13rem, 18rem) minmax(9rem, 12rem);
    gap: 0.6rem;
    align-items: stretch;
  }

  .hero-card {
    min-height: 0;
  }

  .hero-card--primary {
    grid-column: 1 / -1;
    min-height: 13rem;
  }

  .hero-card--secondary,
  .hero-card--accent {
    display: block;
  }

  .hero-card--primary,
  .hero-card--secondary,
  .hero-card--accent {
    grid-row: auto;
    transform: none;
  }

  .home-hero {
    min-height: clamp(24rem, 80vh, 36rem);
  }

  .home-hero__copy h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }

  .home-hero__proof {
    flex-direction: column;
    gap: 0.2rem;
  }

  .home-hero__proof span {
    padding-left: 0;
  }

  .home-hero__proof span::before {
    display: none;
  }

  .hero-media-stack:has(.hero-card--primary:only-child) {
    grid-template-rows: minmax(13rem, 17rem);
  }

  .section--tint::before {
    inset: 0.6rem 0;
  }

  h2 {
    font-size: clamp(1.5rem, 5.5vw, 2rem);
    line-height: 1.08;
  }

  h1 {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .section-head h2 {
    max-width: none;
  }

  .signal-band,
  .service-grid,
  .city-grid,
  .process-grid,
  .gallery-grid,
  .contact-grid--cards,
  .contact-direct,
  .page-promise-grid,
  .page-promise-grid--wide,
  .venue-checklist {
    grid-template-columns: 1fr;
  }

  .page-promise--wide {
    grid-column: auto;
  }

  .panel--visual {
    grid-template-columns: 1fr;
  }

  .panel--visual__media img {
    min-height: 12rem;
    max-height: 16rem;
  }

  .service-showcase {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .service-showcase img {
    height: clamp(10rem, 45vw, 14rem);
  }

  .filter-shell {
    top: 4.5rem;
  }

  .gallery-item--feature,
  .gallery-item--wide,
  .gallery-item--tall {
    grid-column: auto;
    grid-row: auto;
  }

  .cta-band,
  .lightbox-top,
  .lightbox-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band__actions {
    width: 100%;
    justify-content: stretch;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

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

  .filter-shell {
    padding: 0.65rem;
    border-radius: 1.1rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
