@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
  --ink: #181818;
  --white: #FFFFFF;
  --off-white: #F8F8F4;
  --cream: #F5EBDD;
  --rouge: #D1CAB8;
  --rouge-deep: #D1CAB8;
  --gold: #B8894F;
  --taupe: #D1CAB8;
  --champagne: #B39C70;
  --grey: rgba(24,24,24,0.55);
  --line: rgba(24,24,24,0.12);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.15;
}

em, .italic { font-style: italic; }

a { color: inherit; }

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

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--champagne);
  font-weight: 500;
}

/* ── Header ─────────────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 34px 3vw;
  background: transparent;
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
header.scrolled {
  padding: 20px 3vw;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--line);
}
.logo-mark {
  display: block; text-decoration: none;
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.logo-img { height: 51px; width: auto; transition: height 0.4s var(--ease); }
header.scrolled .logo-img { height: 40px; }
.logo-img-light { display: none; }
.logo-img-dark { display: block; }
body.has-hero header:not(.scrolled) .logo-img-dark { display: none; }
body.has-hero header:not(.scrolled) .logo-img-light { display: block; }

nav { display: flex; align-items: center; gap: 2.6vw; flex: 1; }
nav.nav-left { justify-content: flex-start; }
nav.nav-right { justify-content: flex-end; }
nav a {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; color: inherit; position: relative; padding-bottom: 4px;
}
nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: currentColor; transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
nav a:hover::after, nav a.active::after { transform: scaleX(1); transform-origin: left; }

.has-dropdown { position: static; }
.dropdown-panel {
  position: fixed !important; top: 0 !important; left: 0 !important; right: 0 !important;
  background: var(--off-white) !important;
  padding: 90px 5vw 90px;
  display: flex !important; flex-wrap: nowrap; gap: 12px; justify-content: flex-start; align-items: flex-end;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(24,24,24,0.12);
  z-index: 9999;
}
.has-dropdown:hover .dropdown-panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateY(0);
}
.dropdown-panel a {
  flex: 0 0 312px; display: flex !important; flex-direction: column; align-items: flex-start;
  gap: 0; padding: 0; text-decoration: none; overflow: hidden;
}
.dropdown-panel a::after { display: none !important; }
.dropdown-panel a img {
  width: 312px !important; height: 421px !important; object-fit: cover; object-position: center 15%;
  display: block !important;
  transition: transform 0.7s var(--ease);
}
.dropdown-panel a:hover img { transform: scale(1.04); }
.dropdown-panel a span {
  display: block !important; margin-top: 12px;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink) !important; transition: color 0.2s;
}
.dropdown-panel a:hover span { color: var(--champagne) !important; }
@media (max-width: 900px) { .dropdown-panel { display: none !important; } }

.header-right { flex: 1; display: flex; justify-content: flex-end; align-items: center; }
.btn-book {
  border: 1px solid var(--ink); padding: 10px 22px;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.btn-book:hover { background: var(--taupe); color: var(--ink); border-color: var(--taupe); }
body.has-hero header:not(.scrolled) .btn-book { color: #fff; border-color: rgba(255,255,255,0.7); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-toggle span { width: 22px; height: 1px; background: var(--ink); }

/* Dark hero header state */
body.has-hero header:not(.scrolled) { color: #fff; }
body.has-hero header:not(.scrolled) nav a::after { background: #fff; }

/* ── Mobile nav ─────────────────────────────────────────── */
.mobile-nav {
  position: fixed; inset: 0; z-index: 99; background: var(--white);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.8rem;
  transform: translateY(-100%); transition: transform 0.5s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; text-decoration: none; color: var(--ink);
}

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero img, .hero video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.32));
}
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; transform: translateY(34.65vh); }
.hero-content .eyebrow { color: rgba(255,255,255,0.85); }
.hero-content h1 {
  margin-top: 1.2rem; font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 300; letter-spacing: 0.01em;
}
.hero-content h1 em { font-style: italic; }
.hero-bottom-eyebrow {
  position: absolute; left: 0; right: 0; bottom: 2.6rem; z-index: 2;
  text-align: center; font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.hero-scroll {
  position: absolute; bottom: 4.32rem; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 48px; background: rgba(255,255,255,0.5);
}
.hero-scroll::after {
  content: ''; position: absolute; top: 0; left: -2px; width: 5px; height: 5px;
  border-radius: 50%; background: #fff;
  animation: scrollDot 2.2s ease-in-out infinite;
}
@keyframes scrollDot { 0% { top: 0; opacity: 1; } 90% { opacity: 0; } 100% { top: 100%; opacity: 0; } }

/* ── Sections ───────────────────────────────────────────── */
section { padding: 6vw 5vw; }
.section-narrow { max-width: 760px; margin: 0 auto; text-align: center; }
.section-wide { max-width: 1400px; margin: 0 auto; }

.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-head h2 { margin-top: 1rem; font-size: clamp(2rem, 3.4vw, 2.8rem); }

p { line-height: 1.85; color: rgba(24,24,24,0.7); font-size: 1rem; letter-spacing: 0.01em; }

/* ── Elegant intro block (headline + subline + copy + text-link) ── */
.intro-block { max-width: 1020px; margin: 0 auto; text-align: center; }
.intro-block h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem); font-weight: 400;
}
.intro-block h2 em { font-style: italic; }
.intro-block .sub-line {
  display: block; margin-top: 0.7rem;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem;
  color: var(--champagne); letter-spacing: 0.01em;
}
.intro-block p {
  margin-top: 1.8rem; font-size: 0.98rem; line-height: 1.9;
  color: rgba(24,24,24,0.58);
}
.text-link {
  display: inline-block; margin-top: 2.2rem;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  text-decoration: none; color: var(--ink); padding-bottom: 0.6rem;
  position: relative;
}
.text-link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: var(--rouge); transform: scaleX(1); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.text-link:hover::after { transform: scaleX(0.6); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block; font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none; padding: 1rem 2.2rem; border: 1px solid currentColor;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}
.btn-dark { color: var(--ink); border-color: var(--ink); }
.btn-dark:hover { background: var(--taupe); color: var(--ink); border-color: var(--taupe); }
.btn-light { color: var(--ink); border-color: var(--ink); }
.btn-light:hover { background: var(--taupe); color: var(--ink); border-color: var(--taupe); }

