:root {
  --ink: #181416;
  --ink-soft: #50464a;
  --porcelain: #faf8f7;
  --rose: #b96f7e;
  --rose-pale: #ead6db;
  --gold: #bd9653;
  --line: rgba(24, 20, 22, .16);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Manrope", "Segoe UI", sans-serif;
  --page: min(92vw, 88rem);
  --radius-media: 0;
  --radius-control: 999px;
  --header-height: 5rem;
  --section-space: clamp(5rem, 9vw, 8.5rem);
  --shadow-soft: 0 1.5rem 4rem rgba(24, 20, 22, .1);
}

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

html {
  scroll-behavior: smooth;
  background: var(--porcelain);
}

body {
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(90deg, transparent 0, rgba(24, 20, 22, .022) 50%, transparent 100%),
    var(--porcelain);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow-x: clip; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, video { display: block; max-width: 100%; }
h1, h2, h3, p, blockquote, figure, dl, dd { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }

h1,
h2 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -.045em;
}

h1 em,
h2 em {
  color: inherit;
  font-weight: 500;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 6.75rem);
  line-height: .94;
}

::selection { background: var(--rose-pale); color: var(--ink); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 1000;
  padding: .75rem 1rem;
  border-radius: var(--radius-control);
  background: var(--rose);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  transform: translateY(-180%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--rose); outline-offset: 4px; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: var(--header-height);
  padding: .75rem max(4vw, calc((100vw - 88rem) / 2));
  border-bottom: 1px solid transparent;
  color: #fff;
  transition: min-height .35s ease, background-color .35s ease, border-color .35s ease, color .35s ease, box-shadow .35s ease;
}

.site-header.is-scrolled {
  min-height: 4.25rem;
  border-color: var(--line);
  background: rgba(250, 248, 247, .96);
  box-shadow: 0 .5rem 2rem rgba(24, 20, 22, .05);
  color: var(--ink);
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  filter:
    contrast(1.65)
    saturate(1.38)
    brightness(.67)
    drop-shadow(0 1px 0 rgba(255, 255, 255, .55))
    drop-shadow(0 2px 6px rgba(63, 37, 24, .22));
}

.brand-mark {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid rgba(189, 150, 83, .7);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
}

.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: .78rem; letter-spacing: .22em; }
.brand-copy small { margin-top: .27rem; font-family: var(--display); font-size: .85rem; font-style: italic; letter-spacing: .08em; }

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.site-nav a,
.footer-links a {
  position: relative;
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after,
.footer-links a::after {
  position: absolute;
  right: 0;
  bottom: -.45rem;
  left: 0;
  height: 2px;
  background: var(--rose);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

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

.header-actions { display: flex; align-items: center; gap: clamp(.75rem, 1.5vw, 1.5rem); }
.language-switcher { display: flex; align-items: center; gap: .35rem; font-size: .68rem; }

.language-button {
  padding: .25rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  opacity: .55;
}

.language-button.is-active { color: var(--rose); font-weight: 700; opacity: 1; }

.site-header:not(.is-scrolled) .language-button.is-active {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--rose);
  text-decoration-thickness: 2px;
  text-underline-offset: .3rem;
}

.menu-toggle {
  position: relative;
  z-index: 2;
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: .55rem;
  width: 1.65rem;
  height: 1px;
  background: currentColor;
  transition: transform .25s ease;
}

.menu-toggle > span:nth-last-child(2) { transform: translateY(-4px); }
.menu-toggle > span:last-child { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] > span:nth-last-child(2) { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:last-child { transform: rotate(-45deg); }

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .85rem 1.45rem;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px) scale(.985); }
.button-small { min-height: 2.7rem; padding: .68rem 1.15rem; font-size: .65rem; }
.button-dark, .button-gold { background: var(--rose); color: #fff; }
.button-dark:hover, .button-gold:hover { background: #9d5666; }
.button-light { border-color: #fff; background: #fff; color: var(--ink); }
.button-light:hover { border-color: var(--rose); background: var(--rose); color: #fff; }

.text-link,
.hero-gallery-link,
.campaign-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  color: var(--rose);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span:last-child,
.campaign-link span:last-child { transition: transform .25s ease; }
.text-link:hover span:last-child,
.campaign-link:hover span:last-child { transform: translate(.2rem, -.2rem); }

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  align-items: flex-end;
  overflow: hidden;
  padding: calc(var(--header-height) + 2rem) max(4vw, calc((100vw - 88rem) / 2)) 6.8rem;
  background: #30272a;
  color: #fff;
}

.hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 11, 14, .56) 0%, rgba(17, 11, 14, .04) 35%, rgba(17, 11, 14, .26) 58%, rgba(17, 11, 14, .9) 100%),
    linear-gradient(90deg, rgba(17, 11, 14, .68) 0%, rgba(17, 11, 14, .18) 55%, rgba(17, 11, 14, .22) 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: rgba(236, 171, 192, .2);
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-media,
.hero-video,
.hero-motion-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media { overflow: hidden; }
.hero-video {
  z-index: 1;
  object-fit: cover;
  opacity: 0;
  animation: hero-video-zoom 24s ease-in-out infinite alternate;
}
.hero-media.has-video .hero-video { opacity: 1; }

.hero-motion-fallback {
  overflow: hidden;
  z-index: 0;
  background: #171316 url("assets/citta-hero-poster.jpg") center / cover no-repeat;
  transform: scale(1.035);
  animation: hero-photo-drift 20s ease-in-out infinite alternate;
}

.hero-motion-fallback::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, rgba(11, 8, 10, .5), transparent 58%);
  content: "";
}

.hero-motion-fallback::after {
  display: none;
}

.hero-copy { position: relative; z-index: 3; width: min(66rem, 84vw); }

.hero-kicker,
.eyebrow {
  display: flex;
  align-items: center;
  gap: .85rem;
  margin-bottom: 1.15rem;
  color: var(--rose);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.hero-kicker {
  color: #fff;
  font-size: clamp(.8rem, .9vw, .95rem);
  letter-spacing: .2em;
}
.hero-kicker::before,
.eyebrow::before {
  display: none;
  width: 2.75rem;
  height: 1px;
  background: currentColor;
  content: "";
}
.hero-kicker::before,
.portfolio-section .eyebrow::before,
.reality-section .eyebrow::before,
.campaign .eyebrow::before { display: block; }
.services-heading .eyebrow,
.testimonial-copy .eyebrow,
.destinations-heading .eyebrow,
.consultation-heading .eyebrow { letter-spacing: .11em; }

.hero h1 {
  margin-bottom: 1.25rem;
  font-family: var(--display);
  font-size: clamp(4.5rem, 7.5vw, 8rem);
  font-weight: 500;
  letter-spacing: -.052em;
  line-height: .78;
  white-space: nowrap;
}

.hero h1 em { display: inline-block; font-size: .82em; line-height: 1; }

.hero-copy > p:not(.hero-kicker) {
  max-width: 39rem;
  margin-bottom: 1.55rem;
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.9rem, 1.15vw, 1.06rem);
  line-height: 1.65;
}

.hero-copy .hero-services {
  display: flex;
  max-width: 48rem;
  align-items: center;
  justify-content: center;
  gap: clamp(.75rem, 1.5vw, 1.25rem);
  margin: 0 auto .55rem;
  color: #f0d39e;
  font-size: clamp(.72rem, .9vw, .88rem);
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.4;
  text-shadow: 0 2px 8px rgba(25, 10, 16, .7);
  text-transform: uppercase;
}

.hero-services::before,
.hero-services::after {
  width: clamp(1.8rem, 4vw, 4rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, #d7aa61);
  content: "";
}

.hero-services::after {
  background: linear-gradient(90deg, #d7aa61, transparent);
}

.hero-copy .hero-description {
  max-width: 44rem;
  margin: 0 auto 1.65rem;
  color: #fff;
  font-size: clamp(.98rem, 1.2vw, 1.12rem);
  font-weight: 600;
  line-height: 1.55;
  text-shadow: 0 2px 10px rgba(22, 9, 14, .78);
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; }
.hero-gallery-link {
  min-height: 3.25rem;
  justify-content: center;
  min-width: 10.5rem;
  padding: .8rem 1.35rem;
  border: 1px solid rgba(225, 188, 116, .78);
  border-radius: var(--radius-control);
  background: rgba(28, 16, 21, .2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 .7rem 1.8rem rgba(21, 11, 15, .13);
  color: #fff;
  transition: background-color .3s ease, border-color .3s ease, transform .3s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-gallery-link::before {
  color: #e1bc74;
  content: "✦";
  font-family: var(--display);
  font-size: .85rem;
}

.hero-gallery-link::after {
  width: auto;
  height: auto;
  background: none;
  color: #e1bc74;
  content: "→";
  font-size: 1rem;
  transition: transform .25s ease;
}

.hero-gallery-link:hover {
  border-color: #e1bc74;
  background: rgba(111, 66, 82, .46);
  transform: translateY(-2px);
}

.hero-gallery-link:hover::after { transform: translateX(.25rem); }

.hero-payment {
  position: absolute;
  right: auto;
  bottom: 2rem;
  left: 50%;
  z-index: 3;
  display: grid;
  width: min(62rem, calc(100vw - 4rem));
  max-width: none;
  grid-template-columns: minmax(5rem, 1fr) auto minmax(5rem, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
  align-items: center;
  margin: 0;
  padding: .35rem 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, .96);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-align: center;
  text-shadow: 0 2px 8px rgba(20, 10, 14, .72);
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-payment::before,
.hero-payment::after {
  width: 100%;
  height: 2rem;
  background: url("assets/citta-header-ornament.svg") center / contain no-repeat;
  content: "";
  filter:
    brightness(1.45)
    saturate(1.1)
    drop-shadow(0 1px 5px rgba(34, 18, 22, .5));
  opacity: .94;
}

.hero-payment::after {
  transform: scaleX(-1);
}

.hero-sparkles { position: absolute; z-index: 2; inset: 0; pointer-events: none; }
.hero-sparkles i {
  position: absolute;
  width: 7px;
  height: 7px;
  background: linear-gradient(135deg, #fff6dd, #e6adbd 55%, transparent 56%);
  clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%);
  filter: drop-shadow(0 0 6px rgba(255, 223, 190, .95));
  opacity: 0;
  animation: hero-star 5.8s ease-in-out infinite;
}
.hero-sparkles i:nth-child(1) { top: 18%; left: 12%; }
.hero-sparkles i:nth-child(2) { top: 30%; right: 22%; animation-delay: .7s; transform: scale(.7); }
.hero-sparkles i:nth-child(3) { top: 57%; right: 9%; animation-delay: 1.4s; transform: scale(1.25); }
.hero-sparkles i:nth-child(4) { bottom: 24%; left: 46%; animation-delay: 2.1s; transform: scale(.62); }
.hero-sparkles i:nth-child(5) { top: 14%; right: 42%; animation-delay: 2.8s; transform: scale(.8); }
.hero-sparkles i:nth-child(6) { top: 44%; left: 24%; animation-delay: 3.5s; transform: scale(.52); }
.hero-sparkles i:nth-child(7) { top: 68%; left: 15%; animation-delay: 4.2s; transform: scale(.8); }
.hero-sparkles i:nth-child(8) { top: 23%; right: 7%; animation-delay: 4.9s; transform: scale(.58); }
.hero-sparkles i:nth-child(9) { top: 76%; right: 29%; animation-delay: 1.1s; transform: scale(.72); }
.hero-sparkles i:nth-child(10) { top: 11%; left: 34%; animation-delay: 1.8s; transform: scale(.48); }
.hero-sparkles i:nth-child(11) { top: 61%; left: 62%; animation-delay: 2.5s; transform: scale(.62); }
.hero-sparkles i:nth-child(12) { bottom: 16%; right: 12%; animation-delay: 3.2s; transform: scale(.9); }
.hero-sparkles i:nth-child(13) { top: 38%; left: 74%; animation-delay: 3.9s; transform: scale(.46); }
.hero-sparkles i:nth-child(14) { top: 82%; left: 38%; animation-delay: 4.6s; transform: scale(.54); }
.hero-sparkles i:nth-child(15) { top: 52%; right: 38%; animation-delay: 5.3s; transform: scale(.64); }
.hero-sparkles i:nth-child(16) { top: 27%; left: 52%; animation-delay: 6s; transform: scale(.42); }

.hero-sparkles::before,
.hero-sparkles::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero-sparkles::before {
  background:
    radial-gradient(circle at 9% 27%, rgba(255, 239, 210, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 16% 71%, rgba(255, 218, 232, .8) 0 1px, transparent 2px),
    radial-gradient(circle at 27% 19%, rgba(255, 239, 210, .7) 0 1px, transparent 2px),
    radial-gradient(circle at 38% 31%, rgba(255, 218, 232, .78) 0 1px, transparent 2px),
    radial-gradient(circle at 48% 14%, rgba(255, 239, 210, .84) 0 1px, transparent 2px),
    radial-gradient(circle at 61% 24%, rgba(255, 218, 232, .8) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 11%, rgba(255, 239, 210, .9) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 21%, rgba(255, 218, 232, .82) 0 1px, transparent 2px),
    radial-gradient(circle at 92% 72%, rgba(255, 239, 210, .78) 0 1px, transparent 2px),
    radial-gradient(circle at 76% 82%, rgba(255, 218, 232, .68) 0 1px, transparent 2px),
    radial-gradient(circle at 23% 88%, rgba(255, 239, 210, .66) 0 1px, transparent 2px);
  opacity: .9;
  animation: starfield-drift 18s ease-in-out infinite alternate;
}

.hero-sparkles::after {
  background:
    radial-gradient(ellipse at 12% 36%, rgba(250, 167, 194, .18), transparent 16rem),
    radial-gradient(ellipse at 88% 44%, rgba(255, 206, 160, .16), transparent 17rem);
  filter: blur(14px);
  mix-blend-mode: screen;
}

@keyframes starfield-drift {
  from { transform: translate3d(0, 0, 0); opacity: .6; }
  to { transform: translate3d(0, -1.2%, 0); opacity: 1; }
}

@keyframes hero-star {
  0%, 100% { opacity: 0; transform: scale(.45) rotate(0deg); }
  22%, 70% { opacity: .9; }
  48% { opacity: 1; transform: scale(1.2) rotate(45deg); }
}

/* Hero glitter: luminous starbursts instead of barely visible dots. */
.hero-sparkles i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff8e7;
  clip-path: none;
  filter: drop-shadow(0 0 7px rgba(255, 224, 187, .95));
}

.hero-sparkles i::before,
.hero-sparkles i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 218, .95), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.hero-sparkles i::after {
  width: 1px;
  height: 2.2rem;
}

.hero-sparkles i:nth-child(3),
.hero-sparkles i:nth-child(8),
.hero-sparkles i:nth-child(12) {
  width: 8px;
  height: 8px;
}

.hero-sparkles i:nth-child(3)::before,
.hero-sparkles i:nth-child(3)::after,
.hero-sparkles i:nth-child(8)::before,
.hero-sparkles i:nth-child(8)::after,
.hero-sparkles i:nth-child(12)::before,
.hero-sparkles i:nth-child(12)::after {
  width: 3.7rem;
}

.hero-sparkles i:nth-child(3)::after,
.hero-sparkles i:nth-child(8)::after,
.hero-sparkles i:nth-child(12)::after {
  width: 1px;
  height: 3.7rem;
}

.section {
  position: relative;
  width: var(--page);
  margin-inline: auto;
  padding-block: var(--section-space);
  scroll-margin-top: 7rem;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(15rem, .65fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: end;
  margin-bottom: clamp(3rem, 7vw, 6rem);
}

.section-intro .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.section-intro h2 { max-width: 13ch; }
.section-intro > p:last-child,
.reality-copy > p,
.consultation-heading > p:last-child { max-width: 37rem; margin-bottom: 0; color: var(--ink-soft); }

.portfolio-section { padding-bottom: calc(var(--section-space) + 2rem); }
.portfolio-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4.5rem) clamp(1rem, 2vw, 2rem);
}

.portfolio-grid::before { display: none; }

.portfolio-item, .work-item { min-width: 0; margin: 0; }
.portfolio-item:nth-child(1), .work-item:nth-child(1) { grid-column: 1 / 8; }
.portfolio-item:nth-child(2), .work-item:nth-child(2) { grid-column: 9 / 13; margin-top: 8rem; }
.portfolio-item:nth-child(3), .work-item:nth-child(3) { grid-column: 3 / 7; }
.portfolio-item:nth-child(4), .work-item:nth-child(4) { grid-column: 7 / 13; margin-top: -3rem; }

.portfolio-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(23rem, 45vw, 42rem);
  border-radius: var(--radius-media);
  background: #d9ced0;
}
.portfolio-item:nth-child(2) .portfolio-media { min-height: clamp(25rem, 37vw, 35rem); }
.portfolio-item:nth-child(3) .portfolio-media { min-height: clamp(22rem, 34vw, 32rem); }
.portfolio-item:nth-child(4) .portfolio-media { min-height: clamp(22rem, 39vw, 37rem); }
.portfolio-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.portfolio-item:hover .portfolio-media img { transform: scale(1.025); }

.photo-placeholder {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-media);
  background: #d9ced0;
}

.photo-placeholder::before,
.photo-placeholder::after { position: absolute; content: ""; pointer-events: none; }
.photo-placeholder::before {
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .35), transparent 45%),
    repeating-linear-gradient(105deg, transparent 0 2rem, rgba(255, 255, 255, .06) 2rem calc(2rem + 1px));
}
.photo-placeholder::after {
  right: -15%;
  bottom: -35%;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 50%;
  box-shadow: 0 0 0 2rem rgba(255, 255, 255, .045), 0 0 0 5rem rgba(255, 255, 255, .025);
}

