/* ========================================================================== */
/*  FloroSenti — editorial floral boutique                                   */
/* ========================================================================== */

:root {
  --olive-950: #17271f;
  --olive-900: #20352b;
  --olive: #263c32;
  --olive-700: #3f574b;
  --ivory: #f3eee5;
  --ivory-deep: #e9e1d4;
  --paper: #fbf8f2;
  --paper-bright: #fffdf9;
  --rose: #a94e63;
  --rose-soft: #cf9cab;
  --champagne: #b89b6d;
  --ink: #23352d;
  --muted: #6f756f;
  --muted-light: rgba(251, 248, 242, 0.64);
  --line: rgba(38, 60, 50, 0.15);
  --line-strong: rgba(38, 60, 50, 0.28);
  --line-light: rgba(251, 248, 242, 0.2);
  --shadow-soft: 0 24px 70px rgba(28, 43, 36, 0.13);
  --shadow-paper: 0 16px 48px rgba(28, 43, 36, 0.12);
  --container: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --space-2xs: 0.42rem;
  --space-xs: 0.75rem;
  --space-sm: 1.15rem;
  --space-md: 1.8rem;
  --space-lg: clamp(2.5rem, 4.2vw, 4rem);
  --space-xl: clamp(4rem, 6vw, 5.8rem);
  --section-space: clamp(4rem, 6vw, 5.8rem);
  --section-space-tight: clamp(2.7rem, 4vw, 3.8rem);
  --radius-xs: 5px;
  --radius-sm: 10px;
  --radius-md: 17px;
  --radius-pill: 100px;
  --duration-fast: 220ms;
  --duration-medium: 560ms;
  --duration-slow: 900ms;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, Georgia, serif;
  --sans: Inter, Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

/* ========================================================================== */
/*  Reset and foundations                                                     */
/* ========================================================================== */

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

html {
  overflow-x: hidden;
  background: var(--ivory);
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  z-index: 9998;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.022;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.86' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
}

body.is-locked {
  overflow: hidden;
}

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

::selection {
  background: rgba(169, 78, 99, 0.2);
  color: var(--olive-950);
}

::-webkit-scrollbar {
  width: 9px;
}

::-webkit-scrollbar-track {
  background: var(--ivory);
}

::-webkit-scrollbar-thumb {
  border: 3px solid var(--ivory);
  border-radius: 12px;
  background: var(--olive-700);
}

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

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

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

button {
  color: inherit;
}

p,
h1,
h2,
h3,
blockquote,
figure,
ol,
ul,
fieldset {
  margin: 0;
}

fieldset {
  padding: 0;
  border: 0;
}

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 4px;
}

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  transform: translateY(-150%);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--olive);
  font-size: 0.75rem;
  font-weight: 700;
  transition: transform var(--duration-fast) var(--ease);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--olive-700);
  font-size: 0.63rem;
  font-weight: 760;
  letter-spacing: 0.21em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.8rem;
  height: 1px;
  background: var(--champagne);
}

.eyebrow--light {
  color: rgba(251, 248, 242, 0.66);
}

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

h1,
h2 {
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.9rem, 5.1vw, 5.25rem);
  line-height: 0.94;
}

/* ========================================================================== */
/*  Buttons and links                                                         */
/* ========================================================================== */

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  overflow: hidden;
  padding: 0.82rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  background: transparent;
  cursor: pointer;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
  transition:
    color var(--duration-fast) var(--ease),
    background var(--duration-fast) var(--ease),
    border-color var(--duration-fast) var(--ease),
    transform var(--duration-fast) var(--ease);
}

.button__label {
  position: relative;
  z-index: 1;
}

.button__arrow {
  position: relative;
  z-index: 1;
  transition: transform var(--duration-fast) var(--ease);
}

.button:hover .button__arrow {
  transform: translate(3px, -2px);
}

.button--solid {
  background: var(--olive);
  color: var(--paper);
}

.button--solid::before,
.button--light::before {
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--olive-700);
  content: "";
  transition: transform 420ms var(--ease);
}

.button--solid:hover::before,
.button--light:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.button--ghost {
  border-color: var(--line-strong);
  color: var(--olive);
}

.button--ghost:hover {
  border-color: var(--olive);
  background: rgba(38, 60, 50, 0.045);
}

.button--light {
  background: var(--paper);
  color: var(--olive);
}

.button--light::before {
  background: var(--ivory-deep);
}

.button--outline-light {
  border-color: rgba(251, 248, 242, 0.35);
  color: var(--paper);
}

.button--outline-light:hover {
  border-color: var(--paper);
  background: rgba(255, 255, 255, 0.06);
}

.editorial-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding-bottom: 0.35rem;
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.115em;
  text-transform: uppercase;
}

.editorial-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0.34);
  transform-origin: left;
  background: currentColor;
  content: "";
  transition: transform 420ms var(--ease);
}

.editorial-link span {
  transition: transform var(--duration-fast) var(--ease);
}

.editorial-link:hover::after {
  transform: scaleX(1);
}

.editorial-link:hover span {
  transform: translate(3px, -3px);
}

/* ========================================================================== */
/*  Preloader and progress                                                    */
/* ========================================================================== */

.preloader {
  position: fixed;
  z-index: 9999;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 1.1rem;
  background: var(--olive-950);
  color: var(--paper);
  text-align: center;
  transition:
    opacity 420ms ease,
    visibility 420ms ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__monogram {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-family: var(--serif);
  font-size: 3.7rem;
  letter-spacing: -0.08em;
  line-height: 1;
}

.preloader__monogram i {
  width: 2.25rem;
  height: 1px;
  transform: scaleX(0);
  background: var(--champagne);
  animation: loader-line 850ms var(--ease-out) 80ms forwards;
}

.preloader__monogram span {
  opacity: 0;
  transform: translateY(8px);
  animation: loader-letter 620ms var(--ease-out) forwards;
}

.preloader__monogram span:last-child {
  color: var(--rose-soft);
  animation-delay: 120ms;
}

.preloader p {
  opacity: 0;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.33em;
  text-transform: uppercase;
  animation: loader-letter 520ms ease 220ms forwards;
}

@keyframes loader-letter {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes loader-line {
  to {
    transform: scaleX(1);
  }
}

.scroll-progress {
  position: fixed;
  z-index: 260;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--champagne);
}

/* ========================================================================== */
/*  Header                                                                    */
/* ========================================================================== */

.site-header {
  position: fixed;
  z-index: 220;
  top: 0;
  left: 0;
  width: 100%;
  color: var(--olive);
  opacity: 0;
  transform: translateY(-12px);
  transition:
    background var(--duration-medium) var(--ease),
    box-shadow var(--duration-medium) var(--ease),
    transform var(--duration-medium) var(--ease),
    opacity var(--duration-medium) ease;
}

.js-ready .site-header {
  opacity: 1;
  transform: none;
  transition-delay: 500ms;
}

.site-header.is-scrolled {
  background: rgba(251, 248, 242, 0.92);
  box-shadow: 0 10px 36px rgba(38, 60, 50, 0.07);
  backdrop-filter: blur(16px);
}

.site-header.is-hidden {
  transform: translateY(-110%);
}

.site-header.is-menu-open {
  transform: none;
  color: var(--paper);
}

.header-inner {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(calc(100% - (var(--gutter) * 2)), 1420px);
  height: 5.2rem;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-inline: auto;
  border-bottom: 1px solid var(--line);
  transition:
    height var(--duration-medium) var(--ease),
    border-color var(--duration-medium) var(--ease);
}

.site-header.is-scrolled .header-inner {
  height: 4.45rem;
}

.site-header.is-menu-open .header-inner {
  border-color: var(--line-light);
}

.brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  line-height: 1;
  transition: opacity var(--duration-fast) ease;
}