/* ── Split section (image + text) ─────────────────────────── */
.split {
  display: grid; grid-template-columns: 1.1fr 1fr; align-items: center; gap: 5vw;
  max-width: 1500px; margin: 0 auto;
}
.split.reverse { grid-template-columns: 1fr 1.1fr; }
.split.reverse img { order: 2; }
.split img { width: 100%; height: auto; }
.split .copy .eyebrow { display: block; margin-bottom: 1rem; }
.split .copy h2 { margin-top: 0.4rem; font-size: clamp(1.9rem, 3vw, 2.5rem); }
.split .copy p { margin-top: 1.4rem; }
@media (max-width: 860px) {
  .split, .split.reverse { grid-template-columns: 1fr; }
  .split.reverse img { order: 0; }
}

/* ── Signature 3-card portfolio (hover expand) ─────────────── */
.signature-portfolio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
  max-width: 1900px; margin: 0 auto;
}
.signature-card { position: relative; aspect-ratio: 3/4; overflow: visible; background: var(--ink); text-decoration: none; display: block; }
.signature-card > img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.4s var(--ease), box-shadow 1.4s var(--ease);
}
.signature-card:hover > img { transform: scale(1.28); box-shadow: 0 30px 80px rgba(24,24,24,0.4); z-index: 5; position: relative; }
.signature-card-label {
  position: absolute; left: 0; right: 0; bottom: 1.6rem; z-index: 6;
  text-align: center; pointer-events: none;
  font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; color: #fff;
}
.signature-card > img.signature-card-mark {
  position: absolute; left: 0; right: 0; bottom: 3.25rem; z-index: 6;
  margin: 0 auto; height: 25px !important; width: auto !important; display: block;
  pointer-events: none;
  filter: brightness(0) invert(1) drop-shadow(0 0 0.4px #fff) drop-shadow(0 0 0.4px #fff);
}
.signature-card::after {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(to top, rgba(24,24,24,0.5), transparent 45%);
}
@media (max-width: 860px) {
  .signature-portfolio { grid-template-columns: 1fr; }
}

/* ── Gallery grid (masonry) ─────────────────────────────────── */
.gallery-grid {
  column-count: 3; column-gap: 0.6vw; max-width: 1800px; margin: 0 auto;
}
.gallery-grid figure {
  position: relative; margin: 0 0 0.6vw; break-inside: avoid; overflow: visible;
}
.gallery-grid img {
  width: 100%; height: auto; display: block;
  transition: transform 1.4s var(--ease), box-shadow 1.4s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.35); box-shadow: 0 30px 80px rgba(24,24,24,0.4); position: relative; z-index: 5; }