.portfolio-item .photo-placeholder { min-height: clamp(23rem, 45vw, 42rem); }
.portfolio-item:nth-child(2) .photo-placeholder { min-height: clamp(25rem, 37vw, 35rem); }
.portfolio-item:nth-child(3) .photo-placeholder { min-height: clamp(22rem, 34vw, 32rem); }
.portfolio-item:nth-child(4) .photo-placeholder { min-height: clamp(22rem, 39vw, 37rem); }
.photo-blush { background: radial-gradient(circle at 73% 24%, rgba(255, 245, 239, .68), transparent 22%), linear-gradient(145deg, #513f43, #b48388 48%, #dfc6c4); }
.photo-warm { background: radial-gradient(circle at 36% 18%, rgba(255, 243, 215, .82), transparent 18%), linear-gradient(160deg, #4c3a33, #a67e6e 52%, #e2c8ae); }
.photo-rose { background: linear-gradient(0deg, rgba(56, 39, 44, .32), transparent), radial-gradient(ellipse at 50% 78%, #d6adb5, transparent 40%), #6c5058; }
.photo-gold { background: radial-gradient(circle at 80% 28%, rgba(248, 228, 182, .8), transparent 16%), linear-gradient(135deg, #3c3530, #927758 55%, #d1b687); }

.asset-note {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .55);
  color: #fff;
  text-shadow: 0 1px .75rem rgba(24, 20, 22, .4);
}
.asset-note strong { font-family: var(--display); font-size: clamp(1.75rem, 3vw, 3rem); font-weight: 500; line-height: 1; }
.asset-note small { max-width: 9rem; font-size: .58rem; font-weight: 600; letter-spacing: .09em; line-height: 1.4; text-align: right; text-transform: uppercase; }

.portfolio-item > p { display: flex; align-items: center; gap: .75rem; margin: .9rem 0 0; font-family: var(--display); font-size: clamp(1.35rem, 2vw, 2rem); }
.portfolio-item > p::before { width: 1.75rem; height: 1px; background: var(--rose); content: ""; }

.section-glitter { position: absolute; z-index: -1; color: var(--gold); pointer-events: none; }
.section-glitter span { position: absolute; opacity: .5; }
.portfolio-glitter { top: 9rem; right: 5%; width: 7rem; height: 7rem; }
.portfolio-glitter span:nth-child(1) { top: 0; right: 1rem; font-size: 1rem; }
.portfolio-glitter span:nth-child(2) { top: 2.8rem; left: 0; font-size: 1.6rem; }
.portfolio-glitter span:nth-child(3) { right: 0; bottom: 0; font-size: .7rem; }
.services-glitter, .payment-glitter { display: none; }

.reality-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, .65fr) minmax(0, 1.35fr);
  gap: clamp(3rem, 8vw, 9rem);
  width: 100%;
  padding: var(--section-space) max(4vw, calc((100vw - 88rem) / 2));
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 14%, rgba(234, 214, 219, .72), transparent 8rem),
    #f5f1f0;
}

.reality-copy { align-self: center; }
.reality-copy h2 { max-width: 8ch; margin-bottom: 1.75rem; font-size: clamp(3rem, 5.5vw, 6.25rem); }
.reality-copy .text-link { margin-top: 2rem; }
.reality-comparison {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  min-width: 0;
  padding-block: 2rem 4rem;
}

.reality-comparison::before {
  position: absolute;
  top: 48%;
  right: 25%;
  left: 25%;
  z-index: 3;
  height: 1px;
  background: var(--rose);
  content: "";
  transform: rotate(-9deg);
  transform-origin: center;
}
.reality-comparison figure { position: relative; z-index: 1; margin: 0; }
.reality-comparison figure:first-child { z-index: 2; transform: translate(8%, 4rem) rotate(-2deg); }
.reality-comparison figure:last-child { transform: translate(-3%, 0) rotate(1.5deg); }
.sketch-placeholder, .result-placeholder { min-height: clamp(26rem, 42vw, 40rem); box-shadow: var(--shadow-soft); }
.sketch-placeholder { background: repeating-linear-gradient(0deg, transparent 0 2.4rem, rgba(24, 20, 22, .08) 2.4rem calc(2.4rem + 1px)), repeating-linear-gradient(90deg, transparent 0 2.4rem, rgba(24, 20, 22, .08) 2.4rem calc(2.4rem + 1px)), #ede9e4; }
.sketch-placeholder .asset-note { color: var(--ink); text-shadow: none; border-color: var(--line); }
.result-placeholder { background: radial-gradient(circle at 50% 30%, rgba(255, 244, 219, .58), transparent 25%), linear-gradient(150deg, #403337, #9e7378 53%, #d8bdbb); }
.reality-comparison figcaption { margin-top: .75rem; font-size: .63rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }

.services-section { padding-bottom: clamp(4rem, 7vw, 7rem); }
.services-heading { display: grid; grid-template-columns: .55fr 1.45fr; gap: clamp(2rem, 6vw, 6rem); align-items: start; margin-bottom: clamp(3rem, 6vw, 6rem); }
.services-heading h2 { max-width: 11ch; }
.service-list { border-top: 1px solid var(--ink); }
.service-row {
  display: grid;
  grid-template-columns: .45fr 1.15fr 1fr;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  align-items: baseline;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line);
  transition: padding .3s ease, background-color .3s ease;
}
.service-row:hover { padding-inline: 1rem; background: rgba(234, 214, 219, .27); }
.service-row > span { color: var(--rose); font-size: .66rem; font-weight: 700; letter-spacing: .16em; }
.service-row h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 4.5rem); font-weight: 500; letter-spacing: -.035em; line-height: 1; }
.service-row p { max-width: 31rem; margin: 0; color: var(--ink-soft); font-size: .88rem; }

.payment-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(20rem, 1.1fr);
  width: var(--page);
  margin: 0 auto var(--section-space);
  overflow: hidden;
  background: #f1ebea;
}
.payment-art {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: radial-gradient(circle at 40% 38%, rgba(255, 251, 243, .92), transparent 7%), radial-gradient(circle at 40% 38%, rgba(189, 150, 83, .2), transparent 36%), linear-gradient(150deg, #40363a, #8f7177 55%, #c7a7a7);
}
.payment-art::after {
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 80%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  content: "";
  box-shadow: 0 0 0 3rem rgba(255, 255, 255, .045), 0 0 0 7rem rgba(255, 255, 255, .025);
}
.payment-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(21rem, 60%);
  aspect-ratio: 1;
  border: 1px solid rgba(189, 150, 83, .78);
  border-radius: 50%;
  box-shadow: inset 0 0 0 .4rem rgba(189, 150, 83, .11), 0 0 3rem rgba(255, 237, 198, .2);
  transform: translate(-50%, -50%);
}
.payment-ring::before { position: absolute; inset: 24%; border: 1px solid rgba(255, 255, 255, .48); border-radius: 50%; content: ""; }
.payment-sparkle { display: none; }
.payment-sparkle-small { top: auto; right: auto; bottom: 29%; left: 21%; font-size: .75rem; }
.payment-copy { position: relative; display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 6vw, 6rem); }
.payment-copy h2 { max-width: 10ch; margin-bottom: 2rem; font-size: clamp(3rem, 5vw, 5.75rem); }
.payment-copy ul { display: flex; flex-wrap: wrap; gap: .65rem; padding: 1.4rem 0; margin: 0 0 1.35rem; border-block: 1px solid var(--line); list-style: none; }
.payment-copy li { display: inline-flex; align-items: center; gap: .5rem; color: var(--ink); font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.payment-copy li:not(:last-child)::after { color: var(--rose); content: "/"; margin-left: .35rem; }
.payment-note { max-width: 34rem; margin-bottom: 2rem; color: var(--ink-soft); font-size: .86rem; }
.payment-copy .button { align-self: flex-start; }

.testimonials-section { padding-top: 0; }
.testimonial-feature { width: 100%; }
.testimonial-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: var(--radius-media);
  background: #181416;
  object-fit: cover;
}
.play-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  width: 5rem;
  height: 5rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  background: rgba(24, 20, 22, .22);
  color: #fff;
  opacity: 1;
  transform: translate(-50%, -50%);
}
.testimonial-copy { position: relative; z-index: 4; width: min(45rem, 78%); margin: clamp(-12rem, -13vw, -8rem) 0 0 clamp(2rem, 8vw, 8rem); padding: clamp(2rem, 5vw, 4.5rem); background: var(--porcelain); box-shadow: var(--shadow-soft); }
.testimonial-copy h2 { max-width: 9ch; margin-bottom: 1.6rem; font-size: clamp(2.8rem, 5vw, 5.75rem); }
.testimonial-summary { max-width: 36rem; margin-bottom: 1.25rem; padding-left: 1.25rem; border-left: 2px solid var(--rose); color: var(--ink-soft); font-family: var(--display); font-size: clamp(1.2rem, 2vw, 1.7rem); line-height: 1.35; }
.testimonial-attribution { margin-bottom: 0; font-size: .62rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.destinations-section {
  width: 100%;
  padding-inline: max(4vw, calc((100vw - 88rem) / 2));
  overflow: hidden;
  background: #f3efee;
}
.destinations-heading { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(2rem, 5vw, 5rem); align-items: start; width: 100%; margin-bottom: clamp(3rem, 5vw, 5rem); }
.destinations-heading h2 { max-width: 10ch; font-size: clamp(3.25rem, 6vw, 6.5rem); }
.destination-list { display: grid; grid-template-columns: .9fr 1.15fr .95fr; min-height: 34rem; border: 1px solid var(--line); }
.destination {
  position: relative;
  isolation: isolate;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(1.5rem, 3vw, 3rem);
  color: #fff;
}
.destination-photo {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}
.destination:hover .destination-photo { transform: scale(1.035); }
.destination + .destination { border-left: 1px solid rgba(255, 255, 255, .35); }
.destination:nth-child(1) { background: linear-gradient(180deg, rgba(24, 20, 22, .08), rgba(24, 20, 22, .82)); }
.destination:nth-child(2) { background: linear-gradient(180deg, rgba(24, 20, 22, .08), rgba(24, 20, 22, .84)); }
.destination:nth-child(3) { background: linear-gradient(180deg, transparent, rgba(24, 20, 22, .75)), linear-gradient(135deg, #4c555d, #92a2a9); }
.destination::before { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg, rgba(24, 20, 22, .08), rgba(24, 20, 22, .82)); content: ""; transition: background-color .4s ease; }
.destination > span { position: absolute; top: 1.5rem; left: 1.5rem; font-size: .64rem; font-weight: 700; letter-spacing: .16em; }
.destination-arch { position: absolute; top: 10%; right: 9%; left: 9%; z-index: -1; height: 68%; border: 1px solid rgba(255, 255, 255, .34); border-radius: 50% 50% 0 0; }
.destination-arch::before { position: absolute; inset: 8%; border: 1px solid rgba(255, 255, 255, .15); border-radius: inherit; content: ""; }
.destination h3 { margin-bottom: .8rem; font-family: var(--display); font-size: clamp(3.5rem, 6vw, 6rem); font-weight: 500; letter-spacing: -.04em; line-height: .85; }
.destination p { max-width: 24rem; margin-bottom: 1.4rem; color: rgba(255, 255, 255, .82); font-size: .82rem; }
.destination a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .35); color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.destination a > span:last-child { color: var(--rose-pale); font-size: 1rem; }
.destination-orbit { display: none; }

.campaign {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  width: 100%;
  min-height: 36rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 86% 15%, rgba(189, 150, 83, .16), transparent 20%), linear-gradient(115deg, var(--rose-pale), #f6eeee 58%, var(--porcelain));
}
.campaign::before,
.campaign::after { position: absolute; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 1.2rem .35rem rgba(189, 150, 83, .48); content: ""; animation: glint 5s ease-in-out infinite; }
.campaign::before { top: 17%; right: 14%; }
.campaign::after { right: 44%; bottom: 18%; animation-delay: 2.3s; }
.campaign-heading,
.campaign-details {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  padding: clamp(3rem, 7vw, 7rem) max(4vw, calc((100vw - 88rem) / 2));
}
.campaign-heading { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.5rem, 4vw, 4rem); align-items: center; padding-right: clamp(2rem, 5vw, 5rem); border-right: 1px solid rgba(24, 20, 22, .12); }
.campaign-heading > div { min-width: 0; }
.campaign-year { align-self: stretch; padding-right: 1.2rem; border-right: 1px solid var(--line); color: var(--rose); font-family: var(--display); font-size: 1rem; letter-spacing: .2em; writing-mode: vertical-rl; }
.campaign-heading h2 { margin: 0; font-size: clamp(4rem, 7vw, 8rem); line-height: .72; }
.campaign-details { display: flex; flex-direction: column; justify-content: center; padding-left: clamp(2rem, 5vw, 5rem); }
.campaign-details dl { display: grid; gap: 0; margin-bottom: 2.5rem; border-top: 1px solid var(--line); }
.campaign-details dl div { display: grid; grid-template-columns: 7rem 1fr; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line); }
.campaign-details dt { color: var(--ink-soft); font-size: .6rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.campaign-details dd { margin: 0; font-family: var(--display); font-size: 1.3rem; line-height: 1.2; }

.consultation-section {
  display: grid;
  grid-template-columns: minmax(18rem, .75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem);
  width: var(--page);
  margin-inline: auto;
  padding-block: var(--section-space);
}
.consultation-heading { position: sticky; top: 7rem; align-self: start; }
.consultation-heading h2 { max-width: 9ch; margin-bottom: 1.75rem; font-size: clamp(3.25rem, 5vw, 5.75rem); }
.consultation-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.75rem 1.5rem; padding: clamp(2rem, 4vw, 4rem); border-top: 4px solid var(--rose); background: #f2eeee; }
.form-field { display: grid; gap: .55rem; min-width: 0; }
.form-field-wide, .form-submit { grid-column: 1 / -1; }
.form-field label { color: var(--ink-soft); font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.form-field input,
.form-field select { width: 100%; min-height: 3.25rem; padding: .7rem .15rem; border: 0; border-bottom: 1px solid rgba(24, 20, 22, .38); border-radius: 0; background: transparent; color: var(--ink); transition: border-color .2s ease; }
.form-field input:focus,
.form-field select:focus { border-color: var(--rose); }
.form-field select { cursor: pointer; }
.form-submit { justify-self: start; margin-top: .5rem; }

.site-footer { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; width: 100%; padding: 2.5rem max(4vw, calc((100vw - 88rem) / 2)); border-top: 1px solid var(--line); background: #f3efee; }
.footer-brand { display: flex; align-items: center; gap: 1rem; }
.footer-brand strong { font-family: var(--display); font-size: 1.35rem; font-weight: 600; }
.footer-brand p,
.footer-note { margin: 0; color: var(--ink-soft); font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.footer-links { display: flex; gap: 1.75rem; }
.footer-note { justify-self: end; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(2rem); transition: opacity .8s cubic-bezier(.2, .75, .25, 1), transform .8s cubic-bezier(.2, .75, .25, 1); }
.js .reveal.is-visible { opacity: 1; transform: none; }

@keyframes hero-drift {
  from { transform: rotate(7deg) scale(1.06); }
  to { transform: rotate(4deg) scale(1.16); }
}

@keyframes hero-video-zoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

@keyframes hero-photo-drift {
  from { transform: scale(1.035) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-.75%, -.5%, 0); }
}

@keyframes glint {
  0%, 76%, 100% { opacity: 0; transform: scale(.45); }
  84% { opacity: .85; transform: scale(1); }
  92% { opacity: .22; transform: scale(.7); }
}

@media (max-width: 72rem) {
  :root { --header-height: 4rem; }
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding: .35rem 4vw;
  }
  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + .5rem);
    right: 4vw;
    z-index: 1;
    display: flex;
    width: min(24rem, 92vw);
    flex-direction: column;
    gap: .85rem;
    padding: 2rem;
    background: var(--porcelain);
    color: var(--ink);
    box-shadow: -1rem 0 4rem rgba(24, 20, 22, .14);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .35s ease, visibility .35s;
  }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .site-nav a { font-family: var(--display); font-size: clamp(2rem, 5vw, 3rem); font-weight: 500; letter-spacing: -.025em; line-height: 1; text-transform: none; }
  .menu-toggle { display: block; grid-column: 3; }
  .menu-toggle[aria-expanded="true"] { color: var(--ink); }
  .header-actions { grid-column: 2; grid-row: 1; justify-self: end; margin-right: 3.5rem; }
  .site-header:not(.is-scrolled) .header-cta { border-color: rgba(255, 255, 255, .7); background: transparent; }
  .hero h1 { font-size: clamp(4rem, 8.8vw, 6.5rem); }
  .section-intro { grid-template-columns: 1.4fr .6fr; }
  .reality-section { grid-template-columns: .7fr 1.3fr; gap: 3rem; }
  .detail-section { grid-template-columns: .9fr 1.1fr; gap: 3rem; }
  .reality-comparison figure:first-child { transform: translate(5%, 3rem) rotate(-2deg); }
  .sketch-placeholder, .result-placeholder { min-height: 30rem; }
  .services-heading { grid-template-columns: .7fr 1.3fr; }
  .payment-section { grid-template-columns: .8fr 1.2fr; }
  .payment-art { min-height: 34rem; }
  .destination-list { min-height: 30rem; }
  .destination { padding: 1.5rem; }
  .destination h3 { font-size: clamp(3rem, 5vw, 4.5rem); }
  .campaign-heading, .campaign-details { padding-inline: 4vw; }
  .consultation-section { gap: 4rem; }
}

@media (max-width: 48rem) {
  :root { --page: min(90vw, 42rem); --section-space: clamp(4.5rem, 13vw, 6rem); }
  h2 { font-size: clamp(2.75rem, 10vw, 4.8rem); }
  .site-header, .site-header.is-scrolled { min-height: var(--header-height); padding-inline: 5vw; }
  .brand-copy { display: none; }
  .header-actions { margin-right: 3rem; }
  .header-cta { display: none; }
  .hero { padding: calc(var(--header-height) + 2rem) 5vw 7.4rem; }
  .hero::before { background: linear-gradient(180deg, rgba(17, 11, 14, .6), rgba(17, 11, 14, .08) 25%, rgba(17, 11, 14, .54) 55%, rgba(17, 11, 14, .95) 100%), linear-gradient(90deg, rgba(17, 11, 14, .62), rgba(17, 11, 14, .12)); }
  .hero-copy { width: 100%; }
  .hero h1 { font-size: clamp(2.8rem, 11.5vw, 5rem); }
  .hero-copy > p:not(.hero-kicker) { max-width: 32rem; }
  .hero-payment {
    right: auto;
    bottom: 1.1rem;
    left: 50%;
    width: 92vw;
    max-width: none;
    grid-template-columns: minmax(2.5rem, 1fr) minmax(0, auto) minmax(2.5rem, 1fr);
    gap: .65rem;
    padding: .25rem 0;
    font-size: .59rem;
    letter-spacing: .07em;
    text-align: center;
  }

  .hero-payment::before,
  .hero-payment::after {
    height: 1.35rem;
  }
  .hero-motion-fallback { background-position: 56% center; }
  .section-intro, .services-heading, .destinations-heading { grid-template-columns: 1fr; gap: 1.75rem; }
  .section-intro .eyebrow { margin-bottom: -.3rem; }
  .section-intro > p:last-child { max-width: 31rem; }
  .portfolio-grid { gap: 3.5rem 1.25rem; }
  .portfolio-item:nth-child(1) { grid-column: 1 / 9; }
  .portfolio-item:nth-child(2), .work-item:nth-child(2) { grid-column: 9 / 13; margin-top: 6rem; }
  .portfolio-item:nth-child(3), .work-item:nth-child(3) { grid-column: 2 / 7; }
  .portfolio-item:nth-child(4), .work-item:nth-child(4) { grid-column: 7 / 13; margin-top: -2rem; }
  .work-item:nth-child(1) { grid-column: 1 / 9; }
  .portfolio-item .photo-placeholder,
  .portfolio-item .portfolio-media,
  .portfolio-item:nth-child(2) .photo-placeholder,
  .portfolio-item:nth-child(2) .portfolio-media,
  .portfolio-item:nth-child(3) .photo-placeholder,
  .portfolio-item:nth-child(3) .portfolio-media,
  .portfolio-item:nth-child(4) .photo-placeholder { min-height: clamp(20rem, 67vw, 31rem); }
  .portfolio-item:nth-child(4) .portfolio-media { min-height: clamp(20rem, 67vw, 31rem); }
  .asset-note { display: grid; align-items: end; }
  .asset-note small { max-width: none; text-align: left; }
  .reality-section {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-inline: 5vw;
    background:
      radial-gradient(circle at 6% 8%, rgba(234, 214, 219, .72), transparent 7rem),
      #f5f1f0;
  }
  .reality-copy { width: min(90vw, 42rem); }
  .reality-copy h2 { max-width: 10ch; }
  .reality-comparison { width: 100%; padding-bottom: 2rem; }
  .reality-comparison figure:first-child { transform: translate(4%, 2rem) rotate(-2deg); }
  .sketch-placeholder, .result-placeholder { min-height: clamp(24rem, 70vw, 32rem); }
  .service-row { grid-template-columns: 2.5rem 1fr; gap: .7rem 1rem; }
  .service-row h3 { font-size: clamp(2rem, 6vw, 3rem); }
  .service-row p { grid-column: 2; }
  .payment-section { grid-template-columns: 1fr; }
  .payment-art { min-height: 24rem; }
  .payment-copy h2 { max-width: 11ch; }
  .testimonials-section { width: 100%; }
  .testimonial-copy { width: min(88vw, 40rem); margin: -5rem auto 0; }
  .destinations-section { padding-inline: 5vw; }
  .destination-list { display: flex; width: 100%; min-height: 0; gap: .75rem; overflow-x: auto; border: 0; scroll-snap-type: x mandatory; scrollbar-width: thin; scrollbar-color: var(--rose) transparent; }
  .destination { min-width: min(78vw, 31rem); min-height: 31rem; scroll-snap-align: start; }
  .destination + .destination { border-left: 0; }
  .campaign { grid-template-columns: 1fr; }
  .campaign-heading { min-height: 24rem; padding-inline: 5vw; border-right: 0; border-bottom: 1px solid var(--line); }
  .campaign-details { padding-inline: 5vw; }
  .consultation-section { grid-template-columns: 1fr; gap: 3rem; }
  .consultation-heading { position: static; }
  .consultation-heading h2 { max-width: 10ch; }
  .site-footer { grid-template-columns: 1fr 1fr; padding-inline: 5vw; }
  .footer-links { justify-self: end; }
  .footer-note { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 34rem) {
  .hero { min-height: max(100dvh, 42rem); padding-bottom: 6.8rem; }
  .hero-kicker { margin-bottom: .85rem; font-size: .72rem; }
  .hero h1 { margin-bottom: 1rem; font-size: clamp(1.95rem, 9.5vw, 2.8rem); line-height: .84; }
  .hero h1 em { font-size: .72em; }
  .hero-copy > p:not(.hero-kicker) { margin-bottom: 1.15rem; font-size: .82rem; line-height: 1.5; }
  .hero-copy .hero-services {
    margin-bottom: .55rem;
    font-size: .65rem;
    letter-spacing: .1em;
  }
  .hero-copy .hero-description {
    margin-bottom: 1.25rem;
    font-size: .88rem;
  }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1rem; }
  .hero-actions .button { width: 100%; }
  .hero-gallery-link { width: 100%; justify-content: center; }
  .section-intro { margin-bottom: 2.75rem; }
  .portfolio-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-item:nth-child(1),
  .portfolio-item:nth-child(2),
  .portfolio-item:nth-child(3),
  .portfolio-item:nth-child(4),
  .work-item:nth-child(1),
  .work-item:nth-child(2),
  .work-item:nth-child(3),
  .work-item:nth-child(4) { grid-column: 1; margin-top: 0; }
  .portfolio-item .photo-placeholder,
  .portfolio-item .portfolio-media,
  .portfolio-item:nth-child(2) .photo-placeholder,
  .portfolio-item:nth-child(2) .portfolio-media,
  .portfolio-item:nth-child(3) .photo-placeholder,
  .portfolio-item:nth-child(3) .portfolio-media,
  .portfolio-item:nth-child(4) .photo-placeholder { min-height: 25rem; }
  .portfolio-item:nth-child(4) .portfolio-media { min-height: 25rem; }
  .portfolio-grid::before { display: none; }
  .reality-section {
    background:
      radial-gradient(circle at 6% 6%, rgba(234, 214, 219, .72), transparent 6rem),
      #f5f1f0;
  }
  .reality-comparison { grid-template-columns: 1fr; gap: 1.75rem; }
  .reality-comparison::before { top: 46%; right: auto; bottom: 46%; left: 50%; width: 1px; height: auto; transform: none; }
  .reality-comparison figure:first-child,
  .reality-comparison figure:last-child { transform: none; }
  .sketch-placeholder, .result-placeholder { min-height: 25rem; }
  .service-row { padding-block: 1.4rem; }
  .payment-copy { padding: 2.25rem 1.5rem 2.5rem; }
  .payment-copy ul { display: grid; }
  .payment-copy li:not(:last-child)::after { display: none; }
  .testimonial-video { min-height: 0; }
  .testimonial-copy { width: 90vw; padding: 2rem 1.4rem; }
  .play-placeholder { width: 4rem; height: 4rem; }
  .destination { min-width: 84vw; min-height: 29rem; }
  .campaign-heading {
    grid-template-columns: 1.35rem minmax(0, 1fr);
    gap: .8rem;
    min-height: 20rem;
    padding-inline: 1rem;
  }
  .campaign-year { padding-right: .6rem; letter-spacing: .14em; }
  .campaign-heading h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12.5vw, 4.25rem);
    letter-spacing: -.055em;
    line-height: .8;
  }
  .campaign-details dl div { grid-template-columns: 1fr; gap: .35rem; }
  .consultation-form { grid-template-columns: 1fr; padding: 2rem 1.25rem; }
  .form-field, .form-field-wide, .form-submit { grid-column: 1; }
  .form-submit { width: 100%; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { justify-self: start; }
  .footer-note { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .hero-motion-fallback { transform: scale(1.035); }
  .js .reveal { opacity: 1; transform: none; }
}

/* Cinematic Center */
.hero {
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-height) + 3rem) 5vw 7rem;
}