.brand:hover {
  opacity: 0.68;
}

.brand__name {
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 1.95rem);
  letter-spacing: -0.055em;
}

.brand__place {
  margin-top: 0.3rem;
  font-size: 0.45rem;
  font-weight: 750;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.15rem, 2.2vw, 2.4rem);
}

.desktop-nav a {
  position: relative;
  padding-block: 0.3rem;
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.desktop-nav a::before {
  position: absolute;
  top: 50%;
  left: -0.72rem;
  width: 3px;
  height: 3px;
  transform: translateY(-50%) scale(0);
  border-radius: 50%;
  background: var(--rose);
  content: "";
  transition: transform var(--duration-fast) var(--ease);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform var(--duration-fast) var(--ease);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav a.is-active::before {
  transform: translateY(-50%) scale(1);
}

.header-cta {
  justify-self: end;
  padding: 0.63rem 1.05rem;
  border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta span {
  display: inline-block;
  margin-left: 0.35rem;
  transition: transform var(--duration-fast) var(--ease);
}

.header-cta:hover span {
  transform: translate(3px, -2px);
}

.menu-toggle,
.mobile-menu {
  display: none;
}

/* ========================================================================== */
/*  Hero                                                                      */
/* ========================================================================== */

.hero {
  position: relative;
  min-height: min(850px, 94svh);
  overflow: hidden;
  padding-top: 5.2rem;
  background:
    radial-gradient(circle at 78% 24%, rgba(184, 155, 109, 0.08), transparent 27%),
    var(--paper);
}

.hero__background-word {
  position: absolute;
  top: 2.5%;
  left: -1vw;
  color: rgba(38, 60, 50, 0.034);
  font-family: var(--serif);
  font-size: clamp(12rem, 25vw, 26rem);
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
  will-change: transform;
}

.hero__orbit {
  position: absolute;
  top: 23%;
  left: 48%;
  width: min(23vw, 310px);
  aspect-ratio: 1;
  transform: rotate(17deg);
  border: 1px solid rgba(184, 155, 109, 0.31);
  border-radius: 48% 52% 62% 38% / 42% 39% 61% 58%;
}

.hero__layout {
  position: relative;
  display: grid;
  min-height: calc(min(850px, 94svh) - 5.2rem);
  grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.12fr);
  grid-template-rows: 1fr auto;
  column-gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
}

.hero__copy {
  position: relative;
  z-index: 4;
  padding: clamp(3.3rem, 7vh, 5.6rem) 0 2.4rem;
}

.hero__eyebrow {
  opacity: 0;
  transform: translateY(10px);
}

.js-ready .hero__eyebrow {
  animation: hero-fade-up 560ms var(--ease-out) 600ms forwards;
}

.hero h1 {
  margin-top: 1.15rem;
  font-size: clamp(4.5rem, 8.25vw, 8.35rem);
  line-height: 0.76;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.09em;
}

.hero__line > span {
  display: block;
  transform: translateY(112%);
}

.hero__line--middle {
  padding-left: 0.44em;
}

.hero__line--accent {
  position: relative;
  z-index: 4;
  margin-right: -1.2em;
  padding-left: 0.08em;
  color: var(--rose);
  font-style: italic;
}

.js-ready .hero__line:nth-child(1) > span {
  animation: hero-line 760ms var(--ease-out) 650ms forwards;
}

.js-ready .hero__line:nth-child(2) > span {
  animation: hero-line 760ms var(--ease-out) 740ms forwards;
}

.js-ready .hero__line:nth-child(3) > span {
  animation: hero-line 760ms var(--ease-out) 830ms forwards;
}

.hero__intro {
  max-width: 30rem;
  margin-top: 1.45rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.55vw, 1.36rem);
  line-height: 1.42;
  opacity: 0;
  transform: translateY(10px);
}

.js-ready .hero__intro {
  animation: hero-fade-up 620ms var(--ease-out) 940ms forwards;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
  opacity: 0;
  transform: translateY(10px);
}

.js-ready .hero__actions {
  animation: hero-fade-up 620ms var(--ease-out) 1030ms forwards;
}

.hero__microcopy {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.57rem;
  font-weight: 680;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
}

.js-ready .hero__microcopy {
  animation: hero-fade-up 520ms ease 1120ms forwards;
}

.hero__microcopy > span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.hero__art {
  position: relative;
  align-self: stretch;
  min-height: 570px;
}

.hero__primary {
  position: absolute;
  top: 3%;
  right: -4vw;
  width: min(43vw, 610px);
  height: 82%;
  overflow: hidden;
  border-radius: 49% 49% var(--radius-xs) var(--radius-xs) / 13% 13% var(--radius-xs) var(--radius-xs);
  box-shadow: var(--shadow-soft);
  clip-path: inset(0 0 100% 0 round 49% 49% 5px 5px / 13% 13% 5px 5px);
  will-change: transform;
}

.js-ready .hero__primary {
  animation: hero-mask 900ms var(--ease-out) 690ms forwards;
}

.hero__primary::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.hero__primary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  transition: transform 1.2s var(--ease);
}

.hero__primary:hover img {
  transform: scale(1.022);
}

.hero__primary figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(35, 53, 45, 0.75);
  font-family: var(--serif);
  font-size: 0.86rem;
  font-style: italic;
}

