:root {
  --green-950: #0b302d;
  --green-900: #0f413c;
  --green-700: #245d52;
  --sage: #809e8c;
  --yellow: #fcde71;
  --gold: #ffbf00;
  --coral: #d86a54;
  --blue: #315f7a;
  --ink: #16211f;
  --muted: #5f6d69;
  --line: #dce6e1;
  --paper: #fffdf7;
  --white: #ffffff;
  --card-bg: #ffffff;
  --section-tint: #eef6f1;
  --section-form-bg: var(--green-950);
  --nav-bg: rgba(255, 253, 247, .96);
  --nav-menu-bg: var(--white);
  --nav-hover: #f1f7f4;
  --lead-color: #31413d;
  --hero-overlay-start: rgba(11, 48, 45, .12);
  --hero-overlay-end: rgba(11, 48, 45, .91);
  --shadow: 0 18px 48px rgba(15, 65, 60, .14);
  --radius: 8px;
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-main);
  line-height: 1.6;
}

.home-page {
  --paper: #fff9ed;
  --section-tint: #eadcc7;
  --line: #eadfce;
  --nav-hover: #fbefd6;
  overflow-x: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--green-700);
  font-weight: 760;
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--coral);
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: .5rem;
  transform: translateY(-150%);
  background: var(--yellow);
  color: var(--green-950);
  padding: .55rem .85rem;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 64px;
  padding: .5rem clamp(.6rem, 3vw, 1rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: .5rem;
  background: #0b302d;
  border-bottom: 1px solid rgba(252, 222, 113, .24);
  box-shadow: 0 14px 28px rgba(11, 48, 45, .18);
}

.header-cluster {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .38rem .5rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--yellow);
  text-decoration: none;
  min-width: max-content;
}

.brand img {
  width: 36px;
  height: 36px;
}

.header-shortcuts {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .25rem;
  min-width: 0;
}

.header-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .22rem .38rem;
  border: 1px solid rgba(252, 222, 113, .42);
  border-radius: var(--radius);
  background: rgba(252, 222, 113, .09);
  color: var(--yellow);
  font-size: .64rem;
  font-weight: 900;
  line-height: 1.05;
  text-decoration: none;
  white-space: nowrap;
}

.header-shortcuts a:hover {
  background: rgba(252, 222, 113, .2);
  color: var(--yellow);
}

.header-actions {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: .35rem;
}

.header-call {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(252, 222, 113, .48);
  border-radius: 999px;
  background: rgba(252, 222, 113, .12);
  color: var(--yellow);
  text-decoration: none;
}

.header-call svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-call:hover {
  background: var(--yellow);
  color: #0b302d;
}

.nav-toggle {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(252, 222, 113, .42);
  border-radius: var(--radius);
  background: rgba(252, 222, 113, .1);
  color: var(--yellow);
  font-size: 1.35rem;
}

.site-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  gap: .25rem;
  padding: 1rem;
  background: #0b302d;
  border-bottom: 1px solid rgba(252, 222, 113, .22);
  box-shadow: var(--shadow);
}

.site-nav.is-open {
  display: grid;
}

.site-nav a {
  padding: .75rem;
  border-radius: var(--radius);
  color: var(--yellow);
  text-decoration: none;
}

.site-nav a:hover {
  background: rgba(252, 222, 113, .14);
  color: var(--yellow);
}

.site-nav a.nav-switch {
  background: rgba(252, 222, 113, .16);
  color: var(--yellow);
  box-shadow: none;
}

.site-nav a.nav-switch:hover {
  background: var(--yellow);
  color: #0b302d;
}

.wrap,
.home-hero,
.hero__content,
.site-footer {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.home-hero {
  padding: 1.25rem 0 1.5rem;
}

.home-hero__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
}

.home-hero__intro {
  max-width: 820px;
}

.home-hero__mark {
  display: none;
  justify-self: end;
  padding-top: .4rem;
}

.home-hero__mark img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(15, 65, 60, .18));
}

h1,
h2,
h3 {
  margin: 0 0 .75rem;
  color: var(--green-950);
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.25rem, 9vw, 5rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.7rem, 5vw, 3rem);
}

.section .wrap > h2,
.text-media h2,
.section-subtitle {
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  color: var(--lead-color);
  max-width: 760px;
}

