/* ===========================
   TATI STUDIO — Minimal Luxury
   =========================== */

:root {
  --bg: #fdfcfa;          /* off-white */
  --ink: #1a1a1a;         /* soft black */
  --ink-soft: #4a4a4a;
  --ink-mute: #8a8a8a;
  --line: #ebe7e0;        /* hairline */
  --accent: #b29469;      /* champagne/gold */
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.02em;
}

img, video { display: block; max-width: 100%; height: auto; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity .25s ease, color .25s ease;
}
a:hover { opacity: .65; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink);
}

/* ===========================
   HEADER
   =========================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 36px;
  background: #111;
  transition: background .4s ease, padding .35s ease, box-shadow .35s ease;
}
.site-header.scrolled {
  background: rgba(253, 252, 250, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 22px 36px;
  border-bottom: 1px solid var(--line);
}
.site-header.solid {
  background: #111;
  padding: 32px 36px;
}
.site-header.solid.scrolled {
  background: rgba(253, 252, 250, 0.97);
  padding: 22px 36px;
  border-bottom: 1px solid var(--line);
}

.menu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 36px;
}
.menu-toggle span {
  display: block;
  height: 1px;
  background: #fff;
  transition: transform .35s ease, opacity .25s ease, background .4s ease;
}
.menu-toggle span:nth-child(1) { width: 22px; }
.menu-toggle span:nth-child(2) { width: 16px; }
.menu-toggle span:nth-child(3) { width: 22px; }

.site-header.scrolled .menu-toggle span { background: var(--ink); }

.brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
}
.brand-logo {
  height: 80px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter .4s ease, height .35s ease;
}
.site-header.scrolled .brand-logo {
  height: 60px;
  filter: none;
}

.cta-mini {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity .25s ease, color .4s ease, border-color .25s ease;
}
.cta-mini:hover { border-bottom-color: rgba(255,255,255,0.7); opacity: 1; }
.site-header.scrolled .cta-mini { color: var(--ink); }
.site-header.scrolled .cta-mini:hover { border-bottom-color: var(--ink); }

/* ===========================
   FULLSCREEN MENU OVERLAY
   =========================== */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s ease;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay .close {
  position: absolute;
  top: 28px;
  right: 36px;
  background: none;
  border: 0;
  font-size: 28px;
  font-weight: 200;
  cursor: pointer;
  color: var(--ink);
}
.nav-overlay nav ul {
  list-style: none;
  text-align: center;
}
.nav-overlay nav li {
  margin: 18px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.nav-overlay.open nav li { opacity: 1; transform: translateY(0); }
.nav-overlay nav li:nth-child(1) { transition-delay: .15s; }
.nav-overlay nav li:nth-child(2) { transition-delay: .22s; }
.nav-overlay nav li:nth-child(3) { transition-delay: .29s; }
.nav-overlay nav li:nth-child(4) { transition-delay: .36s; }
.nav-overlay nav li:nth-child(5) { transition-delay: .43s; }
.nav-overlay nav li:nth-child(6) { transition-delay: .50s; }

.nav-overlay nav a {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--ink);
}
.nav-overlay .nav-foot {
  position: absolute;
  bottom: 36px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.lang-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--ink-mute);
}
.lang-btn {
  background: none;
  border: none;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  padding: 4px 0;
  opacity: 0.35;
  transition: opacity .2s;
}
.lang-btn.active { opacity: 1; border-bottom: 1px solid var(--ink); }
.lang-btn:hover { opacity: 0.7; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #111;
}
.hero video,
.hero .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero-img {
  background:
    linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,.45)),
    url('https://images.unsplash.com/photo-1606800052052-a08af7148866?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,0) 70%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}
.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  z-index: 2;
  padding: 0 24px;
}
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 24px;
  opacity: .85;
}
.hero h1 {
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}
.hero p.tag {
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: .8;
  margin-bottom: 48px;
}
.hero-cta-minimal {
  position: absolute;
  bottom: 40px;
  left: 48px;
  z-index: 2;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 3px;
  transition: color .3s, border-color .3s;
}
.hero-cta-minimal:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.9);
  opacity: 1;
}
.hero-brand-name {
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 40px;
  line-height: 1;
}
.hero-brand-name span {
  color: var(--accent);
  font-style: italic;
  letter-spacing: 0;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #fff;
  opacity: .7;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: #fff;
  margin: 12px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.4); opacity: .4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background .3s ease, color .3s ease;
}
.btn:hover { background: var(--ink); color: #fff; opacity: 1; }
.btn-light {
  border-color: #fff;
  color: #fff;
}
.btn-light:hover { background: #fff; color: var(--ink); }

/* ===========================
   SECTIONS
   =========================== */
section {
  padding: 120px 36px;
}
.section-title {
  text-align: center;
  margin-bottom: 80px;
}
.section-title .eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title h2 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
}

/* INTRO / WORLD */
.intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.intro p {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.7;
  font-weight: 300;
  font-style: italic;
  color: var(--ink-soft);
}

/* COLLECTION GRID */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1600px;
  margin: 0 auto;
}
.collection-grid.featured {
  grid-template-columns: repeat(2, 1fr);
}
.dress-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #f3efe8;
  cursor: pointer;
}
.dress-card .dress-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 1.2s ease;
}
.dress-card:hover .dress-img { transform: scale(1.04); }
.dress-card .dress-meta {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  color: #fff;
  z-index: 2;
}
.dress-card .dress-meta::before {
  content: '';
  position: absolute;
  inset: -120px -24px -24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.55));
  z-index: -1;
}
.dress-card .dress-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  font-weight: 300;
}
.dress-card .dress-cat {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: .85;
  margin-top: 4px;
}

