@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("./assets/fonts/cinzel-500.ttf") format("truetype");
}

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("./assets/fonts/cinzel-600.ttf") format("truetype");
}

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("./assets/fonts/cinzel-700.ttf") format("truetype");
}

:root {
  color-scheme: light;
  --ink: #111815;
  --forest: #073f32;
  --forest-2: #0d5a47;
  --cream: #f7f1e4;
  --paper: #fffaf1;
  --sand: #d6b982;
  --gold: #bd8f3b;
  --aqua: #5bb7b7;
  --muted: #687067;
  --line: rgba(7, 63, 50, 0.16);
  --shadow: 0 26px 90px rgba(13, 25, 20, 0.24);
  --serif: Cinzel, "Trajan Pro", Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--cream);
}

body::selection {
  background: var(--gold);
  color: #fff;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1220px, calc(100% - 32px));
  height: 156px;
  margin: 0 auto;
  transition: height 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  top: 12px;
  height: 104px;
  border: 1px solid rgba(255, 250, 241, 0.32);
  border-radius: 999px;
  padding: 0 10px 0 16px;
  background: rgba(7, 24, 20, 0.54);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: auto;
  height: 150px;
  max-width: 170px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled .brand img {
  height: 96px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: 999px;
  padding: 8px;
  background: rgba(255, 250, 241, 0.11);
  color: #fffaf1;
  backdrop-filter: blur(16px);
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 16px;
  color: inherit;
  font-size: 0.9rem;
  font-weight: 750;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: var(--paper);
  color: var(--forest);
  outline: none;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 40;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.32);
  border-radius: 999px;
  background: rgba(7, 24, 20, 0.48);
  color: var(--paper);
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #0a1c17;
}

.hero-video,
.hero-backdrop,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.hero-backdrop {
  z-index: 0;
  background-image: url("./assets/hero-drone-poster.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02) translateY(calc(var(--hero-parallax, 0) * 1px));
  animation: heroDrift 16s ease-in-out infinite alternate;
}

.hero-shade {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(5, 15, 12, 0.84) 0%, rgba(5, 15, 12, 0.48) 42%, rgba(5, 15, 12, 0.1) 82%),
    linear-gradient(0deg, rgba(5, 15, 12, 0.8) 0%, rgba(5, 15, 12, 0.06) 45%),
    radial-gradient(circle at 20% 35%, rgba(189, 143, 59, 0.22), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 168px 0 146px;
  color: var(--paper);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  color: #fffaf1;
  font-size: 6.05rem;
  line-height: 0.92;
  text-wrap: balance;
}

h2 {
  margin-bottom: 0;
  color: var(--forest);
  font-size: 3.65rem;
  line-height: 1.02;
  text-wrap: balance;
}

h3 {
  margin: 0;
  color: inherit;
  font-size: 1.55rem;
  line-height: 1.14;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 250, 241, 0.84);
  font-size: 1.2rem;
  line-height: 1.66;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  color: inherit;
  font-weight: 850;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.btn.primary {
  background: var(--paper);
  color: var(--forest);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: #fff;
}

.btn.glass {
  border-color: rgba(255, 250, 241, 0.45);
  background: rgba(255, 250, 241, 0.1);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.social-btn {
  gap: 9px;
}

.social-btn img {
  width: 18px;
  height: 18px;
  filter: none;
}

.hero-strip {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  background: rgba(5, 20, 17, 0.4);
  color: var(--paper);
  overflow: hidden;
  backdrop-filter: blur(14px);
}

.hero-strip span {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 250, 241, 0.18);
  padding: 0 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.hero-strip span:last-child {
  border-right: 0;
}

.marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--forest);
}

.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  padding: 22px 0;
  will-change: transform;
  animation: marquee 24s linear infinite;
}

.marquee span {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-family: var(--serif);
  font-size: 2.35rem;
  line-height: 1;
  white-space: nowrap;
}

.marquee span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -26px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

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

.section {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.7fr);
  gap: 70px;
  align-items: start;
  padding: 112px 0 94px;
}

.story-text {
  padding-top: 12px;
}

.story-text p,
.planning-steps p,
.services-grid p,
.availability-copy p,
.faq-list p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  border-bottom: 1px solid currentColor;
  color: var(--forest);
  font-weight: 850;
}

