/* ═══════════════════════════════════════════════
   PARV DESIGN STUDIO — LUXURY REDESIGN 2026
   ═══════════════════════════════════════════════ */

:root {
  --obsidian:    #070706;
  --charcoal:    #141210;
  --ivory:       #f7f4ee;
  --ivory-deep:  #ede8df;
  --ivory-mid:   #e4ddd2;
  --emerald:     #0f332b;
  --gold:        #b89a52;
  --gold-light:  #d4b96a;
  --stone:       #d8d1c4;
  --muted:       #7a7670;
  --white:       #ffffff;
  --white-12:    rgba(255,255,255,0.12);
  --white-20:    rgba(255,255,255,0.20);
  --black-10:    rgba(7,7,6,0.10);
  --black-18:    rgba(7,7,6,0.18);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--obsidian);
  font-family: "Figtree", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
p   { line-height: 1.75; margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ─── GLOBAL TYPOGRAPHY ─── */
.section-kicker {
  display: block;
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  line-height: 1.1;
}

/* ─── GLOBAL BUTTONS ─── */
.btn-luxury-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  height: 52px;
  background: var(--obsidian);
  color: var(--white);
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--obsidian);
  transition: background 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}
.btn-luxury-primary:hover,
.btn-luxury-primary:focus {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}

.btn-luxury-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 34px;
  height: 52px;
  background: transparent;
  color: var(--white);
  font-family: "Figtree", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.5);
  transition: background 0.28s ease, border-color 0.28s ease;
}
.btn-luxury-ghost:hover,
.btn-luxury-ghost:focus {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
  color: var(--white);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--obsidian);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--obsidian);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.link-arrow:hover { color: var(--gold); border-color: var(--gold); }

/* ─── SECTION HEADER SPLIT ─── */
.section-header-split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 52px;
}
.section-header-split h2 {
  margin: 0;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 600;
}


/* ══════════════════════════════════════
   OFFER TICKER
══════════════════════════════════════ */
.offer-ticker {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  min-height: 38px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(184,154,82,0.25);
}

.ticker-window { overflow: hidden; white-space: nowrap; }
.ticker-track {
  display: inline-flex;
  align-items: center;
  min-width: max-content;
  animation: ticker-slide 38s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-track span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 38px;
  height: 38px;
}
.ticker-track span::after {
  content: "";
  width: 4px;
  height: 4px;
  display: inline-block;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes ticker-slide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}


/* ══════════════════════════════════════
   HEADER / NAVBAR
══════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,238,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--black-10);
}

.navbar { padding: 0; min-height: 120px; }
.header-shell {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 120px;
}

/* Logo */
.navbar-brand { width: 128px; padding: 0; margin: 0; }
.navbar-brand img { width: 128px; height: auto; }
.navbar-brand-mobile { display: none; }
.navbar-brand-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

/* Nav collapse */
.navbar-collapse {
  display: flex !important;
  position: relative;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.navbar-nav { display: flex; align-items: center; gap: 2px; list-style: none; margin: 0; padding: 0; }
.nav-left  { width: calc(50% - 110px); justify-content: flex-start; }
.nav-right { width: calc(50% - 110px); justify-content: flex-end; }

.nav-link {
  position: relative;
  color: var(--obsidian);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 13px !important;
  line-height: 1;
  transition: color 0.22s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px;
  bottom: 8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-link:hover, .nav-link:focus { color: var(--emerald); }
.nav-link:hover::after, .nav-link:focus::after { transform: scaleX(1); }

/* Special appointment nav link */
.nav-appt {
  background: var(--obsidian);
  color: var(--white) !important;
  padding: 10px 18px !important;
  font-size: 11px;
  margin-left: 6px;
}
.nav-appt::after { display: none; }
.nav-appt:hover { background: var(--gold); color: var(--obsidian) !important; }

/* Header action icons */
.header-actions {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-left: 18px;
}
.header-icon {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--black-10);
  color: var(--obsidian);
  font-size: 17px;
  border-radius: 50%;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}
.header-icon:hover { background: var(--obsidian); color: var(--white); border-color: var(--obsidian); }

.header-actions-mobile { display: none; }

/* Toggler */
.navbar-toggler {
  width: 44px;
  height: 44px;
  border: 1px solid var(--black-18);
  border-radius: 0;
  padding: 0;
  background: none;
  cursor: pointer;
}
.navbar-toggler:focus { box-shadow: 0 0 0 2px rgba(184,154,82,0.3); }
.navbar-toggler span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--obsidian);
  transition: all 0.2s ease;
}