.hero__primary figcaption span {
  font-family: var(--sans);
  font-size: 0.47rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.corner {
  position: absolute;
  z-index: 3;
  top: 1.2rem;
  right: 1.2rem;
  width: 1.5rem;
  height: 1.5rem;
  border-top: 1px solid rgba(38, 60, 50, 0.42);
  border-right: 1px solid rgba(38, 60, 50, 0.42);
}

.hero__secondary {
  position: absolute;
  z-index: 3;
  right: clamp(8rem, 12vw, 12.5rem);
  bottom: 1.5%;
  width: clamp(145px, 14vw, 205px);
  padding: 0.5rem 0.5rem 1.75rem;
  transform: translateY(18px) rotate(-2.2deg);
  background: var(--paper-bright);
  box-shadow: var(--shadow-paper);
  opacity: 0;
  will-change: transform;
}

.js-ready .hero__secondary {
  animation: hero-photo-small 720ms var(--ease-out) 970ms forwards;
}

.hero__secondary-index {
  display: block;
  padding: 0.05rem 0 0.42rem;
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__secondary img {
  width: 100%;
  height: clamp(185px, 18vw, 255px);
  object-fit: cover;
  object-position: center 36%;
}

.hero__secondary figcaption {
  margin-top: 0.52rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
}

.hero__art-note {
  position: absolute;
  z-index: 4;
  right: -0.5rem;
  bottom: 7%;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.15;
  opacity: 0;
}

.js-ready .hero__art-note {
  animation: hero-fade-up 560ms ease 1160ms forwards;
}

.hero__art-note span {
  display: block;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.47rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__trust {
  z-index: 5;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0.95rem 0 1.05rem;
  border-top: 1px solid var(--line);
}

.hero__trust p {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 0.65rem;
}

.hero__trust span {
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 0.82rem;
}

.hero__scroll {
  position: absolute;
  z-index: 6;
  bottom: 1.7rem;
  left: 1.2rem;
  display: grid;
  justify-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__scroll i {
  display: block;
  width: 1px;
  height: 2rem;
  overflow: hidden;
  background: var(--line-strong);
}

.hero__scroll i::after {
  display: block;
  width: 100%;
  height: 50%;
  transform: translateY(-110%);
  background: var(--olive);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-line {
  to {
    transform: none;
  }
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-mask {
  to {
    clip-path: inset(0 0 0 0 round 49% 49% 5px 5px / 13% 13% 5px 5px);
  }
}

@keyframes hero-photo-small {
  to {
    opacity: 1;
    transform: translateY(0) rotate(-2.2deg);
  }
}

@keyframes scroll-line {
  0% {
    transform: translateY(-110%);
  }
  50%,
  100% {
    transform: translateY(210%);
  }
}

/* ========================================================================== */
/*  About                                                                     */
/* ========================================================================== */

.about {
  position: relative;
  z-index: 3;
  padding-top: clamp(4.5rem, 6vw, 6rem);
  background: var(--ivory);
}

.about__bridge {
  position: absolute;
  z-index: 4;
  top: -1.25rem;
  left: 50%;
  width: min(90%, 760px);
  transform: translateX(-50%);
  color: var(--olive-700);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.8vw, 1.4rem);
  font-style: italic;
  text-align: center;
}

.about__bridge::before,
.about__bridge::after {
  display: inline-block;
  width: clamp(2rem, 7vw, 6.5rem);
  height: 1px;
  margin: 0 1rem 0.3rem;
  background: var(--champagne);
  content: "";
}

.about__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about__visual {
  position: relative;
  min-height: clamp(440px, 47vw, 600px);
}

.vertical-label {
  position: absolute;
  bottom: 4%;
  left: 0;
  color: var(--olive-700);
  font-size: 0.54rem;
  font-weight: 720;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about__image-main {
  position: absolute;
  top: 0;
  left: 7%;
  width: 67%;
  height: 85%;
  overflow: hidden;
  border-radius: 48% 48% var(--radius-xs) var(--radius-xs) / 11% 11% var(--radius-xs) var(--radius-xs);
  box-shadow: var(--shadow-soft);
}

.about__image-main img,
.about__image-detail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__image-main img {
  object-position: center 48%;
}

.about__image-detail {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  padding: 0.45rem 0.45rem 1.85rem;
  transform: rotate(1.8deg);
  background: var(--paper-bright);
  box-shadow: var(--shadow-paper);
}

.about__image-detail img {
  aspect-ratio: 0.84;
}

.about__image-detail figcaption {
  padding-top: 0.42rem;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 0.73rem;
  font-style: italic;
  text-align: center;
}

.about__index {
  position: absolute;
  top: 1%;
  right: 5%;
  color: rgba(38, 60, 50, 0.13);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 1;
}

.about__story h2 {
  margin-top: 0.85rem;
}

.about__story h2 span {
  display: block;
  color: var(--rose);
  font-style: italic;
}

.about__story blockquote {
  max-width: 30rem;
  margin: 1.6rem 0 1.15rem;
  padding-left: 1.2rem;
  border-left: 1px solid var(--champagne);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.66rem);
  line-height: 1.37;
}

.about__paragraphs {
  display: grid;
  max-width: 35rem;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.about__story .editorial-link {
  margin-top: 1.55rem;
}

/* ========================================================================== */
/*  Gallery                                                                   */
/* ========================================================================== */

.gallery {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.gallery__line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 5rem;
  background: var(--champagne);
  opacity: 0.5;
}

.gallery__intro {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: end;
}

.gallery__number,
.services__index,
.social__index {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--champagne);
  font-size: 0.57rem;
  font-weight: 740;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.gallery__heading h2 em {
  color: var(--rose);
  font-weight: 400;
}

.gallery__intro > p {
  max-width: 27rem;
  justify-self: end;
  padding-bottom: 0.3rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.gallery-filters {
  display: flex;
  gap: 1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.gallery-filters button {
  position: relative;
  padding: 0 0 0.33rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-filters button::before {
  position: absolute;
  top: 0.42rem;
  left: -0.65rem;
  width: 3px;
  height: 3px;
  transform: scale(0);
  border-radius: 50%;
  background: var(--rose);
  content: "";
  transition: transform var(--duration-fast) var(--ease);
}

.gallery-filters button::after {
  position: absolute;
  right: 0;
  bottom: -0.75rem;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--rose);
  content: "";
  transition: transform var(--duration-fast) var(--ease);
}

.gallery-filters button.is-active {
  color: var(--olive);
}

.gallery-filters button.is-active::before,
.gallery-filters button.is-active::after {
  transform: scale(1);
}

.exhibition {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: clamp(58px, 5.5vw, 82px);
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(0.65rem, 1.15vw, 1rem);
  transition:
    opacity 220ms ease,
    transform 320ms var(--ease);
}

.exhibition.is-changing {
  opacity: 0.24;
  transform: translateY(7px) scale(0.996);
}

.gallery-item {
  position: relative;
  min-width: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-xs);
  background: var(--ivory-deep);
  cursor: zoom-in;
  text-align: left;
  transition:
    opacity 360ms ease,
    transform 480ms var(--ease);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item--hero {
  grid-column: 1 / 7;
  grid-row: 1 / 7;
}

.gallery-item--small-top {
  grid-column: 8 / 11;
  grid-row: 1 / 4;
}

.gallery-item--portrait-top {
  grid-column: 10 / 13;
  grid-row: 4 / 8;
}

.gallery-statement {
  grid-column: 7 / 10;
  grid-row: 4 / 7;
  align-self: center;
  padding-left: 0.65rem;
  color: var(--olive-700);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.15vw, 1.85rem);
  line-height: 1.1;
}

.gallery-statement em {
  display: block;
  color: var(--rose);
}

.gallery-item--wide {
  grid-column: 1 / 8;
  grid-row: 7 / 11;
}

.gallery-item--accent {
  grid-column: 9 / 13;
  grid-row: 8 / 11;
}

.gallery-item--portrait-mid {
  grid-column: 1 / 5;
  grid-row: 11 / 16;
}

.gallery-item--small-mid {
  grid-column: 5 / 8;
  grid-row: 11 / 14;
}

.gallery-item--landscape {
  grid-column: 8 / 13;
  grid-row: 11 / 16;
}

.gallery-item--tiny {
  grid-column: 5 / 8;
  grid-row: 14 / 16;
}

.gallery-item--bottom-a {
  grid-column: 1 / 4;
  grid-row: 16 / 20;
}

.gallery-item--bottom-b {
  grid-column: 4 / 9;
  grid-row: 16 / 21;
}

.gallery-item--bottom-c {
  grid-column: 9 / 13;
  grid-row: 16 / 21;
}

.gallery-item--uploaded {
  grid-column: span 4;
  grid-row: span 5;
}

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

.frame-arch {
  border-radius: 47% 47% var(--radius-xs) var(--radius-xs) / 10% 10% var(--radius-xs) var(--radius-xs);
}

.frame-offset {
  overflow: visible;
  margin: 0.55rem 0.55rem 0 0;
}

.frame-offset::before {
  position: absolute;
  z-index: 0;
  inset: -0.55rem 0.55rem 0.55rem -0.55rem;
  border: 1px solid rgba(184, 155, 109, 0.56);
  content: "";
}

.frame-offset img,
.frame-offset .gallery-item__meta,
.frame-offset::after {
  z-index: 1;
}

.gallery-item img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform var(--duration-slow) var(--ease),
    filter 650ms ease;
}

.gallery-item--hero img {
  object-position: center 48%;
}

.gallery-item--wide img {
  object-position: center 48%;
}

.gallery-item--accent img {
  object-position: center 44%;
}

.gallery-item--landscape img {
  object-position: center 48%;
}

.gallery-item--bottom-c img {
  object-position: center 52%;
}

.gallery-item::after {
  position: absolute;
  z-index: 1;
  inset: 50% 0 0;
  background: linear-gradient(transparent, rgba(18, 31, 25, 0.66));
  content: "";
  opacity: 0.75;
  transition: opacity var(--duration-fast) ease;
}

.gallery-item__meta {
  position: absolute;
  z-index: 2;
  right: 0.85rem;
  bottom: 0.8rem;
  left: 0.85rem;
  display: flex;
  flex-direction: column;
  color: var(--paper);
  opacity: 0.95;
  transform: translateY(0.25rem);
  transition:
    opacity var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease);
}

.gallery-item__meta small {
  margin-bottom: 0.22rem;
  font-family: var(--sans);
  font-size: 0.47rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-item__meta strong {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.3vw, 1.15rem);
  font-weight: 400;
  line-height: 1.15;
}

.gallery-item:hover img {
  transform: scale(1.028);
  filter: saturate(0.94) contrast(1.02);
}

.gallery-item:hover::after {
  opacity: 0.9;
}

.gallery-item:hover .gallery-item__meta {
  opacity: 1;
  transform: none;
}

.exhibition.is-filtered {
  grid-auto-rows: clamp(72px, 7vw, 96px);
}

.exhibition.is-filtered .gallery-statement {
  display: none;
}

.exhibition.is-filtered .gallery-item:not([hidden]) {
  grid-column: span 4;
  grid-row: span 4;
  margin: 0;
  border-radius: var(--radius-xs);
}

.exhibition.is-filtered .gallery-item:not([hidden]):nth-of-type(3n + 1) {
  grid-column: span 8;
}

.gallery-cursor {
  position: fixed;
  z-index: 180;
  top: 0;
  left: 0;
  display: grid;
  width: 3.45rem;
  height: 3.45rem;
  place-items: center;
  transform: translate(-50%, -50%) scale(0.65);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.94);
  color: var(--olive);
  box-shadow: 0 12px 30px rgba(20, 35, 28, 0.15);
  pointer-events: none;
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  opacity: 0;
  transition:
    opacity 180ms ease,
    transform 180ms var(--ease);
}

.gallery-cursor.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* ========================================================================== */
/*  Services                                                                  */
/* ========================================================================== */

.services {
  position: relative;
  overflow: clip;
  background: var(--ivory);
}

.services__word {
  position: absolute;
  top: 1rem;
  right: -1.5rem;
  color: rgba(38, 60, 50, 0.035);
  font-family: var(--serif);
  font-size: clamp(8rem, 18vw, 19rem);
  letter-spacing: -0.07em;
  line-height: 1;
  pointer-events: none;
}

.services__intro {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 2rem;
  align-items: end;
}

.services__intro h2 {
  max-width: 860px;
  color: var(--olive);
}

.services__experience {
  display: grid;
  grid-template-columns: minmax(340px, 0.86fr) minmax(430px, 1.14fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  margin-top: clamp(2.4rem, 4vw, 3.8rem);
}

.services__visual {
  position: sticky;
  top: 6.2rem;
  align-self: start;
}

.services__stage {
  position: relative;
  height: min(63vh, 590px);
  overflow: hidden;
  border-radius: 48% 48% var(--radius-xs) var(--radius-xs) / 10% 10% var(--radius-xs) var(--radius-xs);
  background: var(--ivory-deep);
  box-shadow: var(--shadow-soft);
}

.services__stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 49%;
  opacity: 0;
  transform: scale(1.018);
  transition:
    opacity 520ms ease,
    transform 760ms var(--ease);
}

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

.services__visual figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.1rem 0;
}

.services__visual figcaption > span {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
}

.services__visual figcaption small {
  color: var(--muted);
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-list {
  padding: 0;
  list-style: none;
}

.service-list li {
  position: relative;
  display: grid;
  min-height: 7.2rem;
  grid-template-columns: 2.4rem 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.3rem 0 1.4rem;
  border-top: 1px solid var(--line);
  cursor: pointer;
  transition:
    padding var(--duration-medium) var(--ease),
    color var(--duration-fast) ease;
}

.service-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.service-list li::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--rose);
  content: "";
  transition: transform var(--duration-medium) var(--ease);
}

.service-list li.is-active {
  padding-left: 0.75rem;
}

.service-list li.is-active::after {
  transform: scaleX(1);
}

.service-list__number {
  padding-top: 0.35rem;
  color: var(--champagne);
  font-family: var(--serif);
  font-size: 0.76rem;
}

.service-list h3 {
  font-size: clamp(2rem, 3.8vw, 3.65rem);
  letter-spacing: -0.045em;
  line-height: 0.95;
  transition:
    color var(--duration-fast) ease,
    transform var(--duration-medium) var(--ease);
}

.service-list li.is-active h3 {
  color: var(--rose);
  transform: translateX(0.2rem);
}

.service-list p {
  max-width: 31rem;
  height: 0;
  overflow: hidden;
  margin-top: 0;
  color: var(--muted);
  font-size: 0.78rem;
  opacity: 0;
  transition:
    height var(--duration-medium) var(--ease),
    margin var(--duration-medium) var(--ease),
    opacity var(--duration-fast) ease;
}

.service-list li.is-active p {
  height: 2.6rem;
  margin-top: 0.65rem;
  opacity: 1;
}

.service-list__tag {
  align-self: center;
  color: var(--muted);
  font-size: 0.5rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-list img {
  display: none;
}

/* ========================================================================== */
/*  Reviews                                                                   */
/* ========================================================================== */

.reviews {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4rem, 5.7vw, 5.5rem);
  background:
    radial-gradient(circle at 80% 20%, rgba(207, 156, 171, 0.08), transparent 26%),
    var(--olive-950);
  color: var(--paper);
}

.reviews__quote-mark {
  position: absolute;
  top: -0.3em;
  right: 3vw;
  color: rgba(251, 248, 242, 0.035);
  font-family: var(--serif);
  font-size: clamp(17rem, 31vw, 35rem);
  line-height: 1;
  pointer-events: none;
}

.reviews__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(3rem, 7vw, 7.5rem);
  align-items: center;
}

.reviews__heading h2 {
  margin-top: 0.8rem;
  font-size: clamp(3rem, 5vw, 5rem);
}

.reviews__heading h2 span {
  display: block;
  color: var(--rose-soft);
  font-style: italic;
}

.google-rating {
  display: grid;
  width: max-content;
  grid-template-columns: auto auto 1fr;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-light);
}