.experience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #111815;
}

.experience-card {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}

.experience-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(5, 14, 12, 0.82), rgba(5, 14, 12, 0.06) 60%),
    linear-gradient(90deg, rgba(5, 14, 12, 0.38), transparent 70%);
}

.experience-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

.experience-card:hover img {
  transform: scale(1.05);
}

.experience-card div {
  position: absolute;
  right: 28px;
  bottom: 30px;
  left: 28px;
}

.experience-card p {
  margin-bottom: 18px;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 3.1rem;
}

.experience-card span {
  display: block;
  max-width: 360px;
  margin-top: 12px;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.56;
}

.moments {
  padding: 118px 0;
}

.moments-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.moments-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 16px;
  align-items: stretch;
}

.moments-grid figure {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
  box-shadow: var(--shadow);
}

.moments-grid .moment-large {
  grid-row: span 2;
  min-height: 690px;
}

.moments-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.moments-grid figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(7, 24, 20, 0.58);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 780;
  backdrop-filter: blur(12px);
}

.daynight {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: #0b1713;
}

.daynight-panel {
  position: relative;
  min-height: 780px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}

.daynight-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(0deg, rgba(5, 15, 12, 0.84), rgba(5, 15, 12, 0.06) 58%),
    linear-gradient(90deg, rgba(5, 15, 12, 0.44), rgba(5, 15, 12, 0));
}

.daynight-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.daynight-panel .private-corners {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  padding: 0;
  background: #0b1713;
}

.daynight-panel .private-corners img {
  position: static;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.daynight-panel div {
  padding: clamp(28px, 5vw, 58px);
}

.daynight-panel h2 {
  max-width: 610px;
  color: var(--paper);
  font-size: clamp(2.6rem, 5vw, 5.3rem);
}

.daynight-panel span {
  display: block;
  max-width: 540px;
  margin-top: 18px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 1.04rem;
  line-height: 1.68;
}

.event-gallery {
  padding: 116px 0;
}

.gallery-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) auto;
  gap: 60px;
  align-items: end;
  margin-bottom: 42px;
}

.gallery-controls {
  display: flex;
  gap: 10px;
}

.gallery-controls button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(7, 63, 50, 0.24);
  border-radius: 999px;
  background: var(--paper);
  color: var(--forest);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.gallery-controls button:hover,
.gallery-controls button:focus-visible {
  transform: translateY(-2px);
  background: var(--forest);
  color: var(--paper);
  outline: none;
}

.event-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #071814;
  box-shadow: var(--shadow);
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transform: translateX(calc(var(--carousel-index, 0) * -100%));
  transition: transform 0.85s cubic-bezier(0.19, 1, 0.22, 1);
}

.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: min(76vh, 720px);
  margin: 0;
  overflow: hidden;
  isolation: isolate;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.carousel-slide img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform 6s ease, filter 0.8s ease;
}

.carousel-slide.is-active img {
  transform: scale(1.08);
}

.carousel-slide figcaption {
  position: absolute;
  left: clamp(22px, 5vw, 64px);
  bottom: clamp(28px, 6vw, 70px);
  display: grid;
  gap: 10px;
  max-width: 560px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 28px);
  background: rgba(7, 24, 20, 0.58);
  color: var(--paper);
  backdrop-filter: blur(14px);
}

.carousel-slide figcaption span {
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.carousel-slide figcaption strong {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.95;
}

.carousel-slide figcaption p {
  max-width: 430px;
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  line-height: 1.58;
}

.carousel-meta {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-top: 1px solid rgba(255, 250, 241, 0.13);
  padding: 16px;
}

.carousel-progress {
  overflow: hidden;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.18);
}

.carousel-progress span {
  display: block;
  width: calc((var(--carousel-progress, 1) / var(--carousel-total, 1)) * 100%);
  height: 100%;
  border-radius: inherit;
  background: var(--sand);
  transition: width 0.45s ease;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}