/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero-home {
  position: relative;
  overflow: hidden;
  background: var(--obsidian);
  min-height: 90vh;
  display: flex;
  align-items: flex-end;
}
.hero-home picture,
.hero-home img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7,7,6,0.15) 0%, rgba(7,7,6,0.08) 40%, rgba(7,7,6,0.75) 100%),
    linear-gradient(90deg, rgba(7,7,6,0.55) 0%, transparent 55%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5vw 80px;
  max-width: 780px;
}
.hero-eyebrow {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-headline {
  margin: 0 0 36px;
  color: var(--white);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.05;
}
.hero-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 42px;
  right: 52px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
.hero-scroll p {
  margin: 0;
  color: rgba(255,255,255,0.55);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}


/* ══════════════════════════════════════
   BRAND MANIFESTO (NEW)
══════════════════════════════════════ */
.brand-manifesto {
  background: var(--obsidian);
  padding: 88px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.brand-manifesto::before {
  content: "PDS";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 340px;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.manifesto-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}
.manifesto-eyebrow {
  display: block;
  margin: 0 0 32px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.manifesto-quote {
  margin: 0 0 44px;
  color: var(--white);
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.2;
  border: none;
  padding: 0;
}
.manifesto-quote em {
  font-style: italic;
  color: var(--gold-light);
}
.manifesto-rule {
  width: 80px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 44px;
}
.manifesto-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mstat {
  padding: 0 52px;
  text-align: center;
}
.mstat strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 52px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.mstat span {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,0.55);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.mstat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.16);
  flex-shrink: 0;
}


/* ══════════════════════════════════════
   SIGNATURE CATEGORIES
══════════════════════════════════════ */
.signature-categories {
  padding: 96px 0 0;
  background: var(--ivory);
}
.signature-categories .section-header-split {
  margin-bottom: 44px;
  align-items: flex-end;
}

/* 3-column category layout */
.cat-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

/* Shared tile styles */
.cat-tile {
  position: relative;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: var(--charcoal);
  isolation: isolate;
  min-height: 400px;
}
.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 0.75s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cat-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7,7,6,0) 30%, rgba(7,7,6,0.85) 100%),
    linear-gradient(90deg, rgba(7,7,6,0.3), transparent 60%);
  pointer-events: none;
}
.cat-tile:hover img { transform: scale(1.07); }

.cat-tile-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
}
.cat-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}
.cat-copy p {
  margin: 0 0 6px;
  color: rgba(255,255,255,0.6);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cat-copy h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 500;
}
.cat-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cat-tile:hover .cat-cta,
.cat-tile:focus .cat-cta { opacity: 1; transform: translateY(0); }

/* Tall tile spans full height of left column */
.cat-tile--tall { min-height: 720px; }

/* Middle & right columns: each 2 items stacked */
.cat-col { display: grid; gap: 14px; }
.cat-col .cat-tile { min-height: 350px; }

/* Editorial text box inside right column */
.cat-editorial {
  background: var(--obsidian);
  color: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 200px;
}
.cat-editorial p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 1.7;
}

/* Bottom wide row */
.cat-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 0;
}
.cat-tile--wide { min-height: 340px; }


/* ══════════════════════════════════════
   VIDEO SECTION
══════════════════════════════════════ */
.video-section {
  padding: 104px 0 112px;
  background: var(--obsidian);
  color: var(--white);
}