.hero::before {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(13, 9, 11, .58), rgba(13, 9, 11, .18) 43%, rgba(13, 9, 11, .76)),
    radial-gradient(circle at center, transparent 15%, rgba(13, 9, 11, .28) 76%);
}

.hero-video {
  filter: brightness(.82) contrast(1.04) saturate(.96);
}

.hero-media::after {
  position: absolute;
  z-index: 3;
  inset: 0;
  background:
    radial-gradient(ellipse at 18% 18%, rgba(255, 206, 224, .2), transparent 20rem),
    radial-gradient(ellipse at 84% 30%, rgba(255, 228, 201, .17), transparent 18rem),
    radial-gradient(ellipse at 55% 92%, rgba(205, 120, 157, .2), transparent 28rem),
    linear-gradient(180deg, rgba(73, 27, 52, .08), transparent 46%, rgba(43, 15, 31, .42));
  background-size: auto;
  mix-blend-mode: screen;
  animation: hero-light-drift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

/* The high-resolution still keeps the composition crisp while the video adds life. */
.hero-media .hero-motion-fallback {
  opacity: 1;
}

.hero-media.has-video .hero-video {
  opacity: 1;
  mix-blend-mode: normal;
  filter: brightness(.9) contrast(1.06) saturate(.92);
}

.hero-media.has-video .hero-motion-fallback {
  opacity: 0;
}

@keyframes hero-light-drift {
  from { transform: translate3d(-1.5%, -1%, 0) scale(1); opacity: .75; }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.06); opacity: 1; }
}

/* Editorial gallery framing: fills the upper whitespace without crowding the work. */
.portfolio-section .section-intro {
  position: relative;
  grid-template-columns: minmax(0, 1.12fr) minmax(15rem, .88fr);
  gap: clamp(2rem, 5vw, 6rem);
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.portfolio-section .section-intro h2 {
  width: min(100%, 40rem);
  margin: 0;
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  line-height: .92;
  text-wrap: balance;
}

.portfolio-section .section-intro > p:last-child {
  max-width: 24rem;
  margin: 0 0 .35rem;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.65;
}

.portfolio-section .section-intro::after {
  position: absolute;
  right: 3%;
  bottom: -2.2rem;
  width: 9rem;
  height: 5rem;
  border-top: 1px solid rgba(185, 111, 126, .45);
  border-radius: 50%;
  content: "";
  transform: rotate(-16deg);
  pointer-events: none;
}

.work-gallery {
  overflow: visible;
}

.work-gallery::before {
  position: absolute;
  top: 0;
  left: -1.4rem;
  color: rgba(185, 111, 126, .34);
  content: "01";
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: .8;
  pointer-events: none;
}

.portfolio-controls {
  position: relative;
  padding-top: 1.35rem;
}

.portfolio-controls::before {
  position: absolute;
  top: .2rem;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--rose) 20%, rgba(24, 20, 22, .12) 20%);
  content: "";
}

.portfolio-status {
  position: relative;
  z-index: 1;
  padding-right: .75rem;
  background: var(--porcelain);
}