.carousel-dots button {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: rgba(255, 250, 241, 0.34);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dots button.is-active {
  width: 28px;
  background: var(--sand);
}

.event-album {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: 18px;
  align-items: stretch;
  margin-top: 18px;
}

.album-copy {
  display: grid;
  align-content: end;
  min-height: 360px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(7, 63, 50, 0.08);
}

.album-copy h3 {
  max-width: 330px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 600;
  line-height: 1.02;
  text-transform: uppercase;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 12px;
}

.album-grid figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(7, 63, 50, 0.07);
}

.album-grid figure:nth-child(even) {
  transform: none;
}

.album-grid img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.75s ease, filter 0.75s ease;
}

.album-grid figure::after {
  content: none;
}

.album-grid figure:hover img {
  transform: scale(1.08);
  filter: saturate(1.08);
}

.album-grid figcaption {
  display: grid;
  gap: 5px;
  min-height: 94px;
  padding: 16px 18px 18px;
  color: var(--forest);
}

.album-grid figcaption span {
  color: var(--sand);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.album-grid figcaption strong {
  color: var(--forest);
  font-size: 0.98rem;
}

.signature {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
}

.signature-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(0deg, rgba(5, 15, 12, 0.85), rgba(5, 15, 12, 0.04) 58%),
    linear-gradient(90deg, rgba(5, 15, 12, 0.42), rgba(5, 15, 12, 0.02)),
    url("./assets/real-roses-garden.jpg");
  background-size: cover;
  background-position: center;
}

.signature-content {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 88px;
}

.signature h2 {
  max-width: 900px;
  color: var(--paper);
}

.signature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin-top: 34px;
}

.signature-list span {
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(255, 250, 241, 0.09);
  color: rgba(255, 250, 241, 0.88);
  font-weight: 820;
  backdrop-filter: blur(12px);
}

.services {
  padding: 112px 0 20px;
}

.services-head {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.72fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 38px;
}

.services-visual {
  display: grid;
  gap: 24px;
  align-content: end;
}

.services-visual figure {
  position: relative;
  overflow: hidden;
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 24px 70px rgba(7, 63, 50, 0.1);
}

.services-visual figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 15, 12, 0.2), rgba(5, 15, 12, 0));
  pointer-events: none;
}

.services-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms ease;
}

.services-head:hover .services-visual img {
  transform: scale(1.035);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.services-grid article {
  display: flex;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(7, 63, 50, 0.08);
  flex-direction: column;
}

.services-grid span {
  display: block;
  margin-bottom: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.7rem;
}

.card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
  margin: 18px 0 22px;
  border: 1px solid rgba(7, 63, 50, 0.12);
  border-radius: 8px;
  background: rgba(7, 63, 50, 0.06);
}

.card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.services-grid article:hover .card-thumb img,
.planning-steps article:hover .card-thumb img {
  transform: scale(1.045);
}

.services-grid h3 {
  color: var(--forest);
}

.services-grid p {
  margin: 12px 0 0;
}

.planning {
  padding: 110px 0;
}

.event-format {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 0.62fr);
  gap: 18px;
  align-items: stretch;
  padding: 96px 0 24px;
}

.format-copy,
.format-details article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(7, 63, 50, 0.08);
}

.format-copy {
  display: grid;
  align-content: center;
  padding: clamp(28px, 5vw, 48px);
}

.format-copy p,
.format-details p,
.format-details li {
  color: var(--muted);
  line-height: 1.72;
}

.format-copy p {
  max-width: 680px;
  margin: 24px 0 0;
  font-size: 1.05rem;
}

.format-details {
  display: grid;
  gap: 14px;
}

.format-details article {
  padding: 24px;
}

.format-details span {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
}

.format-details h3 {
  color: var(--forest);
}

.format-details p {
  margin: 10px 0 0;
}

.format-details ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.format-details li {
  border: 1px solid rgba(7, 63, 50, 0.16);
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(7, 63, 50, 0.05);
  color: var(--forest);
  font-size: 0.9rem;
  font-weight: 820;
}

.planning-head {
  max-width: 700px;
  margin-bottom: 42px;
}

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

.planning-steps article {
  display: flex;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(7, 63, 50, 0.08);
  flex-direction: column;
}

.planning-steps span {
  display: block;
  margin-bottom: 0;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 3rem;
}

.planning-steps h3 {
  color: var(--forest);
}

.planning-steps p {
  margin: 12px 0 0;
}

