:root {
  --cream: #f2e6d0;
  --muted-gold: #c4a04a;
  --moss: #6b7a4f;
  --faded-orange: #d08653;
  --dusty-pink: #d3a29b;
  --deep-brown: #3a2a1f;
  --dream-purple: #6e5a8c;
  --paper: #ead8bc;
  --ink-soft: #594638;
  --shadow: rgba(58, 42, 31, 0.2);
  --shell: min(92vw, 1600px);
  --section-space: clamp(4rem, 8vw, 9rem);
  --display: "Yeseva One", Georgia, serif;
  --body: "EB Garamond", Georgia, serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--deep-brown);
  background:
    radial-gradient(circle at 12% 8%, rgba(211, 162, 155, 0.28), transparent 28rem),
    radial-gradient(circle at 88% 28%, rgba(196, 160, 74, 0.14), transparent 26rem),
    var(--cream);
  font-family: var(--body);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.12rem);
  line-height: 1.65;
  padding-bottom: env(safe-area-inset-bottom);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.085;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140' viewBox='0 0 140 140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch' seed='7'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.78'/%3E%3C/svg%3E");
  animation: grain-shift 0.42s steps(2) infinite;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

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

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px dashed var(--dream-purple);
  outline-offset: 4px;
}

::selection {
  color: var(--cream);
  background: var(--dream-purple);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

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

.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;
  left: 1rem;
  top: 1rem;
  z-index: 10001;
  transform: translateY(-180%);
  padding: 0.7rem 1rem;
  background: var(--deep-brown);
  color: var(--cream);
  border-radius: 999px;
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--moss);
  font-size: clamp(0.83rem, 0.78rem + 0.18vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: lowercase;
}

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

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  font-size: clamp(2.75rem, 8vw, 7.4rem);
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(2.15rem, 5vw, 4.9rem);
  letter-spacing: -0.025em;
}

p {
  max-width: 66ch;
}

.text-link {
  display: inline-flex;
  gap: 0.55rem;
  align-items: center;
  min-height: 44px;
  color: var(--deep-brown);
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--deep-brown);
  padding: 0.72rem 1.25rem;
  color: var(--deep-brown);
  background: var(--paper);
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 5px 0 rgba(58, 42, 31, 0.14);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.button--paper {
  transform: rotate(-0.5deg);
}

.button--submit {
  margin-top: 1.25rem;
  min-width: min(100%, 13rem);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
}

/* Header */
.site-header {
  position: relative;
  z-index: 200;
  padding-top: calc(0.75rem + env(safe-area-inset-top));
  color: var(--deep-brown);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.wordmark {
  position: relative;
  z-index: 205;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2.15rem);
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  position: relative;
  z-index: 205;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(58, 42, 31, 0.45);
  border-radius: 50%;
  background: rgba(242, 230, 208, 0.72);
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  width: 20px;
  height: 1px;
  background: var(--deep-brown);
  transition: transform 240ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.45rem;
  padding: calc(6rem + env(safe-area-inset-top)) max(7vw, 1.25rem) calc(3rem + env(safe-area-inset-bottom));
  background:
    radial-gradient(circle at 80% 20%, rgba(211, 162, 155, 0.32), transparent 38%),
    radial-gradient(circle at 15% 80%, rgba(107, 122, 79, 0.2), transparent 34%),
    var(--cream);
  transform: translateX(102%);
  visibility: hidden;
  transition: transform 420ms cubic-bezier(.2, .8, .2, 1), visibility 0s linear 420ms;
}

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

.site-nav a {
  width: fit-content;
  min-height: 44px;
  display: flex;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(2rem, 8vw, 4.2rem);
  text-decoration: none;
}

.site-nav a[aria-current="page"]::after {
  content: "✦";
  margin-left: 0.65rem;
  color: var(--faded-orange);
  font-family: Georgia, serif;
  font-size: 0.48em;
}

.site-nav__instagram {
  margin-top: 1rem;
  color: var(--dream-purple);
}

body.nav-open {
  overflow: hidden;
}

/* Hero carousel */
.hero-carousel {
  position: relative;
  margin-top: clamp(0.5rem, 2vw, 1.5rem);
}