.video-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 52px;
}
.video-header h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  font-weight: 500;
  line-height: 1.1;
}
.video-header-sub {
  margin: 0;
  color: rgba(255,255,255,0.52);
  font-size: 15px;
  line-height: 1.75;
  max-width: 420px;
  align-self: end;
}

/* Outer decorative frame */
.video-frame-wrap {
  position: relative;
}
.video-frame-border {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(184,154,82,0.22);
  pointer-events: none;
  z-index: 0;
}
.video-frame-border::before,
.video-frame-border::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  border-color: var(--gold);
  border-style: solid;
}
.video-frame-border::before {
  top: -1px; left: -1px;
  border-width: 2px 0 0 2px;
}
.video-frame-border::after {
  bottom: -1px; right: -1px;
  border-width: 0 2px 2px 0;
}

/* Thumbnail player */
.video-thumb-link {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal);
  z-index: 1;
  cursor: pointer;
}
.video-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.72);
}
.video-thumb-link:hover .video-thumb-img {
  transform: scale(1.03);
  filter: brightness(0.55);
}
.video-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,7,6,0.35) 0%, transparent 60%);
  pointer-events: none;
}
.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 84px;
  height: 84px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 34px;
  backdrop-filter: blur(6px);
  transition: transform 0.32s ease, background 0.32s ease, border-color 0.32s ease;
  z-index: 2;
}
.video-play-btn i { margin-left: 5px; }
.video-thumb-link:hover .video-play-btn {
  transform: translate(-50%, -50%) scale(1.12);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--obsidian);
}

/* Bottom label */
.video-frame-label {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}
.video-frame-label span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.video-frame-label i {
  color: var(--gold);
  font-size: 16px;
}

/* ══════════════════════════════════════
   SHOP BY OCCASION (NEW)
══════════════════════════════════════ */
.occasions-section {
  padding: 100px 0 0;
  background: var(--ivory);
}
.occasions-header {
  display: flex;
  align-items: flex-end;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 52px;
}
.occasions-header h2 {
  margin: 0;
  font-size: clamp(30px, 3.5vw, 50px);
  font-weight: 600;
}

.occasions-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.occ-card {
  position: relative;
  display: block;
  min-height: 580px;
  overflow: hidden;
  background: var(--charcoal);
  isolation: isolate;
}
.occ-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}
.occ-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,7,6,0.18) 0%, rgba(7,7,6,0.82) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}
.occ-card:hover img { transform: scale(1.1); }
.occ-card:hover .occ-overlay {
  background: linear-gradient(180deg, rgba(7,7,6,0.2) 0%, rgba(15,51,43,0.9) 100%);
}

.occ-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 36px 30px;
}
.occ-icon {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(184,154,82,0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}
.occ-card:hover .occ-icon { background: var(--gold); color: var(--obsidian); border-color: var(--gold); }

.occ-content h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
}
.occ-content p {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.55;
}
.occ-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.occ-card:hover .occ-cta { opacity: 1; transform: translateY(0); }

/* Thin gold border on hover */
.occ-card::after {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(184,154,82,0);
  z-index: 3;
  pointer-events: none;
  transition: border-color 0.35s ease;
}
.occ-card:hover::after { border-color: rgba(184,154,82,0.45); }


/* ══════════════════════════════════════
   NEW ARRIVALS
══════════════════════════════════════ */
.new-arrivals {
  padding: 100px 0 108px;
  background: var(--white);
}

.arrivals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.arrival-card {
  display: flex;
  flex-direction: column;
  color: var(--obsidian);
}

.arrival-img {
  position: relative;
  overflow: hidden;
  background: var(--ivory-deep);
}
.arrival-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition: transform 0.75s ease;
}
.arrival-card:hover .arrival-img img { transform: scale(1.07); }

.arrival-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 5px 12px;
  background: var(--obsidian);
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arrival-info {
  padding: 22px 4px 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.arrival-info > p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.arrival-info h3 {
  margin: 0 0 16px;
  font-size: clamp(20px, 1.6vw, 26px);
  font-weight: 500;
  line-height: 1.2;
  flex: 1;
}

.arrival-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--emerald);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.arrival-card:hover .arrival-cta {
  color: var(--gold);
  border-color: var(--gold);
}