.google-rating__letter {
  display: grid;
  width: 1.65rem;
  height: 1.65rem;
  place-items: center;
  border: 1px solid rgba(251, 248, 242, 0.32);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 0.9rem;
}

.google-rating strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
}

.google-rating__stars {
  color: var(--champagne);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.google-rating small {
  grid-column: 1 / -1;
  color: var(--muted-light);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review--featured {
  padding-bottom: 1.55rem;
  border-bottom: 1px solid var(--line-light);
}

.review--featured blockquote {
  max-width: 800px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.55vw, 3.6rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.review footer {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  font-style: normal;
}

.review footer strong {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 400;
}

.review footer span {
  color: var(--muted-light);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reviews__secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 1.5rem;
}

.review--small + .review--small {
  padding-left: 2rem;
  border-left: 1px solid var(--line-light);
}

.review__stars {
  color: var(--champagne);
  font-size: 0.56rem;
  letter-spacing: 0.11em;
}

.review--small blockquote {
  margin-top: 0.45rem;
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  line-height: 1.35;
}

/* ========================================================================== */
/*  Social and FAQ                                                            */
/* ========================================================================== */

.social {
  padding-block: clamp(3.8rem, 5vw, 5rem);
  background: var(--paper);
}

.social__layout {
  display: grid;
  min-height: min(65vh, 580px);
  grid-template-columns: minmax(300px, 0.76fr) minmax(520px, 1.24fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}

.social__copy h2 {
  max-width: 570px;
}

.social__copy h2 em {
  display: block;
  color: var(--rose);
  font-weight: 400;
}

.social__copy > p:not(.social__index) {
  max-width: 29rem;
  margin: 1.15rem 0 1.35rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.social__collage {
  position: relative;
  height: min(56vh, 510px);
}

.social-shot {
  position: absolute;
  overflow: hidden;
  background: var(--ivory-deep);
  box-shadow: var(--shadow-paper);
}

.social-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.social-shot > span {
  position: absolute;
  right: 0.55rem;
  bottom: 0.55rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.91);
  color: var(--olive);
  font-size: 0.72rem;
  opacity: 0;
  transform: translateY(5px);
  transition:
    opacity var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease);
}

.social-shot:hover img {
  transform: scale(1.025);
}

.social-shot:hover > span {
  opacity: 1;
  transform: none;
}

.social-shot--a {
  top: 9%;
  left: 0;
  width: 32%;
  height: 58%;
  transform: rotate(-1.3deg);
}

.social-shot--b {
  top: 0;
  left: 28%;
  width: 33%;
  height: 72%;
  z-index: 2;
}

.social-shot--c {
  right: 9%;
  bottom: 0;
  width: 35%;
  height: 63%;
  transform: rotate(1.5deg);
}

.social-shot--d {
  right: 0;
  top: 6%;
  width: 23%;
  height: 43%;
  z-index: 3;
}

.faq {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1.58fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-top: clamp(2.5rem, 4vw, 4rem);
  padding-top: clamp(2.5rem, 4vw, 3.5rem);
  border-top: 1px solid var(--line);
}

.faq__heading h2 {
  margin-top: 0.62rem;
  font-size: clamp(2.7rem, 4vw, 4rem);
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item h3 {
  font-family: var(--sans);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 4.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item button > span {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
}

.faq-item button i {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 auto;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--olive);
  content: "";
  transition: transform var(--duration-fast) var(--ease);
}

.faq-item button i::after {
  transform: rotate(90deg);
}

.faq-item.is-open button i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-medium) var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  max-width: 43rem;
  padding: 0 2rem 1.15rem 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

/* ========================================================================== */
/*  Contact                                                                   */
/* ========================================================================== */

.contact {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 6.5vw, 6.5rem);
  background: var(--olive-950);
  color: var(--paper);
}

.contact__background-word {
  position: absolute;
  right: -0.03em;
  bottom: -0.28em;
  color: rgba(251, 248, 242, 0.026);
  font-family: var(--serif);
  font-size: clamp(13rem, 31vw, 34rem);
  letter-spacing: -0.09em;
  line-height: 1;
  pointer-events: none;
}

.contact__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.contact__statement h2 {
  max-width: 850px;
  margin-top: 0.9rem;
  font-size: clamp(4.2rem, 8vw, 8.2rem);
  line-height: 0.82;
}

.contact__statement h2 em {
  display: block;
  color: var(--rose-soft);
  font-weight: 400;
}

.contact__statement > p:not(.eyebrow) {
  max-width: 32rem;
  margin-top: 1.25rem;
  color: var(--muted-light);
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.45;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.7rem;
}

.contact__details {
  display: grid;
  align-self: stretch;
  border-top: 1px solid var(--line-light);
  font-style: normal;
}

.contact-detail {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line-light);
}

.contact-detail > span,
.contact-detail > div > span {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--champagne);
  font-size: 0.5rem;
  font-weight: 730;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-detail p {
  color: rgba(251, 248, 242, 0.82);
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.4;
}

.contact-detail > a:not(.contact-detail__phone) {
  display: inline-block;
  margin-top: 0.65rem;
  color: var(--muted-light);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-detail--split {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 1.4rem;
}

.contact-detail__phone {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.contact-detail__email {
  display: block;
  max-width: 100%;
  margin-top: 0.28rem;
  overflow-wrap: anywhere;
  color: var(--muted-light);
  font-size: 0.58rem;
  line-height: 1.35;
}

.contact-detail--social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.3rem;
}

.contact-detail--social > span {
  width: 100%;
}

.contact-detail--social a {
  position: relative;
  font-family: var(--serif);
  font-size: 1rem;
}

.contact-detail--social a::after {
  position: absolute;
  right: 0;
  bottom: -0.2rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform var(--duration-fast) var(--ease);
}

.contact-detail--social a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ========================================================================== */
/*  Footer                                                                    */
/* ========================================================================== */

.site-footer {
  padding: 2.25rem 0 1.15rem;
  background: var(--olive-950);
  color: rgba(251, 248, 242, 0.58);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}

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

.footer__top nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 2.3rem);
}

