:root {
  --black: #080808;
  --white: #ffffff;
  --paper: #fbfaf8;
  --soft: #f4f1ed;
  --line: #dedbd5;
  --muted: #67635e;
  --accent: #e4005a;
  --accent-dark: #a40042;
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", Arial, Helvetica, sans-serif;
  --section-space: 86px;
}

.theme-orange {
  --accent: #c75a1d;
  --accent-dark: #8f3712;
  --paper: #fbf8f3;
  --soft: #f3ebe0;
}

.theme-orange .header-cta,
.theme-orange .button,
.theme-orange .whatsapp-button {
  background: linear-gradient(135deg, #b74716, #d97724);
  border-color: #b74716;
}

.theme-orange .whatsapp-button {
  color: var(--accent-dark);
  background: var(--white);
  border-color: var(--white);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  color: var(--black);
  background: var(--paper);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  min-height: 78px;
  padding: 12px 34px;
  color: var(--black);
  background: rgb(255 255 255 / 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 0 rgb(8 8 8 / 0);
  transition: min-height 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgb(255 255 255 / 0.97);
  box-shadow: 0 14px 34px rgb(8 8 8 / 0.08);
}

.brand {
  display: grid;
  gap: 5px;
  width: max-content;
}

.brand img {
  width: 220px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: clamp(18px, 2.2vw, 30px);
  padding: 0;
  color: #161616;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 12px 0;
  color: inherit;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 6px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgb(8 8 8 / 0.18);
  border-radius: 50%;
}

.nav-links .nav-contact,
.nav-links .nav-mail {
  display: none;
}

.nav-links .nav-instagram svg,
.nav-links .nav-mail svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.nav-links .nav-instagram::after {
  display: none;
}

.nav-links .nav-instagram:hover,
.nav-links .nav-instagram:focus-visible,
.nav-links .nav-mail:hover,
.nav-links .nav-mail:focus-visible {
  color: var(--accent);
  border-color: currentColor;
}

.header-cta,
.button,
.outline-button,
.ghost-link,
.whatsapp-button,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta,
.button,
.whatsapp-button {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

.header-cta {
  min-height: 42px;
  padding: 0 22px;
  border-radius: 8px;
  box-shadow: 0 12px 22px rgb(8 8 8 / 0.1);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--accent);
  background: transparent;
  border-color: var(--accent);
  box-shadow: 0 8px 16px rgb(8 8 8 / 0.08);
  transform: translateY(-1px);
}

.button:hover,
.button:focus-visible {
  color: var(--white);
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 16px 28px rgb(8 8 8 / 0.14);
  transform: translateY(-1px);
}

.outline-button:hover,
.outline-button:focus-visible {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 26px rgb(8 8 8 / 0.12);
  transform: translateY(-1px);
}

.ghost-link:hover,
.ghost-link:focus-visible,
.cta-link:hover,
.cta-link:focus-visible {
  color: var(--accent);
  border-bottom-color: currentColor;
  transform: translateY(-1px);
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 14px 26px rgb(8 8 8 / 0.12);
  transform: translateY(-1px);
}

.header-cta:active,
.button:active,
.outline-button:active,
.ghost-link:active,
.whatsapp-button:active,
.cta-link:active {
  box-shadow: 0 6px 14px rgb(8 8 8 / 0.1);
  transform: translateY(1px);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0;
  color: var(--black);
  background: transparent;
  box-shadow: 0 0 0 rgb(8 8 8 / 0);
  font: inherit;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, backdrop-filter 180ms ease, -webkit-backdrop-filter 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: var(--accent);
  background: transparent;
  transform: translateY(-1px);
}

.menu-toggle:active {
  transform: translateY(1px);
}

.menu-toggle i,
.menu-toggle i::before,
.menu-toggle i::after {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
  transform-origin: center;
  transition: transform 220ms cubic-bezier(0.76, 0, 0.24, 1), opacity 180ms ease, width 180ms ease, background 180ms ease;
}

.menu-toggle i {
  position: relative;
}

.menu-toggle i::before,
.menu-toggle i::after {
  position: absolute;
  left: 0;
}

.menu-toggle i::before {
  top: -5px;
}

.menu-toggle i::after {
  top: 5px;
}

.site-header.is-menu-open .menu-toggle i {
  background: transparent;
}

.site-header.is-menu-open .menu-toggle {
  color: var(--black);
  background: rgb(255 255 255 / 0.82);
  border-color: transparent;
  box-shadow: 0 16px 34px rgb(8 8 8 / 0.16);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-header.is-menu-open .menu-toggle:hover,
.site-header.is-menu-open .menu-toggle:focus-visible {
  color: var(--accent);
  border-color: transparent;
  box-shadow: 0 18px 38px rgb(8 8 8 / 0.18);
}

.site-header.is-menu-open .menu-toggle i,
.site-header.is-menu-open .menu-toggle i::before,
.site-header.is-menu-open .menu-toggle i::after {
  width: 18px;
}

.site-header.is-menu-open .menu-toggle i::before {
  transform: translateY(5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle i::after {
  transform: translateY(-5px) rotate(-45deg);
}

.header-cta::after,
.button::after,
.ghost-link::after,
.outline-button::after,
.cta-link::after,
.service-card a::after {
  content: "→";
  margin-left: 16px;
  font-size: 18px;
  line-height: 0;
  transition: transform 180ms ease;
}

.header-cta:hover::after,
.header-cta:focus-visible::after,
.button:hover::after,
.button:focus-visible::after,
.ghost-link:hover::after,
.ghost-link:focus-visible::after,
.outline-button:hover::after,
.outline-button:focus-visible::after,
.cta-link:hover::after,
.cta-link:focus-visible::after,
.service-card a:hover::after,
.service-card a:focus-visible::after {
  transform: translateX(4px);
}

.home-hero-split {
  display: grid;
  grid-template-columns: minmax(540px, 0.96fr) minmax(480px, 1fr);
  min-height: calc(100svh - 110px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.hero-text {
  display: grid;
  align-content: center;
  padding: 72px 44px 32px;
}

.eyebrow,
.section-kicker {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow::after {
  content: "";
  width: 58px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 500;
}

h1 {
  max-width: 13.8ch;
  font-size: clamp(4.2rem, 5.8vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
}

h1 span,
h2 span {
  display: inline;
  color: var(--accent);
}

.hero-text h1 {
  overflow-wrap: normal;
}

.hero-text > p:not(.eyebrow):not(.location-note) {
  max-width: 520px;
  margin-top: 24px;
  color: #312f2d;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 34px;
}

.ghost-link,
.outline-button {
  color: var(--black);
  background: transparent;
  border-color: transparent transparent var(--accent);
  padding-right: 0;
  padding-left: 0;
}

.location-note {
  margin-top: 64px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.location-note::before {
  content: "⌖";
  margin-right: 10px;
  color: var(--black);
  font-size: 15px;
}

.hero-image {
  min-height: 560px;
}

.hero-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.full-video-hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 78px);
  align-items: end;
  overflow: hidden;
  padding: 120px 38px 70px;
  color: var(--white);
  background: var(--black);
}

.full-video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  object-fit: cover;
  transition: opacity 1400ms ease;
}

.full-video-hero video.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .full-video-hero video {
    transition: none;
  }
}

.full-video-hero::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(8 8 8 / 0.72), rgb(8 8 8 / 0.26) 52%, rgb(8 8 8 / 0.1)),
    linear-gradient(180deg, rgb(8 8 8 / 0.14), rgb(8 8 8 / 0.36));
  content: "";
}

.full-video-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.full-video-copy h1 {
  max-width: 12.5ch;
}

.full-video-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: rgb(255 255 255 / 0.88);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.full-video-copy .eyebrow {
  color: var(--white);
}

.full-video-copy .ghost-link {
  color: var(--white);
}

.hero-video-controls {
  position: absolute;
  right: 38px;
  bottom: 38px;
  z-index: 1;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-video-controls.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
}

.hero-video-toggle {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  color: #d4cfd194;
  background: rgb(255 255 255 / 20%);
  border: 1px solid rgb(255 255 255 / 0.42);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgb(8 8 8 / 0.22);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.hero-video-toggle:hover,
.hero-video-toggle:focus-visible {
  background: rgb(255 255 255 / 28%);
  box-shadow: 0 15px 36px rgb(8 8 8 / 0.24);
  transform: translateY(-1px);
}

.hero-video-toggle:active {
  background: rgb(255 255 255 / 32%);
  box-shadow: 0 12px 30px rgb(8 8 8 / 0.22);
  transform: translateY(0);
}

.hero-video-toggle::before {
  width: 0;
  height: 0;
  margin-left: 4px;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid currentColor;
  content: "";
}

.hero-video-toggle.is-playing::before {
  width: 16px;
  height: 20px;
  margin-left: 0;
  border: 0;
  background: linear-gradient(
    90deg,
    currentColor 0 5px,
    transparent 5px 11px,
    currentColor 11px 16px
  );
}

.services-section {
  padding: var(--section-space) 38px 74px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.services-section .section-kicker,
.inspiration-section .section-kicker {
  justify-content: center;
  margin-bottom: 12px;
}

.services-section .section-kicker::after,
.inspiration-section .section-kicker::after {
  display: none;
}

.services-section h2 {
  font-size: clamp(42px, 4.8vw, 74px);
  line-height: 0.94;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 34px;
  text-align: left;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 392px;
  background: var(--white);
  border: 1px solid var(--line);
}

.service-card img {
  height: 178px;
}

.service-card:first-child img {
  object-position: center 64%;
}

.service-card h3 {
  margin: 24px 24px 0;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.05;
}

.service-card p {
  margin: 18px 24px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.service-card a {
  align-self: end;
  margin: 26px 24px 24px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.service-card a::after {
  color: var(--accent);
}

.service-card a:hover,
.service-card a:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.service-card a:active {
  transform: translateY(1px);
}

.services-section .service-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.services-section .service-card {
  isolation: isolate;
  overflow: hidden;
  align-content: end;
  min-height: clamp(390px, 34vw, 510px);
  color: var(--white);
  background: var(--black);
  border-color: rgb(8 8 8 / 0.18);
  box-shadow: 0 24px 54px rgb(8 8 8 / 0.12);
}

.services-section .service-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgb(8 8 8 / 0.02) 0%, rgb(8 8 8 / 0.18) 38%, rgb(8 8 8 / 0.82) 100%),
    linear-gradient(135deg, rgb(228 0 90 / 0.22), rgb(8 8 8 / 0) 52%);
  content: "";
  pointer-events: none;
}

.services-section .service-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  height: 100%;
  filter: saturate(0.86) contrast(1.06) brightness(0.9) sepia(0.04);
  object-position: center center;
  transform: scale(1.02);
  transition: filter 220ms ease, transform 220ms ease;
}

.services-section .service-card:nth-child(1) img {
  object-position: center 58%;
}

.services-section .service-card:nth-child(2) img {
  object-position: center 54%;
}

.services-section .service-card:nth-child(3) img {
  object-position: center center;
}

.services-section .service-card:nth-child(4) img {
  object-position: center 58%;
}

.services-section .service-card:hover img,
.services-section .service-card:focus-within img {
  filter: saturate(0.92) contrast(1.08) brightness(0.95) sepia(0.03);
  transform: scale(1.05);
}

.services-section .service-card h3 {
  max-width: 12ch;
  margin: 0 30px;
  color: var(--white);
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 0.94;
  text-shadow: 0 2px 22px rgb(8 8 8 / 0.44);
}

.services-section .service-card p {
  max-width: 36ch;
  margin: 18px 30px 0;
  color: rgb(255 255 255 / 0.78);
  font-size: 15px;
  line-height: 1.5;
}

.services-section .service-card a {
  width: max-content;
  max-width: calc(100% - 60px);
  margin: 24px 30px 30px;
  color: var(--white);
}

.home-modern .services-modern {
  overflow: hidden;
  padding-top: calc(var(--section-space) + 8px);
  padding-bottom: calc(var(--section-space) + 18px);
  background:
    linear-gradient(90deg, rgb(8 8 8 / 0.035) 1px, transparent 1px) 50% 0 / min(100%, 1220px) 100%,
    linear-gradient(180deg, var(--paper), #fff 72%);
  text-align: left;
}

.home-modern .services-modern-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  max-width: 1220px;
  margin: 0 auto;
}

.home-modern .services-modern .section-kicker {
  justify-content: flex-start;
  margin-bottom: 14px;
}

.home-modern .services-modern-heading > p {
  max-width: 37ch;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.home-modern .service-mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  align-items: start;
  max-width: 1220px;
  margin: 52px auto 0;
}

.home-modern .service-mosaic-item {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  align-items: end;
  min-width: 0;
}

.home-modern .service-mosaic-item-private {
  grid-column: 1 / span 8;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.38fr);
}

.home-modern .service-mosaic-item-corporate {
  grid-column: 9 / -1;
  margin-top: 58px;
}

.home-modern .service-mosaic-item-celebration {
  grid-column: 1 / span 5;
  grid-template-columns: 1fr;
  align-items: center;
  margin-top: -18px;
}

.home-modern .service-mosaic-item-experience {
  grid-column: 6 / -1;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  align-items: center;
  margin-top: 34px;
}

.home-modern .service-mosaic-item-experience .service-mosaic-copy {
  order: -1;
}

.home-modern .service-mosaic-media {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid rgb(8 8 8 / 0.12);
  box-shadow: 0 22px 42px rgb(8 8 8 / 0.08);
}

.home-modern .service-mosaic-item-private .service-mosaic-media {
  aspect-ratio: 1.28 / 1;
  clip-path: polygon(0 0, 100% 0, 96% 100%, 0 100%);
}

.home-modern .service-mosaic-item-corporate .service-mosaic-media {
  aspect-ratio: 4 / 5;
  clip-path: polygon(5% 0, 100% 0, 100% 96%, 0 100%, 0 7%);
}

.home-modern .service-mosaic-item-celebration .service-mosaic-media {
  aspect-ratio: 1 / 1;
  clip-path: polygon(0 4%, 100% 0, 100% 94%, 6% 100%, 0 100%);
}

.home-modern .service-mosaic-item-experience .service-mosaic-media {
  aspect-ratio: 1.55 / 1;
  clip-path: polygon(0 0, 100% 6%, 100% 100%, 0 100%);
}

.home-modern .service-mosaic-media img {
  height: 100%;
  filter: saturate(0.98) contrast(1.03) brightness(1.03);
  transform: scale(1.01);
  transition: filter 220ms ease, transform 220ms ease;
}

.home-modern .service-mosaic-item:hover .service-mosaic-media img,
.home-modern .service-mosaic-item:focus-within .service-mosaic-media img {
  filter: saturate(1.02) contrast(1.04) brightness(1.04);
  transform: scale(1.035);
}

.home-modern .service-mosaic-item-corporate img {
  object-position: 48% center;
}

.home-modern .service-mosaic-item-celebration img {
  object-position: 67% center;
}

.home-modern .service-mosaic-item-experience img {
  object-position: center 54%;
}

.home-modern .service-mosaic-copy {
  display: grid;
  gap: 13px;
  align-content: end;
  min-width: 0;
  padding-top: 8px;
}

.home-modern .service-mosaic-copy::before {
  width: 54px;
  height: 1px;
  background: var(--accent);
  content: "";
}

.home-modern .service-mosaic-copy span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
}

.home-modern .service-mosaic-copy h3 {
  max-width: 10ch;
  color: var(--black);
  font-family: var(--font-serif);
  font-size: clamp(31px, 3.2vw, 48px);
  font-weight: 500;
  line-height: 0.98;
}

.home-modern .service-mosaic-item-corporate h3 {
  max-width: 11ch;
}

.home-modern .service-mosaic-copy p {
  max-width: 32ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.56;
}

.home-modern .service-mosaic-copy a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin-top: 4px;
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.home-modern .service-mosaic-copy a::after {
  width: 18px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.home-modern .service-mosaic-copy a:hover,
.home-modern .service-mosaic-copy a:focus-visible {
  color: var(--accent);
  transform: translateY(-1px);
}

.home-modern .service-mosaic-copy a:hover::after,
.home-modern .service-mosaic-copy a:focus-visible::after {
  transform: translateX(4px);
}

.home-modern .service-mosaic {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(34px, 4vw, 56px) clamp(26px, 3vw, 40px);
  align-items: stretch;
  margin-top: 48px;
}

.home-modern .service-mosaic-item,
.home-modern .service-mosaic-item-private,
.home-modern .service-mosaic-item-corporate,
.home-modern .service-mosaic-item-celebration,
.home-modern .service-mosaic-item-experience {
  grid-column: auto;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
  min-height: 0;
  margin-top: 0;
  padding-top: 22px;
  border-top: 1px solid rgb(8 8 8 / 0.16);
}

.home-modern .service-mosaic-item-experience .service-mosaic-copy {
  order: 0;
}

.home-modern .service-mosaic-item-private .service-mosaic-media,
.home-modern .service-mosaic-item-corporate .service-mosaic-media,
.home-modern .service-mosaic-item-celebration .service-mosaic-media,
.home-modern .service-mosaic-item-experience .service-mosaic-media {
  aspect-ratio: 16 / 10;
  clip-path: none;
}

.home-modern .service-mosaic-media {
  border: 0;
  box-shadow: none;
}

.home-modern .service-mosaic-copy {
  align-content: start;
  gap: 12px;
  padding-top: 0;
}

.home-modern .service-mosaic-copy::before {
  width: 46px;
}

.home-modern .service-mosaic-copy h3 {
  max-width: none;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1;
}

.home-modern .service-mosaic-copy p {
  max-width: 38ch;
  font-size: 14px;
  line-height: 1.58;
}

.quote-band {
  display: grid;
  grid-template-columns: 0.22fr 0.55fr 0.55fr;
  gap: 48px;
  align-items: center;
  padding: 70px 86px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.quote-mark {
  color: var(--accent);
  font-family: var(--font-serif);
  font-size: 150px;
  font-weight: 700;
  line-height: 0.5;
  text-align: center;
}

.quote-band h2 {
  border-left: 1px solid var(--accent);
  padding-left: 54px;
  font-size: clamp(40px, 4vw, 66px);
  line-height: 0.94;
}

.quote-band h2 em {
  font-style: italic;
}

.quote-band p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.experience-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.76fr) minmax(220px, 0.36fr);
  gap: 56px;
  align-items: center;
  padding: 0 38px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.experience-main {
  height: 100%;
  min-height: 540px;
  margin-left: -38px;
}

.experience-main img {
  object-position: center center;
}

.experience-copy h2 {
  font-size: clamp(40px, 4.2vw, 70px);
  line-height: 0.94;
}

.experience-copy p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.experience-copy .outline-button {
  margin-top: 34px;
  padding-right: 24px;
  padding-left: 24px;
  border: 1px solid var(--accent);
}

.experience-stack {
  display: grid;
  gap: 16px;
  padding: 32px 0;
}

.experience-stack img {
  height: 180px;
}

.inspiration-section {
  padding: var(--section-space) 38px calc(var(--section-space) + 8px);
  background: var(--paper);
  text-align: center;
}

.inspiration-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 38px rgb(8 8 8 / 0.08);
}

.gallery-frame::before,
.gallery-frame::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  content: "";
}

.gallery-frame::before {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.08), rgb(255 255 255 / 0) 38%),
    linear-gradient(135deg, rgb(228 0 90 / 0.04), rgb(199 90 29 / 0.06));
  mix-blend-mode: soft-light;
}