.gallery-grid figcaption { display: none; }

/* ── Page hero (interior pages) ────────────────────────────── */
.page-hero { text-align: center; padding-top: 12rem; padding-bottom: 2rem; }
.page-hero h1 { margin-top: 1rem; font-size: clamp(2.2rem, 4.4vw, 3.4rem); }
.page-hero .dash-line { display: block; width: 48px; height: 1px; margin: 1.6rem auto 0; background: rgba(24,24,24,0.35); }
.dash-line { display: block; width: 48px; height: 1px; margin: 0 auto; background: rgba(24,24,24,0.35); }
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 540px) { .gallery-grid { column-count: 1; } }

/* ── CTA banner ─────────────────────────────────────────── */
.cta-banner {
  text-align: center; background: #F3F2E6; color: var(--ink); padding: 3.5vw 5vw;
}
.cta-monogram { height: 64px; width: auto; margin: 0 auto 1.6rem; }
.cta-banner .eyebrow { color: rgba(24,24,24,0.6); }
.cta-banner h2 { margin-top: 1rem; font-size: clamp(2rem, 3.4vw, 2.8rem); }
.cta-banner p { color: rgba(24,24,24,0.65); max-width: 480px; margin: 1.4rem auto 2rem; }
.cta-social {
  display: flex; justify-content: center;
  margin: 1.8rem auto 0; width: fit-content;
  color: rgba(24,24,24,0.75);
  transition: color 0.3s var(--ease);
}
.cta-social svg { width: 24px !important; height: 24px !important; display: block; }
.cta-social:hover { color: var(--ink); }