/* SPLIT FEATURE */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.split-img {
  aspect-ratio: 4 / 5;
  background: #ece6dc center/cover no-repeat;
}
.split-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px;
  background: var(--bg);
}
.split-text .eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.split-text h3 {
  font-size: 40px;
  margin-bottom: 24px;
  line-height: 1.2;
}
.split-text p {
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 460px;
}

/* REAL BRIDES MASONRY */
.brides-grid {
  columns: 3;
  column-gap: 6px;
  max-width: 1500px;
  margin: 0 auto;
}
.brides-grid .bride {
  break-inside: avoid;
  margin-bottom: 6px;
  position: relative;
  overflow: hidden;
}
.brides-grid .bride .bride-img {
  width: 100%;
  display: block;
  background: #ece6dc;
  background-size: cover;
  background-position: center;
}
.brides-grid .bride .bride-img.r1 { aspect-ratio: 3/4; }
.brides-grid .bride .bride-img.r2 { aspect-ratio: 2/3; }
.brides-grid .bride .bride-img.r3 { aspect-ratio: 4/5; }
.brides-grid .bride .bride-img.r4 { aspect-ratio: 1/1; }

/* APPOINTMENT BLOCK */
.appointment {
  background: #f6f2ec;
  text-align: center;
  padding: 140px 36px;
}
.appointment h2 {
  font-size: clamp(34px, 4.5vw, 60px);
  margin-bottom: 24px;
}
.appointment p {
  max-width: 540px;
  margin: 0 auto 40px;
  color: var(--ink-soft);
}

/* INSTAGRAM FEED */
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
}
.instagram-feed .ig-item {
  aspect-ratio: 1/1;
  background: #ece6dc center/cover no-repeat;
  position: relative;
}
.instagram-feed .ig-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.15);
  opacity: 0;
  transition: opacity .3s ease;
}
.instagram-feed .ig-item:hover::after { opacity: 1; }