.availability {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 63, 50, 0.96), rgba(7, 24, 20, 0.96)),
    #081713;
  color: var(--paper);
}

.availability::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 250, 241, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 250, 241, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.availability-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 0.58fr) minmax(280px, 0.42fr);
  gap: 18px;
  align-items: stretch;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0;
}

.availability-copy {
  align-self: center;
  padding-right: 22px;
}

.availability-copy h2 {
  color: var(--paper);
}

.availability-copy p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.72);
}

.availability-card,
.availability-board {
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.availability-card {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.availability-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.availability-card label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 241, 0.86);
  font-size: 0.88rem;
  font-weight: 800;
}

.availability-card input,
.availability-card select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--ink);
  outline: none;
}

.availability-card input:focus,
.availability-card select:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 4px rgba(214, 185, 130, 0.18);
}

.availability-card .btn.primary {
  width: 100%;
  background: var(--sand);
  color: #102019;
}

.availability-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 999px;
  color: var(--paper);
  font-weight: 850;
}

.availability-whatsapp.disabled {
  cursor: not-allowed;
  opacity: 0.42;
  pointer-events: none;
}

.availability-board {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 22px;
}

.board-label {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.availability-result {
  width: 100%;
  min-width: 0;
  min-height: 170px;
  display: grid;
  align-content: center;
  gap: 10px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  padding: 18px;
  background: rgba(5, 15, 12, 0.28);
  overflow: hidden;
}

.availability-result strong {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.7vw, 2.25rem);
  font-weight: 500;
  line-height: 1.06;
  overflow-wrap: anywhere;
}

.availability-result span {
  color: rgba(255, 250, 241, 0.76);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.availability-result.good {
  border-color: rgba(91, 183, 183, 0.54);
  background: rgba(91, 183, 183, 0.12);
}

.availability-result.caution {
  border-color: rgba(214, 185, 130, 0.5);
  background: rgba(214, 185, 130, 0.12);
}

.availability-result.closed {
  border-color: rgba(205, 107, 82, 0.55);
  background: rgba(205, 107, 82, 0.12);
}

.availability-mini {
  border-top: 1px solid rgba(255, 250, 241, 0.16);
  padding-top: 18px;
}

.availability-mini span {
  display: block;
  margin-bottom: 8px;
  color: var(--sand);
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1;
}

.availability-mini strong {
  display: block;
  margin-bottom: 8px;
  color: var(--paper);
}

.availability-mini p {
  margin: 0;
  color: rgba(255, 250, 241, 0.68);
  line-height: 1.5;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.74fr);
  gap: 70px;
  padding: 108px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 18px 54px rgba(7, 63, 50, 0.07);
}

.faq-list summary {
  cursor: pointer;
  padding: 20px;
  color: var(--forest);
  font-weight: 850;
  list-style: none;
}

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

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.google-reviews {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 63, 50, 0.94), rgba(7, 24, 20, 0.96)),
    #081713;
  color: var(--paper);
}

.google-reviews::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(214, 185, 130, 0.18), transparent 32%),
    radial-gradient(circle at 82% 56%, rgba(91, 183, 183, 0.12), transparent 30%);
  pointer-events: none;
}

.reviews-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.78fr);
  gap: 58px;
  align-items: center;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 112px 0;
}

.reviews-copy h2 {
  max-width: 720px;
  color: var(--paper);
}

.reviews-copy p {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 250, 241, 0.74);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-link.light {
  margin-top: 24px;
  color: var(--paper);
}

.reviews-panel {
  border: 1px solid rgba(255, 250, 241, 0.18);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.reviews-summary {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 250, 241, 0.14);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.google-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--paper);
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.reviews-summary strong {
  display: block;
  color: var(--paper);
  font-size: 1.15rem;
}

.reviews-summary p {
  margin: 4px 0 0;
  color: rgba(255, 250, 241, 0.68);
}

.reviews-grid {
  display: grid;
  gap: 12px;
}

.reviews-widget-shell {
  min-height: 260px;
}

.reviews-grid article,
.reviews-widget-shell article {
  border: 1px solid rgba(255, 250, 241, 0.14);
  border-radius: 8px;
  padding: 18px;
  background: rgba(5, 15, 12, 0.28);
}