/* ── Footer ─────────────────────────────────────────────── */
footer {
  padding: 1.8vw 5vw; text-align: center; background: #F8F8F4;
}
.f-monogram { height: 56px; width: auto; margin: 0 auto 1.2rem; }
.f-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 1.4rem; color: #000; }
.f-links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.4rem; flex-wrap: wrap; }
.f-links a { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: #000; }
footer p { font-size: 0.72rem; letter-spacing: 0.05em; color: #000; }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── Responsive nav ─────────────────────────────────────── */
@media (max-width: 900px) {
  nav { display: none; }
  .header-right .btn-book { display: none; }
  .nav-toggle { display: flex; }
}

/* ── Loader ─────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 999; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; letter-spacing: 0.08em;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#loader.hidden { opacity: 0; visibility: hidden; }

/* ── Process steps ──────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; counter-reset: step; max-width: 1400px; margin: 0 auto; }
.step { position: relative; padding: 0 2.6vw; counter-increment: step; }
.step + .step { border-left: 1px solid var(--line); }
.step::before {
  content: counter(step, upper-roman);
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 400;
  color: var(--champagne); display: block; margin-bottom: 1.6rem; line-height: 1;
}
.step h3 { font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 0.02em; font-weight: 500; }
.step p { font-size: 0.92rem; line-height: 1.75; color: rgba(24,24,24,0.6); }
.steps-head { text-align: center; max-width: 640px; margin: 0 auto 4.5rem; }
.steps-head .eyebrow { display: block; margin-bottom: 1rem; }
.steps-head h2 { font-size: clamp(1.8rem, 2.6vw, 2.3rem); }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; gap: 2rem 6vw; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } .step + .step { border-left: none; } }

/* ── Contact / Booking ──────────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5vw;
  max-width: 1700px; margin: 0 auto; padding: 0 5vw;
}
.contact-info { position: relative; padding-right: 4vw; }
.contact-info::after {
  content: ''; position: absolute; top: 0.4rem; right: 0; bottom: 0.4rem; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--line) 15%, var(--line) 85%, transparent);
}
.contact-block { margin-bottom: 3.2rem; }
.contact-block:last-child { margin-bottom: 0; }
.contact-info .eyebrow { display: block; margin-bottom: 0.9rem; font-size: 0.68rem; }
.contact-info address, .contact-info p {
  line-height: 1.85; margin-bottom: 0; color: var(--ink);
  font-family: 'Cormorant Garamond', serif; font-size: 1.22rem; font-style: normal;
}
.contact-info a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr !important; gap: 3.5rem; padding: 0 8vw; }
  .contact-info { padding-right: 0; }
  .contact-info::after { display: none; }
  .booking-wrap { height: 1050px !important; }
  .booking-wrap iframe { height: 1110px !important; }
}

.booking-wrap {
  max-width: 980px; margin: 0 auto;
  border: 1px solid var(--line); background: #fff; padding: 1px;
  box-shadow: 0 30px 70px rgba(24,24,24,0.07);
  overflow: hidden;
}
.booking-caption {
  text-align: center; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(24,24,24,0.5); margin-bottom: 1.6rem;
}
.booking-note { text-align: center; max-width: 560px; width: 100%; margin: 2rem auto 0; font-size: 0.88rem; color: rgba(24,24,24,0.6); line-height: 1.7; }

/* ── Collection filmstrip ───────────────────────────────── */
.collection-label-bar {
  text-align: center; padding: 14px 0; background: var(--off-white);
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(24,24,24,0.6);
  display: flex; justify-content: center; align-items: center; line-height: 1;
}
.filmstrip-wrap { position: relative; }
.filmstrip {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  gap: 6px; padding: 6px; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; background: var(--off-white);
}
.filmstrip::-webkit-scrollbar { display: none; }
.filmstrip figure {
  flex: 0 0 auto; scroll-snap-align: start;
  height: 77vh; margin: 0; overflow: hidden;
  background: var(--off-white); position: relative;
}
.filmstrip-lg figure { height: 84.7vh; }
.filmstrip img { width: auto; height: 100%; display: block; }
.filmstrip-label {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1.6rem 0.8rem 1.1rem; text-align: center;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: #fff; pointer-events: none;
  background: linear-gradient(to top, rgba(24,24,24,0.5), transparent 80%);
}
@media (max-width: 900px) {
  .filmstrip figure { height: 65vh; }
}
@media (max-width: 540px) {
  .filmstrip figure { height: 52vh; }
}

/* ── Bespoke feature (hover front/back) ────────────────────── */
.bespoke-feature {
  display: grid; grid-template-columns: 1.38fr 1fr; gap: 5vw; align-items: center;
  max-width: 1400px; margin: 0 auto; padding: 0 5vw;
}
.bespoke-feature .bespoke-image {
  position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--off-white);
}
.bespoke-feature .bespoke-image img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
  transition: opacity 0.9s var(--ease), transform 6s linear;
}
.bespoke-feature .bespoke-image img.bespoke-back { opacity: 0; }
.bespoke-feature .bespoke-image:hover img.bespoke-back { opacity: 1; }
.bespoke-feature .bespoke-image:hover img.bespoke-front { opacity: 0; }
.bespoke-feature .bespoke-image:hover img { transform: scale(1.035); }
.bespoke-feature .bespoke-copy { position: relative; padding-top: 1.6rem; }
.bespoke-feature .bespoke-copy::before {
  content: ''; position: absolute; top: 0; left: 0; width: 64px; height: 1px;
  background: var(--line);
}
.bespoke-feature .bespoke-copy .eyebrow { display: block; margin: 1.6rem 0 1.2rem; }
.bespoke-feature .bespoke-copy p { line-height: 1.9; color: rgba(24,24,24,0.7); font-size: 1.02rem; }
@media (max-width: 860px) {
  .bespoke-feature { grid-template-columns: 1fr; }
}

/* ── Bespoke portfolio (3-col hover front/back) ─────────────── */
.bespoke-portfolio {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 23px;
  max-width: 1950px; margin: 0 auto; padding: 0 5vw;
}
.look-card { position: relative; aspect-ratio: 2/3; overflow: hidden; background: var(--off-white); }
.look-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block;
  transition: opacity 0.9s var(--ease), transform 6s linear;
}
.look-card img.look-back { opacity: 0; }
.look-card:hover img.look-back { opacity: 1; }
.look-card:hover img.look-front { opacity: 0; }
.look-card:hover img { transform: scale(1.035); }
.look-card-label {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 1.6rem 0.8rem 1.1rem; text-align: center; pointer-events: none;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #fff;
  background: linear-gradient(to top, rgba(24,24,24,0.5), transparent 80%);
}
@media (max-width: 900px) { .bespoke-portfolio { grid-template-columns: repeat(2, 1fr) !important; padding: 0 8vw; } }
@media (max-width: 480px) { .bespoke-portfolio { grid-template-columns: 1fr !important; } }