.gallery-frame::after {
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.26), inset 0 -46px 80px rgb(8 8 8 / 0.05);
}

.inspiration-grid img {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.86) contrast(1.04) brightness(1.04) sepia(0.05);
  object-fit: cover;
  transform: scale(var(--gallery-zoom, 1.03));
}

.inspiration-grid .gallery-focus-top {
  object-position: center 28%;
}

.inspiration-grid .gallery-focus-center {
  object-position: center center;
}

.inspiration-grid .gallery-focus-left {
  object-position: 30% center;
}

.inspiration-grid .gallery-focus-dessert-left {
  object-position: 24% center;
}

.inspiration-grid .gallery-focus-service {
  object-position: center 56%;
}

.inspiration-grid .gallery-focus-clarisa-service {
  object-position: center 36%;
}

.inspiration-grid .gallery-focus-platter {
  object-position: center 42%;
}

.inspiration-grid .gallery-focus-working {
  object-position: center 48%;
}

.inspiration-grid .gallery-focus-right-bottom {
  object-position: 68% 68%;
}

.inspiration-grid .gallery-focus-bottom {
  object-position: center 70%;
}

.inspiration-grid .gallery-zoom-out {
  --gallery-zoom: 1.01;
}

.inspiration-grid .gallery-zoom-in {
  --gallery-zoom: 1.07;
}