@media (max-width: 48rem) {
  .portfolio-section .section-intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .portfolio-section .section-intro h2 {
    width: min(100%, 34rem);
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .portfolio-section .section-intro > p:last-child {
    max-width: 30rem;
  }

  .work-gallery::before {
    top: -1.5rem;
    left: auto;
    right: 0;
    font-size: 4.5rem;
  }
}

.hero-copy {
  width: min(60rem, 90vw);
  text-align: center;
}

.hero-kicker,
.hero-actions {
  justify-content: center;
}

.hero-copy > p:not(.hero-kicker) {
  max-width: 42rem;
  margin-inline: auto;
}

.hero h1 {
  max-width: 100%;
  font-size: clamp(4rem, 6.6vw, 7rem);
  line-height: .84;
  white-space: normal;
}

.hero-payment {
  text-align: center;
}

.portfolio-section,
.services-section,
.detail-section,
.payment-section,
.testimonials-section,
.destinations-section,
.campaign {
  isolation: isolate;
}

.portfolio-section,
.services-section,
.payment-section,
.testimonials-section {
  overflow: hidden;
}

.portfolio-section::before,
.services-section::before,
.detail-section::before,
.payment-section::before,
.testimonials-section::before,
.destinations-section::before {
  position: absolute;
  z-index: 0;
  width: clamp(10rem, 20vw, 20rem);
  aspect-ratio: 1;
  border: 1px solid rgba(185, 111, 126, .15);
  border-radius: 50% 50% 12% 50%;
  content: "";
  pointer-events: none;
  transform: rotate(28deg);
}

.portfolio-section::after,
.services-section::after,
.detail-section::after,
.payment-section::after,
.testimonials-section::after {
  opacity: .9;
  position: absolute;
  z-index: 1;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    2.5rem 2rem 0 -1px rgba(189, 150, 83, .7),
    -2rem 4rem 0 -1px rgba(189, 150, 83, .5),
    4rem 6rem 0 -1px rgba(189, 150, 83, .65),
    0 0 1.3rem .25rem rgba(189, 150, 83, .42);
  content: "";
  animation: glint 5s ease-in-out infinite;
  pointer-events: none;
}

.portfolio-section::after,
.services-section::after,
.detail-section::after,
.payment-section::after,
.testimonials-section::after {
  animation-name: glitter-pulse;
}

@keyframes glitter-pulse {
  0%, 100% { opacity: .45; transform: scale(.75); }
  50% { opacity: 1; transform: scale(1.15); }
}

.portfolio-section::before { top: 7rem; right: -6rem; }
.portfolio-section::after { top: 10rem; right: 8%; }
.services-section::before { right: -8rem; bottom: 3rem; }
.services-section::after { top: 20%; left: 4%; animation-delay: 1.2s; }
.detail-section::before { bottom: -6rem; left: -4rem; }
.detail-section::after { top: 13%; right: 7%; animation-delay: 2.1s; }
.payment-section::before { right: -8rem; bottom: -7rem; border-color: rgba(255, 255, 255, .12); }
.payment-section::after { top: 12%; right: 8%; animation-delay: 1.7s; }
.testimonials-section::before { top: 10%; left: -7rem; }
.testimonials-section::after { right: 8%; bottom: 12%; animation-delay: 2.8s; }
.destinations-section::before { top: 4rem; right: -7rem; }

.portfolio-section .section-intro {
  grid-template-columns: 1fr 1fr;
  align-items: end;
}

.portfolio-section .section-intro h2 {
  max-width: 9ch;
}

.work-gallery {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
}

.portfolio-track {
  --gallery-index: 0;
  display: flex;
  gap: 1.25rem;
  transform: translate3d(calc(var(--gallery-index) * (-82% - 1.25rem)), 0, 0);
  transition: transform .75s cubic-bezier(.2, .7, .2, 1);
  will-change: transform;
}

.portfolio-slide {
  position: relative;
  min-width: 82%;
  margin: 0;
  overflow: hidden;
  background: #241d20;
}

.portfolio-slide img {
  width: 100%;
  height: clamp(25rem, 55vw, 43rem);
  object-fit: cover;
  opacity: .62;
  transform: scale(1.035);
  transition: opacity .7s ease, transform 1s cubic-bezier(.2, .7, .2, 1);
}

.portfolio-slide.is-active img {
  opacity: 1;
  transform: scale(1);
}

.portfolio-slide p {
  position: static;
  margin: 0;
  padding: 1rem 1.15rem 1.1rem;
  color: var(--ink);
  background: var(--porcelain);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1;
}

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

.portfolio-status {
  margin: 0;
  color: var(--ink-soft);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.portfolio-controls > div {
  display: flex;
  gap: .65rem;
}

.portfolio-controls button {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, transform .25s ease;
}

.portfolio-controls button:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

.detail-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(17rem, .7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
  width: 100%;
  padding: var(--section-space) max(4vw, calc((100vw - 88rem) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(234, 214, 219, .7), transparent 18rem),
    #f4f0ef;
}

.detail-copy h2 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 5.4vw, 6rem);
}

.detail-copy > p:not(.eyebrow) {
  max-width: 31rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
}

.detail-composition {
  position: relative;
  min-height: clamp(31rem, 52vw, 45rem);
}

.detail-composition figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.detail-composition img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-primary {
  top: 0;
  right: 0;
  width: 78%;
  height: 82%;
}

.detail-secondary {
  bottom: 0;
  left: 0;
  width: 46%;
  height: 54%;
  border: .7rem solid #f4f0ef;
}

.payment-art {
  position: relative;
  overflow: hidden;
}

.payment-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.payment-art::after {
  background: linear-gradient(180deg, transparent 45%, rgba(19, 14, 16, .58));
}

.payment-copy {
  background:
    radial-gradient(circle at 85% 12%, rgba(234, 214, 219, .8), transparent 12rem),
    var(--porcelain);
}

.testimonial-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(18rem, .85fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.testimonial-copy {
  width: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.testimonial-copy h2 {
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.campaign {
  background:
    radial-gradient(circle at 78% 20%, rgba(189, 150, 83, .22), transparent 15rem),
    linear-gradient(115deg, var(--rose-pale), #f6eeee 58%, var(--porcelain));
}

.campaign-heading h2 {
  line-height: .82;
}

@media (max-width: 48rem) {
  .hero {
    justify-content: center;
    padding-inline: 5vw;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(13, 9, 11, .72), rgba(13, 9, 11, .4) 42%, rgba(13, 9, 11, .86)),
      radial-gradient(circle at center, rgba(13, 9, 11, .08), rgba(13, 9, 11, .42) 78%);
  }

  .hero-payment { text-align: center; }

  .portfolio-section .section-intro {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .portfolio-track {
    gap: .75rem;
    transform: translate3d(calc(var(--gallery-index) * (-88% - .75rem)), 0, 0);
  }

  .portfolio-slide { min-width: 88%; }
  .portfolio-slide img { height: clamp(22rem, 112vw, 34rem); }

  .detail-section {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-inline: 5vw;
  }

  .detail-composition {
    min-height: clamp(27rem, 115vw, 39rem);
  }

  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonial-copy {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 34rem) {
  .hero-actions {
    align-items: center;
  }

  .hero-actions .button {
    width: min(100%, 22rem);
  }

  .hero-actions .hero-gallery-link {
    width: min(100%, 22rem);
  }

  .portfolio-controls button {
    width: 2.75rem;
    height: 2.75rem;
  }

  .detail-secondary {
    width: 52%;
    height: 50%;
  }

  .testimonial-copy {
    width: 100%;
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-track { transition: none; }
}

/* Copy balance and legibility refinements */
.hero::before {
  background:
    linear-gradient(180deg, rgba(120, 55, 87, .42), rgba(190, 112, 145, .2) 43%, rgba(48, 17, 33, .7)),
    linear-gradient(90deg, rgba(108, 48, 78, .35), rgba(211, 139, 166, .12) 52%, rgba(91, 36, 63, .4)),
    radial-gradient(circle at center, rgba(80, 30, 53, .05) 18%, rgba(79, 30, 50, .28) 80%);
}

.portfolio-section .section-intro h2,
.detail-copy h2,
.payment-copy h2,
.services-heading h2 {
  max-width: none;
}

.portfolio-section .section-intro h2 {
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  text-wrap: pretty;
}

.portfolio-section::before,
.services-section::before,
.detail-section::before,
.payment-section::before,
.testimonials-section::before,
.destinations-section::before {
  z-index: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(189, 150, 83, .85) 0 1px, transparent 2px),
    radial-gradient(circle at 68% 16%, rgba(185, 111, 126, .75) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 72%, rgba(189, 150, 83, .72) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 82%, rgba(185, 111, 126, .62) 0 1px, transparent 2px);
  background-size: 5.5rem 4.5rem, 7rem 6rem, 8rem 7rem, 6rem 5rem;
  opacity: .82;
}

.portfolio-section::after,
.services-section::after,
.detail-section::after,
.payment-section::after,
.testimonials-section::after {
  z-index: 1;
  box-shadow:
    0 0 0 2px rgba(255, 241, 213, .52),
    0 0 1.2rem .35rem rgba(189, 150, 83, .72),
    2.5rem 2rem 0 -1px rgba(189, 150, 83, .92),
    -2rem 4rem 0 -1px rgba(189, 150, 83, .8),
    4rem 6rem 0 -1px rgba(185, 111, 126, .78),
    -3rem 8rem 0 -1px rgba(185, 111, 126, .7),
    5rem 10rem 0 -1px rgba(189, 150, 83, .72);
}

.detail-copy h2,
.payment-copy h2,
.services-heading h2 {
  font-size: clamp(2.8rem, 4.7vw, 5.4rem);
  text-wrap: pretty;
}

.services-heading h2 {
  width: min(100%, 58rem);
}

.portfolio-section::after,
.services-section::after,
.detail-section::after,
.payment-section::after,
.testimonials-section::after {
  box-shadow:
    2.5rem 2rem 0 -1px rgba(189, 150, 83, .8),
    -2rem 4rem 0 -1px rgba(189, 150, 83, .65),
    4rem 6rem 0 -1px rgba(189, 150, 83, .75),
    -3rem 8rem 0 -1px rgba(185, 111, 126, .55),
    5rem 10rem 0 -1px rgba(185, 111, 126, .5),
    7rem 1rem 0 -1px rgba(189, 150, 83, .55),
    -5rem 6rem 0 -1px rgba(189, 150, 83, .48),
    8rem 8rem 0 -1px rgba(185, 111, 126, .45),
    -7rem 11rem 0 -1px rgba(189, 150, 83, .5),
    3rem 13rem 0 -1px rgba(185, 111, 126, .42),
    0 0 1.3rem .25rem rgba(189, 150, 83, .48);
}

.portfolio-section::before,
.services-section::before,
.detail-section::before,
.payment-section::before,
.testimonials-section::before,
.destinations-section::before {
  box-shadow:
    0 0 0 1px rgba(189, 150, 83, .04),
    1.4rem 2rem 0 -1px rgba(189, 150, 83, .5),
    -2rem 5rem 0 -1px rgba(185, 111, 126, .42),
    3rem 8rem 0 -1px rgba(189, 150, 83, .36),
    -4rem 10rem 0 -1px rgba(185, 111, 126, .32);
}

/* Final responsive lock for the gallery heading across zoom levels. */
.portfolio-section .section-intro h2 {
  width: min(100%, 40rem);
  font-size: clamp(2.4rem, 3.4vw, 4rem);
  line-height: .92;
}

@media (max-width: 48rem) {
  .portfolio-section .section-intro h2 {
    width: min(100%, 34rem);
    font-size: clamp(2.4rem, 8vw, 4rem);
  }
}

/* CITTA editorial masthead */
@media (min-width: 72.01rem) {
  :root { --header-height: 6rem; }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto 1fr;
    min-height: var(--header-height);
    padding: .4rem max(4vw, calc((100vw - 103rem) / 2));
    border-color: rgba(94, 72, 61, .24);
    background: rgba(255, 255, 255, .6);
    box-shadow: none;
    color: #2f2622;
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    backdrop-filter: blur(10px) saturate(120%);
  }

  .site-header.is-scrolled {
    background: rgba(253, 249, 248, .9);
  }

  .site-header::after {
    position: absolute;
    right: max(4vw, calc((100vw - 103rem) / 2));
    bottom: .45rem;
    left: max(4vw, calc((100vw - 103rem) / 2));
    height: 1px;
    background:
      linear-gradient(
        90deg,
        rgba(85, 72, 63, .55) 0 38%,
        transparent 38% 62%,
        rgba(85, 72, 63, .55) 62% 100%
      );
    content: "";
    pointer-events: none;
  }

  .brand {
    z-index: 3;
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .brand-logo {
    width: clamp(8rem, 8vw, 9rem);
    max-height: 4.65rem;
    object-fit: contain;
  }

  .brand::before,
  .brand::after {
    position: absolute;
    top: 50%;
    width: clamp(4.5rem, 6.5vw, 7.5rem);
    height: 2.2rem;
    background: url("assets/citta-header-ornament.svg") center / contain no-repeat;
    content: "";
    opacity: .82;
    pointer-events: none;
  }

  .brand::before {
    right: calc(100% + clamp(.8rem, 1.4vw, 1.5rem));
    transform: translateY(-50%);
  }

  .brand::after {
    left: calc(100% + clamp(.8rem, 1.4vw, 1.5rem));
    transform: translateY(-50%) scaleX(-1);
  }

  .site-nav {
    z-index: 2;
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(13rem, 20vw, 20rem);
    align-items: center;
    width: 100%;
    padding-bottom: 0;
  }

  .nav-group {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 2.1vw, 2.5rem);
  }

  .nav-group-left {
    justify-content: flex-start;
    padding-left: clamp(.5rem, 1.5vw, 1.5rem);
  }

  .nav-group-right {
    justify-content: flex-end;
    padding-right: clamp(.5rem, 1.5vw, 1.5rem);
  }

  .site-nav a,
  .header-cta {
    padding: .35rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #2f2622;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.2;
    text-shadow: 0 1px 0 rgba(255, 255, 255, .45);
    white-space: nowrap;
    text-transform: uppercase;
  }

  .site-nav .header-cta {
    position: relative;
  }

  .site-nav .header-cta::before {
    position: absolute;
    right: 0;
    bottom: -.1rem;
    left: 0;
    height: 1px;
    background: var(--gold);
    content: "";
  }

  .language-switcher {
    flex: 0 0 auto;
    color: #2f2622;
    font-weight: 600;
  }

  .site-header:not(.is-scrolled) .language-button.is-active {
    color: var(--rose);
    text-decoration: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100dvh;
    margin-top: 0;
    padding-top: calc(var(--header-height) + 3rem);
  }
}

.footer-logo {
  width: clamp(9rem, 14vw, 13rem);
  height: auto;
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: .45rem;
}

.footer-brand p { margin: 0; }

@media (max-width: 72rem) {
  .site-header {
    border-color: rgba(94, 72, 61, .18);
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 .4rem 1.5rem rgba(55, 32, 40, .035);
    color: #55483f;
    -webkit-backdrop-filter: blur(14px) saturate(115%);
    backdrop-filter: blur(14px) saturate(115%);
  }

  .site-header.is-scrolled {
    background: rgba(253, 249, 248, .92);
    box-shadow: 0 .5rem 1.8rem rgba(55, 32, 40, .07);
  }

  .brand-logo {
    width: 7rem;
    height: 2.85rem;
    object-fit: contain;
    object-position: left center;
  }

  .site-nav {
    gap: 1.25rem;
  }

  .nav-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .nav-group-right {
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
  }

  .site-nav .header-cta {
    display: inline-flex;
    font-family: var(--body);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .site-nav .language-switcher {
    margin-top: .25rem;
  }

  .site-header:not(.is-scrolled) .language-button.is-active {
    color: var(--rose);
    text-decoration: none;
  }
}

/* Replace the heavy gallery blob with restrained botanical linework. */
.portfolio-section::before {
  top: 8rem;
  right: -3.5rem;
  width: clamp(8rem, 13vw, 12rem);
  height: clamp(11rem, 17vw, 16rem);
  aspect-ratio: auto;
  border: 1px solid rgba(157, 119, 77, .34);
  border-radius: 58% 42% 64% 36% / 46% 62% 38% 54%;
  background: none;
  box-shadow: none;
  opacity: .65;
  transform: rotate(24deg);
}

.portfolio-section::after {
  top: 11rem;
  right: 7%;
  width: 5px;
  height: 5px;
  background: #c49b61;
  box-shadow:
    0 0 .9rem .18rem rgba(196, 155, 97, .36),
    -3rem 4.5rem 0 -1px rgba(185, 111, 126, .45),
    2.4rem 7rem 0 -1px rgba(196, 155, 97, .42);
}

.portfolio-section .section-intro::after {
  right: 4%;
  bottom: -1.3rem;
  width: 7rem;
  height: 3.5rem;
  border-color: rgba(157, 119, 77, .3);
}

@media (max-width: 48rem) {
  .portfolio-section::before {
    top: 13rem;
    right: -4.5rem;
    width: 8rem;
    height: 11rem;
    opacity: .42;
  }

  .portfolio-section::after {
    top: 14rem;
    right: 8%;
  }
}

/* Softer, richer gallery surface */
.work-gallery {
  padding: clamp(.75rem, 1.4vw, 1.25rem);
  border: 1px solid rgba(185, 111, 126, .12);
  border-radius: clamp(1.4rem, 2.4vw, 2.1rem);
  background:
    radial-gradient(circle at 92% 84%, rgba(234, 214, 219, .58), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, .78), rgba(247, 240, 241, .72));
}

.portfolio-slide {
  border: 1px solid rgba(157, 119, 77, .13);
  border-radius: clamp(1.1rem, 1.8vw, 1.55rem);
  box-shadow: 0 1.2rem 3.5rem rgba(86, 49, 62, .09);
}

.portfolio-slide img {
  border-radius: clamp(1.05rem, 1.75vw, 1.5rem) clamp(1.05rem, 1.75vw, 1.5rem) 0 0;
}

.portfolio-slide p {
  min-height: 4.5rem;
  padding: 1.1rem 1.35rem 1.25rem;
  background:
    linear-gradient(90deg, rgba(234, 214, 219, .38), transparent 58%),
    var(--porcelain);
}

.portfolio-controls {
  margin-inline: .35rem;
  padding-bottom: .25rem;
}

.portfolio-controls button {
  border-color: rgba(157, 119, 77, .28);
  background: rgba(255, 255, 255, .58);
}

@media (max-width: 48rem) {
  .work-gallery {
    padding: .6rem;
    border-radius: 1.4rem;
  }

  .portfolio-slide {
    border-radius: 1rem;
  }

  .portfolio-slide img {
    border-radius: .95rem .95rem 0 0;
  }
}

/* Floating translucent header panel */
.site-header,
.site-header.is-scrolled {
  top: .7rem;
  right: .7rem;
  left: .7rem;
  width: auto;
  border: 1px solid rgba(255, 255, 255, .68);
  border-radius: 1.15rem;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 .65rem 2rem rgba(58, 35, 43, .09);
  -webkit-backdrop-filter: blur(12px) saturate(108%);
  backdrop-filter: blur(12px) saturate(108%);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 .65rem 2rem rgba(58, 35, 43, .13);
}

@media (max-width: 48rem) {
  .site-header,
  .site-header.is-scrolled {
    top: .4rem;
    right: .4rem;
    left: .4rem;
    border-radius: .95rem;
  }
}

/* Luxury gallery detailing */
.portfolio-section {
  background:
    radial-gradient(ellipse at 50% 0, rgba(226, 194, 202, .34), transparent 32rem),
    radial-gradient(circle at 8% 78%, rgba(215, 170, 97, .09), transparent 18rem),
    linear-gradient(180deg, #fbf9f8, #f7f1f2);
}

.portfolio-section .section-intro::before,
.portfolio-section .section-intro::after {
  position: absolute;
  bottom: -2.75rem;
  width: clamp(6rem, 12vw, 11rem);
  height: 2.4rem;
  border: 0;
  border-radius: 0;
  background: url("assets/citta-header-ornament.svg") center / contain no-repeat;
  content: "";
  filter: saturate(1.12) drop-shadow(0 2px 5px rgba(86, 49, 62, .1));
  opacity: .68;
  pointer-events: none;
}

.portfolio-section .section-intro::before {
  right: calc(50% + .65rem);
}

.portfolio-section .section-intro::after {
  right: auto;
  left: calc(50% + .65rem);
  transform: scaleX(-1);
}

.work-gallery {
  margin-top: clamp(1.5rem, 3vw, 2.75rem);
  border-color: rgba(185, 111, 126, .09);
  box-shadow:
    0 2rem 5rem rgba(91, 53, 67, .08),
    inset 0 1px rgba(255, 255, 255, .82);
}

.gallery-masthead {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .2rem clamp(1.25rem, 2.5vw, 2.5rem);
  align-items: end;
  padding: clamp(.7rem, 1.3vw, 1.15rem) clamp(.55rem, 1vw, .9rem) clamp(1.2rem, 2vw, 1.8rem);
}

.gallery-masthead::after {
  align-self: end;
  height: 1px;
  margin-bottom: .55rem;
  background: linear-gradient(90deg, rgba(189, 150, 83, .7), rgba(185, 111, 126, .12));
  content: "";
}

.gallery-masthead p {
  grid-column: 1;
  margin: 0;
  color: var(--rose);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-masthead h3 {
  grid-column: 1;
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.5vw, 4.8rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .85;
}

.portfolio-slide {
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: 0 1.25rem 3.4rem rgba(86, 49, 62, .12);
}

.portfolio-slide img {
  border: 0;
  outline: 0;
}

.portfolio-slide p {
  position: relative;
  padding-left: 2.65rem;
  border: 0;
}

.portfolio-slide p::before {
  position: absolute;
  top: 50%;
  left: 1.25rem;
  width: .8rem;
  height: 1px;
  background: #bd9653;
  content: "";
}

@media (max-width: 48rem) {
  .portfolio-section .section-intro::before,
  .portfolio-section .section-intro::after {
    bottom: -2.1rem;
    width: 6.2rem;
    height: 1.7rem;
    opacity: .54;
  }

  .work-gallery {
    margin-top: 1.25rem;
  }

  .gallery-masthead {
    padding: .75rem .5rem 1.25rem;
  }

  .gallery-masthead h3 {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
  }
}

/* Invitation-inspired payment section */
.payment-section.payment-proof {
  border: 1px solid rgba(189, 150, 83, .24);
  border-radius: clamp(1.4rem, 2.4vw, 2.1rem);
  background:
    radial-gradient(circle at 88% 8%, rgba(218, 181, 190, .42), transparent 17rem),
    linear-gradient(135deg, #f7f1f1, #fcfaf8 62%);
  box-shadow:
    0 2rem 5rem rgba(83, 48, 61, .11),
    inset 0 1px rgba(255, 255, 255, .9);
}

.payment-luxury-frame {
  position: absolute;
  z-index: 4;
  inset: .85rem;
  border: 1px solid rgba(189, 150, 83, .31);
  border-radius: clamp(.9rem, 1.7vw, 1.45rem);
  pointer-events: none;
}

.payment-filigree {
  position: absolute;
  z-index: 5;
  width: clamp(6rem, 10vw, 10rem);
  height: 2.8rem;
  background: url("assets/citta-header-ornament.svg") center / contain no-repeat;
  filter: saturate(1.16) drop-shadow(0 2px 5px rgba(82, 46, 58, .12));
  opacity: .72;
  pointer-events: none;
}

.payment-filigree-top {
  top: clamp(4.8rem, 7vw, 6.5rem);
  right: 2rem;
  transform: scaleX(-1);
}

.payment-filigree-bottom {
  bottom: 1.2rem;
  left: 1.35rem;
}

.payment-section.payment-proof .payment-art,
.payment-section.payment-proof .payment-copy {
  z-index: 2;
}

.payment-section.payment-proof .payment-art {
  margin: 1rem 0 1rem 1rem;
  border-radius: clamp(.85rem, 1.5vw, 1.25rem);
  box-shadow: 0 1.4rem 3.5rem rgba(54, 31, 39, .16);
}

.payment-section.payment-proof .payment-art::before {
  position: absolute;
  z-index: 2;
  inset: .65rem;
  border: 1px solid rgba(255, 238, 199, .62);
  border-radius: clamp(.55rem, 1vw, .85rem);
  content: "";
  pointer-events: none;
}

.payment-art-label {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  padding: .55rem .75rem;
  border: 1px solid rgba(255, 238, 199, .7);
  border-radius: 999px;
  background: rgba(37, 25, 29, .58);
  color: #fff8ed;
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.payment-section.payment-proof .payment-copy {
  background:
    radial-gradient(circle at 88% 11%, rgba(234, 214, 219, .82), transparent 12rem),
    radial-gradient(circle at 12% 88%, rgba(189, 150, 83, .08), transparent 14rem),
    rgba(250, 248, 247, .9);
}

.payment-section.payment-proof .payment-copy h2 {
  position: relative;
}

.payment-section.payment-proof .payment-copy h2::after {
  display: block;
  width: clamp(4rem, 8vw, 7rem);
  height: 1px;
  margin-top: 1.5rem;
  background: linear-gradient(90deg, #bd9653, transparent);
  content: "";
}

.payment-transition {
  margin: 0 0 .7rem;
  color: var(--rose);
  font-family: var(--display);
  font-size: .92rem;
  font-style: italic;
  letter-spacing: .02em;
}

.payment-section.payment-proof .payment-copy ul {
  padding-block: 1.75rem;
  margin-top: .35rem;
}

.payment-section.payment-proof .payment-glitter {
  position: absolute;
  z-index: 1;
  top: 8%;
  right: 7%;
  display: block;
  width: 5rem;
  height: 8rem;
}

.payment-section.payment-proof .payment-glitter span {
  color: #bd9653;
  text-shadow: 0 0 1rem rgba(189, 150, 83, .46);
  animation: glitter-pulse 4.5s ease-in-out infinite;
}

.payment-section.payment-proof .payment-glitter span:nth-child(1) { top: 0; right: 0; }
.payment-section.payment-proof .payment-glitter span:nth-child(2) { top: 3rem; left: .4rem; animation-delay: 1.2s; }
.payment-section.payment-proof .payment-glitter span:nth-child(3) { right: 1rem; bottom: 0; animation-delay: 2.1s; }

@media (max-width: 48rem) {
  .payment-luxury-frame {
    inset: .55rem;
  }

  .payment-filigree {
    width: 5.5rem;
    height: 1.8rem;
    opacity: .58;
  }

  .payment-section.payment-proof .payment-art {
    margin: .7rem .7rem 0;
  }

  .payment-art-label {
    right: .95rem;
    bottom: .95rem;
  }
}

/* Couture invitation treatment for the client story */
.testimonials-section {
  margin-block: clamp(2.5rem, 5vw, 5rem);
  padding: clamp(4rem, 7vw, 7rem) clamp(2.25rem, 5vw, 5.5rem);
  border: 1px solid rgba(189, 150, 83, .28);
  border-radius: clamp(1.5rem, 2.8vw, 2.5rem);
  background:
    radial-gradient(circle at 8% 12%, rgba(234, 214, 219, .82), transparent 18rem),
    radial-gradient(circle at 94% 88%, rgba(189, 150, 83, .13), transparent 19rem),
    linear-gradient(135deg, #fbf8f6 0%, #fffdfb 48%, #f7eeee 100%);
  box-shadow:
    0 2.2rem 5.5rem rgba(83, 48, 61, .11),
    inset 0 1px rgba(255, 255, 255, .95);
}

.testimonial-luxury-frame {
  position: absolute;
  z-index: 1;
  inset: .85rem;
  border: 1px solid rgba(189, 150, 83, .32);
  border-radius: clamp(1rem, 2vw, 1.8rem);
  pointer-events: none;
}

.testimonial-luxury-frame::before,
.testimonial-luxury-frame::after {
  position: absolute;
  width: clamp(2.5rem, 5vw, 4.5rem);
  height: clamp(2.5rem, 5vw, 4.5rem);
  border-color: rgba(189, 150, 83, .62);
  content: "";
}

.testimonial-luxury-frame::before {
  top: .65rem;
  left: .65rem;
  border-top: 1px solid;
  border-left: 1px solid;
  border-radius: .7rem 0 0;
}

.testimonial-luxury-frame::after {
  right: .65rem;
  bottom: .65rem;
  border-right: 1px solid;
  border-bottom: 1px solid;
  border-radius: 0 0 .7rem;
}

.testimonial-filigree {
  position: absolute;
  z-index: 4;
  width: clamp(7rem, 13vw, 12rem);
  height: clamp(2.2rem, 4vw, 3.5rem);
  background: url("assets/citta-header-ornament.svg") center / contain no-repeat;
  filter: saturate(1.15) drop-shadow(0 3px 7px rgba(82, 46, 58, .14));
  opacity: .78;
  pointer-events: none;
}

.testimonial-filigree-top {
  top: 1.35rem;
  right: 1.6rem;
  transform: scaleX(-1);
}

.testimonial-filigree-bottom {
  bottom: 1.35rem;
  left: 1.6rem;
}

.testimonial-sparkles {
  position: absolute;
  z-index: 4;
  top: 14%;
  right: 5%;
  width: 4rem;
  height: 7rem;
  color: var(--gold);
  pointer-events: none;
}

.testimonial-sparkles span {
  position: absolute;
  text-shadow: 0 0 1.2rem rgba(189, 150, 83, .55);
  animation: glitter-pulse 4.8s ease-in-out infinite;
}

.testimonial-sparkles span:nth-child(1) { top: 0; right: .5rem; font-size: .9rem; }
.testimonial-sparkles span:nth-child(2) { top: 2.5rem; left: 0; font-size: 1.25rem; animation-delay: 1.3s; }
.testimonial-sparkles span:nth-child(3) { right: 0; bottom: 0; font-size: .65rem; animation-delay: 2.4s; }

.testimonials-section .testimonial-layout {
  position: relative;
  z-index: 3;
}

.testimonials-section .testimonial-feature {
  position: relative;
  padding: clamp(.45rem, .8vw, .7rem);
  border: 1px solid rgba(189, 150, 83, .62);
  border-radius: clamp(1rem, 2vw, 1.7rem);
  background: rgba(255, 253, 249, .74);
  box-shadow:
    0 1.8rem 4rem rgba(65, 36, 47, .18),
    inset 0 0 0 1px rgba(255, 255, 255, .86);
}

.testimonials-section .testimonial-feature::after {
  position: absolute;
  inset: clamp(.8rem, 1.3vw, 1.15rem);
  border: 1px solid rgba(255, 239, 205, .62);
  border-radius: clamp(.6rem, 1.3vw, 1.1rem);
  content: "";
  pointer-events: none;
}

.testimonials-section .testimonial-video {
  border-radius: clamp(.65rem, 1.5vw, 1.2rem);
}

.testimonials-section .testimonial-copy {
  position: relative;
  padding: clamp(1.25rem, 2.5vw, 2.5rem) 0;
}

.testimonials-section .testimonial-copy::before {
  position: absolute;
  z-index: -1;
  top: clamp(-2.8rem, -4vw, -1.6rem);
  left: clamp(-1.5rem, -2vw, -.5rem);
  color: rgba(189, 150, 83, .13);
  content: "\201C";
  font-family: var(--display);
  font-size: clamp(9rem, 15vw, 15rem);
  font-style: italic;
  line-height: 1;
  pointer-events: none;
}

.testimonials-section .testimonial-copy h2 {
  position: relative;
  max-width: 10ch;
  margin-bottom: 1.75rem;
  text-wrap: balance;
}

.testimonials-section .testimonial-summary {
  border-left-color: var(--gold);
}

.testimonials-section .testimonial-attribution {
  display: flex;
  gap: .8rem;
  align-items: center;
  color: var(--rose);
}

.testimonials-section .testimonial-attribution::before {
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(189, 150, 83, .18));
  content: "";
}

@media (max-width: 48rem) {
  .testimonials-section {
    width: 94vw;
    padding: 3.5rem 1.6rem 4rem;
  }

  .testimonial-luxury-frame {
    inset: .55rem;
  }

  .testimonial-filigree {
    width: 6.5rem;
    height: 2rem;
    opacity: .62;
  }

  .testimonial-filigree-top {
    top: .8rem;
    right: 1rem;
  }

  .testimonial-filigree-bottom {
    bottom: .8rem;
    left: 1rem;
  }

  .testimonial-sparkles {
    top: 2.6rem;
    right: 1.6rem;
    transform: scale(.8);
  }

  .testimonials-section .testimonial-copy {
    padding: .75rem .35rem 1rem;
  }

  .testimonials-section .testimonial-copy::before {
    top: -2rem;
    left: -.35rem;
    font-size: 9rem;
  }
}

@media (max-width: 34rem) {
  .testimonials-section {
    padding-inline: 1.15rem;
  }

  .testimonials-section .testimonial-copy h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }
}

/* Promotion-first campaign messaging */
.campaign-invitation .campaign-heading h2 {
  max-width: 9ch;
  font-size: clamp(3.7rem, 6.2vw, 7rem);
  line-height: .82;
  text-wrap: balance;
}

.campaign-invitation .campaign-heading h2 em {
  color: var(--rose);
}

.campaign-lead {
  max-width: 34rem;
  margin: clamp(1.6rem, 3vw, 2.5rem) 0 0;
  color: var(--ink-soft);
  font-size: clamp(.92rem, 1.15vw, 1.08rem);
  line-height: 1.75;
}

.campaign-invitation .campaign-details dl {
  margin-bottom: 1.4rem;
}

.campaign-invitation .campaign-code {
  position: relative;
  margin-top: .35rem;
  padding-inline: 1rem;
  border: 1px solid rgba(189, 150, 83, .38);
  background:
    radial-gradient(circle at 90% 20%, rgba(189, 150, 83, .14), transparent 7rem),
    rgba(255, 253, 249, .52);
}

.campaign-invitation .campaign-code dt {
  color: var(--rose);
}

.campaign-invitation .campaign-code dd {
  color: var(--ink);
  font-size: clamp(1.6rem, 2.4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: .08em;
}

.campaign-benefits {
  display: grid;
  gap: 0;
  margin: 0 0 1.75rem;
  padding: 0;
  border-top: 1px solid rgba(189, 150, 83, .34);
  border-bottom: 1px solid rgba(189, 150, 83, .34);
  list-style: none;
}

.campaign-benefits li {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: .75rem 0;
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.campaign-benefits li + li {
  border-top: 1px solid rgba(24, 20, 22, .08);
}

.campaign-benefits li::before {
  color: var(--gold);
  content: "✦";
  font-size: .72rem;
  text-shadow: 0 0 .8rem rgba(189, 150, 83, .5);
}

.campaign-invitation .campaign-link {
  align-self: flex-start;
  justify-content: center;
  min-width: min(100%, 18rem);
  padding: 1rem 1.35rem;
  border: 1px solid rgba(189, 150, 83, .68);
  border-radius: .35rem;
  background: var(--ink);
  box-shadow: 0 1rem 2.4rem rgba(64, 35, 46, .16);
  color: #fff;
  transition: transform .25s ease, background-color .25s ease, box-shadow .25s ease;
}

.campaign-invitation .campaign-link:hover {
  background: #35272c;
  box-shadow: 0 1.25rem 2.8rem rgba(64, 35, 46, .22);
  transform: translateY(-2px);
}

.campaign-invitation .campaign-link:active {
  transform: translateY(1px);
}

@media (max-width: 48rem) {
  .campaign-invitation .campaign-heading {
    min-height: 0;
    padding-block: 4rem;
  }

  .campaign-invitation .campaign-heading h2 {
    max-width: 11ch;
    font-size: clamp(3rem, 11vw, 5rem);
  }

  .campaign-invitation .campaign-details {
    padding-block: 3.5rem 4rem;
  }
}

@media (max-width: 34rem) {
  .campaign-invitation .campaign-heading h2 {
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .campaign-invitation .campaign-link {
    width: 100%;
  }
}

/* Center the services title as one clean two-line statement. */
.services-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  text-align: center;
}

.services-heading .eyebrow {
  align-self: flex-start;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  text-align: left;
}

.services-heading h2 {
  width: min(100%, 30ch);
  max-width: 30ch;
  margin-inline: auto;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  line-height: .82;
  text-align: center;
  text-wrap: balance;
}

@media (max-width: 48rem) {
  .services-heading .eyebrow {
    align-self: center;
    margin-bottom: 2rem;
    text-align: center;
  }

  .services-heading h2 {
    width: min(100%, 24ch);
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }
}

/* Give the destinations heading a composed two-line lockup. */
.destinations-heading h2 {
  width: min(100%, 34rem);
  max-width: 24ch;
  margin-inline: auto;
  font-size: clamp(3.25rem, 5.8vw, 6.2rem);
  line-height: .84;
  text-wrap: balance;
}

/* Replace the abstract orbit with CITTA's invitation-style filigree. */
.destinations-section::before {
  top: 16%;
  right: 2%;
  width: clamp(10rem, 18vw, 17rem);
  height: clamp(3.25rem, 5vw, 5rem);
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  background: url("assets/citta-header-ornament.svg") center / contain no-repeat;
  filter: saturate(1.12) drop-shadow(0 3px 7px rgba(82, 46, 58, .12));
  opacity: .62;
  transform: rotate(90deg);
}

@media (max-width: 48rem) {
  .destinations-heading h2 {
    width: min(100%, 22ch);
    max-width: 22ch;
    font-size: clamp(2.8rem, 10vw, 4.8rem);
  }

  .destinations-section::before {
    top: 8%;
    right: -2rem;
    width: 9rem;
    height: 3rem;
    opacity: .46;
  }
}

/* Gallery clarity, navigation and conversion polish */
.portfolio-section .section-intro > p:last-child {
  color: var(--ink-soft);
  font-size: clamp(.92rem, 1.15vw, 1.05rem);
  line-height: 1.65;
}

.work-gallery::before {
  display: none;
}

.portfolio-slide img {
  filter: saturate(.94) contrast(1.04) brightness(.94);
}

.portfolio-slide.is-active img {
  filter: saturate(.98) contrast(1.05) brightness(.96);
}

.work-gallery::after {
  position: absolute;
  z-index: 2;
  top: 5.1rem;
  right: 0;
  bottom: 4.9rem;
  width: clamp(3rem, 9vw, 8rem);
  background: linear-gradient(90deg, transparent, rgba(250, 248, 247, .58));
  content: "";
  pointer-events: none;
}

.portfolio-controls {
  position: relative;
  z-index: 4;
  padding-top: 1.5rem;
}

.portfolio-controls button {
  width: 3.35rem;
  height: 3.35rem;
  border-color: rgba(189, 150, 83, .7);
  background: rgba(255, 253, 249, .72);
  color: var(--ink);
  font-size: 1.05rem;
  box-shadow: 0 .35rem 1rem rgba(73, 40, 50, .1);
}

.portfolio-controls button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.portfolio-progress {
  flex: 1;
  height: 2px;
  overflow: hidden;
  background: rgba(189, 150, 83, .2);
}

.portfolio-progress span {
  display: block;
  width: var(--progress, 14.2857%);
  height: 100%;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  transition: width .45s ease;
}

.gallery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(189, 150, 83, .26);
  border-radius: .8rem;
  background: rgba(255, 253, 249, .58);
}

.gallery-cta p {
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.gallery-cta .button {
  flex-shrink: 0;
  min-height: 2.8rem;
  padding-inline: 1.1rem;
  font-size: .62rem;
}

@media (max-width: 48rem) {
  .work-gallery::after {
    top: 4.8rem;
    bottom: 4.7rem;
    width: 3rem;
  }

  .portfolio-controls {
    flex-wrap: wrap;
  }

  .portfolio-progress {
    order: 3;
    flex-basis: 100%;
  }

  .gallery-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-cta .button {
    width: 100%;
  }
}

/* Hero conversion and legibility refinements */
.hero::before {
  background:
    linear-gradient(180deg, rgba(18, 10, 15, .38) 0%, rgba(18, 10, 15, .08) 30%, rgba(18, 10, 15, .32) 58%, rgba(18, 10, 15, .82) 100%),
    linear-gradient(90deg, rgba(18, 10, 15, .5) 0%, rgba(18, 10, 15, .12) 55%, rgba(18, 10, 15, .34) 100%);
}

.hero h1 {
  text-shadow: 0 3px 18px rgba(20, 8, 14, .42);
}

.hero-copy .hero-services {
  margin-bottom: 1.15rem;
  font-size: clamp(.66rem, .78vw, .8rem);
  white-space: nowrap;
}

.hero-copy .hero-description {
  margin-bottom: 2rem;
}

.hero-trust {
  display: flex;
  gap: .55rem;
  align-items: center;
  justify-content: center;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, .88);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-shadow: 0 2px 8px rgba(20, 8, 14, .7);
  text-transform: uppercase;
}

.hero-trust span {
  color: #f0d39e;
  text-shadow: 0 0 1rem rgba(240, 211, 158, .7);
}

.hero-scroll-cue {
  position: absolute;
  right: max(4vw, calc((100vw - 88rem) / 2));
  bottom: 2rem;
  z-index: 3;
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  color: rgba(255, 255, 255, .8);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(20, 8, 14, .72);
}

.hero-scroll-cue span {
  display: inline-grid;
  width: 1.45rem;
  height: 1.45rem;
  place-items: center;
  border: 1px solid rgba(240, 211, 158, .72);
  border-radius: 50%;
  color: #f0d39e;
  animation: scroll-cue-bob 2.2s ease-in-out infinite;
}

@keyframes scroll-cue-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(.28rem); }
}

.site-nav {
  gap: clamp(2rem, 4vw, 4.75rem);
}

.nav-group {
  gap: clamp(1.25rem, 2.5vw, 2.75rem);
}

.header-cta {
  display: inline-flex !important;
  min-height: 2.25rem;
  align-items: center;
  padding: .55rem .95rem;
  border: 1px solid rgba(189, 150, 83, .7);
  border-radius: var(--radius-control);
  background: var(--rose);
  color: #fff !important;
  letter-spacing: .08em;
  text-decoration: none !important;
  transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.header-cta::after {
  display: none !important;
}

.header-cta:hover {
  background: #9d5666;
  box-shadow: 0 .55rem 1.2rem rgba(91, 42, 55, .2);
  transform: translateY(-1px);
}

.floating-whatsapp {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  gap: .55rem;
  align-items: center;
  padding: .7rem .95rem;
  border: 1px solid rgba(189, 150, 83, .72);
  border-radius: var(--radius-control);
  background: rgba(24, 20, 22, .9);
  box-shadow: 0 .8rem 2rem rgba(47, 24, 34, .22);
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, background-color .25s ease;
}

.floating-whatsapp > span:first-child {
  display: inline-grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  font-size: .95rem;
}

.floating-whatsapp:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

@media (max-width: 48rem) {
  .hero-scroll-cue {
    right: auto;
    bottom: 4.4rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .hero-trust {
    max-width: 26rem;
    line-height: 1.4;
  }

  .floating-whatsapp {
    right: .8rem;
    bottom: .8rem;
    padding: .65rem .8rem;
  }
}

@media (max-width: 34rem) {
  .hero-copy .hero-services {
    margin-bottom: .95rem;
    font-size: .62rem;
    white-space: normal;
  }

  .hero-copy .hero-description {
    margin-bottom: 1.5rem;
  }

  .hero-trust {
    margin-top: 1rem;
    font-size: .56rem;
  }

  .hero-scroll-cue {
    bottom: 4.2rem;
    font-size: .55rem;
  }

  .floating-whatsapp > span:last-child {
    display: none;
  }
}

/* Keep the floating header comfortably inset on wide screens. */
.site-header,
.site-header.is-scrolled {
  right: auto;
  left: 50%;
  width: min(86vw, 84rem);
  padding-inline: clamp(1.25rem, 3vw, 3rem);
  transform: translateX(-50%);
}

@media (max-width: 48rem) {
  .site-header,
  .site-header.is-scrolled {
    right: auto;
    left: 50%;
    width: calc(100% - 1.2rem);
    padding-inline: 5vw;
    transform: translateX(-50%);
  }
}

/* Reserve a clear breathing zone around the centered logo ornaments. */
@media (min-width: 72.01rem) {
  .site-nav {
    gap: clamp(16rem, 28vw, 25rem);
  }

  .nav-group {
    gap: clamp(1.15rem, 2vw, 2.25rem);
  }

  .nav-group-right {
    position: relative;
    left: clamp(1.75rem, 3vw, 3.25rem);
  }
}

/* Final polish pass: sharper type, tactile controls, and quieter depth. */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
li,
figcaption,
blockquote {
  text-wrap: pretty;
}

.language-button {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: .45rem .35rem;
  transition: color .2s ease, opacity .2s ease, transform .2s ease;
}

.language-button:active,
.menu-toggle:active,
.button:active,
.hero-gallery-link:active,
.portfolio-controls button:active,
.floating-whatsapp:active {
  transform: scale(.96);
}

.site-nav a {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
}

.site-nav .header-cta {
  min-height: 2.7rem;
  padding: .55rem 1.05rem;
  border: 1px solid rgba(189, 150, 83, .8);
  border-radius: 999px;
  background: var(--rose) !important;
  box-shadow: 0 .45rem 1.1rem rgba(81, 42, 54, .16);
  color: #fff !important;
}

.site-nav .header-cta::before,
.site-nav .header-cta::after {
  display: none !important;
}

/* Keep the payment promise as one deliberate two-line headline. */
.payment-section.payment-proof .payment-copy h2 {
  max-width: none;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: .9;
  text-wrap: balance;
}

/* Give the destinations lockup enough width to hold two clean lines. */
.destinations-heading h2 {
  width: min(100%, 52rem);
  max-width: none;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: .88;
  text-wrap: balance;
}

@media (max-width: 48rem) {
  .payment-section.payment-proof .payment-copy h2 {
    font-size: clamp(2.35rem, 8vw, 3.6rem);
  }

  .destinations-heading h2 {
    width: 100%;
    max-width: none;
    font-size: clamp(2.7rem, 8.4vw, 4.5rem);
  }
}

.button,
.header-cta {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .04),
    0 .45rem 1.2rem rgba(81, 42, 54, .12);
  transition-property: transform, background-color, border-color, color, box-shadow;
}

.button:hover,
.header-cta:hover {
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .06),
    0 .75rem 1.7rem rgba(81, 42, 54, .18);
}

.portfolio-controls button {
  min-width: 3rem;
  min-height: 3rem;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, .04),
    0 .35rem 1rem rgba(73, 40, 50, .1);
}

.detail-composition img,
.payment-art img,
.destination-photo,
.testimonial-video {
  outline: 1px solid rgba(0, 0, 0, .1);
  outline-offset: -1px;
}

.portfolio-slide img {
  outline: 0;
}

.portfolio-status {
  font-variant-numeric: tabular-nums;
}

/* Split the hero entrance into an editorial, readable sequence. */
.js .hero-copy.reveal {
  opacity: 1;
  transform: none;
}

.js .hero-copy.reveal > * {
  opacity: 0;
  transform: translateY(1rem);
  filter: blur(4px);
  transition: opacity .65s cubic-bezier(.2, .75, .25, 1), transform .65s cubic-bezier(.2, .75, .25, 1), filter .65s ease;
}

.js .hero-copy.reveal.is-visible > * {
  opacity: 1;
  transform: none;
  filter: blur(0);
}

.js .hero-copy.reveal.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.js .hero-copy.reveal.is-visible > *:nth-child(2) { transition-delay: 90ms; }
.js .hero-copy.reveal.is-visible > *:nth-child(3) { transition-delay: 180ms; }
.js .hero-copy.reveal.is-visible > *:nth-child(4) { transition-delay: 270ms; }
.js .hero-copy.reveal.is-visible > *:nth-child(5) { transition-delay: 360ms; }
.js .hero-copy.reveal.is-visible > *:nth-child(6) { transition-delay: 450ms; }

@media (prefers-reduced-motion: reduce) {
  .js .hero-copy.reveal > *,
  .js .hero-copy.reveal.is-visible > * {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

/* Final header lockup: protect the centered brand from navigation overlap. */
@media (min-width: 84.01rem) {
  .site-header,
  .site-header.is-scrolled {
    top: .75rem;
    width: min(calc(100% - 2rem), 104rem);
    min-height: 5.25rem;
    padding: .45rem clamp(1.75rem, 2.4vw, 2.75rem);
    border-color: rgba(189, 150, 83, .34);
    border-radius: 1.15rem;
    background: rgba(255, 253, 251, .78);
    box-shadow:
      0 1rem 2.8rem rgba(55, 32, 40, .12),
      inset 0 1px 0 rgba(255, 255, 255, .9);
    -webkit-backdrop-filter: blur(18px) saturate(118%);
    backdrop-filter: blur(18px) saturate(118%);
  }

  .site-header.is-scrolled {
    background: rgba(255, 253, 251, .92);
  }

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

  .brand-logo {
    width: clamp(7.15rem, 7.8vw, 8.2rem);
    max-height: 4.1rem;
  }

  .brand::before,
  .brand::after {
    top: 44%;
    width: clamp(2.75rem, 3.5vw, 3.8rem);
    height: 1.45rem;
    opacity: .72;
  }

  .brand::before {
    right: calc(100% + .35rem);
  }

  .brand::after {
    left: calc(100% + .35rem);
  }

  .site-nav {
    grid-template-columns: minmax(16rem, 1fr) minmax(34rem, 1.55fr);
    gap: clamp(11.75rem, 15vw, 14.25rem);
  }

  .nav-group {
    gap: clamp(1.1rem, 1.65vw, 1.8rem);
  }

  .nav-group-left {
    padding-left: 0;
  }

  .nav-group-right {
    position: static;
    left: auto;
    padding-right: 0;
  }

  .site-nav a {
    min-height: 2.35rem;
    font-size: clamp(.59rem, .62vw, .68rem);
    letter-spacing: .12em;
  }

  .site-nav .header-cta {
    min-height: 2.6rem;
    padding: .55rem clamp(.85rem, 1vw, 1.1rem);
    letter-spacing: .075em;
  }

  .language-button {
    min-width: 2rem;
    min-height: 2.35rem;
    padding-inline: .2rem;
  }
}

/* Use the compact menu before desktop navigation becomes crowded. */
@media (min-width: 48.01rem) and (max-width: 84rem) {
  :root {
    --header-height: 4.5rem;
  }

  .site-header,
  .site-header.is-scrolled {
    grid-template-columns: 1fr auto 1fr;
    min-height: var(--header-height);
    padding: .35rem 1.25rem;
  }

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

  .brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .brand-logo {
    width: 7.25rem;
    height: 3.5rem;
    object-position: center;
  }

  .brand::before,
  .brand::after {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-height) + .8rem);
    right: .8rem;
    z-index: 1;
    display: flex;
    width: min(26rem, calc(100vw - 1.6rem));
    max-height: calc(100dvh - var(--header-height) - 1.6rem);
    overflow-y: auto;
    flex-direction: column;
    gap: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(189, 150, 83, .32);
    border-radius: 1.15rem;
    background: rgba(255, 253, 251, .97);
    box-shadow: 0 1.5rem 4rem rgba(55, 32, 40, .18);
    color: var(--ink);
    transform: translateX(calc(100% + 2rem));
    visibility: hidden;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: transform .35s ease, visibility .35s;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-group,
  .nav-group-right {
    position: static;
    left: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: .85rem;
    width: 100%;
    padding: 0;
  }

  .nav-group-right {
    padding-top: 1.2rem;
    border-top: 1px solid rgba(189, 150, 83, .28);
  }

  .site-nav a {
    width: 100%;
    min-height: 2.5rem;
    font-family: var(--display);
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1;
    text-transform: none;
  }

  .site-nav .header-cta {
    width: auto;
    min-height: 2.8rem;
    margin-top: .35rem;
    padding: .7rem 1.1rem;
    font-family: var(--body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
  }

  .language-switcher {
    margin-top: .25rem;
  }
}

/* Bring the consultation into the same ivory, blush and antique-gold system. */
.consultation-section {
  position: relative;
  isolation: isolate;
  width: min(94vw, 86rem);
  margin-block: clamp(3rem, 6vw, 6rem);
  padding: clamp(3rem, 6vw, 6rem);
  overflow: hidden;
  border: 1px solid rgba(189, 150, 83, .32);
  border-radius: clamp(1.4rem, 2.5vw, 2.4rem);
  background:
    radial-gradient(circle at 8% 10%, rgba(224, 183, 194, .32), transparent 21rem),
    radial-gradient(circle at 92% 88%, rgba(189, 150, 83, .13), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 251, .98), rgba(247, 238, 240, .96));
  box-shadow:
    0 2rem 5rem rgba(73, 40, 50, .12),
    inset 0 1px 0 rgba(255, 255, 255, .92);
}

.consultation-section::before {
  position: absolute;
  z-index: -1;
  top: 2rem;
  left: -2rem;
  width: clamp(9rem, 18vw, 16rem);
  height: 4rem;
  background: url("assets/citta-header-ornament.svg") center / contain no-repeat;
  content: "";
  filter: sepia(.2) saturate(1.1);
  opacity: .22;
  transform: rotate(90deg);
  pointer-events: none;
}

.consultation-section::after {
  position: absolute;
  z-index: -1;
  right: clamp(1.5rem, 4vw, 4rem);
  bottom: clamp(1.5rem, 4vw, 4rem);
  width: 5rem;
  height: 5rem;
  border: 1px solid rgba(189, 150, 83, .24);
  border-radius: 50%;
  box-shadow:
    1.2rem -1rem 0 -1px rgba(185, 111, 126, .18),
    -1.6rem 1.2rem 0 -1px rgba(189, 150, 83, .18);
  content: "";
}

.consultation-heading {
  top: 6.5rem;
  padding-top: .75rem;
}

.consultation-heading .eyebrow {
  color: #9d7240;
}

.consultation-heading h2 {
  max-width: 11ch;
  margin-bottom: 1.4rem;
  color: #3c2b31;
  font-size: clamp(3.1rem, 5vw, 5.5rem);
  line-height: .88;
  text-wrap: balance;
}

.consultation-heading > p:last-child {
  max-width: 31rem;
  color: #6f5c63;
  font-size: clamp(.92rem, 1vw, 1.05rem);
  line-height: 1.75;
}

.consultation-form {
  position: relative;
  gap: 1.25rem 1.15rem;
  padding: clamp(1.5rem, 3.3vw, 3rem);
  border: 1px solid rgba(189, 150, 83, .36);
  border-top-width: 1px;
  border-radius: clamp(1rem, 1.8vw, 1.5rem);
  background: rgba(255, 253, 251, .76);
  box-shadow:
    0 1.5rem 3.5rem rgba(73, 40, 50, .1),
    inset 0 0 0 1px rgba(255, 255, 255, .72);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.consultation-form::before {
  position: absolute;
  top: 0;
  right: 2rem;
  left: 2rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 150, 83, .72), transparent);
  content: "";
}

.form-field {
  gap: .48rem;
}

.form-field label {
  padding-left: .2rem;
  color: #785f68;
  font-size: .6rem;
  letter-spacing: .13em;
}

.form-field input,
.form-field select {
  min-height: 3.35rem;
  padding: .8rem 1rem;
  border: 1px solid rgba(116, 83, 94, .22);
  border-radius: .65rem;
  background: rgba(250, 245, 245, .72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.form-field input:hover,
.form-field select:hover {
  border-color: rgba(157, 86, 102, .42);
  background: rgba(255, 252, 251, .92);
}

.form-field input:focus,
.form-field select:focus {
  border-color: rgba(189, 150, 83, .78);
  background: #fffdfb;
  box-shadow: 0 0 0 3px rgba(189, 150, 83, .12);
  outline: 0;
}

.consultation-form .form-submit {
  justify-self: stretch;
  min-height: 3.5rem;
  margin-top: .55rem;
  border-color: rgba(189, 150, 83, .78);
  background: linear-gradient(110deg, #442f36, #6f4551);
  box-shadow: 0 .9rem 2rem rgba(69, 37, 47, .2);
}

.consultation-form .form-submit:hover {
  background: linear-gradient(110deg, #5b3944, #9d5666);
}

@media (max-width: 72rem) {
  .consultation-section {
    gap: clamp(2.5rem, 5vw, 4rem);
    padding-inline: clamp(2rem, 4vw, 3.5rem);
  }
}

@media (max-width: 48rem) {
  .consultation-section {
    width: calc(100% - 1.2rem);
    margin-block: 2.5rem;
    padding: 3.5rem 1.25rem 2rem;
    border-radius: 1.25rem;
  }

  .consultation-heading {
    padding-inline: .35rem;
  }

  .consultation-heading h2 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 12vw, 4.1rem);
  }

  .consultation-form {
    padding: 1.4rem 1rem;
    border-radius: 1rem;
  }
}

/* Refine the detail section into a framed editorial composition. */
.detail-composition {
  min-height: clamp(32rem, 54vw, 46rem);
  padding: .55rem;
}

.detail-composition figure {
  border: .45rem solid rgba(255, 255, 255, .9);
  border-radius: 1.35rem;
  box-shadow: 0 1.4rem 3rem rgba(55, 32, 40, .16);
}

.detail-composition figure::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(189, 150, 83, .3);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.detail-primary {
  right: .5rem;
  width: 77%;
  height: 80%;
  transform: rotate(1.2deg);
}

.detail-secondary {
  bottom: .35rem;
  left: .25rem;
  width: 45%;
  height: 53%;
  border-width: .65rem !important;
  transform: rotate(-3.5deg);
  box-shadow: 0 1.8rem 3.4rem rgba(55, 32, 40, .22);
}

.detail-copy .detail-cta {
  margin-top: .65rem;
  min-height: 3rem;
  padding-inline: 1.3rem;
  box-shadow: 0 .75rem 1.5rem rgba(157, 86, 102, .18);
}

@media (max-width: 48rem) {
  .detail-composition {
    min-height: clamp(28rem, 118vw, 40rem);
    padding: .35rem;
  }

  .detail-primary {
    right: .15rem;
  }

  .detail-secondary {
    left: 0;
  }

}

/* Task 3: definitive CITTA Events & Weddings header and hero. */
.site-header,
.site-header.is-scrolled {
  top: .75rem;
  right: auto;
  left: 50%;
  width: min(calc(100% - 32px), 1680px);
  min-height: 58px;
  padding: .35rem clamp(1rem, 1.6vw, 1.5rem);
  border: 1px solid rgba(153, 113, 78, .18);
  border-radius: 999px;
  background: rgba(255, 252, 247, .76);
  box-shadow:
    0 .75rem 2.25rem rgba(61, 38, 32, .1),
    inset 0 1px 0 rgba(255, 255, 255, .72);
  color: #342a26;
  transform: translateX(-50%);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  backdrop-filter: blur(18px) saturate(1.08);
}

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

.brand {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  grid-column: auto;
  grid-row: auto;
  justify-content: center;
  justify-self: auto;
  transform: translate(-50%, -50%);
}

.brand-logo {
  width: clamp(6.35rem, 7vw, 7.25rem);
  height: 2.75rem;
  object-fit: contain;
  object-position: center;
}

.site-nav .header-cta {
  min-height: 2.45rem;
  padding: .58rem .95rem;
  border: 1px solid rgba(102, 62, 53, .2);
  border-radius: 999px;
  background: #6f4551 !important;
  box-shadow: 0 .4rem 1rem rgba(81, 42, 54, .14);
  color: #fffaf5 !important;
  text-decoration: none;
}

.site-nav .header-cta:hover,
.site-nav .header-cta:focus-visible {
  background: #583741 !important;
}

.site-nav .header-cta::before,
.site-nav .header-cta::after {
  display: none !important;
}

.language-switcher {
  gap: .18rem;
  white-space: nowrap;
}

.language-button {
  min-width: 1.75rem;
  min-height: 2.25rem;
  padding: .3rem .15rem;
  color: #342a26;
  opacity: .55;
}

.language-button.is-active,
.site-header:not(.is-scrolled) .language-button.is-active {
  color: #874d5b;
  text-decoration: none;
  opacity: 1;
}

.hero {
  min-height: 100dvh;
  align-items: center;
  justify-content: flex-start;
  padding:
    clamp(8.5rem, 15vh, 10.5rem)
    max(5vw, calc((100vw - 88rem) / 2))
    9.5rem;
}

.hero::before {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(34, 21, 18, .58) 0%, rgba(55, 32, 32, .30) 48%, rgba(55, 32, 32, .08) 78%),
    linear-gradient(0deg, rgba(28, 18, 16, .48) 0%, rgba(28, 18, 16, .04) 55%);
}

.hero::after {
  display: none;
}

.hero-media::after {
  z-index: 1;
  opacity: .32;
}

.hero-copy {
  z-index: 3;
  width: min(64rem, 90vw);
  margin: 0;
  text-align: left;
}

.hero-kicker {
  justify-content: flex-start;
  margin-bottom: 1.15rem;
  color: #fff7ed;
  font-size: clamp(.66rem, .72vw, .76rem);
  letter-spacing: .2em;
  text-shadow: 0 2px 10px rgba(20, 10, 9, .55);
}

.hero-kicker::before {
  display: block;
  width: 2.5rem;
  flex: 0 0 2.5rem;
  background: rgba(240, 211, 158, .92);
}

.hero h1 {
  width: min(100%, 62rem);
  max-width: none;
  margin: 0 0 1.4rem;
  font-size: clamp(4.25rem, 5.8vw, 6.15rem);
  letter-spacing: -.048em;
  line-height: .86;
  text-align: left;
  text-shadow: 0 4px 22px rgba(18, 9, 8, .46);
  text-wrap: balance;
  white-space: normal;
}

.hero h1 span {
  display: block;
  width: 100%;
  text-align: center;
}

.hero-copy .hero-services {
  display: block;
  max-width: 58rem;
  margin: 0 0 1.15rem;
  color: #f3d9a9;
  font-size: clamp(.65rem, .76vw, .78rem);
  letter-spacing: .105em;
  line-height: 1.55;
  text-align: left;
  white-space: nowrap;
}

.hero-services::before,
.hero-services::after {
  display: none;
}

.hero-copy .hero-description {
  max-width: 39rem;
  margin: 0 0 1.8rem;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(.94rem, 1.05vw, 1.08rem);
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
  text-shadow: 0 2px 12px rgba(18, 9, 8, .58);
}

.hero-actions {
  justify-content: flex-start;
  gap: .9rem;
  margin-bottom: 1.35rem;
}

.hero-actions .button,
.hero-actions .hero-gallery-link {
  min-height: 3.25rem;
  white-space: nowrap;
}

.hero-actions .button-light {
  border-color: rgba(255, 255, 255, .72);
  background: #fffaf3;
  color: #3f2c2d;
}

.hero-gallery-link {
  min-width: 11.5rem;
  border-color: rgba(255, 244, 224, .66);
  background: rgba(39, 24, 22, .24);
}

.hero-gallery-link::before {
  display: none;
}

.hero-trust {
  justify-content: flex-start;
  max-width: 46rem;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(.61rem, .7vw, .7rem);
  letter-spacing: .1em;
  line-height: 1.5;
  text-align: left;
  text-transform: uppercase;
}

.hero-payment {
  bottom: 3.7rem;
  width: min(54rem, calc(100vw - 20rem));
  font-size: .63rem;
  letter-spacing: .115em;
  line-height: 1.45;
  text-transform: none;
}

.hero-payment::before,
.hero-payment::after {
  height: 1.55rem;
  opacity: .74;
}

.hero-scroll-cue {
  right: max(5vw, calc((100vw - 88rem) / 2));
  bottom: 1.2rem;
}

@media (min-width: 72.01rem) {
  .site-header,
  .site-header.is-scrolled {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: min(calc(100% - 48px), 1440px);
  }

  .brand::before,
  .brand::after {
    top: 50%;
    display: block;
    width: 3rem;
    height: 1.45rem;
    opacity: .7;
  }

  .brand::before {
    right: calc(100% + 1.5rem);
  }

  .brand::after {
    left: calc(100% + 1.5rem);
  }

  .site-nav {
    position: static;
    z-index: 2;
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(3rem, 7vw, 7.5rem);
    align-items: center;
    padding: 0;
    color: #342a26;
    transform: none;
    visibility: visible;
  }

  .nav-group,
  .nav-group-right {
    position: static;
    left: auto;
    display: flex;
    width: auto;
    align-items: center;
    flex-direction: row;
    gap: clamp(.72rem, 1.05vw, 1.15rem);
    min-width: 0;
    padding: 0;
    border: 0;
  }

  .nav-group-left {
    justify-content: flex-start;
  }

  .nav-group-right {
    justify-content: flex-end;
  }

  .site-nav a {
    min-height: 2.25rem;
    padding: .4rem 0;
    color: #342a26;
    font-family: var(--body);
    font-size: clamp(.56rem, .59vw, .64rem);
    font-weight: 700;
    letter-spacing: .105em;
    line-height: 1.2;
    text-shadow: none;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .site-nav .header-cta {
    min-height: 2.45rem;
    padding: .58rem clamp(.75rem, .9vw, .95rem);
    letter-spacing: .075em;
  }

  .menu-toggle {
    display: none;
  }
}

@media (max-width: 72rem) {
  .site-header,
  .site-header.is-scrolled {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .brand {
    grid-column: auto;
    grid-row: auto;
    justify-self: auto;
  }

  .brand::before,
  .brand::after {
    display: none;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    color: #342a26;
  }

  .site-nav {
    position: fixed;
    top: 4.9rem;
    right: 1rem;
    left: auto;
    z-index: 1;
    display: flex;
    width: min(26rem, calc(100vw - 32px));
    max-height: calc(100dvh - 5.9rem);
    overflow-y: auto;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1.75rem;
    border: 1px solid rgba(153, 113, 78, .22);
    border-radius: 1.1rem;
    background: rgba(255, 252, 247, .97);
    box-shadow: 0 1.5rem 4rem rgba(55, 32, 40, .18);
    color: #342a26;
    transform: translateX(calc(100% + 2rem));
    visibility: hidden;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    transition: transform .35s ease, visibility .35s;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-group,
  .nav-group-right {
    position: static;
    left: auto;
    display: flex;
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: .7rem;
    padding: 0;
  }

  .nav-group-right {
    padding-top: 1rem;
    border-top: 1px solid rgba(153, 113, 78, .2);
  }

  .site-nav a {
    width: 100%;
    min-height: 2.4rem;
    color: #342a26;
    font-family: var(--display);
    font-size: clamp(1.65rem, 4vw, 2rem);
    font-weight: 500;
    letter-spacing: -.02em;
    line-height: 1;
    text-transform: none;
  }

  .site-nav .header-cta {
    width: auto;
    min-height: 2.8rem;
    margin-top: .2rem;
    padding: .72rem 1.1rem;
    font-family: var(--body);
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .language-switcher {
    margin-top: .15rem;
  }

  .hero-payment {
    bottom: 4.2rem;
    width: min(46rem, calc(100vw - 2rem));
  }

  .hero-scroll-cue {
    right: auto;
    bottom: 1.25rem;
    left: 5vw;
    transform: none;
  }

  .hero-copy .hero-services {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 48rem) {
  .site-header,
  .site-header.is-scrolled {
    top: .6rem;
    width: min(calc(100% - 32px), 1680px);
    min-height: 58px;
    padding: .3rem .75rem;
    border-radius: 999px;
  }

  .brand-logo {
    width: 6.15rem;
    height: 2.55rem;
    object-position: center;
  }

  .site-nav {
    top: 4.7rem;
    right: 1rem;
    width: calc(100vw - 32px);
    max-height: calc(100dvh - 5.7rem);
  }

  .hero {
    min-height: max(100dvh, 46rem);
    padding: 7.25rem 1rem 10rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-kicker {
    margin-bottom: .95rem;
    font-size: .63rem;
  }

  .hero-kicker::before {
    width: 1.8rem;
    flex-basis: 1.8rem;
  }

  .hero h1 {
    margin-bottom: 1.2rem;
    font-size: clamp(2.65rem, 11.5vw, 4.15rem);
    line-height: .9;
  }

  .hero h1 span {
    display: inline;
  }

  .hero-copy .hero-services {
    margin-bottom: .9rem;
    font-size: .61rem;
    letter-spacing: .075em;
    line-height: 1.55;
    white-space: normal;
  }

  .hero-copy .hero-description {
    max-width: 35rem;
    margin-bottom: 1.35rem;
    font-size: .9rem;
    line-height: 1.55;
  }

  .hero-actions {
    margin-bottom: 1.1rem;
  }

  .hero-trust {
    font-size: .56rem;
    letter-spacing: .07em;
  }

  .hero-payment {
    bottom: 4.1rem;
    display: block;
    width: calc(100vw - 32px);
    padding: 0;
    font-size: .55rem;
    letter-spacing: .07em;
  }

  .hero-payment::before,
  .hero-payment::after {
    display: none;
  }

  .hero-scroll-cue {
    bottom: 1.15rem;
    left: 1rem;
  }
}

@media (max-width: 34rem) {
  .site-nav {
    padding: 1.35rem;
  }

  .hero {
    min-height: max(100dvh, 52rem);
    padding-top: 6.75rem;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.15rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: .7rem;
  }

  .hero-actions .button,
  .hero-actions .hero-gallery-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .hero-motion-fallback,
  .hero-media::after,
  .hero-sparkles i,
  .hero-sparkles::before,
  .hero-sparkles::after,
  .hero-scroll-cue span {
    animation: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header,
  .site-header.is-scrolled,
  .site-nav {
    background: #fffcf7;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

/* STHIRA editorial block: an intimate sister-studio moment within the CITTA system. */
.sthira-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(16rem, .75fr) minmax(0, 1.25fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  align-items: center;
  padding: var(--section-space) max(4vw, calc((100vw - 88rem) / 2));
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(237, 202, 164, .38), transparent 22rem),
    linear-gradient(135deg, #fffaf3, #f4e8de 70%, #f6efeb);
}

.sthira-section::before {
  position: absolute;
  top: 7%;
  right: -7rem;
  width: clamp(14rem, 25vw, 24rem);
  aspect-ratio: 1;
  border: 1px solid rgba(174, 74, 54, .22);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.sthira-copy,
.sthira-gallery {
  position: relative;
  z-index: 1;
}

.sthira-copy h2 {
  margin: 0 0 .65rem;
  color: #8d3b2e;
  font-size: clamp(3.4rem, 7vw, 7.2rem);
  letter-spacing: -.05em;
  line-height: .8;
}

.sthira-speciality {
  margin-bottom: 1.25rem;
  color: #a35f2f;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sthira-copy > p:not(.eyebrow):not(.sthira-speciality):not(.sthira-handle) {
  max-width: 30rem;
  margin-bottom: 1.8rem;
  color: var(--ink-soft);
  font-size: .92rem;
}

.sthira-cta {
  background: #8d3b2e;
  border-color: #8d3b2e;
}

.sthira-cta:hover,
.sthira-cta:focus-visible {
  background: #6f2e26;
  border-color: #6f2e26;
}

.sthira-handle {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin: 1.15rem 0 0;
  color: #8d3b2e;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.sthira-handle span:first-child {
  display: grid;
  width: 1.55rem;
  height: 1.55rem;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: .8rem;
}

.sthira-gallery {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: clamp(28rem, 48vw, 42rem);
}

.sthira-figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #e5d5c9;
  box-shadow: 0 1.5rem 3.5rem rgba(111, 46, 38, .12);
}

.sthira-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1);
}

.sthira-figure:hover img {
  transform: scale(1.035);
}

.sthira-figure-primary {
  grid-row: 1 / -1;
  min-height: 31rem;
}

.sthira-figure-stage,
.sthira-figure-detail {
  min-height: 0;
}

.sthira-figure figcaption {
  position: absolute;
  right: .85rem;
  bottom: .7rem;
  left: .85rem;
  color: #fff9ef;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-shadow: 0 1px 1px rgba(38, 20, 17, .6);
  text-transform: uppercase;
}

.sthira-figure figcaption::before {
  display: inline-block;
  width: 1.2rem;
  height: 1px;
  margin: 0 .45rem .2rem 0;
  background: #f6c65b;
  content: "";
}

/* The gallery caption is intentionally outside the focal image area. */
.portfolio-slide-caption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.15rem 1.1rem;
  background: var(--porcelain);
}

.portfolio-slide-caption p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.6vw, 2.65rem);
  line-height: .95;
}

.portfolio-slide-caption span {
  color: var(--ink-soft);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-align: right;
  text-transform: uppercase;
}

.portfolio-slide img {
  aspect-ratio: 16 / 10;
  height: auto;
}

.partners-section {
  display: grid;
  grid-template-columns: minmax(20rem, .92fr) minmax(24rem, 1.08fr);
  column-gap: clamp(3rem, 7vw, 7rem);
  row-gap: clamp(1.75rem, 3vw, 2.75rem);
  align-items: center;
  background:
    linear-gradient(120deg, rgba(234, 214, 219, .4), transparent 56%),
    var(--porcelain);
}

.partners-heading h2 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 4.3vw, 4.85rem);
  line-height: .92;
}

.partners-copy {
  max-width: 38rem;
  padding: .35rem 0 .35rem clamp(1.5rem, 3vw, 2.5rem);
  border-left: 1px solid rgba(189, 150, 83, .58);
}

.partners-copy p {
  margin-bottom: 1.5rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.65;
}

.partners-copy .partners-note {
  margin: 0;
  color: var(--rose);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-brand {
  align-items: flex-start;
  flex-direction: column;
  gap: .35rem;
}

.footer-brand-name {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.45rem !important;
  font-weight: 600 !important;
  letter-spacing: -.02em !important;
  line-height: 1 !important;
  text-transform: none !important;
}

.footer-logo {
  width: 8rem;
  height: auto;
}

.footer-links {
  flex-wrap: wrap;
}

.footer-contact {
  display: grid;
  justify-items: end;
  gap: .35rem;
}

.footer-contact a {
  color: var(--ink-soft);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  color: var(--rose);
}

.sthira-details {
  display: grid;
  gap: .55rem;
  margin: 1.6rem 0 0;
  padding: 1.1rem 0 0 1.15rem;
  border-top: 1px solid rgba(157, 119, 77, .28);
  color: var(--ink-soft);
  font-size: .72rem;
  letter-spacing: .08em;
  line-height: 1.45;
  list-style: none;
  text-transform: uppercase;
}

.sthira-details li {
  position: relative;
}

.sthira-details li::before {
  position: absolute;
  top: .5em;
  left: -1rem;
  width: .35rem;
  height: .35rem;
  border: 1px solid var(--gold);
  border-radius: 50%;
  content: "";
}

.destination-address {
  max-width: 25rem;
  margin-top: -.55rem;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, .72) !important;
  font-size: .68rem !important;
  letter-spacing: .025em;
  line-height: 1.5;
}

.testimonial-notes {
  display: grid;
  gap: .8rem;
  margin-top: 2rem;
}

.testimonial-notes-label {
  margin: 0 0 .15rem;
  color: var(--rose);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.testimonial-notes blockquote {
  margin: 0;
  padding: .8rem 1rem;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, .45);
}

.testimonial-notes blockquote p {
  margin: 0 0 .35rem;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.15;
}

.testimonial-notes cite {
  color: #8c7770;
  font-size: .62rem;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.testimonial-films {
  display: grid;
  gap: .45rem;
  margin-top: 1.5rem;
}

.testimonial-films a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: .45rem;
  border-bottom: 1px solid rgba(157, 119, 77, .22);
  color: var(--ink-soft);
  font-size: .72rem;
  text-decoration: none;
}

.testimonial-films a:hover,
.testimonial-films a:focus-visible {
  color: var(--rose);
}

/* Give tablet-width laptops the same intentional single-column rhythm as mobile. */
@media (max-width: 64rem) {
  .testimonial-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonials-section .testimonial-copy {
    width: min(100%, 42rem);
    padding-top: 0;
  }

  .destinations-section .destination-list {
    display: flex;
    width: 100%;
    min-height: 0;
    gap: .75rem;
    overflow-x: auto;
    border: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--rose) transparent;
  }

  .destinations-section .destination {
    min-width: min(68vw, 27rem);
    min-height: 31rem;
    scroll-snap-align: start;
  }
}

@media (max-width: 64rem) {
  .sthira-section {
    grid-template-columns: 1fr;
  }

  .sthira-copy {
    max-width: 40rem;
  }

  .sthira-gallery {
    min-height: clamp(27rem, 72vw, 40rem);
  }

  .partners-section {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (max-width: 48rem) {
  .portfolio-slide-caption {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
  }

  .portfolio-slide-caption span {
    text-align: left;
  }

  .sthira-section {
    padding-inline: 5vw;
  }

  .sthira-gallery {
    grid-template-columns: 1fr 1fr;
    min-height: 31rem;
  }

  .sthira-figure-primary {
    min-height: 31rem;
  }

  .partners-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-inline: 5vw;
  }

  .partners-heading h2 {
    max-width: 16ch;
  }

  .footer-contact {
    justify-items: start;
  }
}

@media (max-width: 34rem) {
  .sthira-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: 1.25fr .85fr .85fr;
    min-height: 42rem;
  }

  .sthira-figure-primary {
    grid-row: auto;
    min-height: 22rem;
  }

  .sthira-figure-stage,
  .sthira-figure-detail {
    min-height: 9rem;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: .8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sthira-figure img {
    transition: none;
  }
}

/* Archive, approach and partner details extend the editorial story without
   competing with the primary gallery and consultation CTAs. */
.gallery-archive {
  position: relative;
  display: grid;
  grid-template-columns: minmax(12rem, .72fr) minmax(0, 1.28fr);
  gap: clamp(1.5rem, 5vw, 5rem);
  margin-top: clamp(3.5rem, 8vw, 7rem);
  scroll-margin-top: 7rem;
  padding: clamp(1.25rem, 3vw, 2.4rem);
  border: 1px solid rgba(189, 150, 83, .28);
  border-radius: 2rem 2rem .55rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, .72), rgba(244, 232, 225, .62));
}

.gallery-archive-heading {
  align-self: center;
  max-width: 24rem;
}

.gallery-archive-heading h4 {
  margin: .35rem 0 1rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .92;
}

.gallery-archive-heading > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
  line-height: 1.55;
}

.gallery-archive-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: minmax(9rem, 12vw);
  gap: .7rem;
}

.gallery-archive-frame {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: .55rem 1.5rem .55rem 1.5rem;
  background: #e8d9d2;
  box-shadow: 0 .9rem 2rem rgba(24, 20, 22, .1);
}

.gallery-archive-frame-wide {
  grid-row: span 2;
  border-radius: 1.5rem .55rem 1.5rem .55rem;
}

.gallery-archive-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1), filter .7s ease;
}

.gallery-archive-frame:hover img {
  filter: saturate(1.04);
  transform: scale(1.04);
}

.gallery-archive-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(24, 20, 22, .66), transparent);
  content: "";
  pointer-events: none;
}

.gallery-archive-frame figcaption {
  position: absolute;
  right: .7rem;
  bottom: .55rem;
  left: .7rem;
  z-index: 1;
  color: #fffaf7;
  font-size: .59rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.gallery-details-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2.2rem, 5vw, 4.5rem);
  scroll-margin-top: 8rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(24, 20, 22, .12);
}

.gallery-details-heading .eyebrow {
  margin: 0;
}

.gallery-details-heading h5 {
  max-width: 21ch;
  margin: 0;
  color: var(--ink-soft);
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.7vw, 2.8rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .98;
  text-align: right;
}

@media (min-width: 64.01rem) {
  .gallery-details-heading {
    align-self: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 1.15rem;
    margin-top: 0;
    padding: 2rem 1.25rem;
    border-top: 0;
    text-align: center;
  }

  .gallery-details-heading .eyebrow {
    justify-content: center;
    text-align: center;
  }

  .gallery-details-heading h5 {
    max-width: 15ch;
    text-align: center;
  }
}

.gallery-details-grid {
  display: grid;
  grid-template-columns: 1.25fr .8fr .8fr 1fr;
  grid-auto-rows: minmax(10rem, 14vw);
  gap: .7rem;
  margin-top: 1.5rem;
}

.gallery-detail-frame {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 1.25rem .45rem 1.25rem .45rem;
  background: #e8d9d2;
}

.gallery-detail-frame-large {
  grid-column: span 2;
}

.gallery-detail-frame-tall {
  grid-row: span 2;
  border-radius: .45rem 1.25rem .45rem 1.25rem;
}

.gallery-detail-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.gallery-detail-frame:hover img {
  transform: scale(1.045);
}

.gallery-detail-frame::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(24, 20, 22, .66), transparent);
  content: "";
  pointer-events: none;
}