/* ══════════════════════════════════════
   ABOUT ATELIER
══════════════════════════════════════ */
.about-atelier {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 820px;
}

.about-image-half {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  min-height: 620px;
}
.about-image-half img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 48px;
  right: -28px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 160px;
  height: 160px;
  text-align: center;
  background: var(--ivory);
  border: 1px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
.about-badge strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.about-badge span {
  display: block;
  max-width: 90px;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--obsidian);
}

.about-img-caption {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
}
.about-img-caption span {
  padding: 6px 14px;
  background: rgba(7,7,6,0.65);
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-content-half {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--obsidian);
  color: var(--white);
}
.about-content-half h2 {
  margin: 0 0 28px;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 500;
  line-height: 1.15;
}
.about-content-half > p {
  color: rgba(255,255,255,0.68);
  font-size: 15px;
  margin-bottom: 18px;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 36px 0 40px;
  border-top: 1px solid var(--white-12);
}
.about-pillar {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 0;
  border-bottom: 1px solid var(--white-12);
}
.about-pillar strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 42px;
}
.about-pillar h4 {
  margin: 0 0 6px;
  color: var(--white);
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.about-pillar p {
  margin: 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.65;
}


/* ══════════════════════════════════════
   CRAFTSMANSHIP — NUMBERED ROW LIST
══════════════════════════════════════ */
.craftsmanship-section {
  padding: 104px 0 112px;
  background: var(--ivory);
  color: var(--obsidian);
}

/* Intro grid */
.craft-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-bottom: 64px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--black-10);
}

.craft-intro-left h2 {
  margin: 0;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 500;
  line-height: 1.06;
}

.craft-intro-right > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

/* Process row list */
.craft-list { display: flex; flex-direction: column; }

.craft-row {
  display: grid;
  grid-template-columns: 88px 60px 1fr auto auto;
  gap: 0 32px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--black-10);
  color: var(--obsidian);
  text-decoration: none;
  transition: background 0.32s ease, padding-left 0.32s ease, padding-right 0.32s ease;
  cursor: pointer;
}
.craft-row:hover {
  background: var(--ivory-mid);
  padding-left: 28px;
  padding-right: 28px;
}

/* Large faded number */
.cr-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 56px;
  font-weight: 400;
  color: rgba(7,7,6,0.13);
  line-height: 1;
  transition: color 0.32s ease;
}
.craft-row:hover .cr-num { color: var(--gold); }

/* Icon circle */
.cr-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--black-10);
  border-radius: 50%;
  color: var(--muted);
  font-size: 19px;
  flex-shrink: 0;
  transition: border-color 0.32s ease, color 0.32s ease, background 0.32s ease;
}
.craft-row:hover .cr-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,154,82,0.06);
}

/* Title + description */
.cr-body { min-width: 0; }
.cr-body h3 {
  margin: 0 0 6px;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.2;
  transition: color 0.32s ease;
}
.craft-row:hover .cr-body h3 { color: var(--emerald); }
.cr-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* Keyword tag */
.cr-tag {
  padding: 5px 14px;
  border: 1px solid var(--black-10);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: border-color 0.32s ease, color 0.32s ease, background 0.32s ease;
}
.craft-row:hover .cr-tag {
  border-color: var(--gold);
  color: var(--obsidian);
  background: rgba(184,154,82,0.1);
}

/* Arrow circle */
.cr-arrow {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--black-10);
  border-radius: 50%;
  color: var(--muted);
  font-size: 17px;
  flex-shrink: 0;
  transition: background 0.32s ease, border-color 0.32s ease, color 0.32s ease, transform 0.32s ease;
}
.craft-row:hover .cr-arrow {
  background: var(--obsidian);
  border-color: var(--obsidian);
  color: var(--white);
  transform: rotate(45deg);
}