.eyebrow {
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.journey-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.journey {
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 1.1rem;
  border-radius: var(--radius);
  color: var(--white);
  text-decoration: none;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.journey::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 48, 45, .05), rgba(11, 48, 45, .86));
}

.journey__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.journey__label {
  width: fit-content;
  margin-bottom: .75rem;
  padding: .35rem .65rem;
  border-radius: var(--radius);
  background: var(--yellow);
  color: var(--green-950);
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.journey strong {
  display: block;
  max-width: 520px;
  font-size: clamp(1.22rem, 4.5vw, 2.2rem);
  line-height: 1.12;
}

.home-hero h1 {
  font-size: clamp(1.8rem, 5.6vw, 3.8rem);
}

.home-hero .lead {
  font-size: clamp(1rem, 2.8vw, 1.35rem);
}

.hero {
  position: relative;
  min-height: clamp(520px, 82vh, 760px);
  display: flex;
  align-items: end;
  padding: 7rem 0 4rem;
  color: var(--white);
  background-image: linear-gradient(180deg, var(--hero-overlay-start), var(--hero-overlay-end)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero--about {
  background-position: 58% 44%;
}

.hero--contact,
.hero--blurred {
  overflow: hidden;
  isolation: isolate;
  background-image: none;
}

.hero--contact::before,
.hero--contact::after,
.hero--blurred::before,
.hero--blurred::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--contact::before,
.hero--blurred::before {
  inset: -18px;
  z-index: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  filter: blur(9px);
  transform: scale(1.02);
}

.hero--contact::after,
.hero--blurred::after {
  z-index: 1;
  background: linear-gradient(180deg, var(--hero-overlay-start), var(--hero-overlay-end));
}

.hero h1,
.hero .lead {
  color: var(--white);
}

.hero .eyebrow {
  color: var(--yellow);
}

.hero__content {
  position: relative;
  z-index: 1;
  margin-inline: auto;
}

.hero--contact .hero__content,
.hero--blurred .hero__content {
  z-index: 2;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: 1.2rem;
}

.btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem 1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
}

.btn--primary {
  background: var(--yellow);
  color: var(--green-950);
}

.btn--secondary {
  background: var(--card-bg);
  color: var(--green-950);
  border-color: var(--line);
}

.btn--whatsapp {
  gap: .55rem;
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
}

.btn--whatsapp svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn--whatsapp:hover {
  background: #1EBE5D;
  color: var(--white);
  border-color: #1EBE5D;
}

.section {
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.section[id] {
  scroll-margin-top: 6rem;
}

.home-page .section:not(.section--tint):not(.section--form) {
  background: #fffdf8;
}

.home-page .section:nth-of-type(even):not(.section--tint):not(.section--form) {
  background: #fff7e8;
}

.section--tint {
  background: var(--section-tint);
}

.section-subtitle {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}

.section--form {
  background: var(--section-form-bg);
  color: var(--white);
}

.section--form h2,
.section--form label,
.section--form .form-note {
  color: var(--white);
}

.feature-grid,
.quote-grid,
.google-review-grid,
.pricing-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.feature-grid article,
.quote-card,
.google-review-card,
.pricing-grid article,
.contact-grid article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.google-review-card {
  display: grid;
  align-content: start;
  gap: .85rem;
}

.google-review-card__top {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .8rem;
  align-items: center;
}

.review-avatar {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--green-700);
  color: var(--white);
  font-size: .88rem;
  font-weight: 950;
}

.google-review-card figcaption {
  display: grid;
  gap: .1rem;
  color: var(--green-950);
}

.google-review-card figcaption span {
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.review-stars {
  color: #fbbc04;
  font-size: 1.06rem;
  letter-spacing: .08em;
  line-height: 1;
}

.google-review-card blockquote {
  margin: 0;
}

.quote-card figcaption {
  margin-bottom: .75rem;
  color: var(--green-950);
  font-weight: 900;
}

.quote-card blockquote {
  margin: 0;
}

.feature-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.feature-grid--centered {
  max-width: 880px;
  margin-inline: auto;
}

.corporate-content-row {
  display: grid;
  gap: 1rem;
  align-items: stretch;
}

.corporate-content-row__image {
  width: 100%;
  height: 100%;
  min-height: 220px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.corporate-content-row__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--ink);
}

.corporate-content-row__text h3 {
  color: var(--green-950);
}

.box-use-grid {
  display: grid;
  gap: 1rem;
}

.box-use-card {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.box-use-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.text-media--heading {
  align-items: start;
}

.pricing-grid article {
  background: var(--card-bg);
}

.pricing-featured {
  border-color: var(--gold) !important;
  box-shadow: var(--shadow);
}

.pricing-grid h2,
.pricing-grid h3 {
  color: var(--coral);
}

.text-media {
  display: grid;
  gap: 1.2rem;
  align-items: center;
}

.text-media.text-media--heading {
  align-items: start;
}

.room-duo {
  display: grid;
  gap: 1rem;
}

.room-teaser {
  display: grid;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.room-teaser img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.video-mix-grid {
  --media-stack-height: 455px;
  display: grid;
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.25rem;
}

.phone-frame {
  width: min(100%, 260px);
  margin: 0 auto;
  padding: .7rem;
  border: 3px solid #16211f;
  border-radius: 30px;
  background: #101816;
  box-shadow: var(--shadow);
}

.phone-frame::before {
  content: "";
  display: block;
  width: 58px;
  height: 5px;
  margin: 0 auto .55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .28);
}

.phone-frame video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 20px;
  background: #000;
}

.media,
.text-media img,
.text-media video {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.text-media img.media--compact,
.media--compact {
  width: min(100%, 380px);
  justify-self: center;
}

.gallery {
  display: grid;
  gap: 1rem;
}

.gallery--corporate-team {
  margin-top: 1.4rem;
}

.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.gallery--about {
  align-items: start;
}

.gallery--about img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery--wedding img {
  aspect-ratio: 4 / 3;
}

.gallery--birthday-media {
  align-items: stretch;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery--birthday-media img:nth-child(1) {
  object-position: 50% 42%;
}

.gallery--birthday-media img:nth-child(2) {
  object-position: 50% 42%;
}

.gallery--birthday-media img:nth-child(3) {
  object-position: 50% 44%;
}

.gallery--birthday-media img:nth-child(4) {
  object-position: 50% 34%;
}

.gallery--birthday-media img:nth-child(5) {
  object-position: 50% 48%;
}

.reference-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.reference-logo {
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 1rem;
  border: 1px solid rgba(11, 48, 45, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .42);
}

.reference-logo img {
  width: 100%;
  max-width: 190px;
  max-height: 86px;
  object-fit: contain;
  opacity: .82;
  filter: saturate(.9) contrast(.96);
}

.reference-logo:hover img {
  opacity: 1;
  filter: none;
}

.check-list,
.split-list ul {
  display: grid;
  gap: .65rem;
  padding: 0;
  list-style: none;
}

.check-list li,
.split-list li {
  padding: .7rem .8rem;
  border-left: 4px solid var(--gold);
  background: var(--card-bg);
  border-radius: var(--radius);
}

.check-list--two-col {
  gap: .75rem 1rem;
}

.timeline {
  display: grid;
  gap: .75rem;
  margin: 0;
  padding-left: 1.25rem;
}

.timeline li {
  padding-left: .3rem;
}

.process-flow {
  display: grid;
  gap: .9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-flow li {
  position: relative;
  display: grid;
  gap: .75rem;
  align-content: start;
  min-height: 150px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  color: var(--green-950);
}

.process-flow span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--green-950);
  font-weight: 950;
}

.process-flow p {
  margin: 0;
  font-weight: 800;
}

.split-list {
  display: grid;
  gap: 1rem;
}

.faq-list {
  display: grid;
  gap: .75rem;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card-bg);
  padding: .85rem 1rem;
}

summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--green-950);
}

blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

figcaption {
  color: var(--muted);
  font-weight: 800;
}

.contact-strip,
.thank-you {
  max-width: 760px;
}

.legal-text {
  max-width: 880px;
}

.legal-text h2 {
  margin-top: 2rem;
}

.legal-text ul {
  display: grid;
  gap: .45rem;
  padding-left: 1.25rem;
}

.thank-you {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lead-form {
  display: grid;
  gap: 1rem;
  max-width: 900px;
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid--birthday {
  align-items: start;
}

.lead-form label {
  display: grid;
  gap: .35rem;
  color: var(--green-950);
  font-weight: 850;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .82rem .85rem;
  background: var(--card-bg);
  color: var(--ink);
}

.lead-form textarea {
  resize: vertical;
}

.form-field--hp {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.form-note {
  color: var(--muted);
  font-size: .95rem;
}

.map-placeholder {
  min-height: 320px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px dashed var(--green-700);
  border-radius: var(--radius);
  background: var(--card-bg);
}

.map-placeholder iframe {
  width: 100%;
  height: 360px;
  border: 0;
  border-radius: var(--radius);
}

.video-preview {
  width: 100%;
  aspect-ratio: 9 / 16;
  background: var(--green-950);
  object-fit: cover;
  border-radius: 20px;
}

.site-footer {
  padding: 3rem 0 6rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-kicker {
  margin-bottom: .45rem;
  color: var(--green-950);
  font-weight: 950;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  min-height: 52px;
  max-width: calc(100% - 2rem);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  justify-content: center;
  padding: .72rem .95rem;
  border-radius: 999px;
  background: #25D366;
  color: var(--white);
  box-shadow: var(--shadow);
  text-decoration: none;
  font-weight: 950;
  line-height: 1.1;
  white-space: nowrap;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.whatsapp-float:hover {
  background: #1EBE5D;
  color: var(--white);
}

.theme-brand,
.theme-kids {
  --paper: #fff9ed;
  --card-bg: #fffefa;
  --section-tint: #f5eedf;
  --line: #eadfce;
  --nav-bg: rgba(255, 249, 237, .96);
  --nav-menu-bg: #fffefa;
  --nav-hover: #fbefd6;
  --lead-color: #35423f;
}

.room-page {
  --section-tint: #153f39;
}

.room-page .section--tint {
  color: #f8fff9;
}

.room-page .section--tint h2,
.room-page .section--tint h3,
.room-page .section--tint .lead {
  color: #ffffff;
}

.room-page .section--tint p {
  color: #f8fff9;
}

.room-page .section--tint a:not(.btn) {
  color: var(--yellow);
}

.room-page .section--tint .check-list li,
.room-page .section--tint .check-list li * {
  color: #061817 !important;
  -webkit-text-fill-color: #061817;
  opacity: 1;
  text-shadow: none;
}

.room-story__copy {
  font-family: var(--font-body);
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.75;
  color: #243f39;
}

.room-story,
.room-play {
  align-items: start;
}

.room-play__copy {
  font-size: 1rem;
  line-height: 1.6;
}

.room-story__copy p {
  margin-bottom: 1.1rem;
}

.theme-events {
  --green-950: #0b252b;
  --green-900: #12333b;
  --green-700: #2b6370;
  --coral: #c76255;
  --blue: #25465d;
  --paper: #f7f8f5;
  --card-bg: #ffffff;
  --section-tint: #142a31;
  --section-form-bg: #0b252b;
  --line: #d8e0df;
  --nav-bg: rgba(247, 248, 245, .95);
  --nav-hover: #e7eeee;
  --lead-color: #334246;
  --hero-overlay-start: rgba(8, 17, 22, .24);
  --hero-overlay-end: rgba(8, 17, 22, .92);
}

.theme-events .site-header {
  background: #0b2636;
  border-bottom-color: rgba(252, 222, 113, .26);
  box-shadow: 0 14px 28px rgba(7, 23, 34, .28);
}

.theme-events .site-nav {
  background: #0b2636;
}

.theme-events .section--tint {
  color: #f5fbfb;
}

.theme-events .section--tint h2,
.theme-events .section--tint h3,
.theme-events .section--tint .lead {
  color: #ffffff;
}

.theme-events .section--tint a:not(.btn) {
  color: var(--yellow);
}

.theme-events .section--tint .quote-card,
.theme-events .section--tint .feature-grid article,
.theme-events .section--tint .contact-grid article,
.theme-events .section--tint details,
.theme-events .section--tint .check-list li,
.theme-events .section--tint .split-list li {
  color: var(--ink);
}

.theme-events .section--tint .feature-grid article h3,
.theme-events .section--tint .corporate-content-row__text h3,
.theme-events .section--tint .contact-grid article h3,
.theme-events .section--tint .pricing-grid article h3 {
  color: var(--green-950);
}

.theme-events .section--tint .feature-grid article a:not(.btn),
.theme-events .section--tint .contact-grid article a:not(.btn),
.theme-events .section--tint .pricing-grid article a:not(.btn) {
  color: var(--green-700);
}

.wedding-page {
  --paper: #fff8f4;
  --section-tint: #f5e8e1;
  --section-form-bg: #263944;
  --line: #eadbd4;
  --nav-bg: rgba(255, 248, 244, .96);
  --nav-hover: #f7e8df;
  --lead-color: #3f3d3a;
  --hero-overlay-start: rgba(38, 57, 68, .08);
  --hero-overlay-end: rgba(38, 57, 68, .82);
}

.theme-events.wedding-page .section--tint {
  color: var(--ink);
}

.theme-events.wedding-page .section--tint h2,
.theme-events.wedding-page .section--tint h3 {
  color: var(--green-950);
}

.theme-events.wedding-page .section--tint a:not(.btn) {
  color: var(--green-700);
}

.section--form .lead-form label,
.section--form .form-note {
  color: #ffffff;
}

.section--form .lead-form input,
.section--form .lead-form select,
.section--form .lead-form textarea {
  background: #ffffff;
  color: #16211f;
  border-color: rgba(255, 255, 255, .58);
}

.section--form .lead-form input::placeholder,
.section--form .lead-form textarea::placeholder {
  color: #62706c;
}

@media (min-width: 720px) {
  .site-header {
    min-height: 78px;
    padding: .55rem clamp(1rem, 4vw, 2rem);
    gap: .75rem;
  }

  .header-cluster {
    flex-wrap: nowrap;
    gap: .7rem;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .header-shortcuts {
    align-items: center;
    gap: .32rem;
  }

  .header-shortcuts a {
    min-height: 34px;
    padding: .4rem .7rem;
    font-size: .82rem;
  }

  .header-actions {
    gap: .5rem;
  }

  .header-call {
    width: 46px;
    height: 46px;
  }

  .header-call svg {
    width: 22px;
    height: 22px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .home-hero {
    padding: clamp(2rem, 5vw, 4.5rem) 0 2rem;
  }

  .home-hero__top {
    grid-template-columns: minmax(0, 1fr) clamp(150px, 18vw, 240px);
  }

  .home-hero__mark {
    display: block;
  }

  .journey {
    min-height: 340px;
  }

  .journey-grid,
  .feature-grid,
  .pricing-grid,
  .contact-grid,
  .gallery,
  .quote-grid,
  .google-review-grid,
  .reference-logo-grid,
  .form-grid,
  .footer-grid,
  .split-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .video-mix-grid .gallery--birthday-media {
    height: var(--media-stack-height);
    min-height: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    overflow: hidden;
  }

  .video-mix-grid .gallery--birthday-media img {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .video-mix-grid .gallery--birthday-media img:nth-child(1),
  .video-mix-grid .gallery--birthday-media img:nth-child(2),
  .video-mix-grid .gallery--birthday-media img:nth-child(3) {
    grid-column: span 2;
  }

  .video-mix-grid .gallery--birthday-media img:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .video-mix-grid .gallery--birthday-media img:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .text-media {
    grid-template-columns: 1.05fr .95fr;
  }

  .box-use-card {
    grid-template-columns: minmax(120px, .82fr) 1fr;
  }

  .corporate-content-row {
    grid-template-columns: minmax(120px, .8fr) minmax(0, 1.2fr);
  }

  .room-teaser {
    grid-template-columns: minmax(150px, .75fr) 1fr;
  }

  .check-list--two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1020px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }

  .header-actions {
    grid-column: 2;
    justify-self: center;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    grid-column: 3;
    justify-self: end;
    position: static;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: .25rem;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .site-nav a {
    padding: .5rem .65rem;
    font-size: .92rem;
  }

  .theme-events .site-nav {
    background: transparent;
  }

  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .quote-grid,
  .google-review-grid,
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .box-use-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .corporate-content-row {
    grid-template-columns: minmax(140px, .8fr) minmax(0, 1.15fr) minmax(140px, .8fr) minmax(0, 1.15fr);
  }

  .process-flow {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .process-flow li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 1.95rem;
    left: calc(100% + .08rem);
    width: .85rem;
    height: 2px;
    background: var(--gold);
  }

  .feature-grid.feature-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-duo {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .room-teaser {
    grid-template-columns: minmax(170px, .86fr) 1fr;
  }

  .video-mix-grid {
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
  }

  .gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reference-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