.inspiration-grid .gallery-zoom-tight {
  --gallery-zoom: 1.16;
}

.inspiration-grid .gallery-rotate-berry {
  transform: rotate(92deg) scale(1.5) translate(20px);
}

.inspiration-grid .gallery-rotate-salada {
  filter: saturate(0.84) contrast(1.05) brightness(1.25) sepia(0.05);
  transform: rotate(6deg) scale(1.5) translate(20px) translate(-67px, 24px);
}

.inspiration-grid .gallery-transform-room {
  transform: rotate(0deg) scale(1.2) translate(20px) translate(-38px, 24px);
}

.inspiration-grid .gallery-transform-berry-large {
  filter: saturate(0.84) contrast(1.06) brightness(1.36) sepia(0.04);
  transform: rotate(0deg) scale(1.3) translate(20px) translate(-1px, 17px);
}

.inspiration-grid .gallery-filter-soft {
  filter: saturate(0.84) contrast(1.05) brightness(1.06) sepia(0.05);
}

.inspiration-grid .gallery-filter-warm {
  filter: saturate(0.82) contrast(1.05) brightness(1.07) sepia(0.08);
}

.inspiration-grid .gallery-filter-fresh {
  filter: saturate(0.74) contrast(1.04) brightness(1.08) sepia(0.04);
}

.inspiration-grid .gallery-filter-lift {
  filter: saturate(0.74) contrast(1.06) brightness(1.16) sepia(0.07);
}

.inspiration-grid .gallery-filter-room {
  filter: saturate(0.68) contrast(1.08) brightness(1.28) sepia(0.06);
}

.inspiration-grid .gallery-filter-dessert {
  filter: saturate(0.84) contrast(1.06) brightness(1.06) sepia(0.04);
}

.inspiration-grid .gallery-filter-people {
  filter: saturate(0.8) contrast(1.06) brightness(1.1) sepia(0.06);
}

.inspiration-grid .gallery-filter-platter {
  filter: saturate(0.78) contrast(1.06) brightness(1.1) sepia(0.05);
}

.inspiration-grid .gallery-filter-working {
  filter: saturate(0.72) contrast(1.08) brightness(1.13) sepia(0.06);
}

.inspiration-grid .gallery-filter-party {
  filter: saturate(0.78) contrast(1.08) brightness(1.08) sepia(0.02);
}

.whatsapp-button {
  color: var(--accent);
  background: var(--white);
  border-color: var(--white);
}

.cta-link {
  border-color: transparent;
}

.proposal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 0.86fr);
  gap: 64px;
  padding: 86px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proposal-section h2 {
  font-size: clamp(42px, 4.4vw, 72px);
  line-height: 0.94;
}

.proposal-section p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.contact-preview-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.58fr);
  gap: 54px;
  align-items: end;
  padding: 92px 86px 76px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.contact-preview-hero h1 {
  max-width: 11.5ch;
}

.contact-preview-copy {
  display: grid;
  gap: 28px;
  justify-items: start;
}

.contact-preview-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

.contact-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-design {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 88px;
}