.gallery-detail-frame figcaption {
  position: absolute;
  right: .65rem;
  bottom: .55rem;
  left: .65rem;
  z-index: 1;
  color: #fffaf7;
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.approach-section {
  display: grid;
  grid-template-columns: minmax(16rem, .86fr) minmax(0, 1.14fr);
  gap: clamp(2rem, 9vw, 9rem);
  align-items: start;
  background:
    radial-gradient(circle at 90% 0, rgba(234, 214, 219, .5), transparent 28rem),
    var(--porcelain);
}

.approach-intro {
  max-width: 34rem;
}

.approach-intro h2 {
  margin: .4rem 0 1.4rem;
  max-width: 11ch;
}

.approach-intro > p:last-child {
  max-width: 31rem;
  margin: 0;
  color: var(--ink-soft);
}

.approach-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  align-self: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.approach-step {
  min-height: 17rem;
  padding: 1.2rem clamp(.8rem, 2vw, 1.7rem) 1.4rem;
  border-left: 1px solid var(--line);
}

.approach-step:first-child {
  border-left: 0;
}

.approach-step > span {
  display: block;
  margin-bottom: 3.2rem;
  color: var(--rose);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
}

.approach-step h3 {
  margin: 0 0 .6rem;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.5vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: .95;
}

.approach-step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.5;
}

