:root {
  --ink: #10274d;
  --ink-deep: #07152d;
  --ink-soft: #45556c;
  --paper: #fbf7ed;
  --paper-warm: #fffdf7;
  --shell: #efe5d4;
  --sand: #c9a878;
  --clay: #9c7357;
  --sea: #8fb4b8;
  --foam: #dfeeed;
  --moss: #536b5a;
  --line: rgba(16, 39, 77, 0.16);
  --shadow: 0 28px 90px rgba(19, 37, 62, 0.18);
  --soft-shadow: 0 18px 48px rgba(19, 37, 62, 0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(16, 39, 77, 0.035) 1px, transparent 1px) 0 0 / 86px 86px,
    radial-gradient(circle at 12% 16%, rgba(143, 180, 184, 0.28), transparent 30%),
    radial-gradient(circle at 88% 42%, rgba(201, 168, 120, 0.2), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0)),
    repeating-linear-gradient(110deg, rgba(16, 39, 77, 0.035) 0 1px, transparent 1px 10px);
  mix-blend-mode: multiply;
}

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

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

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

.page-progress {
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  background: linear-gradient(90deg, var(--sea), var(--sand), var(--clay));
  transform-origin: left;
  box-shadow: 0 0 24px rgba(143, 180, 184, 0.68);
}

.cursor-tide {
  position: fixed;
  z-index: 2;
  left: 0;
  top: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle, rgba(143, 180, 184, 0.22), transparent 68%);
  transform: translate3d(var(--cursor-x, -400px), var(--cursor-y, -400px), 0);
  transition: opacity 220ms ease;
  mix-blend-mode: multiply;
}

body.has-cursor .cursor-tide {
  opacity: 1;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(22px, 4vw, 54px);
  pointer-events: none;
}

.brand,
.menu-toggle {
  pointer-events: auto;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1;
  font-weight: 500;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.56);
}

.menu-toggle {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(251, 247, 237, 0.3);
  border-radius: 50%;
  background: rgba(16, 39, 77, 0.96);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 300ms var(--ease), background 300ms ease;
}

.menu-toggle:hover {
  transform: rotate(10deg) scale(1.06);
  background: var(--moss);
}

.menu-toggle span:not(.sr-only) {
  width: 17px;
  height: 1px;
  background: var(--paper);
  transition: transform 300ms var(--ease), width 300ms var(--ease);
}

.menu-toggle:hover span:nth-child(1) {
  width: 11px;
  transform: translateX(-3px);
}

.menu-toggle:hover span:nth-child(3) {
  width: 11px;
  transform: translateX(3px);
}

.sidebar {
  position: fixed;
  z-index: 30;
  top: 0;
  right: 0;
  width: min(390px, 88vw);
  height: 100vh;
  padding: 88px clamp(34px, 6vw, 62px) 42px;
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.96), rgba(239, 229, 212, 0.94)),
    var(--paper);
  box-shadow: -28px 0 90px rgba(16, 39, 77, 0.18);
  transform: translateX(105%);
  transition: transform 520ms var(--ease);
  display: flex;
  flex-direction: column;
}

.sidebar::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(16, 39, 77, 0.12);
  pointer-events: none;
}

.sidebar.is-open {
  transform: translateX(0);
}

.menu-close {
  position: absolute;
  top: 42px;
  left: clamp(34px, 6vw, 62px);
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 30px;
  cursor: pointer;
  transition: transform 260ms var(--ease), color 260ms ease;
}

.menu-close:hover {
  color: var(--clay);
  transform: rotate(90deg);
}

.sidebar nav {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
}

.sidebar nav > a,
.collection-menu {
  position: relative;
  transform: translateX(22px);
  opacity: 0;
  transition: color 220ms ease, transform 520ms var(--ease), opacity 520ms var(--ease);
}

.sidebar.is-open nav > a,
.sidebar.is-open .collection-menu {
  opacity: 1;
  transform: translateX(0);
}

.sidebar.is-open nav > *:nth-child(2) {
  transition-delay: 60ms;
}

.sidebar.is-open nav > *:nth-child(3) {
  transition-delay: 120ms;
}

.sidebar.is-open nav > *:nth-child(4) {
  transition-delay: 180ms;
}

.collections-toggle {
  position: relative;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font: inherit;
  line-height: 1;
  text-align: left;
}

.collections-toggle span:last-child {
  color: var(--clay);
  font-size: 0.72em;
  transition: transform 260ms var(--ease);
}

.collection-menu.is-open .collections-toggle span:last-child {
  transform: rotate(45deg);
}