.contact-design-split {
  padding: 72px 86px 86px;
  background: var(--paper);
}

.contact-option-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(320px, 0.6fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 32px;
}

.contact-option-heading .form-kicker {
  margin-bottom: 0;
}

.contact-option-heading h2 {
  font-size: clamp(40px, 5vw, 82px);
  line-height: 0.92;
}

.contact-split-shell {
  display: grid;
  grid-template-columns: minmax(360px, 0.86fr) minmax(520px, 0.9fr);
  gap: 42px;
  align-items: stretch;
}

.contact-video-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--black);
  border: 1px solid var(--line);
}

.contact-video-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(8 8 8 / 0.04), rgb(8 8 8 / 0.22)),
    linear-gradient(135deg, rgb(228 0 90 / 0.12), rgb(8 8 8 / 0) 54%);
  content: "";
  pointer-events: none;
}

.contact-video-frame video {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.86) contrast(1.08) brightness(0.94) sepia(0.04);
  object-fit: cover;
}

.contact-video-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  left: 22px;
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.contact-video-frame-split {
  align-self: start;
  height: min(82svh, 720px);
  min-height: 620px;
}

.contact-video-frame-split video,
.contact-video-frame-wide video {
  object-position: center 68%;
}

.contact-intake,
.contact-intro-copy,
.contact-stack-copy {
  display: grid;
}

.contact-intake {
  align-content: start;
  gap: 28px;
}

.contact-intro-copy,
.contact-stack-copy {
  gap: 20px;
}

.contact-intro-copy .section-kicker,
.contact-stack-copy .section-kicker {
  margin-bottom: 4px;
}

.contact-intro-copy h3,
.contact-stack-copy h3,
.contact-page-form h3,
.contact-video-copy h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.94;
}

.contact-intro-copy h3,
.contact-stack-copy h3 {
  font-size: clamp(36px, 4.4vw, 70px);
}

.contact-page-form h3 {
  font-size: clamp(30px, 3vw, 46px);
}

.contact-intro-copy h3 span,
.contact-stack-copy h3 span,
.contact-page-form h3 span,
.contact-video-copy h2 span {
  color: var(--accent);
}

.contact-intro-copy p:not(.section-kicker),
.contact-stack-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.48;
}

.contact-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.contact-method-grid a,
.contact-method-grid p {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 20px;
  color: var(--muted);
  background: var(--white);
  font-size: 16px;
  line-height: 1.45;
}

.contact-design-stacked {
  background: var(--paper);
}

.contact-design-stacked .contact-option-heading {
  margin-bottom: 0;
  padding: 72px 86px 28px;
  color: var(--white);
  background: var(--black);
}

.contact-option-heading-light .form-kicker {
  color: var(--white);
}

.contact-option-heading-light h2 {
  color: var(--white);
}

.contact-video-frame-wide {
  height: min(72svh, 680px);
  min-height: 460px;
  border: 0;
}

.contact-video-frame-wide::after {
  background:
    linear-gradient(90deg, rgb(8 8 8 / 0.72), rgb(8 8 8 / 0.28) 58%, rgb(8 8 8 / 0.1)),
    linear-gradient(180deg, rgb(8 8 8 / 0.1), rgb(8 8 8 / 0.34));
}

.contact-video-copy {
  position: absolute;
  z-index: 1;
  right: clamp(16px, 6vw, 86px);
  bottom: clamp(34px, 6vw, 76px);
  left: clamp(16px, 6vw, 86px);
  max-width: 720px;
  color: var(--white);
}

.contact-video-copy .eyebrow {
  margin-bottom: 24px;
  color: var(--white);
}

.contact-video-copy h2 {
  max-width: 11ch;
  color: var(--white);
  font-size: clamp(48px, 5.8vw, 92px);
}

.contact-video-copy p:not(.eyebrow) {
  max-width: 560px;
  margin-top: 24px;
  color: rgb(255 255 255 / 0.82);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.55;
}

.contact-stack-content {
  display: grid;
  gap: 36px;
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 38px 86px;
}

.contact-page-form-stacked {
  width: 100%;
}

.contact-final-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(500px, 0.86fr);
  gap: 48px;
  align-items: start;
  padding: 30px 86px 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.contact-first-screen {
  min-height: calc(100svh - 78px);
}

.contact-video-frame-side {
  position: relative;
  height: clamp(430px, calc(100svh - 148px), 620px);
  min-height: 0;
  border: 0;
}

.contact-video-frame-side::after {
  background:
    linear-gradient(180deg, rgb(8 8 8 / 0.08), rgb(8 8 8 / 0.34)),
    linear-gradient(135deg, rgb(228 0 90 / 0.08), rgb(8 8 8 / 0) 58%);
}

.contact-video-frame-side video {
  filter: saturate(0.78) contrast(1.08) brightness(0.78) sepia(0.05);
  object-position: center 68%;
}

.contact-intro-copy h1,
.contact-intro-copy h2,
.contact-page-form h2 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 0.94;
}

.contact-intro-copy h1 {
  max-width: 10ch;
  font-size: clamp(42px, 4.8vw, 76px);
}

.contact-intro-copy h2 {
  font-size: clamp(38px, 4.4vw, 72px);
}

.contact-page-form h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.contact-intro-copy h1 span,
.contact-intro-copy h2 span,
.contact-page-form h2 span {
  color: var(--accent);
}

.contact-address-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  padding-top: 2px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.contact-address-line a {
  color: var(--black);
  font-weight: 800;
}

.contact-page-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 0.9fr);
  gap: 72px;
  padding: 86px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.contact-details {
  display: grid;
  align-content: start;
  gap: 24px;
}

.contact-details h2 {
  font-size: clamp(38px, 4.4vw, 72px);
  line-height: 0.94;
}

.contact-details h2 span {
  color: var(--accent);
}

.contact-details p:not(.section-kicker),
.contact-detail-list a,
.contact-detail-list p {
  color: var(--muted);
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.48;
}

.contact-detail-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.contact-page-image {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  margin: 4px 0 0;
  background: var(--black);
}

.contact-page-image img {
  width: 100%;
  height: 100%;
  filter: saturate(0.9) contrast(1.05) brightness(0.96) sepia(0.03);
  object-fit: cover;
  object-position: center center;
}

.contact-page-form {
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
}

.form-kicker {
  display: block;
  margin: 0 0 34px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.form-kicker::after {
  display: none;
  content: none;
}

.footer-brand img {
  width: 240px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

clarisimo-contact-form {
  display: block;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--black);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--black);
  border-radius: 0;
  padding: 13px 0;
  color: var(--black);
  background: transparent;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.form-button {
  width: max-content;
  margin-top: 8px;
  cursor: pointer;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 8px;
}

.form-actions .form-button {
  margin-top: 0;
}

.form-ghost {
  min-height: 42px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.8fr;
  gap: 72px;
  padding: 42px 68px;
  color: var(--black);
  background: var(--white);
}

.footer-brand {
  margin-bottom: 18px;
}

.footer-brand-subtitle {
  display: block;
  margin-top: 8px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.36em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.footer p,
.footer a {
  display: block;
  max-width: 280px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.footer h3 {
  margin: 0 0 18px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer a + a {
  margin-top: 6px;
}

/* Internal pages */
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: 28px;
  padding: 92px 38px 74px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.simple-page-hero h1 {
  max-width: 12ch;
}

.page-hero p:not(.eyebrow),
.event-page-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

.about-story,
.venue-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 0.94fr);
  gap: 78px;
  align-items: center;
  padding: 86px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-story {
  padding-left: 0;
}

.about-copy,
.venue-copy {
  display: grid;
  gap: 22px;
}

.about-copy p,
.venue-copy p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 25px);
  line-height: 1.45;
}

.about-portrait {
  height: 560px;
  max-width: 430px;
  justify-self: end;
}

.about-portrait img {
  object-position: center top;
}

.about-note {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(320px, 0.58fr);
  gap: 70px;
  align-items: start;
  padding: 62px 86px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about-note h2 {
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: 0.94;
}

.about-note p {
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
}

.small-photo-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 38px 86px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.small-photo-row figure {
  height: 260px;
  background: var(--soft);
}

.about-food-row {
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0;
  background: var(--black);
  border-bottom: 0;
}

.about-food-row figure {
  position: relative;
  overflow: hidden;
  height: clamp(320px, 32vw, 470px);
  background: #101010;
}

.about-food-row figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.04), rgb(0 0 0 / 0.12)),
    linear-gradient(135deg, rgb(228 0 90 / 0.08), rgb(0 0 0 / 0) 54%);
  content: "";
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.about-food-row img {
  height: 100%;
  filter: saturate(0.82) contrast(1.1) brightness(0.96) sepia(0.05);
  object-fit: cover;
  transform: scale(1.06);
}