/* ══════════════════════════════════════
   SEASON LOOKBOOK — ARCH CARDS
══════════════════════════════════════ */
.lookbook-section {
  padding: 108px 0 116px;
  background: var(--ivory);
}

/* Centered header */
.lookbook-head-centered {
  text-align: center;
  margin-bottom: 64px;
}
.lookbook-ornament {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.lookbook-ornament i {
  font-size: 32px;
  color: var(--gold);
}
.lookbook-head-centered h2 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--obsidian);
}
.lookbook-head-centered > p {
  margin: 0 auto;
  max-width: 480px;
  color: var(--muted);
  font-size: 15px;
}

/* 4-card arch row */
.arch-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  align-items: end;
}

/* Individual arch card */
.arch-card {
  position: relative;
  display: block;
  border-radius: 600px 600px 6px 6px;
  overflow: hidden;
  background: var(--charcoal);
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: transform 0.38s cubic-bezier(0.25,0.46,0.45,0.94),
              outline-color 0.38s ease,
              box-shadow 0.38s ease;
}
.arch-card:hover {
  transform: translateY(-10px);
  outline-color: var(--gold);
  box-shadow: 0 24px 60px rgba(0,0,0,0.14), 0 0 0 1px rgba(184,154,82,0.25);
}

/* Featured (second) card — slightly taller + gold glow by default */
.arch-card--featured {
  transform: translateY(-18px);
  outline-color: rgba(184,154,82,0.55);
  box-shadow: 0 28px 64px rgba(0,0,0,0.16), 0 0 0 4px rgba(184,154,82,0.15);
}
.arch-card--featured:hover {
  transform: translateY(-24px);
  outline-color: var(--gold);
}

/* Image inside arch */
.arch-img-wrap {
  position: relative;
  overflow: hidden;
}
.arch-img-wrap img {
  width: 100%;
  aspect-ratio: 0.68 / 1;
  object-fit: cover;
  object-position: center top;
  display: block;
  transform: scale(1.03);
  transition: transform 0.72s cubic-bezier(0.25,0.46,0.45,0.94);
}
.arch-card--featured .arch-img-wrap img {
  aspect-ratio: 0.68 / 1.08; /* slightly taller for featured */
}
.arch-card:hover .arch-img-wrap img { transform: scale(1.09); }

/* Gradient overlay inside arch */
.arch-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 45%,
    rgba(7,7,6,0.62) 100%
  );
  pointer-events: none;
}

/* Label at bottom of arch */
.arch-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 44px 16px 22px;
  text-align: center;
  z-index: 1;
}
.arch-label span {
  color: var(--white);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}


/* ══════════════════════════════════════
   APPOINTMENT
══════════════════════════════════════ */
.appointment-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  isolation: isolate;
}
.appt-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.appt-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.appt-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(7,7,6,0.94) 0%, rgba(7,7,6,0.82) 50%, rgba(15,51,43,0.88) 100%);
}

.appt-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  color: var(--white);
}
.appt-content h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.1;
}
.appt-content h2 em { font-style: italic; color: var(--gold-light); }
.appt-content > p {
  max-width: 560px;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  margin-bottom: 44px;
}