.hero-carousel__viewport {
  position: relative;
  min-height: clamp(38rem, 78dvh, 62rem);
  overflow: hidden;
  background: var(--deep-brown);
  isolation: isolate;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.8s ease, visibility 0s linear 1.8s;
}

.hero-carousel__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.hero-carousel__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(0.92) sepia(0.08);
  transform: scale(1.015);
}

.hero-carousel__slide::before,
.photo-frame::before,
.gallery-card__button::before,
.portrait-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(244, 180, 111, 0.28), transparent 25%),
    radial-gradient(circle at 82% 76%, rgba(211, 162, 155, 0.18), transparent 27%);
  mix-blend-mode: screen;
}

.photo-frame--two::before,
.gallery-card:nth-child(3n + 2) .gallery-card__button::before {
  background:
    radial-gradient(circle at 82% 18%, rgba(244, 180, 111, 0.24), transparent 24%),
    radial-gradient(circle at 22% 78%, rgba(110, 90, 140, 0.14), transparent 28%);
}

.photo-frame--three::before,
.gallery-card:nth-child(3n) .gallery-card__button::before {
  background:
    radial-gradient(circle at 52% 8%, rgba(208, 134, 83, 0.25), transparent 23%),
    radial-gradient(circle at 8% 66%, rgba(211, 162, 155, 0.2), transparent 30%);
}

.hero-carousel__slide::after,
.photo-frame::after,
.gallery-card__button::after,
.portrait-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  box-shadow: inset 0 0 8rem rgba(58, 42, 31, 0.42), inset 0 0 1.5rem rgba(255, 208, 148, 0.14);
}

.hero-carousel__veil {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(to top, rgba(39, 27, 20, 0.72), rgba(39, 27, 20, 0.03) 62%);
}

.hero-carousel__caption {
  position: absolute;
  left: 50%;
  bottom: clamp(5.5rem, 10vw, 8rem);
  z-index: 5;
  transform: translateX(-50%);
  color: var(--cream);
}

.hero-carousel__caption h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.38);
}

.hero-carousel__caption .eyebrow {
  color: #e7c97e;
}

.hero-carousel__caption p:last-child {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
}

.hero-carousel__arrow {
  position: absolute;
  z-index: 8;
  bottom: 1.2rem;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(242, 230, 208, 0.7);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(58, 42, 31, 0.32);
  cursor: pointer;
}

.hero-carousel__arrow--prev {
  left: 1.2rem;
}

.hero-carousel__arrow--next {
  right: 1.2rem;
}

.hero-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: 1.3rem;
  z-index: 8;
  display: flex;
  max-width: calc(100% - 8rem);
  transform: translateX(-50%);
  justify-content: center;
  flex-wrap: nowrap;
}

.hero-carousel__dot {
  width: clamp(30px, 8vw, 44px);
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-carousel__dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 1px solid var(--cream);
  border-radius: 50%;
  background: transparent;
  transition: transform 220ms ease, background-color 220ms ease;
}

.hero-carousel__dot.is-active::before {
  transform: scale(1.35);
  background: var(--cream);
}

/* Home collage */
.home-intro {
  display: grid;
  gap: clamp(3rem, 9vw, 8rem);
  align-items: center;
}


.home-intro__copy p:not(.eyebrow) {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.45rem);
}

.home-collage {
  position: relative;
  display: grid;
  gap: 1rem;
}

.photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 45px var(--shadow);
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) contrast(0.94) sepia(0.08);
  transition: filter 500ms ease, transform 800ms ease;
}

.home-note {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1.4rem;
  padding-block: clamp(3rem, 8vw, 7rem);
  text-align: center;
}

.home-note p {
  max-width: 28ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.7rem);
  line-height: 1.18;
}

.doodle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.doodle--sun {
  width: clamp(4.5rem, 9vw, 7rem);
  color: var(--faded-orange);
  transform: rotate(-4deg);
}

.doodle--spiral {
  width: clamp(5rem, 10vw, 8rem);
  color: var(--dream-purple);
  transform: rotate(7deg);
}


.doodle--moon {
  width: clamp(5rem, 10vw, 8rem);
  color: var(--dream-purple);
}

.doodle--butterfly {
  width: clamp(7rem, 15vw, 11rem);
  color: var(--faded-orange);
}

.booking-intro h1,
.about-layout h1,
.contact-layout h1 {
  margin-bottom: 1.2rem;
}