.about-food-row .about-food-savory {
  filter: saturate(0.82) contrast(1.08) brightness(0.96) sepia(0.06);
  object-position: center 48%;
  transform: scale(1.08);
}

.about-food-row .about-food-rolls {
  filter: saturate(0.88) contrast(1.08) brightness(0.96) sepia(0.04);
  object-position: center center;
  transform: scale(1.04);
}

.about-food-row .about-food-dessert {
  filter: saturate(0.82) contrast(1.1) brightness(0.96) sepia(0.04);
  object-position: center center;
  transform: scale(1.06);
}

.about-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.58fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: min(calc(100svh - 78px), 820px);
  padding: 0 0 0 38px;
}

.about-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 56px 0;
}

.about-hero p:not(.eyebrow) {
  max-width: 46ch;
  margin-top: 26px;
}

.about-hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 44px;
  margin: 44px 0 0;
  padding: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.about-hero-facts li {
  display: grid;
  gap: 6px;
}

.about-hero-facts strong {
  font-size: clamp(20px, 1.9vw, 26px);
  font-weight: 800;
  line-height: 1;
}

.about-hero-facts span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-hero-cta {
  margin-top: 36px;
}

.about-hero .about-portrait {
  height: auto;
  min-height: 100%;
  max-width: none;
  justify-self: stretch;
}

.about-hero .about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.about-story .about-copy {
  max-width: 74ch;
}

.about-tall-photo {
  height: clamp(460px, 52vw, 660px);
  width: 100%;
  max-width: none;
  justify-self: stretch;
  overflow: hidden;
  background: var(--soft);
}

.about-tall-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy p {
  max-width: 58ch;
}

.about-pullquote {
  margin: 6px 0;
  padding-left: 26px;
  border-left: 3px solid var(--accent);
}

.about-pullquote p {
  max-width: 24ch;
  color: var(--black);
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.6vw, 36px);
  font-style: italic;
  line-height: 1.18;
}

.about-note .section-kicker {
  margin-bottom: 18px;
}

.about-note-copy {
  padding-left: 26px;
  border-left: 1px solid var(--line);
}

.about-cta {
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: clamp(64px, 9vw, 110px) clamp(16px, 5vw, 38px);
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.about-cta .section-kicker {
  justify-content: center;
  margin-bottom: 0;
}

.about-cta h2 {
  font-size: clamp(38px, 4.8vw, 74px);
  line-height: 0.94;
}

.about-cta h2 span {
  color: var(--accent);
}

.about-cta > p:not(.section-kicker) {
  max-width: 42ch;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.45;
}

.about-cta .button {
  margin-top: 10px;
}

.event-gemini-gallery {
  display: grid;
  gap: 28px;
  padding: 58px 38px 72px;
  color: var(--black);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.event-gemini-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.5fr);
  gap: 46px;
  align-items: end;
  padding: 0 72px 18px;
}

.event-gemini-heading .section-kicker {
  color: var(--accent);
}

.event-gemini-heading .section-kicker::after {
  background: rgb(228 0 90 / 0.22);
}

.event-gemini-heading h2 {
  max-width: 13ch;
  color: var(--black);
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.92;
}

.event-gemini-heading h2 span {
  color: var(--accent);
}

.event-gemini-heading > p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.45;
}

.event-gallery-grid {
  margin-top: 0;
}

.event-gemini-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: clamp(76px, 6.2vw, 102px);
  gap: 14px;
}

.event-gemini-grid figure {
  position: relative;
  grid-column: span 3;
  grid-row: span 3;
  overflow: hidden;
  min-height: 0;
  background: #101010;
}

.event-gemini-grid figure::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.04), rgb(0 0 0 / 0.12)),
    linear-gradient(135deg, rgb(228 0 90 / 0.08), rgb(0 0 0 / 0) 54%);
  content: "";
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.event-gemini-grid img {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.88) contrast(1.06) brightness(0.98) sepia(0.04);
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}

.event-gemini-grid .event-gemini-feature {
  grid-column: span 6;
  grid-row: span 4;
}

.event-gemini-grid .event-gemini-wide {
  grid-column: span 4;
  grid-row: span 3;
}

.event-gemini-grid .event-gemini-tall {
  grid-column: span 3;
  grid-row: span 5;
}

.event-gemini-grid figure:nth-child(1) img,
.event-gemini-grid figure:nth-child(7) img,
.event-gemini-grid figure:nth-child(9) img {
  object-position: center 55%;
}

.event-gemini-grid figure:nth-child(2) img {
  object-position: center 62%;
}

.event-gemini-grid figure:nth-child(4) img {
  object-position: center 45%;
}

.event-gemini-grid figure:nth-child(5) img {
  object-position: center 60%;
}

.event-gemini-grid figure:nth-child(6) img {
  object-position: center 65%;
}

.two-photo-band,
.event-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
  background: var(--black);
}

.two-photo-band figure,
.event-gallery img {
  min-height: 68svh;
}

.values,
.event-types {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.values > div,
.event-types article {
  min-height: 300px;
  padding: 34px 38px;
  border-right: 1px solid var(--line);
}

.values > div:last-child,
.event-types article:last-child {
  border-right: 0;
}

.values span,
.event-types span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.values h3,
.event-types h2 {
  margin-top: 58px;
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 500;
  line-height: 0.96;
}

.values p,
.event-types p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.clean-values {
  display: grid;
  gap: 54px;
  padding: 84px 86px 0;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--black);
}

.values-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 56px;
  align-items: start;
}

.values-heading .section-kicker {
  margin: 0;
}

.values-heading > p {
  max-width: 36ch;
  margin: 0;
  color: rgb(255 255 255 / 0.72);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.42;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgb(255 255 255 / 0.22);
  border-bottom: 1px solid rgb(255 255 255 / 0.22);
}

.value-card {
  min-height: 280px;
  padding: 34px 34px 38px 0;
  border-right: 1px solid rgb(255 255 255 / 0.22);
}

.value-card + .value-card {
  padding-left: 34px;
}

.value-card:last-child {
  border-right: 0;
}

.clean-values .value-tag {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.22em;
  line-height: 1;
  text-transform: uppercase;
}

.clean-values h3 {
  margin-top: 52px;
  color: var(--white);
  font-size: clamp(42px, 4.9vw, 76px);
  line-height: 0.92;
}

.value-card p:not(.value-tag) {
  max-width: 35ch;
  margin-top: 26px;
  color: rgb(255 255 255 / 0.68);
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.42;
}

.values-floor-frame {
  position: relative;
  overflow: hidden;
  width: calc(100% + 172px);
  height: clamp(190px, 18vw, 280px);
  margin: -14px -86px 0;
  background: #101010;
}

.values-floor-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(8 8 8 / 0.08), rgb(8 8 8 / 0.34)),
    linear-gradient(135deg, rgb(228 0 90 / 0.08), rgb(0 0 0 / 0) 58%);
  content: "";
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.values-floor-image {
  filter: saturate(0.78) contrast(1.12) brightness(0.82) sepia(0.04);
  object-position: center 76%;
  transform: scale(1.03);
}

.venue-section {
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.58fr);
  background: var(--paper);
}

.venue-section figure {
  height: 430px;
  min-height: 0;
}

.venue-section img {
  object-position: center 54%;
}