/* FORMS */
.form {
  max-width: 580px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
}
.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form input,
.form textarea,
.form select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease;
}
.form input:focus,
.form textarea:focus,
.form select:focus { border-bottom-color: var(--ink); }
.form label {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.form textarea { min-height: 120px; resize: vertical; }
.form .submit-row { margin-top: 16px; text-align: center; }

/* FOOTER */
footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 80px 36px 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto 60px;
}
.footer-logo {
  height: 84px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.footer-brand p {
  color: var(--ink-mute);
  font-size: 12px;
  max-width: 320px;
  line-height: 1.8;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--ink);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; font-size: 13px; color: var(--ink-soft); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.footer-bottom .socials a { margin-left: 18px; }

/* ===========================
   PAGE HERO (interior pages)
   =========================== */
.page-hero {
  height: 60vh;
  min-height: 420px;
  position: relative;
  background: #f3efe8 center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.3);
}
.page-hero .page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 24px;
}
.page-hero .eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: .9;
}
.page-hero h1 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.05em;
}

/* DRESS DETAIL */
.dress-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  min-height: 90vh;
}
.dress-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  background: #f3efe8;
}
.dress-gallery .gallery-img {
  aspect-ratio: 3/4;
  background: #ece6dc center/cover no-repeat;
}
.dress-info {
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dress-info .eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.dress-info h1 {
  font-size: 56px;
  font-weight: 300;
  margin-bottom: 24px;
}
.dress-info p { color: var(--ink-soft); margin-bottom: 16px; max-width: 460px; }
.dress-info .meta-list {
  list-style: none;
  margin: 32px 0 40px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.dress-info .meta-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}
.dress-info .meta-list li span:first-child {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: var(--ink-mute);
}

/* ===========================
   RESPONSIVE
   =========================== */

/* Large / TV (≥1920px) */
@media (min-width: 1920px) {
  section { padding: 140px 60px; }
  .hero-cta-minimal { bottom: 60px; left: 72px; font-size: 11px; }
  .coll-hero { height: 80vh; }
  .footer-logo { height: 100px; }
  .footer-top { gap: 80px; }
}

/* Wide desktop (1400–1919px) */
@media (min-width: 1400px) and (max-width: 1919px) {
  section { padding: 120px 48px; }
}

/* Tablet landscape (768–1024px) */
@media (max-width: 1024px) {
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-grid.featured { grid-template-columns: repeat(2, 1fr); }
  .brides-grid { columns: 2; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .split-text { padding: 60px 36px; }
  .dress-detail { grid-template-columns: 1fr; }
  .dress-info { padding: 60px 36px; }
  .instagram-feed { grid-template-columns: repeat(3, 1fr); }
  section { padding: 90px 28px; }
  .section-title { margin-bottom: 60px; }
  .hero-cta-minimal { left: 36px; bottom: 36px; }
  /* Real brides grid */
  .rb-grid { grid-template-columns: repeat(2, 1fr); }
  /* Dress slider */
  .dress-slider { max-width: 90vw; }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  body { font-size: 14px; }

  /* Header */
  .site-header { padding: 14px 18px; }
  .site-header.scrolled { padding: 10px 18px; }
  .brand-logo { height: 28px; }
  .cta-mini { display: none; }
  .menu-toggle { padding: 10px; min-width: 44px; min-height: 44px; }

  /* Hero */
  .hero { height: 100dvh; min-height: 560px; }
  .hero video { object-position: center center; }
  .hero-cta-minimal { left: 22px; bottom: 32px; font-size: 9px; letter-spacing: 0.3em; }

  /* Page hero (interior) */
  .coll-hero { height: 55vh; min-height: 320px; }
  .coll-hero-caption h1 { font-size: 36px; }
  .coll-hero-caption .eyebrow { font-size: 9px; }

  /* Sections */
  section { padding: 70px 18px; }
  .section-title { margin-bottom: 44px; }
  .section-title h2 { font-size: 28px; }
  .section-title .eyebrow { font-size: 9px; letter-spacing: 0.4em; margin-bottom: 14px; }
  .intro p { font-size: 18px; line-height: 1.6; }
  .intro h2 { font-size: clamp(22px, 6vw, 32px) !important; }

  /* Buttons */
  .btn { padding: 16px 28px; font-size: 11px; min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }

  /* Collection grid */
  .coll-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 4px; }
  .coll-grid .coll-card:last-child:nth-child(3n+1) { grid-column: auto; }

  /* Real Brides */
  .rb-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; }
  .rb-title-section { padding: 120px 22px 40px; }
  .rb-title-section h1 { font-size: 40px; }
  .brides-grid { columns: 1; column-gap: 0; }

  /* Dress page */
  .dress-title-section { padding: 120px 22px 30px; }
  .dress-title-section h1 { font-size: clamp(34px, 10vw, 52px); }
  .dress-slider { max-width: 100vw; gap: 12px; padding: 0 4px; }
  .ds-track img { max-height: 70vh; }
  .ds-arrow { font-size: 18px; }
  .ds-counter { font-size: 11px; margin-top: 14px; }
  .also-love { padding: 60px 18px; }

  /* Split */
  .split-img { aspect-ratio: 4 / 5; }
  .split-text { padding: 50px 22px; }
  .split-text h3 { font-size: 30px; }

  /* Appointment block */
  .appointment { padding: 80px 22px; }
  .appointment h2 { font-size: 32px; }

  /* Forms */
  .form { gap: 16px; }
  .form .row { grid-template-columns: 1fr; gap: 16px; }
  .form input,
  .form textarea,
  .form select { font-size: 16px; padding: 14px 0; }
  .form input[type="date"] { min-height: 48px; }
  .form textarea { min-height: 100px; }

  /* Nav overlay */
  .nav-overlay nav li { margin: 14px 0; }
  .nav-overlay nav a { font-size: 26px; letter-spacing: 0.04em; }
  .nav-overlay .close {
    top: 18px; right: 18px;
    width: 44px; height: 44px;
    font-size: 28px;
    display: flex; align-items: center; justify-content: center;
  }
  .nav-overlay .nav-foot { bottom: 28px; font-size: 10px; letter-spacing: 0.25em; }

  /* About */
  section [style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  section [style*="grid-template-columns: 80px 1fr"] {
    grid-template-columns: 60px 1fr !important;
    gap: 16px !important;
  }

  /* Footer */
  footer { padding: 60px 22px 30px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-logo { height: 60px; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; font-size: 10px; }
  .footer-bottom .socials a { margin: 0 10px; }
}

/* Small phones (≤380px) */
@media (max-width: 380px) {
  .coll-hero-caption h1 { font-size: 28px; }
  .section-title h2 { font-size: 24px; }
  .intro p { font-size: 16px; }
  .brand-logo { height: 24px; }
  .split-text h3 { font-size: 26px; }
  .appointment h2 { font-size: 28px; }
  .about-hero { height: 70vh; }
  .about-hero-caption { left: 22px; bottom: 36px; }
  .about-opener { padding: 70px 18px; }
  .about-opener p { font-size: 20px; }
  .about-pullquote { padding: 70px 18px; }
  .about-pullquote blockquote { font-size: 18px; }
  .br-desk { display: none; }
  .rb-grid { grid-template-columns: 1fr; }
  .footer-logo { height: 50px; }
}

/* ===========================
   ABOUT PAGE
   =========================== */
.bw { filter: grayscale(100%); }

.about-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #111;
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}
.about-hero-caption {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 2;
}
.about-hero-caption .eyebrow {
  color: rgba(255,255,255,.75);
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
}
.about-hero-caption h1 {
  color: #fff;
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.15;
}

.about-opener {
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 40px;
  text-align: center;
}
.about-opener p {
  font-family: var(--serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
}

.split-img.square-crop {
  aspect-ratio: 1 / 1;
  background-position: center 0% !important;
}

.about-pullquote {
  padding: 120px 60px;
  text-align: center;
  background: #f6f2ec;
}
.about-pullquote blockquote {
  max-width: 820px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--ink);
}
.about-pullquote blockquote::before {
  content: '\201C';
  font-size: 72px;
  color: var(--accent);
  font-family: var(--serif);
  line-height: 0;
  vertical-align: -.35em;
  margin-right: 6px;
}

.about-full-img {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.about-full-img img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.about-text-section {
  padding: 120px 40px;
}
.about-text-inner {
  max-width: 680px;
  margin: 0 auto;
}
.about-text-inner .eyebrow {
  font-size: 10px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 20px;
}
.about-text-inner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 36px;
}
.about-text-inner p {
  color: var(--ink-soft);
  margin-bottom: 22px;
  line-height: 1.85;
}

/* Touch device — disable hover scale for cards (avoids stuck states) */
@media (hover: none) {
  .dress-card:hover .dress-img { transform: none; }
  .instagram-feed .ig-item:hover::after { opacity: 0; }
  a:hover { opacity: 1; }
}

/* iPhone safe area */
@supports (padding: max(0px)) {
  .site-header { padding-top: max(14px, env(safe-area-inset-top)); }
  footer { padding-bottom: max(30px, env(safe-area-inset-bottom)); }
  .nav-overlay .close { top: max(18px, env(safe-area-inset-top)); }
  .nav-overlay .nav-foot { bottom: max(28px, env(safe-area-inset-bottom)); }
}

/* Prevent horizontal scroll & long-word overflow */
html, body { overflow-x: hidden; max-width: 100%; }
img, video { max-width: 100%; }

/* Disable text-size adjust on iOS rotate */
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Honor reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-scroll::after { animation: none; }
  .reveal { opacity: 1; transform: none; }
}