.booking-intro p:not(.eyebrow),
.contact-layout__copy > p {
  font-size: clamp(1.1rem, 1rem + 0.45vw, 1.42rem);
}

/* Portfolio */
.portfolio-section {
  padding-bottom: var(--section-space);
}

.filter-chips {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2rem, 5vw, 4.5rem);
}

.filter-chip {
  min-height: 44px;
  padding: 0.52rem 1rem;
  border: 1px solid rgba(58, 42, 31, 0.42);
  border-radius: 999px;
  background: rgba(242, 230, 208, 0.65);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.filter-chip:nth-child(2n) {
  transform: rotate(-1deg);
}

.filter-chip:nth-child(3n) {
  transform: rotate(1.2deg);
}

.filter-chip.is-active {
  color: var(--cream);
  background: var(--moss);
}

.portfolio-masonry {
  columns: 1;
  column-gap: clamp(1rem, 2.5vw, 2.4rem);
}

.gallery-card {
  break-inside: avoid;
  margin: 0 0 clamp(1rem, 2.5vw, 2.4rem);
  transition: opacity 320ms ease, transform 320ms ease;
}


.gallery-card.is-filtering-out {
  opacity: 0;
  transform: scale(0.985);
}

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

.gallery-card__button {
  position: relative;
  isolation: isolate;
  width: 100%;
  min-height: 44px;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  background: var(--paper);
  box-shadow: 0 14px 35px var(--shadow);
  cursor: zoom-in;
}

.gallery-card__button img {
  width: 100%;
  height: auto;
  filter: saturate(0.9) contrast(0.95) sepia(0.08);
  transform: scale(1);
  transform-origin: center;
  backface-visibility: hidden;
  transition: transform 420ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 24, 18, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox__dialog {
  position: relative;
  z-index: 2;
  width: min(100%, 1500px);
  height: min(90dvh, 980px);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 0.25rem;
}

.lightbox__figure {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  align-content: center;
  margin: 0;
}

.lightbox__figure img {
  max-width: 100%;
  max-height: calc(90dvh - 4rem);
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.lightbox__close,
.lightbox__nav {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(242, 230, 208, 0.65);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(58, 42, 31, 0.5);
  cursor: pointer;
}

.lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 3;
  font-size: 1.6rem;
}

/* About */
.about-layout {
  display: grid;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.about-layout__copy p:not(.eyebrow) {
  font-size: clamp(1.08rem, 1rem + 0.36vw, 1.32rem);
}

.portrait-card {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(0.7rem, 2vw, 1.2rem);
  background: #dec7a5;
  box-shadow: 0 22px 50px var(--shadow);
  transform: rotate(-1.5deg);
}

.portrait-card img {
  width: 100%;
  filter: saturate(0.86) contrast(0.94) sepia(0.09);
}

.portrait-card__sparkle {
  position: absolute;
  z-index: 5;
  right: 0;
  top: -1.4rem;
  width: clamp(4rem, 9vw, 7rem);
  fill: rgba(196, 160, 74, 0.2);
  stroke: var(--muted-gold);
  stroke-width: 2;
}

/* Booking */
.booking-intro {
  min-height: clamp(23rem, 48dvh, 36rem);
  display: grid;
  align-items: end;
  gap: 1.5rem;
  padding-block: clamp(4rem, 9vw, 8rem) clamp(2rem, 5vw, 4rem);
}

.booking-intro > div {
  max-width: 62rem;
}

.booking-card {
  margin-bottom: var(--section-space);
  padding: clamp(1.25rem, 4vw, 3.5rem);
  background: rgba(234, 216, 188, 0.72);
  border: 1px solid rgba(58, 42, 31, 0.2);
  box-shadow: 0 22px 55px rgba(58, 42, 31, 0.12);
}

.form-grid {
  display: grid;
  gap: clamp(1rem, 3vw, 1.7rem);
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.field__optional {
  color: var(--ink-soft);
  font-size: 0.9em;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(58, 42, 31, 0.42);
  border-radius: 0;
  padding: 0.72rem 0.8rem;
  color: var(--deep-brown);
  background: rgba(242, 230, 208, 0.74);
  appearance: none;
  -webkit-appearance: none;
}

.field select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--deep-brown) 50%),
    linear-gradient(135deg, var(--deep-brown) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}

.field textarea {
  min-height: 10rem;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: #8b3f37;
  box-shadow: 0 0 0 1px rgba(139, 63, 55, 0.18);
}

.field__error {
  min-height: 1.3em;
  margin: 0.25rem 0 0;
  color: #7b362f;
  font-size: 0.92rem;
  line-height: 1.35;
}

.field--checkbox {
  margin-top: 1.4rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  max-width: 60rem;
  cursor: pointer;
}

.checkbox-label input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  min-height: 0;
  margin-top: 0.2rem;
  padding: 0;
  appearance: auto;
  -webkit-appearance: checkbox;
  accent-color: var(--moss);
  cursor: pointer;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 0.8rem;
}

.form-status.is-error {
  color: #7b362f;
}

.booking-success {
  padding: clamp(2rem, 6vw, 5rem) 0;
}

.booking-success[hidden] {
  display: none;
}

.booking-success h2 {
  max-width: 11ch;
}

.booking-success p:not(.eyebrow) {
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.3rem);
}