.event-page-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.52fr);
  align-items: stretch;
  gap: clamp(28px, 4.8vw, 76px);
  min-height: min(calc(100svh - 78px), 820px);
  padding: 0 0 0 38px;
}

.event-page-hero h1 {
  max-width: 11ch;
  font-size: clamp(3.8rem, 5.2vw, 6rem);
}

.event-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 32px;
  padding: 70px 0;
}

.event-hero-media {
  overflow: hidden;
  min-height: 100%;
  background: var(--soft);
}

.event-hero-media img {
  height: 100%;
  filter: saturate(0.92) contrast(1.05) brightness(1.02) sepia(0.03);
  object-position: center 42%;
  transform: scale(1.02);
}

.event-intro-copy {
  display: grid;
  gap: 20px;
  max-width: 620px;
}

.event-intro-copy .button {
  justify-self: start;
  margin-top: 6px;
}

.event-page-hero .event-intro-copy p {
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.52;
}

.event-gallery {
  grid-template-columns: 0.8fr 1fr 0.8fr;
}

.event-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 0;
  padding: 54px 38px 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.event-photo-grid figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin: 0;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 38px rgb(8 8 8 / 0.08);
}

.event-photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  filter: saturate(0.86) contrast(1.04) brightness(1.04) sepia(0.05);
  object-fit: cover;
  transform: scale(1.01);
}

.event-photo-grid figure:nth-child(2) img,
.event-photo-grid figure:nth-child(7) img {
  object-position: center 42%;
}

.event-photo-grid figure:nth-child(3) img,
.event-photo-grid figure:nth-child(4) img {
  object-position: center 36%;
}

.event-photo-grid figure:nth-child(5) img,
.event-photo-grid figure:nth-child(8) img {
  object-position: center 48%;
}

.event-photo-grid figure:nth-child(9) img {
  object-position: center center;
}

.event-photo-grid figure:nth-child(10) img,
.event-photo-grid figure:nth-child(11) img {
  object-position: center 50%;
}

.event-photo-grid figure:nth-child(12) img {
  object-position: center 46%;
}

.process {
  padding: 86px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.event-occasions {
  display: grid;
  gap: 48px;
}

.event-occasions-heading .section-kicker {
  margin-bottom: 24px;
}

.process h2 {
  max-width: 14ch;
  font-size: clamp(38px, 4.6vw, 70px);
  line-height: 0.94;
}

.event-occasions-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 0.94fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: stretch;
}

.event-occasions-feature {
  position: relative;
  overflow: hidden;
  min-height: clamp(520px, 48vw, 690px);
  background: #101010;
}

.event-occasions-feature::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.04), rgb(0 0 0 / 0.12)),
    linear-gradient(135deg, rgb(228 0 90 / 0.1), rgb(0 0 0 / 0) 56%);
  content: "";
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.event-occasions-feature img {
  height: 100%;
  filter: saturate(0.9) contrast(1.06) brightness(0.98) sepia(0.04);
  object-position: center 48%;
  transform: scale(1.04);
}

.process-list {
  display: grid;
  align-self: center;
  counter-reset: event-occasion;
  margin-top: 0;
  border-top: 1px solid var(--line);
}

.process-list p {
  display: grid;
  grid-template-columns: clamp(46px, 5.2vw, 72px) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 112px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: event-occasion;
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 40px);
  line-height: 1.05;
}

.process-list p::before {
  color: var(--accent);
  content: counter(event-occasion, decimal-leading-zero);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

.process-list span {
  min-width: 0;
}

.event-process-band {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  align-items: stretch;
  min-height: 620px;
  color: var(--white);
  background: var(--black);
  border-bottom: 1px solid var(--black);
}

.event-process-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 26px;
  padding: 86px;
}

.event-process-copy .section-kicker {
  margin-bottom: 0;
  color: var(--white);
}

.event-process-copy .section-kicker::after {
  background: rgb(255 255 255 / 0.46);
}

.event-process-copy p:not(.section-kicker) {
  max-width: 38ch;
  color: rgb(255 255 255 / 0.78);
  font-size: clamp(20px, 1.85vw, 30px);
  font-weight: 500;
  line-height: 1.42;
}

.event-process-copy .button {
  margin-top: 4px;
}

.event-process-band figure {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  background: var(--black);
}

.event-process-band figure::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgb(8 8 8 / 0.08), rgb(8 8 8 / 0.18));
  content: "";
  pointer-events: none;
}

.event-process-band img {
  height: 100%;
  filter: saturate(0.86) contrast(1.1) brightness(0.86);
  object-position: center 48%;
  transform: scale(1.04);
  transform-origin: center center;
}