.footer__top nav a {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer__contact {
  justify-self: end;
  text-align: right;
}

.footer__contact a {
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.08rem;
}

.footer__contact p {
  margin-top: 0.28rem;
  font-size: 0.62rem;
}

.footer__legal {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 2rem;
  margin-top: 1.6rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line-light);
}

.footer__company {
  max-width: 46rem;
  font-size: 0.6rem;
  line-height: 1.65;
}

.footer__company strong,
.footer__company a {
  color: rgba(251, 248, 242, 0.84);
}

.footer__company strong {
  display: block;
  margin-bottom: 0.16rem;
  font-size: 0.64rem;
  letter-spacing: 0.06em;
}

.footer__company a {
  display: inline-block;
  margin-top: 0.15rem;
  overflow-wrap: anywhere;
}

.sal-badge {
  display: grid;
  grid-template-columns: auto minmax(0, 13rem) auto;
  align-items: center;
  gap: 0.65rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-xs);
  color: rgba(251, 248, 242, 0.72);
  font-size: 0.52rem;
  line-height: 1.3;
  transition:
    border-color var(--duration-fast) ease,
    color var(--duration-fast) ease;
}

.sal-badge:hover,
.sal-badge:focus-visible {
  border-color: rgba(251, 248, 242, 0.45);
  color: var(--paper);
}