.appt-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}
.appt-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 28px;
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--white);
  transition: background 0.3s ease, border-color 0.3s ease;
}
.appt-btn:hover {
  background: rgba(184,154,82,0.12);
  border-color: var(--gold);
  color: var(--white);
}
.appt-btn-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184,154,82,0.45);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.appt-btn-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
}
.appt-btn-text span {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.appt-btn-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.appt-btn:hover .appt-btn-arrow { opacity: 1; transform: translateX(4px); }

.appt-contact-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.appt-contact-bar > span {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.appt-contact-bar > div {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.appt-contact-bar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  font-weight: 600;
  transition: color 0.22s ease;
}
.appt-contact-bar a:hover { color: var(--gold); }
.appt-contact-bar a i { color: var(--gold); }


/* ══════════════════════════════════════
   CLIENT REFLECTIONS
══════════════════════════════════════ */
.client-reflections {
  padding: 108px 0;
  background: var(--ivory);
  color: var(--obsidian);
}

.reflections-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.reflections-left h2 {
  margin: 0 0 28px;
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.15;
}
.reflection-stars {
  display: flex;
  gap: 5px;
  margin-bottom: 14px;
}
.reflection-stars i { color: var(--gold); font-size: 18px; }
.reflection-count {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 14px;
}

.reflections-cards {
  display: grid;
  gap: 18px;
}
.reflection-card {
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--black-10);
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.reflection-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.3s ease;
}
.reflection-card:hover { border-color: rgba(184,154,82,0.35); }
.reflection-card:hover::after { border-color: rgba(184,154,82,0.2); }
.reflection-card--gold {
  background: var(--obsidian);
  border-color: transparent;
}
.reflection-card--gold .bi-quote,
.reflection-card--gold p { color: rgba(255,255,255,0.85); }
.reflection-card--gold .reflection-card::after { border-color: transparent; }

.reflection-card > .bi-quote {
  font-size: 32px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.reflection-card > p {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 20px;
  line-height: 1.6;
  color: var(--charcoal);
  margin: 0 0 24px;
}
.reflection-card--gold > p { color: rgba(255,255,255,0.82); }

.reflection-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-init {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--obsidian);
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.reflection-author h4 {
  margin: 0 0 3px;
  font-family: "Figtree", sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--obsidian);
}
.reflection-card--gold .reflection-author h4 { color: var(--white); }
.reflection-author span {
  font-size: 13px;
  color: var(--muted);
}
.reflection-card--gold .reflection-author span { color: rgba(255,255,255,0.55); }


/* ══════════════════════════════════════
   INSTAGRAM STRIP (NEW)
══════════════════════════════════════ */
.instagram-section {
  padding: 100px 0 0;
  background: var(--white);
  overflow: hidden;
}
.insta-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
}
.insta-header h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 500;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.insta-item {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}
.insta-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 0.6s ease, filter 0.4s ease;
  filter: brightness(0.85) saturate(0.88);
}
.insta-item:hover img {
  transform: scale(1.1);
  filter: brightness(1) saturate(1.05);
}
.insta-item--featured { /* no special treatment, uniform grid */ }


/* ══════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════ */
.trust-strip {
  background: var(--emerald);
  padding: 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--white-12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 40px 32px;
  border-right: 1px solid var(--white-12);
}
.trust-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184,154,82,0.5);
  border-radius: 50%;
  color: var(--gold);
  font-size: 20px;
  flex-shrink: 0;
}
.trust-item h3 {
  margin: 0 0 5px;
  color: var(--white);
  font-family: "Figtree", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}
.trust-item p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 13px;
  line-height: 1.55;
}


/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.site-footer {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 10%, rgba(184,154,82,0.14), transparent 28%),
    linear-gradient(145deg, #0a0908, #0c1410 70%);
  color: rgba(255,255,255,0.7);
}

.footer-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--white-12);
  min-height: 88px;
  display: flex;
  align-items: center;
}
.footer-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  min-width: max-content;
  animation: ticker-slide 28s linear infinite;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 38px;
  font-weight: 400;
  color: rgba(255,255,255,0.14);
  padding: 0 16px;
}
.footer-marquee-track span:nth-child(even) {
  color: var(--gold);
  font-size: 20px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr 0.7fr 1.5fr;
  gap: 52px;
  padding: 80px 0 60px;
}

.footer-brand img {
  width: 148px;
  margin-bottom: 28px;
}
.footer-brand > p {
  max-width: 320px;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 26px;
  line-height: 1.7;
}
.social-links { display: flex; gap: 8px; }
.social-links a {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--white-12);
  border-radius: 50%;
  color: rgba(255,255,255,0.65);
  font-size: 16px;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--obsidian); }