.reviews-grid article > span,
.reviews-widget-shell article > span {
  display: block;
  margin-bottom: 10px;
  color: var(--sand);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.review-author {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.review-author-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--paper);
  color: #4285f4;
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.review-author-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author-copy {
  min-width: 0;
}

.review-author-name {
  display: inline-block;
  color: var(--paper);
  font-weight: 850;
  text-decoration: none;
}

.review-author-name:hover {
  color: var(--sand);
}

.reviews-grid article strong {
  display: block;
  color: var(--paper);
  line-height: 1.3;
}

.reviews-widget-shell article strong {
  display: block;
  color: var(--paper);
  line-height: 1.3;
}

.reviews-grid article p {
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.58;
}

.reviews-widget-shell article p {
  margin: 10px 0 0;
  color: rgba(255, 250, 241, 0.72);
  line-height: 1.58;
}

.review-consent-btn {
  margin-top: 18px;
  width: 100%;
  border: 1px solid rgba(255, 250, 241, 0.32);
  border-radius: 999px;
  padding: 13px 18px;
  background: var(--sand);
  color: #10241d;
  font-weight: 850;
  cursor: pointer;
}

.review-consent-btn:hover {
  background: var(--paper);
}

.reviews-grid article .review-meta {
  color: rgba(255, 250, 241, 0.48);
  font-size: 0.86rem;
}

.review-stars {
  margin-top: 4px;
  color: var(--sand);
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.contact-hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  color: var(--paper);
}

.contact-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(5, 15, 12, 0.86), rgba(5, 15, 12, 0.36)),
    linear-gradient(0deg, rgba(5, 15, 12, 0.76), rgba(5, 15, 12, 0.02)),
    url("./assets/real-gallery-villa-frame.jpg");
  background-size: cover;
  background-position: center;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: 58px;
  align-items: center;
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px 0;
}

.contact-copy h2 {
  max-width: 740px;
  color: var(--paper);
}

.contact-copy p {
  max-width: 570px;
  margin-top: 22px;
  color: rgba(255, 250, 241, 0.78);
}

.contact-copy a {
  color: var(--paper);
  font-weight: 850;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 250, 241, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.request-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 250, 241, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
}

.request-form .full {
  grid-column: 1 / -1;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 250, 241, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.92);
  color: var(--ink);
  outline: none;
}

.request-form input,
.request-form select {
  min-height: 48px;
  padding: 0 12px;
}

.request-form textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  border-color: var(--sand);
  box-shadow: 0 0 0 4px rgba(214, 185, 130, 0.2);
}

.request-form .btn.primary {
  width: 100%;
  background: var(--sand);
  color: #102019;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: rgba(255, 250, 241, 0.78);
  font-size: 0.9rem;
}

.map-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: auto;
  padding: 96px 16px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 15, 12, 0.9), rgba(5, 15, 12, 0.46)),
    url("./assets/real-gallery-place-card.jpg") center / cover;
}

.map-section iframe {
  width: min(660px, 100%);
  height: auto;
  aspect-ratio: 1;
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.18) contrast(1.02);
  box-shadow: var(--shadow);
}

.map-section iframe:not([src]) {
  display: none;
}

.external-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  width: min(660px, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  padding: 28px 18px;
  background:
    linear-gradient(90deg, rgba(5, 15, 12, 0.74), rgba(5, 15, 12, 0.28)),
    radial-gradient(circle at 52% 42%, rgba(214, 185, 130, 0.18), transparent 32%);
  color: var(--paper);
  text-align: center;
}

.external-placeholder[hidden] {
  display: none;
}

.external-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  width: min(560px, 100%);
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 36px);
  background: rgba(7, 24, 20, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.external-label {
  color: var(--sand);
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.external-placeholder strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
  line-height: 1;
}

.external-placeholder p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
  line-height: 1.6;
}

.external-placeholder button,
.cookie-actions button,
.legal-back {
  min-height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--paper);
  color: var(--forest);
  appearance: none;
  cursor: pointer;
  font-weight: 850;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: 26px 32px;
  background: #081713;
  color: rgba(255, 250, 241, 0.72);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: auto;
  height: 150px;
  object-fit: contain;
  border-radius: 8px;
}