/* ===========================
   COLLECTION PAGE HERO
   =========================== */
.coll-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #111;
}
.coll-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: grayscale(100%);
}
.coll-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 45%);
  pointer-events: none;
}
.coll-hero-caption {
  position: absolute;
  bottom: 80px;
  left: 80px;
  z-index: 2;
}
.coll-hero-caption .eyebrow {
  color: rgba(255,255,255,.75);
  display: block;
  margin-bottom: 14px;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
}
.coll-hero-caption h1 {
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 90px);
  font-weight: 300;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .coll-hero { height: 70vh; }
  .coll-hero-caption { bottom: 40px; left: 30px; }
}
@media (max-width: 480px) {
  .coll-hero { height: 60vh; }
  .coll-hero-caption { bottom: 30px; left: 20px; }
  .coll-hero-caption h1 { font-size: clamp(36px, 10vw, 56px); }
}

/* ===========================
   INNER PAGE HERO (text-only)
   =========================== */
.inner-page-hero {
  padding: 200px 36px 100px;
  text-align: center;
  background: var(--bg);
}
.inner-page-hero .eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.inner-page-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 20px;
}
.inner-page-sub {
  font-size: 14px;
  color: var(--ink-soft);
  font-style: italic;
  font-family: var(--serif);
  letter-spacing: .04em;
}