.footer-column h5,
.footer-contact h5 {
  margin: 0 0 22px;
  color: var(--white);
  font-family: "Figtree", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-column h5::after,
.footer-contact h5::after {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  margin-top: 10px;
  background: var(--gold);
}
.footer-column a {
  display: table;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  transition: color 0.22s ease;
}
.footer-column a:hover { color: var(--gold); }

.footer-contact > p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  margin-bottom: 16px;
  line-height: 1.7;
}
.footer-contact a {
  display: table;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-bottom: 4px;
  transition: color 0.22s ease;
}
.footer-contact a:hover { color: var(--gold); }

.newsletter label {
  display: block;
  margin: 20px 0 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.newsletter .input-group { max-width: 100%; }
.newsletter .form-control {
  min-height: 48px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  border-right: none;
  border-radius: 0;
  color: var(--white);
  font-size: 13px;
}
.newsletter .form-control::placeholder { color: rgba(255,255,255,0.35); }
.newsletter .form-control:focus {
  background: transparent;
  border-color: var(--gold);
  box-shadow: none;
  color: var(--white);
}
.newsletter .btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 0;
  background: var(--gold);
  color: var(--obsidian);
  border: 1px solid var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.25s ease;
}
.newsletter .btn:hover { background: var(--white); border-color: var(--white); }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--white-12);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}