.footer-brand strong,
.footer-brand span,
.footer-legal span {
  display: block;
}

.footer-brand strong {
  color: var(--paper);
}

.footer-brand span,
.footer-legal {
  color: rgba(255, 250, 241, 0.68);
}

.footer-legal {
  display: grid;
  gap: 6px;
  line-height: 1.45;
}

.site-footer a {
  color: var(--paper);
  font-weight: 850;
}

.footer-legal a {
  border-bottom: 1px solid rgba(255, 250, 241, 0.45);
}

.footer-cookie-btn {
  border: 0;
  border-bottom: 1px solid rgba(255, 250, 241, 0.45);
  padding: 0;
  background: transparent;
  color: var(--paper);
  appearance: none;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
}

.footer-top {
  justify-self: end;
}

.cookie-banner {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  width: min(1040px, calc(100% - 36px));
  margin: 0 auto;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 8px;
  padding: 18px;
  background: rgba(7, 24, 20, 0.94);
  color: var(--paper);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-launcher {
  position: fixed;
  z-index: 79;
  left: 18px;
  bottom: 18px;
  min-height: 42px;
  border: 1px solid rgba(255, 250, 241, 0.2);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(7, 24, 20, 0.9);
  color: var(--paper);
  appearance: none;
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.cookie-launcher[hidden] {
  display: none;
}

.cookie-copy {
  display: grid;
  gap: 6px;
}

.cookie-copy strong {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.cookie-copy p {
  margin: 0;
  color: rgba(255, 250, 241, 0.76);
  line-height: 1.55;
}

.cookie-copy a {
  color: var(--paper);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions button.secondary {
  background: transparent;
  color: var(--paper);
}

.legal-body {
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(247, 241, 228, 1)),
    var(--cream);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1080px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0;
}

.legal-header .brand img {
  height: 136px;
}

.legal-back {
  border-color: rgba(7, 63, 50, 0.18);
  background: var(--forest);
  color: var(--paper);
}

.legal-page {
  width: min(940px, calc(100% - 32px));
  margin: 0 auto;
  padding: 48px 0 86px;
}

.legal-page h1 {
  max-width: none;
  margin-bottom: 12px;
  color: var(--forest);
  font-size: clamp(3.5rem, 8vw, 6.2rem);
}

.legal-page h2 {
  color: var(--forest);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.legal-page section {
  border-top: 1px solid var(--line);
  padding: 32px 0;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.legal-page ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.legal-updated {
  color: var(--gold);
  font-weight: 850;
}

.legal-table {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.legal-table div {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 0.68fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--paper);
}

.legal-table strong {
  color: var(--forest);
}

.legal-table span {
  color: var(--muted);
  line-height: 1.6;
}

.legal-note {
  border: 1px solid rgba(189, 143, 59, 0.32);
  border-radius: 8px;
  padding: 18px;
  background: rgba(214, 185, 130, 0.16);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateX(0) translateY(calc(var(--hero-parallax, 0) * 1px));
  }
  to {
    transform: scale(1.06) translateX(-18px) translateY(calc(var(--hero-parallax, 0) * 1px));
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 1020px) {
  h1 {
    font-size: 5.4rem;
  }

  h2 {
    font-size: 3.35rem;
  }

  .story,
  .services-head,
  .faq-section,
  .event-format,
  .event-album,
  .gallery-intro,
  .reviews-inner,
  .availability-inner,
  .contact-content {
    grid-template-columns: 1fr;
  }

  .experience,
  .daynight,
  .services-grid,
  .planning-steps {
    grid-template-columns: 1fr;
  }

  .experience-card {
    min-height: 560px;
  }

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

  .moments-grid .moment-large {
    min-height: 520px;
  }

  .carousel-slide {
    min-height: 580px;
  }

  .album-copy {
    min-height: auto;
  }

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

  .services-visual figure {
    width: min(100%, 520px);
  }

  .daynight-panel {
    min-height: 580px;
  }

  .availability-copy {
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, 1220px);
    height: 126px;
  }

  .site-header.is-scrolled {
    height: 92px;
  }

  .brand img {
    height: 118px;
  }

  .site-header.is-scrolled .brand img {
    height: 82px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(290px, calc(100vw - 24px));
    border-radius: 8px;
    padding: 8px;
    background: rgba(7, 24, 20, 0.9);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 8px;
    padding: 14px;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-backdrop {
    background-position: 64% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 15, 12, 0.68), rgba(5, 15, 12, 0.24)),
      linear-gradient(0deg, rgba(5, 15, 12, 0.66), rgba(5, 15, 12, 0.04));
  }

  .hero-video {
    filter: brightness(1.12) saturate(1.04);
  }

  .hero-content {
    width: min(100% - 24px, 1220px);
    padding: 130px 0 170px;
  }

  h1 {
    font-size: 4.2rem;
    line-height: 0.9;
  }

  h2 {
    font-size: 2.7rem;
  }

  .hero-lead,
  .story-text p,
  .planning-steps p,
  .contact-copy p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-actions,
  .contact-links {
    display: grid;
  }

  .services-grid article,
  .planning-steps article {
    min-height: auto;
    padding: 22px;
  }

  .services-visual {
    gap: 16px;
  }

  .services-visual figure {
    width: 100%;
    aspect-ratio: 16 / 10;
  }

  .card-thumb {
    margin: 16px 0 20px;
  }

  .btn {
    width: 100%;
  }

  .hero-strip {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-strip span {
    min-height: 48px;
    font-size: 0.78rem;
  }

  .hero-strip span:nth-child(2) {
    border-right: 0;
  }

  .marquee span {
    font-size: 1.7rem;
  }

  .marquee-track {
    gap: 34px;
    animation-duration: 18s;
  }

  .section,
  .signature-content,
  .reviews-inner,
  .availability-inner,
  .contact-content {
    width: min(100% - 24px, 1220px);
  }

  .story,
  .moments,
  .event-gallery,
  .services,
  .planning {
    padding: 72px 0;
  }

  .experience-card {
    min-height: 520px;
  }

  .moments-grid figure,
  .moments-grid .moment-large {
    min-height: 360px;
  }

  .daynight-panel::after {
    background:
      linear-gradient(0deg, rgba(5, 15, 12, 0.66), rgba(5, 15, 12, 0.04) 58%),
      linear-gradient(90deg, rgba(5, 15, 12, 0.28), rgba(5, 15, 12, 0));
  }

  .daynight-panel .private-corners {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .carousel-slide {
    min-height: 440px;
  }

  .carousel-slide::after {
    background: none;
  }

  .carousel-meta {
    grid-template-columns: 1fr;
  }

  .carousel-dots {
    justify-content: center;
  }

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

  .album-grid figure,
  .album-grid figure:nth-child(even) {
    min-height: 330px;
    transform: none;
  }

  .album-grid figure::after {
    background: linear-gradient(0deg, rgba(5, 15, 12, 0.58), rgba(5, 15, 12, 0.02) 58%);
  }

  .signature,
  .contact-hero {
    min-height: auto;
  }

  .signature-content {
    padding: 220px 0 62px;
  }

  .availability-inner {
    padding: 74px 0;
  }

  .availability-fields {
    grid-template-columns: 1fr;
  }

  .availability-result {
    min-height: 150px;
  }

  .faq-section {
    padding: 72px 0;
  }

  .reviews-inner {
    padding: 74px 0;
  }

  .contact-content {
    padding: 82px 0;
  }

  .request-form {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding: 24px 18px;
  }

  .footer-top {
    justify-self: start;
  }

  .map-section {
    padding: 64px 12px;
  }

  .map-section iframe,
  .external-placeholder {
    width: min(100%, 520px);
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: min(100% - 24px, 1040px);
  }

  .cookie-actions {
    display: grid;
    justify-content: stretch;
  }

  .legal-header {
    width: min(100% - 24px, 1080px);
  }

  .legal-page {
    width: min(100% - 24px, 940px);
    padding-top: 28px;
  }

  .legal-table div {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.55rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-content {
    padding-top: 118px;
  }
}

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

  .marquee-track {
    animation-duration: 30s !important;
    animation-iteration-count: infinite !important;
  }

  .carousel-track {
    transition-duration: 0.85s !important;
  }

  .carousel-slide img {
    transition-duration: 6s !important;
  }
}