.sal-badge > span {
  color: var(--champagne);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.09em;
}

.sal-badge > i {
  font-size: 0.9rem;
  font-style: normal;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.4rem;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line-light);
  color: rgba(251, 248, 242, 0.4);
  font-size: 0.56rem;
}

.footer__legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__legal-links a {
  transition: color var(--duration-fast) ease;
}

.footer__legal-links a:hover,
.footer__legal-links a:focus-visible {
  color: rgba(251, 248, 242, 0.82);
}

/* ========================================================================== */
/*  Floating controls                                                         */
/* ========================================================================== */

.back-top {
  position: fixed;
  z-index: 90;
  right: 1.2rem;
  bottom: 1.15rem;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.93);
  color: var(--olive);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  visibility: hidden;
  transition:
    opacity var(--duration-fast) ease,
    transform var(--duration-fast) var(--ease),
    visibility var(--duration-fast);
}

.back-top.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.whatsapp-float {
  position: fixed;
  z-index: 95;
  right: 1.1rem;
  bottom: 4.45rem;
  display: flex;
  align-items: center;
  gap: 0.58rem;
  padding: 0.52rem 0.78rem 0.52rem 0.52rem;
  border-radius: var(--radius-pill);
  background: var(--olive);
  color: var(--paper);
  box-shadow: 0 12px 30px rgba(20, 35, 28, 0.2);
  transition:
    opacity var(--duration-fast),
    transform var(--duration-fast),
    visibility var(--duration-fast);
}

.whatsapp-float > span {
  display: grid;
  width: 1.8rem;
  height: 1.8rem;
  place-items: center;
  border: 1px solid rgba(251, 248, 242, 0.4);
  border-radius: 50%;
  font-size: 0.52rem;
}

.whatsapp-float b {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-float.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  visibility: hidden;
}

/* ========================================================================== */
/*  Lightbox                                                                  */
/* ========================================================================== */

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  grid-template-columns: 4rem 1fr 4rem;
  align-items: center;
  gap: 1rem;
  padding: 4.8rem 1.5rem 1.5rem;
  background: rgba(15, 27, 21, 0.97);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 350ms ease,
    visibility 350ms ease;
}

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

.lightbox figure {
  display: grid;
  max-width: min(1100px, 82vw);
  max-height: calc(100vh - 7rem);
  justify-self: center;
  gap: 0.65rem;
}

.lightbox figure img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 9rem);
  margin: auto;
  object-fit: contain;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.lightbox figcaption {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--serif);
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1.15rem;
  right: 1.5rem;
  padding: 0.4rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 0.61rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lightbox__close span {
  margin-left: 0.45rem;
  font-size: 1.6rem;
  font-weight: 300;
  vertical-align: middle;
}

.lightbox__nav {
  width: 3rem;
  height: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.lightbox__nav--next {
  justify-self: end;
}

/* ========================================================================== */
/*  WhatsApp planner                                                          */
/* ========================================================================== */

.planner {
  position: fixed;
  z-index: 620;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(12, 25, 18, 0.78);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--duration-medium) ease,
    visibility var(--duration-medium);
}

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

.planner__panel {
  position: relative;
  display: grid;
  width: min(100%, 1000px);
  max-height: calc(100svh - 2rem);
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  overflow: auto;
  padding: clamp(1.5rem, 4vw, 3.2rem);
  transform: translateY(18px) scale(0.99);
  border-radius: var(--radius-md);
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  transition: transform var(--duration-medium) var(--ease-out);
}

.planner.is-open .planner__panel {
  transform: none;
}

.planner__close {
  position: absolute;
  z-index: 2;
  top: 0.9rem;
  right: 1rem;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
  font-weight: 300;
}

.planner__heading {
  align-self: start;
}