/* ══════════════════════════════════════
   RESPONSIVE — TABLET (< 1200px)
══════════════════════════════════════ */
@media (max-width: 1199.98px) {

  .navbar { min-height: 84px; }
  .header-shell { min-height: 84px; }
  .navbar-brand, .navbar-brand img { width: 116px; }
  .navbar-brand-mobile { display: block; }
  .navbar-brand-center { display: none; }
  .header-actions { display: none; }
  .header-actions-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .navbar-collapse {
    display: none !important;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 28px;
    border-top: 1px solid var(--black-10);
  }
  .navbar-collapse.show { display: flex !important; }

  .nav-left, .nav-right {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav-link { padding: 13px 0 !important; font-size: 14px; width: 100%; }
  .nav-link::after { left: 0; right: auto; width: 44px; }
  .nav-appt { background: none; color: var(--gold) !important; padding: 13px 0 !important; }

  /* Hero */
  .hero-content { padding: 0 32px 72px; }

  /* Manifesto */
  .manifesto-stats { flex-wrap: wrap; gap: 0; }
  .mstat { padding: 20px 32px; }

  /* Categories */
  .cat-layout { grid-template-columns: 1fr 1fr; }
  .cat-tile--tall { grid-column: span 2; min-height: 520px; }
  .cat-col { grid-column: span 1; }
  .cat-editorial { min-height: 160px; padding: 30px 26px; }
  .cat-bottom-row { grid-template-columns: 1fr 1fr; }

  /* Occasions */
  .occasions-strip { grid-template-columns: repeat(2, 1fr); }
  .occ-card { min-height: 440px; }

  /* Arrivals */
  .arrivals-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  /* About */
  .about-atelier { grid-template-columns: 1fr; }
  .about-image-half { min-height: 520px; }
  .about-content-half { padding: 64px 48px; }
  .about-badge { right: 32px; bottom: 32px; }

  /* Craft */
  .craft-intro { grid-template-columns: 1fr; gap: 36px; }
  .craft-row { grid-template-columns: 64px 52px 1fr auto; gap: 0 20px; }
  .cr-tag { display: none; }
  .craft-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .craft-arrow { display: none; }

  /* Lookbook arch */
  .arch-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .arch-card--featured { transform: translateY(0); }
  .arch-card--featured:hover { transform: translateY(-10px); }

  /* Appointment */
  .appt-options { grid-template-columns: 1fr; }

  /* Reflections */
  .reflections-inner { grid-template-columns: 1fr; gap: 48px; }

  /* Instagram */
  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  /* Trust */
  .trust-grid { grid-template-columns: repeat(2, 1fr); }

  /* Footer */
  .footer-main { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .footer-contact { grid-column: span 2; }

  /* Section header split */
  .section-header-split { flex-direction: column; align-items: flex-start; gap: 18px; margin-bottom: 36px; }
  /* Video */
  .video-header { grid-template-columns: 1fr; gap: 20px; }
  .video-frame-border { inset: -6px; }

  .occasions-header { flex-direction: column; align-items: flex-start; }
  .insta-header { flex-direction: column; align-items: flex-start; }
}


/* ══════════════════════════════════════
   RESPONSIVE — MOBILE (< 768px)
══════════════════════════════════════ */
@media (max-width: 767.98px) {
  body { font-size: 15px; }

  .navbar { min-height: 72px; }
  .header-shell { min-height: 72px; }
  .navbar-brand, .navbar-brand img { width: 104px; }

  /* Hero */
  .hero-home { min-height: 88vh; }
  .hero-content { padding: 0 22px 60px; }
  .hero-actions { flex-direction: column; gap: 12px; }
  .btn-luxury-primary, .btn-luxury-ghost { width: 100%; justify-content: center; }
  .hero-scroll { display: none; }

  /* Manifesto */
  .brand-manifesto { padding: 64px 0 58px; }
  .brand-manifesto::before { display: none; }
  .manifesto-stats { flex-direction: column; gap: 0; }
  .mstat { padding: 18px 0; width: 100%; border-bottom: 1px solid var(--white-12); }
  .mstat:last-child { border-bottom: none; }
  .mstat-divider { display: none; }

  /* Categories */
  .signature-categories { padding: 72px 0 0; }
  .cat-layout { grid-template-columns: 1fr; }
  .cat-tile--tall { grid-column: span 1; min-height: 480px; }
  .cat-col { gap: 12px; }
  .cat-col .cat-tile { min-height: 300px; }
  .cat-editorial { padding: 24px 20px; }
  .cat-bottom-row { grid-template-columns: 1fr; gap: 12px; }
  .cat-tile--wide { min-height: 280px; }
  .cat-cta { opacity: 1; transform: none; }

  /* Occasions */
  .occasions-section { padding: 72px 0 0; }
  .occasions-strip { grid-template-columns: 1fr; }
  .occ-card { min-height: 340px; }
  .occ-cta { opacity: 1; transform: none; }

  /* Arrivals */
  .new-arrivals { padding: 72px 0 80px; }
  .arrivals-grid { grid-template-columns: 1fr 1fr; gap: 14px; }

  /* About */
  .about-content-half { padding: 52px 24px; }
  .about-badge { width: 128px; height: 128px; right: 20px; bottom: 20px; }
  .about-badge strong { font-size: 34px; }

  /* Craft */
  .craftsmanship-section { padding: 72px 0 80px; }
  .craft-intro { gap: 24px; }
  .craft-row {
    grid-template-columns: 48px 1fr auto;
    gap: 0 16px;
    padding: 26px 0;
  }
  .cr-icon { display: none; }
  .cr-num { font-size: 38px; }
  .craft-row:hover { padding-left: 16px; padding-right: 16px; }

  /* Lookbook arch */
  .lookbook-section { padding: 72px 0 80px; }
  .arch-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .arch-card--featured { transform: translateY(0); }
  .lookbook-head-centered h2 { letter-spacing: 0.02em; }

  /* Appointment */
  .appointment-section { padding: 80px 0; }
  .appt-contact-bar { flex-direction: column; align-items: flex-start; }
  .appt-contact-bar > div { flex-direction: column; gap: 10px; }

  /* Reflections */
  .client-reflections { padding: 72px 0; }

  /* Instagram */
  .instagram-section { padding: 72px 0 0; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  /* Trust */
  .trust-grid { grid-template-columns: 1fr; border-left: none; border-top: 1px solid var(--white-12); }
  .trust-item { border-right: none; border-bottom: 1px solid var(--white-12); }

  /* Footer */
  .footer-marquee-track { font-size: 26px; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 52px 0 42px; }
  .footer-contact { grid-column: auto; }
}