.collection-subnav {
  display: grid;
  gap: 10px;
  max-height: 0;
  overflow: hidden;
  padding-left: 18px;
  border-left: 1px solid transparent;
  opacity: 0;
  transition:
    max-height 360ms var(--ease),
    opacity 260ms ease,
    margin 260ms ease,
    border-color 260ms ease;
}

.collection-menu.is-open .collection-subnav {
  max-height: 280px;
  margin-top: 16px;
  border-color: rgba(16, 39, 77, 0.14);
  opacity: 1;
}

.collection-subnav a {
  position: relative;
  width: fit-content;
  color: var(--ink-soft);
  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
  text-transform: uppercase;
}

.sidebar nav a::after,
.collections-toggle::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms var(--ease);
}

.sidebar nav a:hover,
.collections-toggle:hover,
.text-link:hover,
.contact-card a:hover {
  color: var(--clay);
}

.sidebar nav a:hover::after,
.collections-toggle:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.sidebar-note {
  max-width: 230px;
  margin: 38px 0 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.sidebar-socials {
  margin-top: auto;
  display: flex;
  gap: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overlay {
  position: fixed;
  z-index: 25;
  inset: 0;
  background: rgba(16, 39, 77, 0.18);
  backdrop-filter: blur(8px);
}

.section-panel {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  padding: 118px clamp(24px, 7vw, 128px);
  border-bottom: 1px solid var(--line);
  overflow: clip;
}

.section-panel::after {
  content: attr(id);
  position: absolute;
  right: clamp(22px, 4vw, 60px);
  bottom: 26px;
  color: rgba(16, 39, 77, 0.18);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(420px, 1.24fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
  background:
    linear-gradient(105deg, rgba(251, 247, 237, 0.98), rgba(255, 253, 247, 0.9) 48%, rgba(223, 238, 237, 0.82)),
    var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  left: -12vw;
  bottom: -18vw;
  width: 76vw;
  height: 34vw;
  min-height: 280px;
  background: linear-gradient(180deg, transparent 0 34%, rgba(143, 180, 184, 0.16) 34% 39%, transparent 39% 44%, rgba(16, 39, 77, 0.08) 44% 47%, transparent 47%);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 540px;
  padding-top: clamp(46px, 10vh, 96px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--clay);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3.9rem, 7.2vw, 7rem);
  max-width: 680px;
}

h2 {
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

em {
  font-style: italic;
}

.wave-mark {
  margin: 26px 0 18px;
  color: var(--sea);
  font-family: "Cormorant Garamond", serif;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  animation: drift 5s ease-in-out infinite;
}

.hero-copy p:not(.eyebrow),
.collection-copy p,
.about-copy p {
  color: var(--ink-soft);
  max-width: 500px;
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding-bottom: 7px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.text-link span {
  transition: transform 260ms var(--ease);
}

.text-link:hover span {
  transform: translateX(6px);
}

.hero-mosaic,
.image-mosaic,
.placeholder-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(130px, 16vw);
  gap: 7px;
}

.hero-mosaic {
  position: relative;
  z-index: 2;
  grid-auto-rows: minmax(92px, 10vw);
  perspective: 1200px;
}

.hero-mosaic img,
.image-mosaic img,
.video-tile,
.placeholder {
  min-height: 0;
  border: 1px solid rgba(251, 247, 237, 0.72);
  box-shadow: var(--soft-shadow);
}

.hero-mosaic img,
.image-mosaic img {
  filter: saturate(0.92) contrast(1.03);
  transition:
    transform 700ms var(--ease),
    filter 420ms ease,
    clip-path 700ms var(--ease),
    box-shadow 420ms ease;
}

.hero-mosaic img:hover,
.image-mosaic img:hover {
  z-index: 4;
  filter: saturate(1.05) contrast(1.08);
  transform: translateY(-10px) scale(1.025);
  box-shadow: 0 34px 90px rgba(16, 39, 77, 0.28);
}

.hero-mosaic img:nth-child(1) {
  grid-column: span 3;
  grid-row: span 3;
}

.hero-mosaic img:nth-child(2) {
  grid-column: span 3;
  grid-row: span 2;
}

.hero-mosaic img:nth-child(3) {
  grid-column: span 2;
  grid-row: span 2;
}

.hero-mosaic img:nth-child(4) {
  grid-column: span 4;
  grid-row: span 2;
}

.hero-rail {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: -22px;
  color: rgba(16, 39, 77, 0.52);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-rail span {
  padding: 8px 12px;
  border: 1px solid rgba(16, 39, 77, 0.12);
  background: rgba(255, 253, 247, 0.56);
  backdrop-filter: blur(8px);
}

.collection {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  background:
    linear-gradient(180deg, rgba(223, 238, 237, 0.86), transparent 22%),
    var(--paper);
}

.collection:nth-of-type(3) {
  background:
    linear-gradient(180deg, rgba(83, 107, 90, 0.1), transparent 26%),
    linear-gradient(110deg, rgba(251, 247, 237, 0.92), rgba(239, 229, 212, 0.62)),
    var(--paper);
}

#gap {
  background:
    linear-gradient(180deg, rgba(190, 218, 177, 0.7), transparent 24%),
    linear-gradient(110deg, rgba(251, 247, 237, 0.96), rgba(229, 239, 214, 0.68)),
    var(--paper);
}

.collection-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.collection-copy::before,
.about-copy::before {
  content: "";
  display: block;
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  border: 1px solid rgba(16, 39, 77, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 23px, rgba(143, 180, 184, 0.34) 24px 25px, transparent 26px),
    repeating-radial-gradient(circle at 50% 50%, transparent 0 10px, rgba(16, 39, 77, 0.14) 11px 12px);
}

.collection-copy p + p {
  margin-top: 18px;
}

.whitsands-mosaic {
  grid-auto-flow: dense;
  grid-auto-rows: minmax(86px, 8.6vw);
  align-items: stretch;
}

.image-mosaic.whitsands-mosaic img {
  grid-column: span 2;
  grid-row: span 3;
}

.image-mosaic.whitsands-mosaic img.landscape {
  grid-column: span 4;
  grid-row: span 2;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(1) {
  grid-column: 1 / span 4;
  grid-row: span 4;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(2) {
  grid-column: 5 / span 2;
  grid-row: span 3;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(3) {
  grid-column: 2 / span 2;
  grid-row: span 5;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(4) {
  grid-column: 4 / span 2;
  grid-row: span 6;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(5) {
  grid-column: 1 / span 2;
  grid-row: span 4;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(6) {
  grid-column: 3 / span 2;
  grid-row: span 3;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(7) {
  grid-column: 5 / span 2;
  grid-row: span 5;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(8) {
  grid-column: 2 / span 2;
  grid-row: span 3;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(9) {
  grid-column: 4 / span 3;
  grid-row: span 2;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(10) {
  grid-column: 1 / span 2;
  grid-row: span 4;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(11) {
  grid-column: 2 / span 4;
  grid-row: span 3;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(12) {
  grid-column: 2 / span 2;
  grid-row: span 5;
}

.image-mosaic.whitsands-mosaic img:nth-of-type(13) {
  grid-column: 2 / span 5;
  grid-row: span 3;
}

.image-mosaic.whitsands-mosaic img.whitsands-portrait-feature {
  grid-column: 4 / span 2;
  grid-row: span 6;
}

.image-mosaic.whitsands-mosaic img.whitsands-wide-feature {
  grid-column: 1 / span 6;
  grid-row: span 3;
}

.image-mosaic.whitsands-mosaic::before,
.image-mosaic.whitsands-mosaic::after {
  content: "";
  min-height: 0;
  border: 1px solid rgba(16, 39, 77, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.6), rgba(143, 180, 184, 0.16)),
    repeating-linear-gradient(135deg, rgba(16, 39, 77, 0.08) 0 1px, transparent 1px 14px);
}

.image-mosaic.whitsands-mosaic::before {
  grid-column: 1 / span 1;
  grid-row: 5 / span 2;
}

.image-mosaic.whitsands-mosaic::after {
  grid-column: 5 / span 2;
  grid-row: 18 / span 1;
}

.women-mosaic .video-tile {
  grid-column: span 4;
  grid-row: span 3;
}

.women-mosaic img:nth-child(2) {
  grid-column: span 2;
  grid-row: span 3;
}

.women-mosaic img:nth-child(3),
.women-mosaic img:nth-child(5),
.women-mosaic img:nth-child(7),
.women-mosaic img:nth-child(8) {
  grid-column: span 2;
  grid-row: span 2;
}

.women-mosaic img:nth-child(4) {
  grid-column: span 3;
  grid-row: span 3;
}

.women-mosaic img:nth-child(6) {
  grid-column: span 3;
  grid-row: span 2;
}

.lookbook-card {
  position: relative;
  grid-column: span 6;
  grid-row: span 3;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(251, 247, 237, 0.72);
  background: var(--ink);
  color: var(--paper);
  cursor: pointer;
  box-shadow: var(--soft-shadow);
  font: inherit;
  text-align: left;
}

.lookbook-only-mosaic {
  grid-auto-rows: minmax(110px, 10vw);
  align-content: start;
}

.lookbook-only-mosaic .lookbook-card {
  grid-row: span 5;
}

.sea-siren-mosaic .lookbook-card {
  grid-row: span 4;
}

.lookbook-card img {
  filter: saturate(0.92) contrast(1.03);
  transition: transform 700ms var(--ease), filter 420ms ease;
}

.lookbook-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(7, 21, 45, 0.74)),
    linear-gradient(90deg, rgba(7, 21, 45, 0.28), transparent 52%);
}

.lookbook-card span {
  position: absolute;
  z-index: 2;
  left: clamp(20px, 4vw, 34px);
  right: clamp(20px, 4vw, 34px);
  bottom: clamp(20px, 4vw, 32px);
  display: grid;
  gap: 6px;
}

.lookbook-card small {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(251, 247, 237, 0.78);
}

.lookbook-card strong {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 0.92;
}

.lookbook-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.04) contrast(1.08);
}

.lookbook-card:focus-visible,
.lookbook-close:focus-visible,
.lookbook-arrow:focus-visible {
  outline: 2px solid var(--sand);
  outline-offset: 4px;
}

.video-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.video-tile video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 420ms ease;
}

.video-tile:hover video {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: linear-gradient(135deg, rgba(16, 39, 77, 0.2), rgba(83, 107, 90, 0.12));
  color: var(--paper);
  cursor: pointer;
  font: inherit;
  transition: background 220ms ease, opacity 220ms ease;
}

.video-play span {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border: 1px solid rgba(251, 247, 237, 0.74);
  border-radius: 50%;
  background: rgba(16, 39, 77, 0.66);
  box-shadow: 0 0 0 12px rgba(251, 247, 237, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: transform 360ms var(--ease);
}

.video-play:hover span {
  transform: scale(1.08);
}

.video-tile.is-playing .video-play {
  pointer-events: none;
  opacity: 0;
}

.lookbook-modal[hidden] {
  display: none;
}

.lookbook-modal {
  position: fixed;
  z-index: 90;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
}

.lookbook-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 21, 45, 0.72);
  backdrop-filter: blur(14px);
}

.lookbook-viewer {
  position: relative;
  z-index: 1;
  width: min(1120px, 94vw);
  max-height: 92vh;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px solid rgba(251, 247, 237, 0.26);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(239, 229, 212, 0.92)),
    var(--paper);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.34);
}

.lookbook-topbar {
  grid-column: 1 / -1;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 22px;
}

.lookbook-topbar .eyebrow {
  margin-bottom: 8px;
}

.lookbook-topbar h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.lookbook-close,
.lookbook-arrow {
  border: 0;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.lookbook-close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  transition: color 220ms ease, transform 260ms var(--ease);
}

.lookbook-close:hover {
  color: var(--clay);
  transform: rotate(90deg);
}

.lookbook-image {
  grid-column: 2;
  grid-row: 2;
  width: 100%;
  height: auto;
  max-height: min(66vh, 820px);
  object-fit: contain;
  background: rgba(255, 253, 247, 0.62);
  box-shadow: var(--soft-shadow);
}

.lookbook-arrow {
  grid-row: 2;
  align-self: center;
  width: 48px;
  height: 64px;
  display: grid;
  place-items: center;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid var(--line);
  font-weight: 800;
  transition: opacity 220ms ease, transform 260ms var(--ease), color 220ms ease;
}

.lookbook-prev {
  grid-column: 1;
}

.lookbook-next {
  grid-column: 3;
}

.lookbook-arrow:not(:disabled):hover {
  color: var(--clay);
  transform: translateY(-2px);
}

.lookbook-arrow:disabled {
  cursor: default;
  opacity: 0.28;
}

.lookbook-counter {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-align: center;
  text-transform: uppercase;
}

.placeholder-collection {
  background: linear-gradient(135deg, #fbf7ed, #eef3f1 54%, #f6efe4);
}

.placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  min-height: 220px;
  background:
    linear-gradient(rgba(16, 39, 77, 0.08), rgba(16, 39, 77, 0.08)),
    repeating-linear-gradient(135deg, rgba(143, 180, 184, 0.28), rgba(143, 180, 184, 0.28) 1px, transparent 1px, transparent 16px);
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 3vw, 3rem);
  text-align: center;
}

.placeholder.tall {
  grid-column: span 3;
  grid-row: span 3;
}

.placeholder.wide {
  grid-column: span 6;
  grid-row: span 2;
}

.placeholder:not(.tall):not(.wide) {
  grid-column: span 3;
  grid-row: span 2;
}

.about {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(340px, 1.22fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background:
    linear-gradient(180deg, #fbf7ed, rgba(239, 229, 212, 0.88)),
    var(--paper);
}

.about img {
  max-height: 700px;
  border: 1px solid rgba(251, 247, 237, 0.78);
  box-shadow: var(--shadow);
}

.contact-card {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
}

.contact-card .eyebrow {
  margin-bottom: 8px;
}

.contact-card a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  transition: transform 260ms var(--ease), color 220ms ease;
}

.contact-card a:hover {
  transform: translateX(8px);
}

.contact-card svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.credits {
  min-height: auto;
  background: linear-gradient(180deg, rgba(239, 229, 212, 0.88), var(--paper));
}

.credits h2 {
  max-width: 760px;
  margin-bottom: 44px;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 64px);
}

.credit-group {
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 253, 247, 0.54);
  backdrop-filter: blur(10px);
}

.credit-group h3,
.credit-group h4 {
  margin: 0;
  font-weight: 500;
}

.credit-group h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
}

.credit-group h4 {
  margin-top: 28px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}

.credit-group ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.credit-group li + li {
  margin-top: 6px;
}

footer {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(24px, 7vw, 128px);
  color: var(--ink-soft);
  font-size: 0.82rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

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

.hero-mosaic[data-reveal],
.image-mosaic[data-reveal] {
  opacity: 1;
  transform: none;
}

.hero-copy [data-reveal],
.collection-copy [data-reveal],
.about-copy [data-reveal] {
  transition-delay: var(--reveal-delay, 0ms);
}

@keyframes drift {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 22px 24px;
  }

  .section-panel {
    padding: 96px 22px;
  }

  .section-panel::after {
    display: none;
  }

  .hero,
  .collection,
  .about {
    grid-template-columns: 1fr;
  }

  .collection-copy {
    position: static;
  }

  .hero-rail {
    margin-top: 0;
  }

  .hero-mosaic,
  .image-mosaic,
  .placeholder-grid {
    grid-auto-rows: minmax(110px, 30vw);
  }

  .about img {
    max-height: none;
  }

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

@media (max-width: 560px) {
  body {
    font-size: 15px;
  }

  .section-panel {
    padding: 84px 22px 72px;
  }

  .hero {
    gap: 30px;
    min-height: 100svh;
  }

  .hero-copy {
    padding-top: 24px;
  }

  h1 {
    font-size: 3.18rem;
    line-height: 0.9;
  }

  h2 {
    font-size: 3.15rem;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.66rem;
  }

  .wave-mark {
    margin: 20px 0 14px;
    font-size: 1.85rem;
  }

  .text-link {
    margin-top: 16px;
  }

  .hero-mosaic,
  .image-mosaic,
  .placeholder-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-mosaic {
    margin-top: 8px;
  }

  .hero-mosaic img,
  .image-mosaic img,
  .video-tile,
  .lookbook-card,
  .placeholder {
    height: min(390px, 84vw);
    clip-path: none;
  }

  .lookbook-card strong {
    font-size: 2.7rem;
  }

  .lookbook-modal {
    padding: 12px;
  }

  .lookbook-viewer {
    width: 100%;
    max-height: 94vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto minmax(0, 1fr) auto auto;
    gap: 10px;
    padding: 14px;
  }

  .lookbook-topbar {
    grid-column: 1 / -1;
  }

  .lookbook-topbar h2 {
    font-size: 2.2rem;
  }

  .lookbook-image {
    grid-column: 1 / -1;
    grid-row: 2;
    max-height: 66vh;
  }

  .lookbook-arrow {
    grid-row: 3;
    width: 100%;
    height: 46px;
  }

  .lookbook-prev {
    grid-column: 1;
  }

  .lookbook-next {
    grid-column: 2;
  }

  .lookbook-counter {
    grid-row: 4;
  }

  .image-mosaic.whitsands-mosaic::before,
  .image-mosaic.whitsands-mosaic::after {
    display: none;
  }

  .placeholder {
    min-height: 260px;
  }

  .sidebar {
    padding: 78px 38px 34px;
  }

  .menu-close {
    left: 38px;
  }

  .sidebar nav {
    font-size: 2.15rem;
  }

  .hero-rail span {
    width: 100%;
  }

  .hero-rail {
    display: none;
  }

  footer {
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