.page-service-cards {
  grid-template-columns: repeat(3, 1fr);
  padding: 54px 86px 72px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1100px) {
  :root {
    --section-space: 66px;
  }

  .site-header {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 14px;
    z-index: 80;
  }

  .site-header.is-menu-open {
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header .brand,
  .site-header .header-cta,
  .site-header .menu-toggle {
    position: relative;
    z-index: 2;
  }

  .site-header:not(.is-menu-open) .header-cta {
    display: none;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    align-content: center;
    gap: clamp(4px, 1.2svh, 14px);
    justify-content: stretch;
    justify-self: stretch;
    width: 100%;
    max-width: 100vw;
    min-height: 100svh;
    padding: 112px clamp(24px, 7vw, 78px) calc(118px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-x: clip;
    overflow-y: auto;
    color: var(--black);
    background: var(--paper);
    border: 0;
    box-shadow: none;
    counter-reset: mobile-nav;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity 240ms ease, transform 520ms cubic-bezier(0.76, 0, 0.24, 1), visibility 0s linear 520ms;
  }

  .site-header.is-menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
    transition-delay: 0s;
  }

  .nav-links a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: clamp(14px, 3vw, 28px);
    min-height: clamp(74px, 15svh, 138px);
    padding: clamp(12px, 2.2svh, 22px) 0;
    border-bottom: 1px solid rgb(8 8 8 / 0.16);
    border-radius: 0;
    font-family: var(--font-serif);
    font-size: clamp(58px, 12vw, 132px);
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.88;
    text-transform: none;
    opacity: 0;
    transform: translateY(24px);
    transition: color 180ms ease, opacity 360ms ease, transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
  }

  .nav-links a:not(.nav-instagram):not(.nav-mail) {
    grid-column: 1 / -1;
  }

  .nav-links .nav-contact {
    display: grid;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    color: var(--accent);
    box-shadow: none;
    transform: none;
  }

  .site-header.is-menu-open .nav-links a {
    opacity: 1;
    transform: translateY(0);
  }

  .site-header.is-menu-open .nav-links a:nth-child(1) {
    transition-delay: 130ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(2) {
    transition-delay: 190ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(3) {
    transition-delay: 250ms;
  }

  .site-header.is-menu-open .nav-links a:nth-child(4) {
    transition-delay: 310ms;
  }

  .site-header.is-menu-open .nav-links .nav-mail {
    transition-delay: 350ms;
  }

  .nav-links a::before {
    color: var(--accent);
    content: "0" counter(mobile-nav);
    counter-increment: mobile-nav;
    font-family: var(--font-sans);
    font-size: clamp(11px, 1.9vw, 15px);
    font-weight: 900;
    line-height: 1;
    padding-top: 0.2em;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-instagram,
  .nav-links .nav-mail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    min-height: 48px;
    margin-top: clamp(8px, 2svh, 18px);
    padding: 0;
    border: 1px solid rgb(8 8 8 / 0.2);
    font-size: 0;
  }

  .nav-links .nav-instagram::before,
  .nav-links .nav-mail::before {
    display: none;
    content: none;
    counter-increment: none;
  }

  .nav-links .nav-instagram svg,
  .nav-links .nav-mail svg {
    width: 22px;
    height: 22px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    justify-self: end;
  }

  .site-header.is-menu-open .menu-toggle {
    color: var(--black);
    min-width: 42px;
    min-height: 42px;
    position: fixed;
    top: 18px;
    right: clamp(24px, 7vw, 78px);
    z-index: 3;
    transform: none;
  }

  .site-header.is-menu-open .header-cta {
    display: none;
    position: fixed;
    right: auto;
    bottom: calc(24px + env(safe-area-inset-bottom));
    left: clamp(24px, 7vw, 78px);
    width: fit-content;
    min-height: 36px;
    padding: 0 12px;
    color: var(--white);
    background: var(--accent);
    border-color: var(--accent);
    border-radius: 8px;
    font-size: 10px;
    letter-spacing: 0.06em;
    box-shadow: 0 12px 24px rgb(8 8 8 / 0.12);
  }

  .site-header.is-menu-open .header-cta::after {
    display: none;
  }

  .home-hero-split,
  .experience-section,
  .proposal-section,
  .contact-final-section,
  .contact-preview-hero,
  .contact-option-heading,
  .contact-split-shell,
  .contact-page-section,
  .about-story,
  .about-note,
  .venue-section,
  .page-hero,
  .event-page-hero,
  .event-process-band {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding-right: 38px;
  }

  .about-hero .about-portrait {
    order: -1;
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: 46svh;
    min-height: 320px;
  }

  .about-hero-copy {
    padding: 8px 0 48px;
  }

  .home-hero-split {
    min-height: auto;
  }

  .event-page-hero {
    min-height: auto;
    padding: 0 38px 64px;
  }

  .event-hero-media {
    order: -1;
    height: min(58svh, 560px);
    min-height: 360px;
    margin: 0 -38px;
  }

  .event-hero-copy {
    gap: 26px;
    padding: 46px 0 0;
  }

  .hero-image {
    order: -1;
    height: 58svh;
    min-height: 420px;
  }

  .hero-text {
    align-content: start;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-modern .services-modern-heading,
  .home-modern .service-mosaic {
    grid-template-columns: 1fr;
  }

  .home-modern .services-modern-heading {
    gap: 22px;
  }

  .home-modern .service-mosaic {
    gap: 38px;
    margin-top: 42px;
  }

  .home-modern .service-mosaic-item,
  .home-modern .service-mosaic-item-private,
  .home-modern .service-mosaic-item-corporate,
  .home-modern .service-mosaic-item-celebration,
  .home-modern .service-mosaic-item-experience {
    grid-column: auto;
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .home-modern .service-mosaic-item-corporate .service-mosaic-media,
  .home-modern .service-mosaic-item-experience .service-mosaic-media {
    aspect-ratio: 1.55 / 1;
  }

  .quote-band {
    grid-template-columns: 0.22fr 1fr;
    padding: 42px 38px;
  }

  .quote-band p {
    grid-column: 2;
  }

  .experience-main {
    height: 440px;
    min-height: 0;
    margin: 0 -38px;
  }

  .experience-stack {
    grid-template-columns: 1fr 1fr;
  }

  .about-story,
  .about-note,
  .venue-section,
  .contact-final-section,
  .contact-preview-hero,
  .contact-design-split,
  .contact-design-stacked .contact-option-heading,
  .page-service-cards {
    padding-right: 38px;
    padding-left: 38px;
  }

  .contact-video-frame-split {
    height: 560px;
    min-height: 0;
  }

  .contact-video-frame-side {
    position: relative;
    top: auto;
    height: 500px;
    min-height: 0;
  }

  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .about-portrait {
    justify-self: start;
    max-width: 520px;
  }

  .about-tall-photo {
    justify-self: stretch;
    width: 100%;
    max-width: none;
    height: 52svh;
    min-height: 360px;
  }

  .small-photo-row {
    padding-right: 38px;
    padding-left: 38px;
  }

  .event-process-copy {
    padding: 70px 38px;
  }

  .event-process-copy p:not(.section-kicker) {
    max-width: 34ch;
  }

  .event-process-band {
    min-height: auto;
  }

  .event-process-band figure {
    min-height: 460px;
  }

  .event-process-band figure::before {
    background:
      linear-gradient(180deg, rgb(8 8 8 / 0.74), rgb(8 8 8 / 0.08) 36%, rgb(8 8 8 / 0.16)),
      linear-gradient(90deg, rgb(8 8 8 / 0.24), rgb(8 8 8 / 0));
  }

  .about-food-row {
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
  }

  .event-gemini-heading {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-right: 24px;
    padding-left: 24px;
  }

  .event-gemini-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(74px, 11.5vw, 118px);
    gap: 12px;
  }

  .event-gemini-grid figure,
  .event-gemini-grid .event-gemini-wide {
    grid-column: span 3;
    grid-row: span 2;
  }

  .event-gemini-grid .event-gemini-feature {
    grid-column: span 6;
    grid-row: span 3;
  }

  .event-gemini-grid .event-gemini-tall {
    grid-column: span 3;
    grid-row: span 4;
  }

  .event-gemini-grid .event-gemini-mobile-wide {
    grid-column: span 6;
  }

  .event-occasions {
    gap: 38px;
    padding: 70px 38px;
  }

  .event-occasions-layout {
    grid-template-columns: 1fr;
  }

  .event-occasions-feature {
    height: 52svh;
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  :root {
    --section-space: 52px;
  }

  .site-header {
    gap: 10px;
    min-height: 70px;
    padding: 16px;
  }

  .brand {
    width: 190px;
  }

  .brand img {
    width: 190px;
  }

  .header-cta {
    width: max-content;
    max-width: calc(100vw - 32px);
    min-height: 32px;
    padding: 0 7px;
    font-size: 9px;
    letter-spacing: 0.02em;
  }

  .button,
  .outline-button,
  .whatsapp-button,
  .form-button {
    width: fit-content;
    max-width: 100%;
    min-height: 36px;
    padding: 0 14px;
    font-size: 10px;
    letter-spacing: 0.07em;
  }

  .ghost-link,
  .cta-link {
    width: fit-content;
    min-height: auto;
    padding: 0;
    font-size: 10px;
  }

  .header-cta::after,
  .button::after,
  .ghost-link::after,
  .outline-button::after,
  .cta-link::after {
    margin-left: 10px;
    font-size: 14px;
  }

  .site-header .header-cta::after {
    display: none;
  }

  .menu-toggle {
    min-width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .menu-toggle span {
    display: none;
  }

  .site-header.is-menu-open .menu-toggle {
    min-width: 38px;
    min-height: 38px;
    right: 16px;
    padding: 0 11px;
    background: rgb(255 255 255 / 0.9);
    border-color: rgb(8 8 8 / 0.12);
  }

  .site-header.is-menu-open .menu-toggle span {
    display: inline;
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .site-header.is-menu-open .menu-toggle i,
  .site-header.is-menu-open .menu-toggle i::before,
  .site-header.is-menu-open .menu-toggle i::after {
    width: 18px;
  }

  .nav-links {
    right: 0;
    left: 0;
    padding: 102px 20px calc(104px + env(safe-area-inset-bottom));
  }

  .nav-links a {
    min-height: clamp(72px, 14svh, 118px);
    font-size: clamp(50px, 16vw, 76px);
  }

  .site-header.is-menu-open .header-cta {
    right: auto;
    left: 20px;
    min-height: 34px;
    padding: 0 11px;
  }

  .home-hero-split {
    min-height: auto;
  }

  .full-video-hero {
    min-height: calc(100svh - 70px);
    padding: 106px 16px 46px;
  }

  .hero-video-controls {
    right: 16px;
    bottom: 18px;
  }

  .hero-video-toggle {
    width: 56px;
    height: 56px;
  }

  .full-video-copy h1 {
    max-width: 9ch;
  }

  .hero-text,
  .services-section,
  .proposal-section,
  .contact-final-section,
  .contact-preview-hero,
  .contact-design-split,
  .contact-design-stacked .contact-option-heading,
  .contact-stack-content,
  .contact-page-section,
  .page-hero,
  .about-story,
  .about-note,
  .venue-section,
  .process,
  .event-process-copy,
  .page-service-cards,
  .small-photo-row {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hero-text {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.25rem, 14vw, 4.85rem);
    line-height: 0.98;
  }

  .hero-actions {
    gap: 16px;
  }

  .hero-image {
    height: 52svh;
    min-height: 340px;
  }

  .service-cards,
  .form-row,
  .contact-page-section,
  .contact-method-grid,
  .experience-stack,
  .inspiration-grid,
    .footer,
    .values,
    .event-types,
    .small-photo-row,
    .two-photo-band,
    .event-gallery {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 220px;
  }

  .services-section .service-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-section .service-card {
    min-height: 390px;
  }

  .event-photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .event-page-hero h1 {
    max-width: 100%;
    font-size: clamp(3.4rem, 11vw, 4.7rem);
  }

  .event-page-hero {
    gap: 0;
    padding: 0 16px 48px;
  }

  .event-hero-media {
    height: 50svh;
    min-height: 320px;
    margin: 0 -16px;
  }

  .event-hero-copy {
    gap: 22px;
    padding-top: 34px;
  }

  .event-intro-copy {
    gap: 16px;
  }

  .event-process-copy {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .event-process-copy p:not(.section-kicker) {
    max-width: 100%;
    font-size: clamp(18px, 4.8vw, 24px);
  }

  .event-process-band figure {
    min-height: 300px;
  }

  .event-process-band img {
    transform: scale(1.18);
  }

  .services-section .service-card h3 {
    margin-right: 22px;
    margin-left: 22px;
    font-size: clamp(34px, 12vw, 52px);
  }

  .services-section .service-card p,
  .services-section .service-card a {
    margin-right: 22px;
    margin-left: 22px;
  }

  .services-section .service-card a {
    max-width: calc(100% - 44px);
    margin-bottom: 24px;
  }

  .home-modern .services-modern {
    padding-top: 58px;
    padding-bottom: 62px;
    background: linear-gradient(180deg, var(--paper), #fff 72%);
  }

  .home-modern .services-modern-heading {
    gap: 18px;
  }

  .home-modern .services-modern-heading > p {
    font-size: 14px;
  }

  .home-modern .service-mosaic {
    gap: 34px;
    margin-top: 34px;
  }

  .home-modern .service-mosaic-item,
  .home-modern .service-mosaic-item-private,
  .home-modern .service-mosaic-item-corporate,
  .home-modern .service-mosaic-item-celebration,
  .home-modern .service-mosaic-item-experience {
    grid-template-columns: 1fr;
  }

  .home-modern .service-mosaic-item-experience .service-mosaic-copy {
    order: 0;
  }

  .home-modern .service-mosaic-item-private .service-mosaic-media,
  .home-modern .service-mosaic-item-corporate .service-mosaic-media,
  .home-modern .service-mosaic-item-celebration .service-mosaic-media,
  .home-modern .service-mosaic-item-experience .service-mosaic-media {
    aspect-ratio: 4 / 3;
    clip-path: none;
  }

  .home-modern .service-mosaic-copy {
    gap: 12px;
    padding-top: 0;
  }

  .home-modern .service-mosaic-copy h3 {
    max-width: none;
    font-size: clamp(31px, 9vw, 44px);
  }

  .home-modern .service-mosaic-copy p {
    max-width: none;
  }

  .contact-preview-hero {
    gap: 28px;
    padding-top: 52px;
    padding-bottom: 50px;
  }

  .contact-design {
    scroll-margin-top: 116px;
  }

  .contact-preview-actions {
    gap: 12px;
    width: 100%;
  }

  .contact-design-split {
    padding-top: 46px;
    padding-bottom: 58px;
  }

  .contact-option-heading {
    gap: 14px;
    margin-bottom: 22px;
  }

  .contact-option-heading h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .contact-video-frame-split {
    height: 370px;
  }

  .contact-video-frame-side {
    order: 2;
    height: 330px;
  }

  .contact-intake {
    order: 1;
    gap: 20px;
  }

  .contact-page-form {
    padding: 24px 16px;
  }

  .contact-design-stacked .contact-option-heading {
    padding-top: 48px;
    padding-bottom: 22px;
  }

  .contact-video-frame-wide {
    height: 58svh;
    min-height: 430px;
  }

  .contact-video-copy {
    right: 16px;
    bottom: 30px;
    left: 16px;
  }

  .contact-video-copy h2 {
    font-size: clamp(42px, 12vw, 64px);
  }

  .contact-stack-content {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .about-hero {
    padding-right: 0;
    padding-left: 0;
  }

  .about-hero-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-story {
    padding-right: 0;
    padding-left: 0;
  }

  .about-story .about-copy {
    padding-right: 16px;
    padding-left: 16px;
  }

  .about-portrait,
  .venue-section figure {
    width: 100%;
    max-width: none;
    height: 390px;
  }

  .about-hero .about-portrait {
    aspect-ratio: 3 / 4;
    height: auto;
    min-height: 0;
  }

  .about-story .about-tall-photo {
    aspect-ratio: 7 / 8;
    height: auto;
    min-height: 0;
  }

  .about-story .about-tall-photo img {
    object-position: center center;
  }

  .small-photo-row figure {
    height: 230px;
  }

  .about-food-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 0;
  }

  .about-food-row figure {
    height: clamp(210px, 58vw, 260px);
  }

  .values-floor-frame {
    width: calc(100% + 32px);
    height: clamp(150px, 44vw, 220px);
    margin-right: -16px;
    margin-left: -16px;
  }

  .event-gemini-gallery {
    gap: 22px;
    padding: 44px 16px 54px;
  }

  .event-gemini-heading {
    gap: 18px;
    padding: 0 6px 6px;
  }

  .event-gemini-heading h2 {
    font-size: clamp(36px, 12vw, 56px);
  }

  .event-gemini-heading > p {
    font-size: 16px;
  }

  .event-gemini-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: clamp(70px, 18vw, 94px);
    gap: 10px;
  }

  .event-gemini-grid figure,
  .event-gemini-grid .event-gemini-wide {
    grid-column: span 2;
    grid-row: span 2;
  }

  .event-gemini-grid .event-gemini-feature {
    grid-column: span 4;
    grid-row: span 3;
  }

  .event-gemini-grid .event-gemini-tall {
    grid-column: span 2;
    grid-row: span 4;
  }

  .event-gemini-grid .event-gemini-mobile-wide {
    grid-column: span 4;
  }

  .event-occasions {
    gap: 28px;
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .event-occasions-heading .section-kicker {
    margin-bottom: 18px;
  }

  .event-occasions-feature {
    height: min(68svh, 520px);
    min-height: 340px;
  }

  .process-list p {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 14px;
    min-height: 84px;
    padding: 17px 0;
    font-size: clamp(24px, 7.8vw, 36px);
  }

  .process-list p::before {
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .quote-band {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 38px 16px;
  }

  .quote-mark {
    text-align: left;
  }

  .quote-band h2 {
    border-left: 0;
    padding-left: 0;
  }

  .quote-band p {
    grid-column: auto;
  }

  .experience-section {
    padding: 40px 16px;
  }

  .experience-main {
    height: 430px;
    min-height: 0;
    margin: 0 -16px;
  }

  .inspiration-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .inspiration-grid {
    gap: 12px;
  }

  .gallery-frame {
    aspect-ratio: 1 / 1;
  }

  .button,
  .outline-button,
  .ghost-link,
  .whatsapp-button,
  .cta-link,
  .form-button {
    width: fit-content;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .form-actions {
    gap: 12px;
  }

  .footer {
    gap: 30px;
    padding: 34px 16px;
  }

  .values > div,
  .event-types article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .clean-values {
    gap: 34px;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 48px;
    padding-bottom: 0;
  }

  .values-heading,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-heading {
    gap: 24px;
  }

  .values-grid {
    border-bottom: 0;
  }

  .value-card,
  .value-card + .value-card,
  .value-card:last-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 0.22);
    padding: 28px 0 34px;
  }

  .clean-values h3 {
    margin-top: 34px;
  }

  .values > div:last-child,
  .event-types article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 8px;
  }

  .brand,
  .brand img {
    width: 190px;
  }

  .header-cta {
    padding: 0 6px;
    font-size: 8.5px;
    letter-spacing: 0.01em;
  }
}