.planner__heading h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.planner__heading > p:last-child {
  max-width: 27rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.planner-form {
  display: grid;
  gap: 1.15rem;
}

.planner-form legend {
  margin-bottom: 0.65rem;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

.choice-grid--three {
  grid-template-columns: repeat(3, 1fr);
}

.choice-grid label {
  position: relative;
}

.choice-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.choice-grid label > span {
  display: grid;
  min-height: 2.85rem;
  place-items: center;
  padding: 0.62rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  transition:
    color var(--duration-fast) ease,
    background var(--duration-fast) ease,
    border-color var(--duration-fast) ease;
}

.choice-grid input:checked + span {
  border-color: var(--olive);
  background: var(--olive);
  color: var(--paper);
}

.choice-grid input:focus-visible + span {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.planner-form__row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field > span {
  color: var(--muted);
  font-size: 0.54rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.field input,
.field select {
  width: 100%;
  min-height: 3rem;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xs);
  outline: 0;
  background: var(--paper-bright);
  color: var(--ink);
  font-size: 0.75rem;
  transition: border-color var(--duration-fast) ease;
}

.field input:focus,
.field select:focus {
  border-color: var(--olive);
}

.field__hint {
  color: var(--muted);
  font-size: 0.57rem;
  line-height: 1.4;
}

.planner-form__submit {
  width: 100%;
  margin-top: 0.2rem;
  border: 0;
}

.planner-form__privacy {
  color: var(--muted);
  font-size: 0.6rem;
  text-align: center;
}

/* ========================================================================== */
/*  Reveal system                                                             */
/* ========================================================================== */

[data-reveal] {
  opacity: 0;
  transition:
    opacity 760ms var(--ease),
    transform 760ms var(--ease),
    clip-path var(--duration-slow) var(--ease);
  will-change: opacity, transform;
}

[data-reveal="up"] {
  transform: translate3d(0, 26px, 0);
}

[data-reveal="left"] {
  transform: translate3d(-28px, var(--parallax-y, 0), 0);
}

[data-reveal="right"] {
  transform: translate3d(28px, var(--parallax-y, 0), 0);
}

[data-reveal="mask"] {
  clip-path: inset(0 0 100% 0 round var(--radius-xs));
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translate3d(0, var(--parallax-y, 0), 0);
  clip-path: inset(0 0 0 0 round var(--radius-xs));
  will-change: auto;
}

[data-stagger] > * {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease);
}

[data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

[data-stagger].is-visible > *:nth-child(2) {
  transition-delay: 80ms;
}

[data-stagger].is-visible > *:nth-child(3) {
  transition-delay: 150ms;
}

[data-stagger].is-visible > *:nth-child(4) {
  transition-delay: 220ms;
}

[data-stagger].is-visible > *:nth-child(5) {
  transition-delay: 290ms;
}

[data-stagger].is-visible > *:nth-child(6) {
  transition-delay: 360ms;
}

/* ========================================================================== */
/*  Legal pages                                                               */
/* ========================================================================== */

.legal-page {
  min-height: 100vh;
  background: var(--ivory);
}

.legal-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.legal-header .header-inner {
  position: static;
  height: 5.2rem;
  color: var(--ink);
  border: 0;
}

.legal-header .header-cta {
  display: inline-flex;
}

.legal-main {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.legal-wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.35fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.legal-aside {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.legal-aside a {
  display: inline-block;
  margin-top: 1.5rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.6vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.legal-content .legal-updated {
  margin: 1.3rem 0 3rem;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content section {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

.legal-content h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content p + p {
  margin-top: 0.9rem;
}

.legal-content ul {
  padding-left: 1.2rem;
}

.legal-placeholder {
  display: inline-block;
  padding: 0.15rem 0.45rem;
  background: rgba(169, 78, 99, 0.12);
  color: var(--rose);
  font-family: monospace;
  font-size: 0.8em;
}

.legal-footer {
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  font-size: 0.7rem;
}

.legal-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

/* ========================================================================== */
/*  Responsive — compact desktop                                              */
/* ========================================================================== */

@media (max-width: 1180px) {
  .hero__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(390px, 1.1fr);
    column-gap: 2rem;
  }

  .hero__primary {
    right: -7vw;
    width: 51vw;
  }

  .hero__secondary {
    right: 8vw;
  }

  .social__layout {
    gap: 3rem;
  }
}

@media (max-width: 980px) {
  :root {
    --section-space: clamp(3.8rem, 7vw, 5rem);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-menu-open {
    height: 100svh;
    background: var(--olive-950);
  }

  .header-inner {
    height: 4.7rem;
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    grid-column: 2;
    place-content: center;
    justify-self: end;
    gap: 0.35rem;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 1rem;
    height: 1px;
    background: currentColor;
    transition: transform var(--duration-fast) var(--ease);
  }

  .site-header.is-menu-open .menu-toggle span:first-child {
    transform: translateY(0.21rem) rotate(45deg);
  }

  .site-header.is-menu-open .menu-toggle span:last-child {
    transform: translateY(-0.21rem) rotate(-45deg);
  }

  .mobile-menu {
    position: absolute;
    z-index: 1;
    inset: 0;
    display: grid;
    min-height: 100svh;
    grid-template-rows: 1fr auto;
    padding: 7rem var(--gutter) 2rem;
    transform: translateY(-105%);
    background: var(--olive-950);
    color: var(--paper);
    visibility: hidden;
    transition:
      transform 550ms var(--ease),
      visibility 550ms;
  }

  .mobile-menu.is-open {
    transform: none;
    visibility: visible;
  }

  .mobile-menu nav {
    display: grid;
    align-content: center;
    gap: 0.35rem;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    opacity: 0;
    transform: translateY(14px);
    font-family: var(--serif);
    font-size: clamp(2.4rem, 9vw, 4rem);
    line-height: 1.06;
    transition:
      opacity 420ms ease,
      transform 420ms var(--ease);
  }

  .mobile-menu.is-open nav a {
    opacity: 1;
    transform: none;
  }

  .mobile-menu.is-open nav a:nth-child(2) {
    transition-delay: 55ms;
  }

  .mobile-menu.is-open nav a:nth-child(3) {
    transition-delay: 105ms;
  }

  .mobile-menu.is-open nav a:nth-child(4) {
    transition-delay: 155ms;
  }

  .mobile-menu.is-open nav a:nth-child(5) {
    transition-delay: 205ms;
  }

  .mobile-menu.is-open nav a:nth-child(6) {
    transition-delay: 255ms;
  }

  .mobile-menu nav span {
    color: var(--champagne);
    font-family: var(--sans);
    font-size: 0.58rem;
  }

  .mobile-menu__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid var(--line-light);
    color: rgba(251, 248, 242, 0.6);
    font-size: 0.68rem;
  }

  .hero {
    min-height: auto;
    padding-top: 4.7rem;
  }

  .hero__layout {
    min-height: auto;
    grid-template-columns: 0.9fr 1.1fr;
    padding-top: 2.25rem;
  }

  .hero__copy {
    padding: 2.8rem 0 3.2rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 9.6vw, 5.4rem);
  }

  .hero__art {
    min-height: 500px;
  }

  .hero__primary {
    right: -9vw;
    width: 59vw;
  }

  .hero__secondary {
    right: 7vw;
    width: 135px;
  }

  .hero__art-note,
  .hero__scroll {
    display: none;
  }

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

  .about__visual {
    min-height: 470px;
  }

  .about__paragraphs {
    grid-template-columns: 1fr;
    gap: 0.72rem;
  }

  .services__experience {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 2.7rem;
  }

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

  .reviews__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    align-items: end;
  }

  .reviews__heading .eyebrow {
    grid-column: 1 / -1;
  }

  .reviews__heading h2 {
    margin: 0.3rem 0 0;
  }

  .google-rating {
    margin: 0;
  }

  .social__layout {
    min-height: 0;
    grid-template-columns: 0.8fr 1.2fr;
  }

  .faq {
    grid-template-columns: 0.45fr 1.55fr;
    gap: 2.5rem;
  }

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

/* ========================================================================== */
/*  Responsive — mobile art direction                                         */
/* ========================================================================== */

@media (max-width: 700px) {
  :root {
    --gutter: 1.1rem;
    --section-space: 3.65rem;
    --section-space-tight: 2.55rem;
  }

  h2 {
    font-size: clamp(2.7rem, 13.6vw, 4rem);
  }

  .brand__name {
    font-size: 1.62rem;
  }

  .brand__place {
    font-size: 0.4rem;
  }

  .hero__background-word {
    top: 7%;
    left: -4%;
    font-size: 42vw;
  }

  .hero__orbit {
    top: 31%;
    left: 62%;
    width: 48vw;
  }

  .hero__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 0;
  }

  .hero__copy {
    z-index: 6;
    width: 100%;
    padding: 3.5rem 0 0.8rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 19vw, 5.75rem);
    line-height: 0.75;
  }

  .hero__line--middle {
    padding-left: 0.34em;
  }

  .hero__line--accent {
    margin-right: 0;
  }

  .hero__intro {
    max-width: 25rem;
    margin-top: 1.15rem;
    font-size: 1.08rem;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1.3rem;
  }

  .hero__microcopy {
    margin-top: 1.25rem;
  }

  .hero__art {
    width: 100%;
    min-height: 445px;
    margin-top: 0.4rem;
  }

  .hero__primary {
    top: 0;
    right: -10%;
    width: 87%;
    height: 90%;
  }

  .hero__primary figcaption {
    display: none;
  }

  .hero__secondary {
    right: auto;
    bottom: -0.2rem;
    left: 0;
    width: 34%;
    padding: 0.34rem 0.34rem 1.2rem;
  }

  .hero__secondary-index {
    font-size: 0.39rem;
  }

  .hero__secondary img {
    height: 135px;
  }

  .hero__trust {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.3rem;
    margin-top: 0.4rem;
    padding: 0.85rem 0 1rem;
  }

  .hero__trust p {
    font-size: 0.62rem;
  }

  .about {
    padding-top: 4.3rem;
  }

  .about__bridge {
    top: -0.85rem;
    font-size: 0.97rem;
  }

  .about__bridge::before,
  .about__bridge::after {
    width: 1.5rem;
    margin-inline: 0.55rem;
  }

  .about__layout {
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .about__visual {
    min-height: min(112vw, 505px);
  }

  .about__image-main {
    left: 6%;
    width: 72%;
    height: 83%;
  }

  .about__image-detail {
    width: 43%;
  }

  .about__story blockquote {
    margin-top: 1.3rem;
  }

  .gallery__intro {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .gallery__intro > p {
    justify-self: start;
  }

  .gallery-filters {
    width: calc(100% + 2.2rem);
    gap: 1.25rem;
    margin: 1.65rem -1.1rem 0.9rem;
    padding: 0 1.1rem 0.72rem;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery-filters::-webkit-scrollbar {
    display: none;
  }

  .exhibition,
  .exhibition.is-filtered {
    grid-auto-rows: auto;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.58rem;
  }

  .gallery-item,
  .gallery-item--hero,
  .gallery-item--small-top,
  .gallery-item--portrait-top,
  .gallery-item--wide,
  .gallery-item--accent,
  .gallery-item--portrait-mid,
  .gallery-item--small-mid,
  .gallery-item--landscape,
  .gallery-item--tiny,
  .gallery-item--bottom-a,
  .gallery-item--bottom-b,
  .gallery-item--bottom-c,
  .exhibition.is-filtered .gallery-item:not([hidden]),
  .exhibition.is-filtered .gallery-item:not([hidden]):nth-of-type(3n + 1) {
    display: block;
    grid-column: span 1;
    grid-row: auto;
    aspect-ratio: 0.8;
    margin: 0;
    border-radius: var(--radius-xs);
  }

  .gallery-item--hero,
  .gallery-item--wide,
  .gallery-item--landscape,
  .gallery-item--bottom-b,
  .exhibition.is-filtered .gallery-item:not([hidden]):first-of-type {
    grid-column: span 2;
    aspect-ratio: 1.2;
  }

  .gallery-item--hero {
    border-radius: 30% 30% var(--radius-xs) var(--radius-xs) / 12% 12% var(--radius-xs) var(--radius-xs);
  }

  .gallery-statement {
    display: none;
  }

  .gallery-item__meta {
    right: 0.68rem;
    bottom: 0.62rem;
    left: 0.68rem;
  }

  .services__intro {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .services__experience {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    margin-top: 1.8rem;
  }

  .services__visual {
    display: none;
  }

  .service-list li {
    min-height: auto;
    grid-template-columns: 1.75rem 1fr auto;
    padding: 0.95rem 0 1.05rem;
  }

  .service-list li.is-active {
    padding-left: 0;
  }

  .service-list h3 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .service-list li.is-active h3 {
    transform: none;
  }

  .service-list p {
    font-size: 0.73rem;
  }

  .service-list li.is-active p {
    height: auto;
  }

  .service-list img {
    display: block;
    width: 100%;
    height: 0;
    margin-top: 0;
    object-fit: cover;
    opacity: 0;
    transition:
      height 500ms var(--ease),
      margin 500ms var(--ease),
      opacity 400ms ease;
  }

  .service-list li.is-active img {
    height: min(66vw, 290px);
    margin-top: 0.85rem;
    opacity: 1;
  }

  .reviews__heading {
    display: block;
  }

  .reviews__heading h2 {
    margin: 0.65rem 0 1.35rem;
  }

  .google-rating {
    margin-top: 1.3rem;
  }

  .review--featured blockquote {
    font-size: 1.85rem;
  }

  .reviews__secondary {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .review--small {
    padding: 1rem 0;
    border-bottom: 1px solid var(--line-light);
  }

  .review--small + .review--small {
    padding-left: 0;
    border-left: 0;
  }

  .social__layout {
    display: block;
    min-height: 0;
  }

  .social__copy > p:not(.social__index) {
    margin-bottom: 1rem;
  }

  .social__collage {
    display: grid;
    height: auto;
    grid-auto-columns: 76%;
    grid-auto-flow: column;
    gap: 0.58rem;
    margin-top: 1.8rem;
    overflow-x: auto;
    padding: 0 0 0.75rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .social__collage::-webkit-scrollbar {
    display: none;
  }

  .social-shot,
  .social-shot--a,
  .social-shot--b,
  .social-shot--c,
  .social-shot--d {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    height: 275px;
    transform: none;
    scroll-snap-align: center;
  }

  .social-shot > span {
    opacity: 1;
    transform: none;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2.8rem;
  }

  .faq__heading h2 {
    font-size: 2.75rem;
  }

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

  .contact__statement h2 {
    font-size: clamp(4rem, 17vw, 5.5rem);
  }

  .contact__actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .footer__top nav {
    display: none;
  }

  .footer__contact p {
    max-width: 10rem;
  }

  .footer__legal {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1rem;
  }

  .sal-badge {
    width: 100%;
    max-width: 23rem;
    grid-template-columns: auto 1fr auto;
  }

  .footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }

  .whatsapp-float {
    bottom: 4.25rem;
  }

  .whatsapp-float.is-over-hero {
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 4.5rem 0.75rem 4.5rem;
  }

  .lightbox figure {
    max-width: 100%;
    max-height: calc(100svh - 9rem);
  }

  .lightbox figure img {
    max-height: calc(100svh - 11rem);
  }

  .lightbox__nav {
    position: absolute;
    bottom: 1rem;
  }

  .lightbox__nav--prev {
    left: calc(50% - 3.5rem);
  }

  .lightbox__nav--next {
    right: calc(50% - 3.5rem);
  }

  .planner__panel {
    padding: 2.5rem 1.1rem 1.3rem;
  }

  .planner__heading h2 {
    font-size: 2.8rem;
  }

  .choice-grid,
  .choice-grid--three,
  .planner-form__row {
    grid-template-columns: 1fr 1fr;
  }

  .choice-grid--three label:last-child {
    grid-column: 1 / -1;
  }

  .legal-header .header-cta {
    display: none;
  }

  .legal-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .legal-aside {
    position: static;
  }

  .legal-content h1 {
    overflow-wrap: anywhere;
    font-size: 3.2rem;
  }

  .legal-footer .container {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 3.8rem;
  }

  .hero__art {
    min-height: 405px;
  }

  .hero__actions .button {
    padding-inline: 1rem;
    font-size: 0.58rem;
  }

  .gallery-item__meta {
    display: none;
  }

  .service-list__tag {
    display: none;
  }

  .service-list li {
    grid-template-columns: 1.55rem 1fr;
  }

  .mobile-menu nav a {
    font-size: 2.3rem;
  }

  .choice-grid,
  .choice-grid--three,
  .planner-form__row {
    grid-template-columns: 1fr;
  }

  .choice-grid--three label:last-child {
    grid-column: auto;
  }
}

@media (min-width: 1700px) {
  :root {
    --container: 1400px;
  }

  .hero__layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .hero__primary {
    right: -3vw;
  }

  .exhibition {
    grid-auto-rows: 88px;
  }
}

@media (hover: none), (pointer: coarse) {
  .gallery-cursor {
    display: none;
  }
}

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

  .site-header,
  .hero__eyebrow,
  .hero__intro,
  .hero__actions,
  .hero__microcopy,
  .hero__primary,
  .hero__secondary,
  .hero__art-note,
  .hero__line > span,
  [data-reveal],
  [data-stagger] > * {
    opacity: 1;
    transform: none;
    clip-path: none;
  }

  .hero__secondary {
    transform: rotate(-2.2deg);
  }
}