.partner-wall {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
  margin-top: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.partner-mark {
  display: grid;
  grid-template-rows: 5.25rem auto;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 1.25rem 1rem 1rem;
  border: 1px solid rgba(189, 150, 83, .32);
  border-radius: 1rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(244, 226, 230, .62));
  box-shadow: 0 .8rem 2rem rgba(83, 48, 61, .07);
  text-align: center;
}

.partner-mark img {
  width: 100%;
  height: 5rem;
  object-fit: contain;
  filter: saturate(1.08) contrast(1.06);
  mix-blend-mode: normal;
  opacity: 1;
}

.partner-mark figcaption {
  overflow: hidden;
  color: var(--ink);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1.35;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

@media (max-width: 64rem) {
  .gallery-archive {
    grid-template-columns: 1fr;
  }

  .gallery-archive-heading {
    max-width: 34rem;
  }

  .gallery-archive-grid {
    grid-auto-rows: minmax(10rem, 20vw);
  }

  .gallery-details-grid {
    grid-auto-rows: minmax(10rem, 22vw);
  }

  .approach-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .approach-intro h2 {
    max-width: 13ch;
  }

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

@media (max-width: 48rem) {
  .gallery-archive {
    margin-top: 3.5rem;
    padding: 1rem;
    border-radius: 1.3rem 1.3rem .55rem 1.3rem;
  }

  .gallery-archive-heading h4 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .gallery-archive-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(10rem, 35vw);
  }

  .gallery-archive-frame-wide {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .gallery-details-heading {
    display: block;
  }

  .gallery-details-heading h5 {
    max-width: 18ch;
    margin-top: .7rem;
    text-align: left;
  }

  .gallery-details-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: minmax(9rem, 35vw);
  }

  .gallery-detail-frame-large,
  .gallery-detail-frame-tall {
    grid-column: auto;
    grid-row: auto;
  }

  .approach-steps {
    grid-template-columns: 1fr;
  }

  .approach-step,
  .approach-step:first-child {
    min-height: 0;
    padding: 1.1rem 0 1.35rem;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .approach-step:first-child {
    border-top: 0;
  }

  .approach-step > span {
    margin-bottom: 1.6rem;
  }

  .partner-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    padding-top: 1.2rem;
  }

  .partner-mark {
    grid-template-rows: 4.25rem auto;
    padding: 1rem .75rem .85rem;
  }

  .partner-mark img {
    height: 4rem;
  }
}

/* Final visibility pass: keep the hero and floating header intentional at every width. */
.site-header,
.site-header.is-scrolled {
  top: 1rem;
  right: max(1rem, 4vw);
  left: max(1rem, 4vw);
  width: auto;
  transform: none;
}

.hero-media::after {
  z-index: 2;
  background:
    radial-gradient(ellipse at 100% 92%, rgba(25, 14, 17, .98) 0 19%, rgba(25, 14, 17, .82) 34%, transparent 68%),
    linear-gradient(90deg, transparent 44%, rgba(29, 17, 20, .18) 62%, rgba(25, 14, 17, .7) 100%),
    linear-gradient(0deg, rgba(25, 14, 17, .74), transparent 39%);
  mix-blend-mode: normal;
  opacity: 1;
}

.hero-source-veil {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(ellipse at 100% 92%, rgba(29, 18, 21, .99) 0 25%, rgba(29, 18, 21, .94) 43%, transparent 70%),
    linear-gradient(0deg, rgba(29, 18, 21, .86) 0 13%, transparent 36%);
  pointer-events: none;
}

@media (min-width: 64.01rem) {
  .hero-video {
    object-position: 35% center;
  }

  .hero-motion-fallback {
    background-position: 35% center;
  }

  .hero {
    justify-content: center;
  }

  .hero-copy {
    width: min(64rem, 86vw);
    margin-inline: auto;
    text-align: center;
  }

  .hero-kicker,
  .hero-actions {
    justify-content: center;
  }

  .hero-copy .hero-services,
  .hero-copy .hero-description,
  .hero-trust {
    margin-inline: auto;
    text-align: center;
  }
}

@media (max-width: 88rem) {
  .site-header,
  .site-header.is-scrolled {
    right: 1rem;
    left: 1rem;
    width: auto;
    transform: none;
  }
}

@media (max-width: 48rem) {
  .site-header,
  .site-header.is-scrolled {
    top: .6rem;
    right: 1rem;
    left: 1rem;
    width: auto;
    min-height: 58px;
    transform: none;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-kicker,
  .hero-actions {
    justify-content: center;
  }

  .hero-copy .hero-services {
    display: block;
    max-width: 23rem;
    margin-inline: auto;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-services::before,
  .hero-services::after {
    display: none;
  }

  .hero-copy .hero-description,
  .hero-trust {
    margin-inline: auto;
    text-align: center;
  }
}

/* Final composition pass: keep every section inside a calm editorial measure. */
:root {
  --content-max: 88rem;
  --content-gutter: clamp(1.25rem, 4vw, 4.5rem);
}

.section,
.consultation-section,
.site-footer {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.portfolio-section,
.services-section,
.payment-section,
.testimonials-section,
.destinations-section,
.partners-section,
.consultation-section {
  padding-inline: var(--content-gutter);
}

.portfolio-section .section-intro {
  grid-template-columns: minmax(14rem, .72fr) minmax(0, 1.28fr);
  column-gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.portfolio-section .section-intro h2,
.services-heading h2,
.partners-heading h2 {
  max-width: 18ch;
  text-wrap: balance;
}

.portfolio-section .section-intro > p:last-child {
  max-width: 34rem;
  margin-left: auto;
  color: var(--ink-soft);
  font-size: clamp(.88rem, 1.1vw, 1rem);
  line-height: 1.7;
}

.work-gallery {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.services-heading {
  width: min(100%, 70rem);
  margin-inline: auto;
  text-align: center;
}

.services-heading h2 {
  margin-inline: auto;
}

.service-list {
  width: min(100%, 72rem);
  margin-inline: auto;
}

.payment-section.payment-proof,
.testimonials-section {
  width: min(100%, var(--content-max));
  margin-inline: auto;
}

.payment-section.payment-proof {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.payment-copy,
.testimonial-copy {
  width: min(100%, 34rem);
}

.destinations-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.5rem);
  width: min(100%, 62rem);
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  margin-inline: auto;
  text-align: center;
}

.destinations-heading .eyebrow {
  justify-content: center;
  max-width: 34rem;
  margin: 0;
  color: #8f5263;
  font-size: clamp(.76rem, .9vw, .9rem);
  letter-spacing: .18em;
  line-height: 1.5;
}

.destinations-heading .eyebrow::before,
.destinations-heading .eyebrow::after {
  display: block;
  flex: 0 0 clamp(2rem, 4vw, 4rem);
  height: 1px;
  background: rgba(189, 150, 83, .72);
  content: "";
}

.destinations-heading h2 {
  margin: 0;
}

.destination-list {
  width: min(100%, 76rem);
  margin-inline: auto;
}

.consultation-section {
  grid-template-columns: minmax(15rem, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 8vw, 9rem);
  align-items: start;
}

.consultation-heading {
  position: sticky;
  top: 7rem;
}

@media (max-width: 64rem) {
  .portfolio-section .section-intro,
  .consultation-section {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .portfolio-section .section-intro > p:last-child {
    max-width: 38rem;
    margin-left: 0;
  }

  .consultation-heading {
    position: static;
  }

  .payment-section.payment-proof {
    grid-template-columns: 1fr;
  }

  .payment-copy,
  .testimonial-copy {
    width: 100%;
  }
}

@media (max-width: 48rem) {
  .section,
  .consultation-section,
  .site-footer,
  .portfolio-section,
  .services-section,
  .payment-section,
  .testimonials-section,
  .destinations-section,
  .partners-section,
  .consultation-section {
    padding-inline: 1.1rem;
  }

  .portfolio-section .section-intro {
    text-align: center;
  }

  .portfolio-section .section-intro > p:last-child {
    margin-inline: auto;
    text-align: center;
  }

  .services-heading {
    text-align: left;
  }

  .services-heading h2 {
    margin-inline: 0;
  }
}

/* Keep the wide header balanced around the centered mark at every desktop width. */
@media (min-width: 88.01rem) {
  .site-nav {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: clamp(2.5rem, 6vw, 6rem);
  }

  .nav-group-left {
    padding-right: clamp(1rem, 2vw, 2.5rem);
  }

  .nav-group-right {
    padding-left: clamp(1rem, 2vw, 2.5rem);
  }

  .language-switcher {
    position: static;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
  }

  .hero-copy {
    width: min(45rem, 48vw);
  }

  .hero h1 {
    max-width: 43rem;
    line-height: .94;
  }

  .hero-copy .hero-services {
    max-width: 52rem;
    margin-inline: auto;
    text-align: center;
    text-wrap: balance;
    white-space: normal;
  }
}

/* A quiet lower-right veil keeps source-video graphics from competing with the CTA. */
.hero::before {
  background:
    linear-gradient(90deg, rgba(34, 21, 18, .58) 0%, rgba(55, 32, 32, .30) 48%, rgba(55, 32, 32, .08) 78%),
    linear-gradient(0deg, rgba(28, 18, 16, .58) 0%, rgba(28, 18, 16, .04) 58%),
    radial-gradient(ellipse at 50% 42%, rgba(31, 18, 22, .2), transparent 62%),
    linear-gradient(135deg, transparent 60%, rgba(25, 15, 15, .2) 100%);
}

/* Keep laptop widths centered and breathable instead of falling into the
   wide desktop's left-aligned composition. */
@media (min-width: 48.01rem) and (max-width: 88rem) {
  .site-header,
  .site-header.is-scrolled {
    top: .8rem;
    right: 5vw;
    left: 5vw;
    width: auto;
    min-height: 4.35rem;
    padding-inline: 1.5rem;
    border-radius: 1.1rem;
    background: rgba(255, 253, 251, .68);
  }

  .hero {
    justify-content: center;
    padding-inline: 5vw;
  }

  .hero-copy {
    width: min(42rem, 88vw);
    margin-inline: auto;
    text-align: center;
  }

  .hero-kicker,
  .hero-actions {
    justify-content: center;
  }

  .hero h1 {
    max-width: 42rem;
    margin-inline: auto;
    font-size: clamp(3.25rem, 6.8vw, 5.25rem);
    line-height: .94;
    text-align: center;
  }

  .hero-copy .hero-services {
    max-width: 38rem;
    margin-inline: auto;
    text-align: center;
    white-space: normal;
    text-wrap: balance;
  }

  .hero-copy .hero-description,
  .hero-trust {
    margin-inline: auto;
    text-align: center;
  }

  .hero-copy .hero-description {
    max-width: 34rem;
  }

  .hero-scroll-cue {
    right: 5vw;
  }
}

/* Hero copy should appear crisp even while the decorative reveal is running. */
.js .hero-copy.reveal > * {
  opacity: 1;
  transform: none;
  filter: none;
  transition: none;
}

@media (max-width: 48rem) {
  .hero::before {
    background:
      linear-gradient(180deg, rgba(22, 12, 16, .72) 0%, rgba(22, 12, 16, .38) 30%, rgba(24, 13, 17, .52) 62%, rgba(24, 13, 17, .92) 100%),
      radial-gradient(ellipse at 50% 36%, rgba(30, 17, 22, .34), transparent 68%);
  }

  .hero h1 {
    max-width: 22rem;
    width: 100%;
    margin-inline: auto;
    font-size: clamp(1.72rem, 7.8vw, 2.12rem);
    letter-spacing: -.055em;
    line-height: .92;
    text-align: center;
  }

  .hero h1 span {
    display: block;
  }

  .hero-copy .hero-description {
    max-width: 22rem;
    color: rgba(255, 255, 255, .96);
    text-shadow: 0 2px 12px rgba(18, 9, 14, .78);
  }

  .hero-copy .hero-services {
    width: 100%;
    max-width: 22rem;
    font-size: .58rem;
    letter-spacing: .045em;
  }

  .hero-actions {
    width: min(100%, 22rem);
    max-width: calc(100vw - 2rem);
    min-width: 0;
    margin-inline: auto;
  }

  .hero-actions .button,
  .hero-actions .hero-gallery-link {
    min-width: 0;
    max-width: 100%;
  }
}

/* Responsive hardening: the final rules win over the older layout passes. */
@media (max-width: 48rem) {
  .site-header,
  .site-header.is-scrolled {
    top: .6rem;
    width: calc(100vw - 2rem);
    max-width: calc(100vw - 2rem);
    min-height: 3.65rem;
    padding: .25rem .8rem;
    border-radius: 1.15rem;
  }

  .brand-logo {
    width: 6.25rem;
    height: 2.45rem;
  }

  .menu-toggle {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero {
    min-height: 100svh;
    padding: 7.5rem 1rem 8.5rem;
  }

  .hero-copy {
    width: min(100%, 22rem);
    max-width: 22rem;
    margin-inline: auto;
  }

  .hero-copy .hero-services,
  .hero-copy .hero-description,
  .hero-trust {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy .hero-services {
    font-size: clamp(.55rem, 2.35vw, .68rem);
    line-height: 1.6;
  }

  .hero-copy .hero-description {
    font-size: .82rem;
    line-height: 1.55;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
  }

  .hero-payment {
    right: 1rem;
    bottom: 3.15rem;
    left: 1rem;
    width: auto;
    max-width: none;
    display: block;
    font-size: .56rem;
    letter-spacing: .07em;
    line-height: 1.45;
    text-wrap: balance;
    transform: none;
  }

  .hero-payment::before,
  .hero-payment::after {
    display: none;
  }

  .hero-scroll-cue {
    right: 1rem;
    bottom: .8rem;
    font-size: .58rem;
  }
}

@media (max-width: 22rem) {
  .hero {
    padding-inline: .8rem;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 {
    font-size: clamp(1.7rem, 8.6vw, 2rem);
  }

  .hero-copy .hero-services {
    font-size: .51rem;
    letter-spacing: .025em;
  }

  .hero-payment {
    font-size: .5rem;
  }
}

/* Final polish for the currently visible story and gallery sections. */
.testimonials-section .testimonial-copy h2 {
  color: var(--ink);
  font-size: clamp(2.65rem, 4.7vw, 5.1rem);
  line-height: .9;
}

.testimonials-section .testimonial-summary,
.testimonials-section .testimonial-notes blockquote p,
.testimonials-section .testimonial-films a {
  color: #4a3d42;
}

.testimonials-section .testimonial-notes blockquote {
  background: rgba(255, 255, 255, .68);
  box-shadow: 0 .45rem 1.2rem rgba(83, 48, 61, .05);
}

.work-gallery {
  border: 1px solid rgba(189, 150, 83, .2);
  border-radius: clamp(1.1rem, 2.5vw, 2rem);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(249, 239, 240, .78)),
    var(--porcelain);
  box-shadow: 0 1.5rem 4rem rgba(83, 48, 61, .08);
}

.portfolio-slide {
  border-radius: clamp(.8rem, 1.8vw, 1.35rem);
}

@media (max-width: 48rem) {
  .testimonials-section {
    width: 100%;
    margin-inline: 0;
    border-radius: 1.15rem;
  }

  .work-gallery {
    border-radius: 1.1rem;
  }
}

/* Keep the first fold complete on short phones. */
@media (max-width: 34rem) {
  .hero {
    min-height: 100svh;
    padding: 5rem .8rem 5rem;
  }

  .hero-copy .hero-description {
    margin-bottom: 1.15rem;
  }

  .hero-actions {
    gap: .7rem;
  }

  .hero-actions .button,
  .hero-actions .hero-gallery-link {
    min-height: 2.9rem;
  }

  .hero-payment {
    right: 4.8rem;
    bottom: 2.55rem;
    left: 1rem;
    width: auto;
    max-width: none;
    line-height: 1.35;
  }

  .hero-scroll-cue {
    bottom: .55rem;
  }
}

/* Show the full navigation on regular laptop widths; reserve the drawer for
   tablets and phones where the links would become cramped. */
@media (min-width: 72.01rem) {
  .site-header,
  .site-header.is-scrolled {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
  }

  .site-nav {
    position: static;
    z-index: 2;
    display: grid;
    width: 100%;
    grid-column: 1 / -1;
    grid-row: 1;
    grid-template-columns: minmax(0, 1fr) minmax(7.5rem, auto) minmax(0, 1fr);
    column-gap: clamp(1.25rem, 2.5vw, 2.75rem);
    align-items: center;
    padding: 0;
    color: #342a26;
    transform: none;
    visibility: visible;
  }

  .nav-group,
  .nav-group-right {
    position: static;
    display: flex;
    width: auto;
    align-items: center;
    flex-direction: row;
    gap: clamp(.7rem, 1.15vw, 1.15rem);
    min-width: 0;
    padding: 0;
  }

  .nav-group-left {
    grid-column: 1;
    justify-content: flex-start;
  }

  .nav-group-right {
    grid-column: 3;
    justify-content: flex-end;
  }

  .site-nav a {
    min-height: 2.25rem;
    padding: .4rem 0;
    color: #342a26;
    font-size: clamp(.55rem, .61vw, .66rem);
    letter-spacing: .095em;
    line-height: 1.2;
    text-shadow: none;
    white-space: nowrap;
  }

  .site-nav .header-cta {
    min-height: 2.4rem;
    padding: .55rem .8rem;
  }

  .menu-toggle { display: none; }
}

/* Editorial portfolio: show complete stories instead of a generic carousel. */
.editorial-gallery {
  position: relative;
  overflow: hidden;
  padding: clamp(1.35rem, 3.5vw, 3.5rem);
  border: 1px solid rgba(181, 139, 74, .22);
  border-radius: clamp(1.25rem, 2.5vw, 2.25rem);
  background:
    radial-gradient(circle at 93% 4%, rgba(199, 155, 101, .12), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, .94), rgba(249, 239, 239, .86));
  box-shadow: 0 2rem 5rem rgba(89, 52, 63, .09);
}

.editorial-gallery::before {
  position: absolute;
  top: 0;
  right: clamp(1.5rem, 5vw, 5rem);
  width: 1px;
  height: 6rem;
  background: linear-gradient(var(--gold), transparent);
  content: "";
}

.editorial-gallery .gallery-masthead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  padding-bottom: clamp(1.2rem, 2vw, 2rem);
  border-bottom: 1px solid rgba(79, 58, 62, .14);
}

.editorial-gallery .gallery-masthead > div > p,
.gallery-masthead-note {
  margin: 0 0 .55rem;
  color: var(--rose);
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.editorial-gallery .gallery-masthead h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(3.3rem, 7vw, 7.2rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -.055em;
  line-height: .72;
}

.gallery-masthead-note {
  width: min(21rem, 34%);
  margin-bottom: 0;
  color: #6d5b60;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.7vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: right;
  text-transform: none;
}

.gallery-story {
  display: grid;
  grid-template-columns: minmax(13rem, .34fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  margin-bottom: clamp(5rem, 10vw, 10rem);
}

.gallery-story:last-of-type {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.gallery-story-jasmine .gallery-story-copy {
  grid-column: 2;
  grid-row: 1;
}

.gallery-story-jasmine .gallery-story-grid {
  grid-column: 1;
  grid-row: 1;
}

/* Give the second story's photo collage the same visual weight as story 01. */
.gallery-story-jasmine {
  grid-template-columns: minmax(24rem, 1fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
}

.gallery-story-copy {
  position: relative;
  z-index: 2;
  padding-block: 1.5rem;
}

.gallery-story-number {
  margin: 0 0 clamp(2rem, 5vw, 4.5rem);
  color: rgba(93, 61, 68, .28);
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-style: italic;
  line-height: .6;
}

.gallery-story-copy .eyebrow {
  margin-bottom: 1rem;
}

.gallery-story-copy h4 {
  max-width: 9ch;
  margin: 0 0 1.2rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.7rem, 4.8vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .88;
  text-wrap: balance;
}

.gallery-story-copy > p:not(.gallery-story-number):not(.eyebrow) {
  max-width: 34rem;
  margin: 0 0 1.3rem;
  color: #58484d;
  font-size: clamp(.93rem, 1.25vw, 1.08rem);
  line-height: 1.75;
}

.gallery-story-copy > span {
  display: block;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(79, 58, 62, .16);
  color: var(--rose);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.6;
  text-transform: uppercase;
}

.gallery-story-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(15rem, 1fr) minmax(13rem, .8fr);
  gap: clamp(.7rem, 1.3vw, 1.15rem);
  min-width: 0;
}

.gallery-frame {
  position: relative;
  overflow: hidden;
  min-height: 0;
  margin: 0;
  background: #eadfdd;
  box-shadow: 0 1.2rem 3rem rgba(70, 42, 51, .1);
}

.gallery-frame-primary {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
  border-radius: 7.5rem .7rem .7rem .7rem;
}

.gallery-frame-wide {
  grid-column: 9 / 13;
  grid-row: 1;
  border-radius: .7rem 3.5rem .7rem .7rem;
}

.gallery-frame-detail {
  grid-column: 9 / 13;
  grid-row: 2;
  border-radius: .7rem .7rem 3.5rem .7rem;
}

.gallery-story-jasmine .gallery-frame-primary {
  border-radius: .7rem 7.5rem .7rem .7rem;
}

.gallery-story-citta .gallery-frame-primary {
  border-radius: .7rem .7rem 7.5rem .7rem;
}

.gallery-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .7, .2, 1), filter .5s ease;
}

.gallery-frame:hover img {
  filter: saturate(1.04) contrast(1.02);
  transform: scale(1.025);
}

.gallery-closing {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.4rem, 2.5vw, 2.2rem) 0 0;
  border-top: 1px solid rgba(79, 58, 62, .14);
}

.gallery-closing p {
  margin: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  font-style: italic;
}

/* Expand the STHIRA story with verified people-free decoration photographs. */
.sthira-gallery.sthira-gallery-expanded {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: minmax(15rem, 1.05fr) minmax(13rem, .9fr) minmax(13rem, .9fr);
  gap: clamp(.65rem, 1.2vw, 1rem);
  min-height: clamp(48rem, 72vw, 69rem);
}

.sthira-gallery-expanded .sthira-figure {
  position: relative;
  inset: auto;
  width: auto;
  height: auto;
  margin: 0;
  transform: none;
}

.sthira-gallery-expanded .sthira-figure-ocean {
  grid-column: 1 / 9;
  grid-row: 1 / 3;
  border-radius: 6rem .65rem .65rem .65rem;
}

.sthira-gallery-expanded .sthira-figure-stage {
  grid-column: 9 / 13;
  grid-row: 1;
}

.sthira-gallery-expanded .sthira-figure-lighting {
  grid-column: 9 / 13;
  grid-row: 2;
  border-radius: .65rem .65rem 3rem .65rem;
}

.sthira-gallery-expanded .sthira-figure-wide {
  grid-column: 1 / 6;
  grid-row: 3;
}

.sthira-gallery-expanded .sthira-figure-aisle {
  grid-column: 6 / 10;
  grid-row: 3;
}

.sthira-gallery-expanded .sthira-figure-detail {
  grid-column: 10 / 13;
  grid-row: 3;
  border-radius: .65rem .65rem 4rem .65rem;
}

.sthira-gallery-expanded .sthira-figure img {
  height: 100%;
  object-fit: cover;
}

/* Keep the source video visible while preserving white-text contrast. */
.hero-media::after {
  background:
    linear-gradient(90deg, rgba(25, 15, 18, .66) 0%, rgba(25, 15, 18, .32) 52%, rgba(25, 15, 18, .14) 100%),
    linear-gradient(0deg, rgba(25, 15, 18, .58) 0%, transparent 46%);
}

.hero-source-veil {
  background:
    radial-gradient(ellipse at 100% 96%, rgba(29, 18, 21, .6) 0 19%, transparent 62%),
    linear-gradient(0deg, rgba(29, 18, 21, .5) 0 10%, transparent 31%);
}

.hero-video {
  filter: brightness(1.03) contrast(1.03) saturate(.98);
}

@media (max-width: 64rem) {
  .gallery-story,
  .gallery-story-jasmine {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .gallery-story-jasmine .gallery-story-copy,
  .gallery-story-jasmine .gallery-story-grid {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-story-copy {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 1.5rem;
    align-items: start;
  }

  .gallery-story-number {
    grid-row: 1 / 6;
    margin: .35rem 0 0;
    font-size: 5rem;
  }

  .gallery-story-copy .eyebrow,
  .gallery-story-copy h4,
  .gallery-story-copy > p:not(.gallery-story-number):not(.eyebrow),
  .gallery-story-copy > span {
    grid-column: 2;
  }

  .gallery-story-grid {
    min-height: clamp(31rem, 72vw, 43rem);
  }

  .sthira-gallery.sthira-gallery-expanded {
    min-height: clamp(42rem, 92vw, 58rem);
  }
}

@media (max-width: 48rem) {
  .editorial-gallery {
    padding: 1rem;
    border-radius: 1.15rem;
  }

  .editorial-gallery .gallery-masthead {
    display: block;
    margin-bottom: 3rem;
  }

  .editorial-gallery .gallery-masthead h3 {
    font-size: clamp(3rem, 16vw, 4.5rem);
    line-height: .96;
  }

  .gallery-masthead-note {
    width: 100%;
    margin-top: 2.35rem;
    font-size: 1rem;
    line-height: 1.35;
    text-align: left;
  }

  .gallery-story {
    margin-bottom: 5rem;
  }

  .gallery-story-copy {
    display: block;
    padding-inline: .25rem;
  }

  .gallery-story-number {
    margin-bottom: 1.8rem;
    font-size: 4rem;
  }

  .gallery-story-copy .eyebrow,
  .gallery-story-copy h4,
  .gallery-story-copy > p:not(.gallery-story-number):not(.eyebrow),
  .gallery-story-copy > span {
    grid-column: auto;
  }

  .gallery-story-copy h4 {
    max-width: 12ch;
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .gallery-story-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(22rem, 72vw) minmax(12rem, 42vw);
    min-height: 0;
  }

  .gallery-frame-primary {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 3.5rem .55rem .55rem .55rem;
  }

  .gallery-frame-wide {
    grid-column: 1;
    grid-row: 2;
  }

  .gallery-frame-detail {
    grid-column: 2;
    grid-row: 2;
  }

  .gallery-closing {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-closing .button {
    width: 100%;
  }

  .sthira-gallery.sthira-gallery-expanded {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: minmax(22rem, 82vw) repeat(3, minmax(12rem, 44vw));
    min-height: 0;
  }

  .sthira-gallery-expanded .sthira-figure-ocean {
    grid-column: 1 / -1;
    grid-row: 1;
    border-radius: 3.5rem .55rem .55rem .55rem;
  }

  .sthira-gallery-expanded .sthira-figure-stage {
    grid-column: 1;
    grid-row: 2;
  }

  .sthira-gallery-expanded .sthira-figure-lighting {
    grid-column: 2;
    grid-row: 2;
  }

  .sthira-gallery-expanded .sthira-figure-wide {
    grid-column: 1 / -1;
    grid-row: 3;
  }

  .sthira-gallery-expanded .sthira-figure-aisle {
    grid-column: 1;
    grid-row: 4;
  }

  .sthira-gallery-expanded .sthira-figure-detail {
    grid-column: 2;
    grid-row: 4;
    border-radius: .55rem .55rem 2.5rem .55rem;
  }
}

/* Final responsive guards: keep the two-line hero and the destination rail
   stable after all legacy overrides in this stylesheet. */
@media (min-width: 88.01rem) {
  .hero-copy {
    width: min(56rem, 56vw);
  }

  .hero h1 {
    width: 100%;
    max-width: 56rem;
  }
}

@media (max-width: 64rem) {
  .destinations-section .destination-list {
    overflow-x: auto;
    overflow-y: hidden;
  }

  .destinations-section .destination.reveal {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 34rem) {
  .destinations-section .destination {
    min-width: 84vw;
  }
}

/* The payment photograph is an editorial cover, not an intrinsic-height image. */
.payment-section.payment-proof .payment-art > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* The supplied film carries a baked-in contact card in its lower-right corner.
   Blend that area into the cinematic grade so it never competes with the CTA. */
.hero-source-veil {
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(29, 18, 21, .64) 74%, rgba(29, 18, 21, .99) 100%),
    linear-gradient(0deg, rgba(29, 18, 21, .99) 0 22%, rgba(29, 18, 21, .72) 36%, transparent 53%);
}

/* Final mobile guardrails: keep every hero element inside the viewport. */
@media (max-width: 48rem) {
  .site-header,
  .site-header.is-scrolled {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    width: calc(100vw - 1.25rem);
    max-width: calc(100vw - 1.25rem);
    min-height: 3.65rem;
    padding-inline: .8rem;
  }

  .site-header .brand {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
  }

  .site-header .menu-toggle {
    display: block !important;
    grid-column: 3;
    justify-self: end;
    color: #342a26;
  }

  .hero {
    overflow: hidden;
    padding-inline: 1rem;
  }

  .hero-copy {
    width: min(100%, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    min-width: 0;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.2rem, 11vw, 4.15rem);
    line-height: .94;
    text-wrap: balance;
    white-space: normal;
  }

  .hero h1 span {
    display: block;
  }

  .hero-copy .hero-services {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
    text-align: center;
    text-wrap: balance;
    white-space: normal;
  }

  .hero-copy .hero-description {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    max-width: 100%;
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .hero-gallery-link {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-trust {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-payment {
    right: 1rem;
    left: 1rem;
    width: auto;
    max-width: none;
    overflow-wrap: anywhere;
    text-align: center;
  }
}

/* Final hero rhythm: spread the content vertically and use the wide canvas. */
@media (min-width: 64.01rem) {
  .hero-copy {
    width: min(58rem, 82vw);
  }

  .hero h1 {
    width: 100%;
    max-width: 56rem;
    margin: 0 auto 2.35rem;
    font-size: clamp(4.25rem, 5.45vw, 6.5rem);
    line-height: .96;
  }

  .hero-copy .hero-services {
    width: min(100%, 52rem);
    max-width: 52rem;
    margin: 0 auto 2rem;
    line-height: 1.7;
  }

  .hero-actions {
    justify-content: center;
    margin: 0 auto 2.15rem;
  }

  .hero-trust {
    width: 100%;
    max-width: none;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
}

@media (min-width: 48.01rem) and (max-width: 64rem) {
  .hero h1 {
    margin-bottom: 2rem;
  }

  .hero-copy .hero-services {
    margin-bottom: 1.7rem;
  }

  .hero-actions {
    margin-bottom: 1.8rem;
  }

  .hero-trust {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 48rem) {
  .hero h1 {
    margin-bottom: 1.65rem;
  }

  .hero-copy .hero-services {
    margin-bottom: 1.4rem;
  }

  .hero-actions {
    margin-bottom: 1.55rem;
  }
}

/* Keep the featured client film and its story as one editorial row.
   Supporting client notes continue beneath as a separate collection. */
.testimonials-section .testimonial-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(22rem, .85fr);
  align-items: center;
  column-gap: clamp(2.5rem, 6vw, 6rem);
  row-gap: 0;
}

.testimonials-section .testimonial-feature {
  align-self: center;
}

.testimonials-section .testimonial-copy {
  align-self: center;
  width: min(100%, 34rem);
}

.testimonial-client-collection {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, .65fr);
  align-items: start;
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding-top: clamp(2.25rem, 4vw, 3.5rem);
  border-top: 1px solid rgba(157, 119, 77, .26);
}

.testimonial-client-collection .testimonial-notes,
.testimonial-client-collection .testimonial-films {
  margin-top: 0;
}

.testimonial-client-collection .testimonial-notes {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.testimonial-client-collection .testimonial-notes-label {
  grid-column: 1 / -1;
}

.testimonial-client-collection .testimonial-notes blockquote {
  min-height: 100%;
  padding: 1rem 1.15rem;
}

.testimonial-client-collection .testimonial-films {
  align-content: start;
}

@media (max-width: 64rem) {
  .testimonials-section .testimonial-layout {
    grid-template-columns: 1fr;
    row-gap: 2.5rem;
  }

  .testimonials-section .testimonial-feature,
  .testimonials-section .testimonial-copy {
    width: 100%;
  }

  .testimonial-client-collection {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1rem;
  }
}

@media (max-width: 40rem) {
  .testimonial-client-collection .testimonial-notes {
    grid-template-columns: 1fr;
  }
}