/* ── Instagram feed ─────────────────────────────────────── */
.insta-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px;
  max-width: 1600px; margin: 0 auto; padding: 0 3vw;
}
.insta-grid a { position: relative; display: block; aspect-ratio: 3/4; overflow: hidden; background: var(--off-white); }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; transition: transform 0.6s var(--ease); }
.insta-grid a::after { content: ''; position: absolute; inset: 0; background: rgba(24,24,24,0); transition: background 0.4s var(--ease); }
.insta-grid a::before {
  content: ''; position: absolute; top: 50%; left: 50%; width: 22px; height: 22px; margin: -11px 0 0 -11px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.6'%3E%3Crect x='2.5' y='2.5' width='19' height='19' rx='5'/%3E%3Ccircle cx='12' cy='12' r='4.2'/%3E%3Ccircle cx='17.2' cy='6.8' r='1.1' fill='white' stroke='none'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0; transition: opacity 0.4s var(--ease); z-index: 2;
}
.insta-grid a:hover::after { background: rgba(24,24,24,0.35); }
.insta-grid a:hover::before { opacity: 1; }
.insta-grid a:hover img { transform: scale(1.06); }
.insta-follow { text-align: center; margin-top: 2.6rem; }
.insta-follow a {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink);
  text-decoration: none; border-bottom: 1px solid rgba(24,24,24,0.3); padding-bottom: 4px;
  transition: border-color 0.3s var(--ease);
}
.insta-follow a:hover { border-color: var(--ink); }
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 480px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Poetic quote ───────────────────────────────────────── */
.poetic-quote { padding: 2vw 6vw; background: var(--off-white); display: flex; justify-content: center; }
.poetic-quote .pq-inner { position: relative; max-width: 780px; padding-left: 2.4rem; }
.poetic-quote .pq-inner::before {
  content: ''; position: absolute; top: 0.2rem; bottom: 0.2rem; left: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--champagne) 15%, var(--champagne) 85%, transparent);
}
.poetic-quote .pq-line {
  display: block; font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem); line-height: 1.55;
  color: rgba(24,24,24,0.75); letter-spacing: 0.01em; margin: 0;
}
.poetic-quote .pq-final {
  display: block; margin-top: 1.8rem; font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne);
}

/* ── Collection feature (video/quote) + Lookbook grid (cloned from Étoile page) ── */
.no-filter { filter: none !important; }
.cool-bw { filter: grayscale(100%) contrast(1.08) brightness(1.02) !important; }
.collection-label-bar.feature-label { padding: 4rem; padding-top: 3.4rem; }
.collection-feature {
  background: var(--off-white);
  display: flex; justify-content: center;
}
.collection-feature img {
  width: 100%; height: 85vh; object-fit: cover; object-position: center 35%; display: block;
}
.collection-feature:has(video) {
  align-items: center; padding: 4rem; position: relative;
}
.collection-feature video {
  width: auto; max-width: 100%; height: 78.6vh; object-fit: contain; display: block;
}
.feature-quote {
  position: absolute; top: 50%; right: 5vw; transform: translateY(-50%);
  width: 360px; padding-left: 3rem;
}
.feature-quote::before {
  content: ''; position: absolute; top: 0.3rem; bottom: 0.3rem; left: 0; width: 1px;
  background: linear-gradient(to bottom, transparent, var(--champagne) 20%, var(--champagne) 80%, transparent);
}
.feature-quote p {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: clamp(1.3rem, 1.9vw, 1.65rem); line-height: 1.55;
  color: rgba(24,24,24,0.82); letter-spacing: 0.01em; margin: 0;
}
.feature-quote .feature-quote-line2 {
  display: block; margin-top: 1.8rem; font-family: 'Inter', sans-serif; font-style: normal;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--champagne);
}
@media (max-width: 900px) {
  .collection-feature:has(video) { flex-direction: column; padding: 2.2rem; gap: 2.2rem; }
  .feature-quote {
    position: static; transform: none; width: auto; max-width: 480px;
    padding-left: 1.4rem; text-align: left;
  }
  .collection-feature video { height: auto; width: 100%; }
}
.lookbook-collage { padding: 6rem 6vw 7rem; background: var(--off-white); }
.lookbook-collage .section-head { margin-bottom: 3.2rem; }
.look-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1800px; margin: 0 auto;
}
.filmstrip-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 44px; height: 44px; border-radius: 50%;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.3s var(--ease);
  opacity: 0.85;
}
.filmstrip-arrow:hover { opacity: 1; }
.filmstrip-arrow svg { width: 26px; height: 26px; }
.filmstrip-arrow.left { left: 1.5vw; }
.filmstrip-arrow.right { right: 1.5vw; }
.filmstrip-arrow.left svg { transform: scaleX(-1); }
@media (max-width: 900px) {
  .look-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .look-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .filmstrip-arrow { display: none; }
}