/* ===========================
   COLLECTION GRID
   =========================== */
.coll-grid-section { padding: 60px 0 100px; }

.coll-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.coll-grid--3 { grid-template-columns: repeat(3, 1fr); }

/* Last card alone in its row → center it */
.coll-grid .coll-card:last-child:nth-child(3n+1) { grid-column: 2; }

.coll-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
}
.coll-card:hover { opacity: 1; }
.coll-card:hover .coll-img-wrap img { transform: scale(1.04); }

.coll-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #111;
}
.coll-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}

.coll-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 0 0;
  text-align: center;
}
.coll-num {
  font-size: 9px;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--sans);
  font-weight: 300;
}
.coll-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  letter-spacing: .02em;
}

/* ===========================
   DRESS HERO
   =========================== */
.dress-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: #111;
}
.dress-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: grayscale(100%);
}
.dress-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, rgba(0,0,0,0) 55%);
  pointer-events: none;
}
.dress-hero-caption {
  position: absolute;
  bottom: 70px;
  left: 60px;
  z-index: 2;
}
.back-link {
  display: block;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  margin-bottom: 20px;
  transition: color .25s;
}
.back-link:hover { color: #fff; }
.dress-hero-num {
  display: block;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.dress-hero-caption h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(48px, 6vw, 80px);
  color: #fff;
  line-height: 1.1;
}

/* ===========================
   DRESS TITLE + PHOTO COLUMN
   =========================== */
.dress-title-section {
  padding: 160px 40px 40px;
  text-align: center;
}
.dress-title-section .back-link {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--ink-soft, #999);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color .25s;
  opacity: 1;
}
.dress-title-section .back-link:hover { color: var(--ink); opacity: 1; }
.dress-title-section h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
}