/* Contact */
.contact-layout {
  min-height: calc(100dvh - 9rem);
  display: grid;
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.contact-layout__copy {
  max-width: 58rem;
}

.contact-layout h1 {
  font-size: clamp(2.7rem, 7vw, 6.6rem);
}

.contact-links {
  display: grid;
  gap: 0.6rem;
  margin: 2rem 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.contact-links a {
  overflow-wrap: anywhere;
}

.contact-layout__art {
  min-height: 22rem;
  display: grid;
  place-items: center;
}

.hanging-object {
  width: min(72vw, 23rem);
  animation: hanging-drift 6.5s ease-in-out infinite alternate;
}

.hanging-object svg {
  width: 100%;
  fill: rgba(211, 162, 155, 0.17);
  stroke: var(--dream-purple);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(58, 42, 31, 0.2);
  padding-block: clamp(2rem, 4vw, 3.4rem);
}

.site-footer__inner {
  display: grid;
  gap: 0.5rem;
}

.site-footer p {
  margin: 0;
  overflow-wrap: anywhere;
}

/* Responsive real-image treatment */
.hero-carousel__slide {
  background: var(--deep-brown);
}

.hero-carousel__backdrop-image {
  display: none;
}

.home-collage .photo-frame img {
  height: auto;
  object-fit: contain;
}

.portfolio-masonry {
  column-fill: balance;
}

.gallery-card__button {
  line-height: 0;
}

.gallery-card__button img {
  display: block;
  aspect-ratio: auto;
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 900ms ease, transform 900ms ease;
}

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

.cursor-orbit,
.cursor-glow {
  display: none;
}

@keyframes grain-shift {
  0% { transform: translate3d(0, 0, 0); }
  25% { transform: translate3d(-2%, 1%, 0); }
  50% { transform: translate3d(1%, -2%, 0); }
  75% { transform: translate3d(2%, 2%, 0); }
  100% { transform: translate3d(-1%, -1%, 0); }
}

@keyframes hanging-drift {
  from { transform: rotate(-2deg) translateY(-4px); }
  to { transform: rotate(2.3deg) translateY(7px); }
}

/* 480px */
@media (min-width: 30rem) {
  .home-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(0.75rem, 2vw, 1.4rem);
  }

  .photo-frame--one { transform: rotate(-1.2deg) translateY(1.5rem); }
  .photo-frame--two { transform: rotate(1.5deg); }
  .photo-frame--three { transform: rotate(0.7deg) translateY(-1rem); }
  .photo-frame--four { transform: rotate(-1.7deg) translateY(1.6rem); }

  .portfolio-masonry {
    columns: 2;
  }
}

/* 768px */
@media (min-width: 48rem) {
  .site-header {
    padding-top: calc(1rem + env(safe-area-inset-top));
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    inset: auto;
    visibility: visible;
    transform: none;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(0.75rem, 1.8vw, 1.65rem);
    padding: 0;
    background: transparent;
    transition: none;
  }

  .site-nav a {
    position: relative;
    min-height: 44px;
    font-family: var(--body);
    font-size: 1rem;
    font-weight: 600;
  }

  .site-nav a[aria-current="page"]::after {
    position: absolute;
    left: 50%;
    bottom: -0.2rem;
    margin-left: 0;
    transform: translateX(-50%);
    font-size: 0.7rem;
  }

  .site-nav__instagram {
    margin-top: 0;
  }

  .hero-carousel__viewport {
    min-height: clamp(43rem, 82dvh, 68rem);
  }

  .hero-carousel__arrow {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-carousel__arrow--prev {
    left: clamp(1rem, 3vw, 3rem);
  }

  .hero-carousel__arrow--next {
    right: clamp(1rem, 3vw, 3rem);
  }

  .hero-carousel__dots {
    bottom: 1.6rem;
  }

  .home-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: clamp(1rem, 2vw, 2rem);
  }

  .photo-frame--one {
    transform: rotate(-1.4deg) translateY(2rem);
  }

  .photo-frame--two {
    z-index: 2;
    transform: rotate(1.2deg);
  }

  .photo-frame--three {
    z-index: 3;
    transform: rotate(0.8deg) translateY(-1rem);
  }

  .photo-frame--four {
    z-index: 4;
    transform: rotate(-1.2deg) translateY(1rem);
  }

  .portfolio-masonry {
    columns: 3;
  }

  .portrait-card__sparkle {
    right: -1.3rem;
    top: -2rem;
  }

  .about-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

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

  .field--wide {
    grid-column: 1 / -1;
  }

  .booking-intro {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  }

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


@media (min-width: 48rem) {
  .hero-carousel__slide--portrait .hero-carousel__backdrop-image {
    position: absolute;
    inset: -4%;
    z-index: 0;
    display: block;
    width: 108%;
    height: 108%;
    object-fit: cover;
    filter: blur(28px) saturate(0.72) brightness(0.58);
    opacity: 0.76;
    transform: scale(1.05);
  }

  .hero-carousel__slide--portrait .hero-carousel__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

/* 1024px */
@media (min-width: 64rem) {
  .home-intro {
    grid-template-columns: minmax(20rem, 0.85fr) minmax(0, 1.15fr);
  }

  .portfolio-masonry {
    columns: 4;
  }

}

/* 1440px */
@media (min-width: 90rem) {
  :root {
    --shell: min(88vw, 1600px);
  }

  .hero-carousel__viewport {
    min-height: min(84dvh, 72rem);
  }

  .portfolio-masonry {
    columns: 4;
    column-gap: 2.2rem;
  }
}

/* 1920px+ */
@media (min-width: 120rem) {
  :root {
    --shell: 1600px;
  }

  body {
    font-size: 1.12rem;
  }
}

@media (hover: hover) {
  .site-nav a:hover,
  .text-link:hover,
  .contact-links a:hover,
  .site-footer a:hover {
    color: var(--dream-purple);
  }

  .button:hover {
    transform: translate(-2px, -2px) rotate(-0.5deg);
    box-shadow: 7px 8px 0 rgba(58, 42, 31, 0.16);
    background: #e4cfad;
  }

  .filter-chip:hover {
    background: rgba(107, 122, 79, 0.17);
  }

  .photo-frame:hover img,
  .portrait-card:hover img {
    filter: saturate(0.72) contrast(0.9) sepia(0.14) brightness(1.04);
    transform: scale(1.025);
  }

  .gallery-card__button:hover img {
    transform: scale(1.035);
  }

  .cursor-orbit {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9000;
    display: block;
    width: 24px;
    height: 24px;
    fill: rgba(196, 160, 74, 0.15);
    stroke: var(--muted-gold);
    stroke-width: 2;
    pointer-events: none;
    will-change: transform;
  }

  .cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 8999;
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(208, 134, 83, 0.15), transparent 66%);
    pointer-events: none;
    will-change: transform;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: 0.01ms;
  }

  body::before {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .parallax-soft,
  .hanging-object {
    transform: none;
  }

  .cursor-orbit,
  .cursor-glow {
    display: none;
  }
}

/* Copy-light refinements */
.home-intro__line {
  max-width: none;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.2;
}

.page-portfolio .portfolio-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
}

.contact-links--direct {
  gap: 1.1rem;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}

.contact-links--direct p {
  display: grid;
  gap: 0.15rem;
  margin: 0;
  font-family: var(--body);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.contact-links--direct span {
  color: var(--moss);
  font-size: 0.82em;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-links--direct a {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.8vw, 2rem);
}