.dress-slider-section {
  padding: 40px 0 100px;
}
.dress-slider {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.ds-track {
  flex: 1;
  min-width: 0;
}
.ds-slide { display: none; }
.ds-slide.active { display: block; }
.ds-slide img {
  width: 100%;
  display: block;
  cursor: zoom-in;
}
.ds-arrow {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 22px;
  color: var(--ink);
  padding: 10px;
  flex-shrink: 0;
  line-height: 1;
  transition: opacity .2s;
  opacity: .45;
}
.ds-arrow:hover { opacity: 1; }
.ds-counter {
  text-align: center;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--ink-soft, #999);
  margin-top: 18px;
}

@media (max-width: 560px) {
  .dress-slider { gap: 12px; padding: 0 10px; }
  .ds-arrow { font-size: 18px; padding: 6px; }
}

/* ===========================
   DRESS GALLERY GRID (legacy)
   =========================== */
.dress-gallery-section { padding: 60px 40px 80px; }

.dress-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.dg-item {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111;
  cursor: zoom-in;
}
.dg-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease;
}
.dg-item:hover img { transform: scale(1.04); }

/* ===========================
   ALSO LOVE
   =========================== */
.also-love { padding: 0 40px 100px; }
.also-love .section-title { margin-bottom: 50px; }

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.96);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.lightbox.active {
  opacity: 1;
  pointer-events: all;
}
.lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  display: block;
}
.lb-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 36px;
  cursor: pointer;
  line-height: 1;
  transition: color .2s;
}
.lb-close:hover { color: #fff; }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255,255,255,.6);
  font-size: 28px;
  cursor: pointer;
  padding: 20px;
  transition: color .2s;
  user-select: none;
}
.lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ===========================
   REAL BRIDES
   =========================== */
.rb-title-section {
  padding: 160px 40px 50px;
  text-align: center;
}
.rb-title-section .eyebrow {
  display: block;
  font-size: 10px;
  letter-spacing: .5em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.rb-title-section h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.1;
}

.rb-grid-section {
  padding: 40px 0 100px;
}
.rb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.rb-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #111;
}
.rb-item:hover { opacity: 1; }
.rb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .6s ease;
}
.rb-item:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .rb-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 12px; }
  .rb-title-section { padding: 140px 24px 40px; }
}
@media (max-width: 560px) {
  .rb-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 8px; }
  .rb-title-section { padding: 120px 20px 32px; }
}

/* ===========================
   RESPONSIVE — COLLECTION
   =========================== */
@media (max-width: 900px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 12px; }
  .coll-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .coll-grid-section { padding: 40px 0 80px; }
  .also-love { padding: 0 20px 80px; }
  .dress-gallery-section { padding: 40px 20px 60px; }
  .dress-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .inner-page-hero { padding: 160px 24px 80px; }
}
@media (max-width: 560px) {
  .coll-grid { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 8px; }
  .coll-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .coll-grid-section { padding: 32px 0 60px; }
  .coll-name { font-size: 17px; }
  .dress-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .dress-hero-caption { left: 20px; bottom: 40px; }
  .dress-title-section { padding: 120px 24px 32px; }
  .dress-photos-section { padding: 24px 12px 80px; }
}
