/* =============================================================================
   SUNDARI GROUP — MAIN STYLESHEET
   ============================================================================= */

/* ─────────────────────────────────────────────────────────────────────────────
   CSS VARIABLES
───────────────────────────────────────────────────────────────────────────── */
:root {
  --bg:      #0c0905;
  --sand:    #c8b49a;
  --terra:   #b5674d;
  --sage:    #7a8c6e;
  --cream:   #ede5d4;
  --charcoal:#1e1a14;
  --muted:   rgba(237, 229, 212, 0.45);
  --accent:  #c8b49a;

  --ease:        cubic-bezier(.4, 0, 0, 1);
  --ease-out:    cubic-bezier(0, 0, .2, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);

  --t-micro:    0.18s;
  --t-fast:     0.28s;
  --t-standard: 0.42s;
  --t-slow:     0.65s;

  --header-h: 6rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────────────────────────────────────────── */
a, abbr, acronym, address, article, aside, b, blockquote, body, canvas,
caption, cite, code, dd, del, details, dfn, div, dl, dt, em, fieldset,
figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, html,
i, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p,
pre, q, s, samp, section, small, span, strong, sub, summary, sup, table,
tbody, td, tfoot, th, thead, time, tr, ul, var, video {
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

* { -webkit-tap-highlight-color: transparent; }
*, :after, :before { box-sizing: border-box; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-overflow-style: none;
  background: var(--bg);
  box-sizing: border-box;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 10px;
  min-height: -webkit-fill-available;
  overscroll-behavior: none;
  scrollbar-width: none;
  width: 100%;
}

html::-webkit-scrollbar { display: none; }

body {
  font-size: 1.5rem;
  line-height: 1.7;
  width: 100%;
  color: var(--cream);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }
button { background: none; border: none; cursor: pointer; padding: 0; font: inherit; color: inherit; }

/* ─────────────────────────────────────────────────────────────────────────────
   PAGE TRANSITIONS
───────────────────────────────────────────────────────────────────────────── */
html.is-leaving .menu,
html.is-leaving .navigation,
html.is-leaving [data-scroller],
html.is-leaving .brand-page,
html.is-leaving .contact-page,
html.is-leaving .sg-header {
  opacity: 0 !important;
  transition: opacity var(--t-micro) var(--ease-out) !important;
}

/* ─────────────────────────────────────────────────────────────────────────────
   LOAD TRANSITION — Makhno system
   .menu, .navigation, [data-scroller] start at opacity 0
   .is-loaded added by JS after page ready
───────────────────────────────────────────────────────────────────────────── */
.menu,
.navigation,
[data-scroller] {
  opacity: 0;
  transition: opacity .3s var(--ease);
}

.is-loaded .menu,
.is-loaded .navigation,
.is-loaded [data-scroller] {
  opacity: 1;
}

.is-homepage ::selection { background: transparent; }

[data-scroller] {
  min-height: 100%;
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SITE HEADER
───────────────────────────────────────────────────────────────────────────── */
.sg-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.2rem;
  background: linear-gradient(180deg, rgba(12, 9, 5, 0.85) 0%, transparent 100%);
  transition: background .4s var(--ease);
}

.sg-header.is-scrolled {
  background: rgba(12, 9, 5, 0.92);
  backdrop-filter: blur(10px);
}

/* Logo */
.sg-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sg-header__logo .custom-logo {
  height: 2.2rem;
  width: auto;
}

.sg-header__logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.85);
  white-space: nowrap;
}

/* Desktop nav — hidden below 900px */
.sg-header__nav {
  display: none;
}

@media (min-width: 900px) {
  .sg-header__nav { display: flex; align-items: center; }
}

.sg-nav {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sg-nav a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.45);
  transition: color .25s var(--ease);
}

.sg-nav a:hover { color: var(--cream); }

/* Hamburger */
.sg-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 3.2rem;
  height: 3.2rem;
  padding: 6px;
  flex-shrink: 0;
}

.sg-hamburger span {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(237, 229, 212, 0.65);
  transform-origin: center;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.sg-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.sg-hamburger[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HOMEPAGE NAV
───────────────────────────────────────────────────────────────────────────── */
.hp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 54px;
  padding: 0 2.6rem;
  background: rgba(8, 6, 3, 0.52);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(237, 229, 212, 0.07);
  pointer-events: auto;
}

.hp-nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.hp-nav__logo .custom-logo {
  height: 1.9rem;
  width: auto;
}

.hp-nav__wordmark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.78);
  transition: color .25s var(--ease);
}

.hp-nav__logo:hover .hp-nav__wordmark { color: var(--cream); }

.hp-nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.hp-nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(237, 229, 212, 0.65);
  transition: transform .28s var(--ease), opacity .28s var(--ease);
  transform-origin: center;
}

.hp-nav__toggle:hover span { background: rgba(237, 229, 212, 0.95); }

.hp-nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.hp-nav__toggle[aria-expanded="true"] span:nth-child(2) {
  transform: translateY(-3px) rotate(-45deg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   SHARED OVERLAY NAV (homepage + internal pages)
   Full-screen Makhno-style: brand rows left, contact right
───────────────────────────────────────────────────────────────────────────── */
.sg-nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  background: rgba(10, 8, 4, 0.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity var(--t-slow) var(--ease-spring),
    visibility var(--t-slow) var(--ease-spring);
}

.sg-nav-overlay:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Keep in layout for fade transition — override browser `display:none` */
.sg-nav-overlay[hidden] { display: flex; }

/* ── Top bar ── */
.sg-nav-overlay__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(237, 229, 212, 0.06);
}

.sg-nav-overlay__logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.65);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.sg-nav-overlay__logo:hover { color: var(--cream); }

.sg-nav-overlay__close {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  cursor: pointer;
  flex-shrink: 0;
  background: none;
  border: none;
  padding: 0;
}
.sg-nav-overlay__close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(237, 229, 212, 0.55);
  transition: background .25s var(--ease);
}
.sg-nav-overlay__close span:nth-child(1) { transform: translateY(-50%) rotate(45deg); }
.sg-nav-overlay__close span:nth-child(2) { transform: translateY(-50%) rotate(-45deg); }
.sg-nav-overlay__close:hover span { background: var(--cream); }

/* ── Body: two-column grid ── */
.sg-nav-overlay__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  padding: 0 4rem 3.6rem;
  overflow-y: auto;
  min-height: 0;
}

@media (max-width: 760px) {
  .sg-nav-overlay__topbar { padding: 2rem 2.4rem; }
  .sg-nav-overlay__body {
    grid-template-columns: 1fr;
    padding: 0 2.4rem 3.2rem;
    gap: 3.2rem;
  }
}

/* ── Left: brand rows ── */
.sg-nav-overlay__brands {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 4rem;
  border-right: 1px solid rgba(237, 229, 212, 0.06);
}

@media (max-width: 760px) {
  .sg-nav-overlay__brands {
    padding-right: 0;
    border-right: none;
  }
}

.sg-brand-row {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(237, 229, 212, 0.1);
  text-decoration: none;
  cursor: pointer;
}
.sg-brand-row:last-child {
  border-bottom: 1px solid rgba(237, 229, 212, 0.1);
}

.sg-brand-row__num {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(237, 229, 212, 0.28);
  min-width: 3.6rem;
  flex-shrink: 0;
}

.sg-brand-row__name {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(2.2rem, 3.6vw, 5rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: rgba(237, 229, 212, 0.82);
  flex: 1;
  line-height: 1;
  text-transform: uppercase;
  transition: color .3s var(--ease), letter-spacing .3s var(--ease);
}

.sg-brand-row__plus {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 200;
  color: rgba(237, 229, 212, 0.28);
  line-height: 1;
  flex-shrink: 0;
  transition: color .3s var(--ease), transform .35s var(--ease);
}

.sg-brand-row:hover .sg-brand-row__name {
  color: var(--cream);
  letter-spacing: 0.07em;
}
.sg-brand-row:hover .sg-brand-row__plus {
  color: rgba(237, 229, 212, 0.7);
  transform: rotate(45deg);
}

/* ── Right: contact info ── */
.sg-nav-overlay__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 3.2rem;
  padding-left: 4rem;
}

@media (max-width: 760px) {
  .sg-nav-overlay__info {
    padding-left: 0;
    gap: 2.4rem;
  }
}

.sg-nav-contact__block {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sg-nav-contact__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(237, 229, 212, 0.28);
  margin-bottom: 0.4rem;
}

.sg-nav-contact__link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(237, 229, 212, 0.6);
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(237, 229, 212, 0.18);
  padding-bottom: 0.2rem;
  display: inline-block;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.sg-nav-contact__link:hover {
  color: var(--cream);
  border-color: rgba(237, 229, 212, 0.55);
}

.sg-nav-contact__socials {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(237, 229, 212, 0.32);
  letter-spacing: 0.06em;
  line-height: 1.9;
}

.sg-nav-contact__social {
  color: rgba(237, 229, 212, 0.55);
  transition: color .25s var(--ease);
}
.sg-nav-contact__social:hover { color: var(--cream); }

.sg-nav-contact__cta {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.42);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(237, 229, 212, 0.18);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
  margin-top: auto;
  max-width: fit-content;
}
.sg-nav-contact__cta:hover {
  color: var(--cream);
  border-color: rgba(237, 229, 212, 0.55);
}

.sg-nav-contact__cta-arrow {
  display: inline-block;
  width: 3.2rem;
  height: 1px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
}
.sg-nav-contact__cta-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ─────────────────────────────────────────────────────────────────────────────
   HOMEPAGE — FULL-SCREEN STAGE
───────────────────────────────────────────────────────────────────────────── */
.homepage { font-weight: 300; }

.hp-hero {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  height: 100svh;
  display: flex;
  overflow: hidden;
}

/* ─────────────────────────────────────────────────────────────────────────────
   PANELS — 5 equal visible containers over the shared background
───────────────────────────────────────────────────────────────────────────── */
.hp-panel {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  cursor: pointer;
  outline: none;
  overflow: hidden;

  /* Subtle dark tint — makes each panel a visible container */
  background: rgba(8, 6, 3, 0.18);
  transition: background .4s var(--ease);
}

/* Thin separator line between panels */
.hp-panel + .hp-panel {
  border-left: 1px solid rgba(237, 229, 212, 0.07);
}

/* Hovered panel brightens slightly */
.hp-panel:hover {
  background: rgba(8, 6, 3, 0.04);
}

/* Non-hovered panels darken when any sibling is hovered */
.hp-hero:has(.hp-panel:hover) .hp-panel:not(:hover) {
  background: rgba(8, 6, 3, 0.42);
}

/* Remove the ::after dimming layer — background handles it now */
.hp-panel::after { display: none; }

/* ─── Viewfinder outline — 4 lines draw in from their respective origins ─── */
.hp-outline {
  position: absolute;
  top: 18%;
  bottom: 18%;
  left: 10%;
  right: 10%;
  pointer-events: none;
  z-index: 4;
}

.hp-outline__t,
.hp-outline__r,
.hp-outline__b,
.hp-outline__l {
  position: absolute;
  background: rgba(237, 229, 212, 0.7);
  transition: transform .55s var(--ease);
}

.hp-outline__t {
  top: 0; left: 0; right: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left center;
  transition-delay: 0s;
}

.hp-outline__r {
  top: 0; bottom: 0; right: 0;
  width: 1px;
  transform: scaleY(0);
  transform-origin: center top;
  transition-delay: 0.06s;
}

.hp-outline__b {
  bottom: 0; left: 0; right: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right center;
  transition-delay: 0.12s;
}

.hp-outline__l {
  top: 0; bottom: 0; left: 0;
  width: 1px;
  transform: scaleY(0);
  transform-origin: center bottom;
  transition-delay: 0.18s;
}

.hp-outline__dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(237, 229, 212, 0.65);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .3s var(--ease) .22s;
}

/* Trigger on hover */
.hp-panel:hover .hp-outline__t { transform: scaleX(1); }
.hp-panel:hover .hp-outline__r { transform: scaleY(1); }
.hp-panel:hover .hp-outline__b { transform: scaleX(1); }
.hp-panel:hover .hp-outline__l { transform: scaleY(1); }
.hp-panel:hover .hp-outline__dot { transform: translate(-50%, -50%) scale(1); }

/* Keyboard focus */
.hp-panel:focus-visible .hp-outline__t { transform: scaleX(1); }
.hp-panel:focus-visible .hp-outline__r { transform: scaleY(1); }
.hp-panel:focus-visible .hp-outline__b { transform: scaleX(1); }
.hp-panel:focus-visible .hp-outline__l { transform: scaleY(1); }
.hp-panel:focus-visible .hp-outline__dot { transform: translate(-50%, -50%) scale(1); }

/* Label at bottom center */
.hp-panel__label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.9);
  opacity: 0;
  transition: opacity .3s var(--ease) .35s;
  pointer-events: none;
  white-space: nowrap;
}

.hp-panel:hover .hp-panel__label,
.hp-panel:focus-visible .hp-panel__label {
  opacity: 1;
}

/* ── Shared background image ── */
.hp-hero {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #0c0905; /* shows while image loads */
}

.hp-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 6, 3, 0.42);
  pointer-events: none;
}

.hp-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  pointer-events: none;
}

/* Top + bottom vignettes */
.hp-hero::before,
.hp-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  z-index: 5;
  pointer-events: none;
}

.hp-hero::before {
  top: 0;
  height: 20%;
  background: linear-gradient(180deg, rgba(12, 9, 5, 0.7) 0%, transparent 100%);
}

.hp-hero::after {
  bottom: 0;
  height: 15%;
  background: linear-gradient(0deg, rgba(12, 9, 5, 0.7) 0%, transparent 100%);
}

/* ── Panel stagger load-in ── */
.hp-panel {
  opacity: 0;
  animation: hpPanelIn 0.9s var(--ease) forwards;
  animation-play-state: paused;
}

.is-loaded .hp-panel { animation-play-state: running; }

.hp-panel:nth-child(1) { animation-delay: 0.08s; }
.hp-panel:nth-child(2) { animation-delay: 0.16s; }
.hp-panel:nth-child(3) { animation-delay: 0.24s; }
.hp-panel:nth-child(4) { animation-delay: 0.32s; }
.hp-panel:nth-child(5) { animation-delay: 0.40s; }

@keyframes hpPanelIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   BRAND PAGE — IMMERSIVE DARK HERO + EDITORIAL BODY
   Dark full-bleed hero, accent highlights, cream body, dark gallery
───────────────────────────────────────────────────────────────────────────── */

.brand-page {
  background: #f0ebe4;
  color: #2a231e;
  min-height: 100vh;
}

/* Header: stays dark over hero, adapts when scrolled into cream content */
.is-brand-page .sg-header {
  background: linear-gradient(180deg, rgba(10, 8, 4, 0.75) 0%, transparent 100%);
}
.is-brand-page .sg-header.is-scrolled {
  background: rgba(240, 235, 228, 0.97);
  backdrop-filter: blur(12px);
}
.is-brand-page .sg-header.is-scrolled .sg-header__logo-name { color: rgba(42, 35, 30, 0.85); }
.is-brand-page .sg-header.is-scrolled .sg-nav a             { color: rgba(42, 35, 30, 0.5); }
.is-brand-page .sg-header.is-scrolled .sg-nav a:hover       { color: #2a231e; }
.is-brand-page .sg-header.is-scrolled .sg-hamburger span    { background: rgba(42, 35, 30, 0.6); }

/* ── Back link — pill with blur, readable on any bg ── */
.brand-back {
  position: fixed;
  top: calc(var(--header-h) + 1.2rem);
  left: 3.2rem;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.6);
  padding: 0.7rem 1.4rem 0.7rem 1rem;
  background: rgba(10, 8, 4, 0.32);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(237, 229, 212, 0.1);
  transition: color var(--t-micro) var(--ease), background var(--t-micro) var(--ease), border-color var(--t-micro) var(--ease);
}
.brand-back:hover {
  color: var(--cream);
  background: rgba(10, 8, 4, 0.6);
  border-color: rgba(237, 229, 212, 0.25);
}
.brand-back svg { flex-shrink: 0; }

/* ── HERO — full viewport, dark, image as background ── */
.brand-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #0c0905;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.brand-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(8, 6, 3, 0.62) 0%,
    rgba(8, 6, 3, 0.28) 42%,
    rgba(8, 6, 3, 0.72) 100%
  );
}

.brand-hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 160px;
  pointer-events: none;
}

.brand-hero__inner {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  text-align: center;
  padding: 12rem 4rem 10rem;
  max-width: 110rem;
  width: 100%;
}

/* Eyebrow — accent color */
.brand-hero__eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.46em;
  text-transform: uppercase;
  color: var(--accent, #c8b49a);
  opacity: 0;
  animation: brandFadeUp .7s var(--ease-spring) .2s forwards;
}

/* Large display title — split weight */
.brand-hero__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(5.6rem, 11vw, 16rem);
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--cream);
  opacity: 0;
  animation: brandFadeUp .95s var(--ease-spring) .3s forwards;
}
.brand-hero__name-bold  { font-weight: 600; }
.brand-hero__name-light { font-weight: 200; color: rgba(237, 229, 212, 0.42); }

/* Thin accent rule */
.brand-hero__rule {
  width: 3.6rem;
  height: 1px;
  background: var(--accent, #c8b49a);
  opacity: 0;
  animation: brandFadeUp .5s var(--ease) .48s forwards;
}

/* Description */
.brand-hero__desc {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: clamp(1.4rem, 1.7vw, 1.75rem);
  font-weight: 300;
  line-height: 1.8;
  color: rgba(237, 229, 212, 0.52);
  max-width: 58rem;
  opacity: 0;
  animation: brandFadeUp .75s var(--ease-spring) .55s forwards;
}

/* Actions row */
.brand-hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 0.4rem;
  opacity: 0;
  animation: brandFadeUp .75s var(--ease-spring) .72s forwards;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── Primary button ── */
.brand-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  padding: 1.55rem 4rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0c0905;
  background: var(--accent, #c8b49a);
  border: 1px solid var(--accent, #c8b49a);
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
}
.brand-btn-primary:hover {
  background: transparent;
  color: var(--cream);
  border-color: rgba(237, 229, 212, 0.45);
}
.brand-btn-primary svg { transition: transform var(--t-fast) var(--ease-spring); }
.brand-btn-primary:hover svg { transform: translateX(6px); }

/* Scroll cue */
.brand-hero__scroll {
  position: absolute;
  bottom: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(237, 229, 212, 0.28);
  opacity: 0;
  animation: brandFadeUp .7s var(--ease) 1s forwards;
}
.brand-hero__scroll svg { animation: scrollDrop 2.4s var(--ease-out) infinite; }
.brand-hero__scroll-lbl {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes scrollDrop {
  0%, 100% { transform: translateY(0); opacity: 0.28; }
  55%       { transform: translateY(9px); opacity: 0.65; }
}

@keyframes brandFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Info band — dark bridge between hero and content ── */
.brand-infoband {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 2.8rem 6rem;
  background: #1c1610;
  border-top: 1px solid rgba(237, 229, 212, 0.05);
  flex-wrap: wrap;
}
.brand-infoband__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.7);
  white-space: nowrap;
}
.brand-infoband__cat {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent, #c8b49a);
  flex: 1;
  text-align: center;
}
.brand-infoband__visit {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.4);
  border-bottom: 1px solid rgba(237, 229, 212, 0.15);
  padding-bottom: 0.2rem;
  white-space: nowrap;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.brand-infoband__visit:hover {
  color: var(--cream);
  border-color: rgba(237, 229, 212, 0.5);
}

/* ── Feature media ── */
.brand-feature-media {
  width: 100%;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  background: #1c1610;
}
.brand-feature-media img,
.brand-feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease);
}
.brand-feature-media:hover img { transform: scale(1.02); }

/* ── Content / About ── */
.brand-content {
  padding: 12rem 6rem;
  background: #f0ebe4;
}
.brand-content__inner {
  max-width: 92rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 22rem 1fr;
  gap: 8rem;
  align-items: start;
}
.brand-content__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(42, 35, 30, 0.28);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  padding-top: 0.4rem;
}
.brand-content__body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.7rem;
  font-weight: 300;
  line-height: 1.82;
  color: rgba(42, 35, 30, 0.68);
}
.brand-content__body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4rem;
  font-weight: 300;
  color: #2a231e;
  margin-bottom: 2.4rem;
  margin-top: 5.6rem;
  line-height: 1.15;
}
.brand-content__body p  { margin-bottom: 2rem; }
.brand-content__body a  {
  color: var(--accent, #c8b49a);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.brand-content__body a:hover { border-color: var(--accent, #c8b49a); }

/* ── Eyebrow label ── */
.sg-eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent, #c8b49a);
}

/* ── Gallery — dark section ── */
.brand-gallery {
  padding: 10rem 4rem;
  background: #1c1610;
}
.brand-gallery__header {
  max-width: 120rem;
  margin: 0 auto 4.8rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid rgba(237, 229, 212, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand-gallery__count {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.14em;
  color: rgba(237, 229, 212, 0.25);
}
.brand-gallery__grid {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}
.brand-gallery__item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #2a231e;
}
.brand-gallery__item--wide { grid-column: span 2; aspect-ratio: 8 / 3; }
.brand-gallery__item--tall { grid-row: span 2; aspect-ratio: 2 / 3; }
.brand-gallery__btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}
.brand-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .85s var(--ease-spring);
  will-change: transform;
}
.brand-gallery__btn:hover .brand-gallery__img { transform: scale(1.05); }
.brand-gallery__hover {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 3, 0.35);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-gallery__hover::after {
  content: '+';
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 200;
  color: rgba(237, 229, 212, 0.6);
}
.brand-gallery__btn:hover .brand-gallery__hover { opacity: 1; }

/* ── Brand film / video ── */
.brand-video {
  background: #0c0905;
  position: relative;
  overflow: hidden;
}

.brand-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 0%, rgba(200, 180, 154, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.brand-video__header {
  position: relative;
  max-width: 120rem;
  margin: 0 auto;
  padding: 9rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.brand-video__eyebrow {
  /* inherits .sg-eyebrow */
}

.brand-video__title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 4.5vw, 6rem);
  font-weight: 300;
  color: rgba(237, 229, 212, 0.75);
  letter-spacing: -0.015em;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand-video__frame {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #111;
}

.brand-video__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ── CTA strip — dark, always shown ── */
.brand-cta {
  padding: 12rem 6rem;
  background: #0c0905;
  position: relative;
  overflow: hidden;
}
.brand-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 65% 50%, rgba(200, 180, 154, 0.07) 0%, transparent 70%);
  pointer-events: none;
}
.brand-cta__inner {
  position: relative;
  max-width: 92rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}
.brand-cta__left {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.brand-cta__eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent, #c8b49a);
}
.brand-cta__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.2rem, 5.5vw, 7rem);
  font-weight: 300;
  color: rgba(237, 229, 212, 0.82);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

/* CTA button */
.brand-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  flex-shrink: 0;
  padding: 1.7rem 4.4rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.65);
  border: 1px solid rgba(237, 229, 212, 0.22);
  transition:
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease);
}
.brand-cta__btn:hover {
  color: #0c0905;
  background: var(--cream);
  border-color: var(--cream);
}
.brand-cta__arrow {
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
  transition: width var(--t-fast) var(--ease-spring);
}
.brand-cta__btn:hover .brand-cta__arrow { width: 3.6rem; }
.brand-cta__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

/* ── Scroll reveal ── */
.is-brand-page .sg-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease-spring);
}
.is-brand-page .sg-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}



/* ─────────────────────────────────────────────────────────────────────────────
   STICKY SECTION NAV
───────────────────────────────────────────────────────────────────────────── */
.brand-section-nav {
  position: fixed;
  top: var(--header-h);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  z-index: 150;
  display: flex;
  align-items: stretch;
  background: rgba(240, 235, 228, 0.95);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(42, 35, 30, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s var(--ease), transform .45s var(--ease);
  white-space: nowrap;
}

.brand-section-nav.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.brand-section-nav__link {
  display: flex;
  align-items: center;
  padding: 1rem 2.4rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(42, 35, 30, 0.45);
  border-right: 1px solid rgba(42, 35, 30, 0.08);
  transition: color .25s var(--ease), background .25s var(--ease);
}

.brand-section-nav__link:hover {
  color: rgba(42, 35, 30, 0.82);
  background: rgba(42, 35, 30, 0.04);
}

.brand-section-nav__link.is-active {
  color: rgba(42, 35, 30, 0.85);
}

.brand-section-nav__enquire {
  display: flex;
  align-items: center;
  padding: 1rem 2.4rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0c0905;
  background: var(--accent, #c8b49a);
  border: none;
  cursor: pointer;
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}

.brand-section-nav__enquire:hover {
  background: #2a231e;
  color: var(--cream);
}

/* ─────────────────────────────────────────────────────────────────────────────
   BRAND STATS STRIP
───────────────────────────────────────────────────────────────────────────── */
.brand-stats {
  background: #1c1610;
  border-top: 1px solid rgba(237, 229, 212, 0.05);
}

.brand-stats__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 6rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.brand-stats__item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  padding: 4rem 0 4rem 3.2rem;
  border-left: 1px solid rgba(237, 229, 212, 0.07);
}

.brand-stats__item:first-child {
  border-left: none;
  padding-left: 0;
}

.brand-stats__value {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  letter-spacing: -0.02em;
}

.brand-stats__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.3);
}

/* ─────────────────────────────────────────────────────────────────────────────
   TESTIMONIAL / QUOTE
───────────────────────────────────────────────────────────────────────────── */
.brand-quote {
  padding: 12rem 6rem;
  background: #f0ebe4;
}

.brand-quote__inner {
  max-width: 78rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  text-align: center;
}

.brand-quote__mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 9rem;
  font-weight: 200;
  color: var(--accent, #c8b49a);
  line-height: 0.45;
  opacity: 0.55;
  display: block;
}

.brand-quote__text {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(42, 35, 30, 0.78);
  font-style: italic;
}

.brand-quote__cite {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-style: normal;
  align-items: center;
}

.brand-quote__author {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(42, 35, 30, 0.5);
}

.brand-quote__role {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(42, 35, 30, 0.32);
}

/* ─────────────────────────────────────────────────────────────────────────────
   INQUIRY MODAL
───────────────────────────────────────────────────────────────────────────── */
.brand-inquiry {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  flex-direction: column;
  background: rgba(10, 8, 4, 0.97);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  color: var(--cream);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--t-standard) var(--ease), visibility var(--t-standard) var(--ease);
}

.brand-inquiry:not([hidden]) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.brand-inquiry[hidden] { display: flex; }

.brand-inquiry__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.4rem 4rem;
  flex-shrink: 0;
  border-bottom: 1px solid rgba(237, 229, 212, 0.06);
}

.brand-inquiry__brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.45);
}

.brand-inquiry__close {
  position: relative;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  flex-shrink: 0;
}

.brand-inquiry__close span {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: rgba(237, 229, 212, 0.45);
  transition: background .25s var(--ease);
}

.brand-inquiry__close span:nth-child(1) { transform: translateY(-50%) rotate(45deg); }
.brand-inquiry__close span:nth-child(2) { transform: translateY(-50%) rotate(-45deg); }
.brand-inquiry__close:hover span { background: var(--cream); }

.brand-inquiry__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  padding: 0 4rem;
  overflow-y: auto;
  min-height: 0;
  align-items: center;
  gap: 8rem;
}

.brand-inquiry__left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.brand-inquiry__eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--accent, #c8b49a);
}

.brand-inquiry__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.8rem, 5.5vw, 7rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.025em;
}

.brand-inquiry__sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  color: rgba(237, 229, 212, 0.38);
  line-height: 1.75;
  max-width: 34rem;
}

.brand-inquiry__contact { margin-top: 0.8rem; }

.brand-inquiry__email {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(237, 229, 212, 0.5);
  border-bottom: 1px solid rgba(237, 229, 212, 0.15);
  padding-bottom: 0.2rem;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.brand-inquiry__email:hover {
  color: var(--cream);
  border-color: rgba(237, 229, 212, 0.45);
}

.brand-inquiry__form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 5rem 0;
}

.brand-inquiry__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.brand-inquiry__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.3);
}

.brand-inquiry__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(237, 229, 212, 0.15);
  padding: 1.2rem 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--cream);
  outline: none;
  width: 100%;
  transition: border-color .3s var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}

.brand-inquiry__input::placeholder {
  color: rgba(237, 229, 212, 0.18);
}

.brand-inquiry__input:focus {
  border-bottom-color: rgba(237, 229, 212, 0.45);
}

.brand-inquiry__textarea {
  resize: none;
  line-height: 1.65;
}

.brand-inquiry__footer {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex-wrap: wrap;
  margin-top: 0.4rem;
}

.brand-inquiry__submit {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.4rem 3rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0c0905;
  background: var(--accent, #c8b49a);
  border: 1px solid var(--accent, #c8b49a);
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
}

.brand-inquiry__submit:hover {
  background: transparent;
  color: var(--cream);
  border-color: rgba(237, 229, 212, 0.4);
}

.brand-inquiry__submit-arrow {
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
  transition: width var(--t-fast) var(--ease);
}

.brand-inquiry__submit:hover .brand-inquiry__submit-arrow { width: 3.6rem; }

.brand-inquiry__submit-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.brand-inquiry__status {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(237, 229, 212, 0.45);
  min-height: 1.8rem;
}

.brand-inquiry__status.is-success { color: #7a8c6e; }
.brand-inquiry__status.is-error   { color: #b5674d; }

/* ─────────────────────────────────────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────────────────────────────────────── */
.contact-page {
  background: #f0ebe4;
  min-height: 100vh;
}

.contact-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--bg);
  padding: 0 6rem 7rem;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 15% 80%, rgba(200, 180, 154, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

.contact-hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  max-width: 80rem;
}

.contact-hero__eyebrow {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--accent, #c8b49a);
}

.contact-hero__heading {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(5rem, 10vw, 12rem);
  font-weight: 300;
  line-height: 0.88;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--cream);
}

.contact-hero__heading-bold  { font-weight: 600; display: block; }
.contact-hero__heading-light { font-weight: 200; color: rgba(237, 229, 212, 0.4); display: block; }

.contact-hero__sub {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 300;
  color: rgba(237, 229, 212, 0.38);
  max-width: 44rem;
  line-height: 1.75;
}

.contact-body {
  padding: 10rem 6rem;
}

.contact-body__inner {
  max-width: 120rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 10rem;
  align-items: start;
}

/* Left: info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: sticky;
  top: calc(var(--header-h) + 3rem);
}

.contact-info__block {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-info__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(42, 35, 30, 0.3);
}

.contact-info__link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: rgba(42, 35, 30, 0.65);
  border-bottom: 1px solid rgba(42, 35, 30, 0.15);
  padding-bottom: 0.2rem;
  display: inline-block;
  transition: color .25s var(--ease), border-color .25s var(--ease);
}

.contact-info__link:hover {
  color: #2a231e;
  border-color: rgba(42, 35, 30, 0.4);
}

.contact-info__brand-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: rgba(42, 35, 30, 0.45);
  display: block;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(42, 35, 30, 0.06);
  transition: color .25s var(--ease);
}

.contact-info__brand-link:hover { color: #2a231e; }
.contact-info__brand-link:last-child { border-bottom: none; }

.contact-info__socials {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-info__social-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(42, 35, 30, 0.45);
  transition: color .25s var(--ease);
}

.contact-info__social-link:hover { color: #2a231e; }

/* Right: form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.6rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form__label {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(42, 35, 30, 0.32);
}

.contact-form__label span { color: rgba(42, 35, 30, 0.2); }

.contact-form__input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(42, 35, 30, 0.15);
  padding: 1.2rem 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #2a231e;
  outline: none;
  width: 100%;
  transition: border-color .3s var(--ease);
  -webkit-appearance: none;
  border-radius: 0;
}

.contact-form__input::placeholder { color: rgba(42, 35, 30, 0.2); }
.contact-form__input:focus { border-bottom-color: rgba(42, 35, 30, 0.45); }

.contact-form__textarea { resize: none; line-height: 1.65; }

.contact-form__actions {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex-wrap: wrap;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 1.4rem 3rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #0c0905;
  background: var(--sand);
  border: 1px solid var(--sand);
  cursor: pointer;
  transition:
    background var(--t-fast) var(--ease),
    color var(--t-fast) var(--ease),
    border-color var(--t-fast) var(--ease);
}

.contact-form__submit:hover {
  background: #2a231e;
  color: var(--cream);
  border-color: #2a231e;
}

.contact-form__arrow {
  display: inline-block;
  width: 2.4rem;
  height: 1px;
  background: currentColor;
  position: relative;
  flex-shrink: 0;
  transition: width var(--t-fast) var(--ease);
}

.contact-form__submit:hover .contact-form__arrow { width: 3.6rem; }

.contact-form__arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.contact-form__status {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(42, 35, 30, 0.45);
  min-height: 1.8rem;
}

.contact-form__status.is-success { color: #7a8c6e; }
.contact-form__status.is-error   { color: #b5674d; }

/* ─────────────────────────────────────────────────────────────────────────────
   LIGHTBOX
───────────────────────────────────────────────────────────────────────────── */
.sg-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s var(--ease), visibility .35s var(--ease);
}

.sg-lightbox:not([hidden]) {
  opacity: 1;
  visibility: visible;
}

.sg-lightbox[hidden] { display: flex; }

.sg-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 3, 0.94);
  cursor: zoom-out;
}

.sg-lightbox__stage {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92vw;
  height: 88vh;
  max-width: 140rem;
}

.sg-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity .25s var(--ease);
  display: block;
}

.sg-lightbox__close {
  position: fixed;
  top: 2.4rem;
  right: 2.4rem;
  z-index: 2;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(237, 229, 212, 0.6);
  transition: color .25s var(--ease);
}

.sg-lightbox__close:hover { color: var(--cream); }

.sg-lightbox__prev,
.sg-lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 5.6rem;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(237, 229, 212, 0.5);
  transition: color .25s var(--ease), opacity .25s var(--ease);
}

.sg-lightbox__prev { left: -6rem; }
.sg-lightbox__next { right: -6rem; }

.sg-lightbox__prev:hover,
.sg-lightbox__next:hover { color: var(--cream); }

/* ─────────────────────────────────────────────────────────────────────────────
   SITE FOOTER
───────────────────────────────────────────────────────────────────────────── */
.sg-footer {
  background: var(--charcoal);
  color: rgba(237, 229, 212, 0.5);
  padding: 6.4rem 4rem 4rem;
}

.sg-footer__inner {
  max-width: 120rem;
  margin: 0 auto;
}

.sg-footer__top {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 4rem;
  padding-bottom: 4.8rem;
}

.sg-footer__name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.75);
  margin-bottom: 0.8rem;
}

.sg-footer__tagline {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: rgba(237, 229, 212, 0.3);
}

.sg-footer__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2.4rem;
  justify-content: center;
}

.sg-footer__brand-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.4);
  transition: color .25s var(--ease);
}

.sg-footer__brand-link:hover { color: rgba(237, 229, 212, 0.75); }

.sg-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  list-style: none;
  text-align: right;
}

.sg-footer__nav-list a {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(237, 229, 212, 0.4);
  transition: color .25s var(--ease);
}

.sg-footer__nav-list a:hover { color: rgba(237, 229, 212, 0.75); }

.sg-footer__divider {
  height: 1px;
  background: rgba(237, 229, 212, 0.07);
  margin-bottom: 2.4rem;
}

.sg-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.sg-footer__copy {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(237, 229, 212, 0.25);
}

.sg-footer__legal {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(237, 229, 212, 0.25);
}

.sg-footer__legal a { transition: color .25s var(--ease); }
.sg-footer__legal a:hover { color: rgba(237, 229, 212, 0.55); }

/* ─────────────────────────────────────────────────────────────────────────────
   SCROLL REVEAL
───────────────────────────────────────────────────────────────────────────── */
.sg-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease-spring);
}

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

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET  ≤ 1024px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  /* ── Brand content ── */
  .brand-content { padding: 10rem 4rem; }
  .brand-content__inner { grid-template-columns: 16rem 1fr; gap: 5rem; }

  /* ── Gallery ── */
  .brand-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .brand-gallery__item--wide { grid-column: span 2; aspect-ratio: 16/7; }
  .brand-gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }

  /* ── Lightbox ── */
  .sg-lightbox__prev { left: 0.8rem; }
  .sg-lightbox__next { right: 0.8rem; }

  /* ── Footer ── */
  .sg-footer__top { grid-template-columns: 1fr 1fr; }
  .sg-footer__nav { grid-column: 1 / -1; }
  .sg-footer__nav-list { text-align: left; flex-direction: row; flex-wrap: wrap; gap: 0.8rem 2rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — MOBILE  ≤ 768px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  body { overflow-x: hidden; }

  /* Shrink header height token */
  :root { --header-h: 5rem; }

  /* ─── Site header ─── */
  .sg-header {
    padding: 0 1.6rem;
    height: var(--header-h);
  }
  .sg-header__logo .custom-logo { height: 1.8rem; }
  .sg-header__logo-name {
    font-size: 1.05rem;
    letter-spacing: 0.2em;
  }
  /* Larger touch target for hamburger */
  .sg-hamburger {
    width: 4.4rem;
    height: 4.4rem;
    padding: 10px;
    gap: 6px;
  }

  /* ─── Homepage nav ─── */
  .hp-nav { height: 50px; padding: 0 1.6rem; }
  .hp-nav__logo .custom-logo { height: 1.7rem; }
  .hp-nav__wordmark { font-size: 0.95rem; letter-spacing: 0.28em; }
  .hp-nav__toggle { width: 2rem; height: 2rem; }

  /* ─── Overlay nav: single-column luxe layout ─── */
  .sg-nav-overlay__topbar {
    padding: 1.8rem 2rem;
    border-bottom: 1px solid rgba(237, 229, 212, 0.07);
  }
  .sg-nav-overlay__logo {
    font-size: 1rem;
    letter-spacing: 0.24em;
  }
  .sg-nav-overlay__body {
    grid-template-columns: 1fr;
    padding: 2.4rem 2rem 3.2rem;
    gap: 3.6rem;
    overflow-y: auto;
  }
  .sg-nav-overlay__brands {
    padding-right: 0;
    border-right: none;
    padding-bottom: 3.2rem;
    border-bottom: 1px solid rgba(237, 229, 212, 0.07);
    justify-content: flex-start;
  }
  .sg-brand-row { padding: 1.6rem 0; gap: 1.2rem; }
  .sg-brand-row__name { font-size: clamp(2rem, 7.5vw, 3.6rem); }
  .sg-brand-row__num { min-width: 3rem; font-size: 0.82rem; }
  .sg-nav-overlay__info {
    padding-left: 0;
    gap: 2.8rem;
    justify-content: flex-start;
  }
  .sg-nav-contact__label { font-size: 0.82rem; }
  .sg-nav-contact__link { font-size: 1.1rem; }
  .sg-nav-contact__socials { font-size: 1rem; }
  .sg-nav-contact__cta {
    margin-top: 0;
    font-size: 0.85rem;
    letter-spacing: 0.22em;
    padding-bottom: 0.9rem;
  }

  /* ─── Homepage hero: panels stack vertically ─── */
  .hp-hero {
    flex-direction: column;
    position: relative;
    height: auto;
    min-height: 100svh;
  }
  .hp-panel {
    flex: 1 0 auto;
    width: 100%;
    min-height: 17svh;
  }
  .hp-panel + .hp-panel {
    border-left: none;
    border-top: 1px solid rgba(237, 229, 212, 0.06);
  }
  .hp-panel__label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    opacity: 1;
  }
  /* Outlines always shown on touch — no hover state */
  .hp-outline { top: 12%; bottom: 12%; left: 6%; right: 6%; }
  .hp-outline__t   { transform: scaleX(1); }
  .hp-outline__r   { transform: scaleY(1); }
  .hp-outline__b   { transform: scaleX(1); }
  .hp-outline__l   { transform: scaleY(1); }
  .hp-outline__dot { transform: translate(-50%, -50%) scale(0); }
  .hp-hero::before,
  .hp-hero::after  { display: none; }

  /* ─── Brand: back link ─── */
  .brand-back {
    left: 1.6rem;
    font-size: 0.72rem;
    padding: 0.7rem 1.2rem 0.7rem 0.9rem;
    gap: 0.6rem;
  }

  /* ─── Brand hero ─── */
  .brand-hero { min-height: 100svh; }
  .brand-hero__inner {
    padding: 9rem 2.4rem 7rem;
    gap: 2.4rem;
    align-items: flex-start;
    text-align: left;
  }
  .brand-hero__eyebrow { letter-spacing: 0.3em; font-size: 0.78rem; }
  .brand-hero__name {
    font-size: clamp(4rem, 11vw, 8rem);
    line-height: 0.9;
    letter-spacing: -0.02em;
  }
  .brand-hero__rule { margin: 0; }
  .brand-hero__desc {
    font-size: 1.52rem;
    line-height: 1.76;
    max-width: 100%;
    color: rgba(237, 229, 212, 0.55);
  }
  .brand-hero__actions {
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 1.2rem;
    margin-top: 0.4rem;
  }
  .brand-btn-primary {
    width: 100%;
    justify-content: center;
    padding: 1.9rem 2.4rem;
  }
  .brand-hero__scroll { bottom: 2.4rem; }

  /* ─── Brand info band ─── */
  .brand-infoband {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.6rem 2rem;
    gap: 1.2rem;
  }
  .brand-infoband__cat {
    order: -1;
    text-align: left;
    flex: none;
    width: 100%;
    font-size: 0.75rem;
  }
  .brand-infoband__visit {
    align-self: flex-start;
    font-size: 0.78rem;
  }

  /* ─── Feature media ─── */
  .brand-feature-media { aspect-ratio: 4/3; }

  /* ─── Content / About ─── */
  .brand-content { padding: 7rem 2rem; }
  .brand-content__inner { grid-template-columns: 1fr; gap: 2rem; }
  .brand-content__label { position: static; padding-top: 0; }
  .brand-content__body { font-size: 1.6rem; line-height: 1.78; }
  .brand-content__body h2 { font-size: 3rem; margin-top: 4rem; margin-bottom: 2rem; }

  /* ─── Gallery ─── */
  .brand-gallery { padding: 6rem 1.6rem; }
  .brand-gallery__header { margin-bottom: 3.2rem; }
  .brand-gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 0.4rem; }
  .brand-gallery__item--wide { grid-column: span 2; aspect-ratio: 4/3; }
  .brand-gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }

  /* ─── Section nav ─── */
  .brand-section-nav { display: none; }

  /* ─── Stats ─── */
  .brand-stats__inner { grid-template-columns: repeat(2, 1fr); padding: 0 2rem; }
  .brand-stats__item  { padding: 2.8rem 0 2.8rem 2rem; }
  .brand-stats__item:nth-child(odd)  { border-left: none; padding-left: 0; }
  .brand-stats__item:nth-child(even) { border-left: 1px solid rgba(237, 229, 212, 0.07); }
  .brand-stats__value { font-size: 2.6rem; }

  /* ─── Quote ─── */
  .brand-quote { padding: 8rem 2.4rem; }
  .brand-quote__text { font-size: clamp(2rem, 5.5vw, 3rem); }
  .brand-quote__mark { font-size: 7rem; }

  /* ─── Inquiry modal ─── */
  .brand-inquiry__topbar { padding: 1.8rem 2rem; }
  .brand-inquiry__body   { grid-template-columns: 1fr; padding: 0 2rem; gap: 0; align-items: flex-start; }
  .brand-inquiry__left   { padding: 4rem 0 3rem; border-bottom: 1px solid rgba(237, 229, 212, 0.06); }
  .brand-inquiry__form   { padding: 3.2rem 0 4rem; gap: 2.4rem; }
  .brand-inquiry__heading { font-size: clamp(3.4rem, 9vw, 5.5rem); }

  /* ─── Contact page ─── */
  .contact-hero { padding: 0 2rem 5rem; min-height: 48vh; }
  .contact-body { padding: 6rem 2rem; }
  .contact-body__inner { grid-template-columns: 1fr; gap: 5rem; }
  .contact-info { position: static; }
  .contact-form__row { grid-template-columns: 1fr; gap: 2.4rem; }

  /* ─── Video ─── */
  .brand-video__header { padding: 7rem 2rem 4rem; gap: 1.2rem; }

  /* ─── CTA ─── */
  .brand-cta { padding: 8rem 2rem; }
  .brand-cta__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
  .brand-cta__text { line-height: 1; }
  .brand-cta__btn {
    width: 100%;
    justify-content: center;
    padding: 1.9rem 2.4rem;
  }

  /* ─── Footer ─── */
  .sg-footer { padding: 5rem 2rem 3.2rem; }
  .sg-footer__top { grid-template-columns: 1fr; gap: 3.2rem; }
  .sg-footer__brands { justify-content: flex-start; }
  .sg-footer__nav-list {
    text-align: left;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 2rem;
  }
  .sg-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  /* ─── Lightbox ─── */
  .sg-lightbox__stage { width: 96vw; height: 80vh; }
  .sg-lightbox__prev { left: 0.4rem; }
  .sg-lightbox__next { right: 0.4rem; }
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE — SMALL MOBILE  ≤ 480px
───────────────────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  /* ─── Site header ─── */
  .sg-header { padding: 0 1.4rem; }
  .sg-header__logo .custom-logo { height: 1.6rem; }
  .sg-header__logo-name { font-size: 0.95rem; letter-spacing: 0.18em; }

  /* ─── Homepage nav ─── */
  .hp-nav { height: 46px; padding: 0 1.2rem; }
  .hp-nav__logo .custom-logo { height: 1.5rem; }
  .hp-nav__wordmark { font-size: 0.88rem; letter-spacing: 0.24em; }

  /* ─── Overlay nav ─── */
  .sg-nav-overlay__topbar { padding: 1.5rem 1.4rem; }
  .sg-nav-overlay__logo { font-size: 0.92rem; letter-spacing: 0.22em; }
  .sg-nav-overlay__body { padding: 2rem 1.4rem 2.8rem; gap: 3rem; }
  .sg-brand-row { padding: 1.3rem 0; gap: 1rem; }
  .sg-brand-row__name { font-size: clamp(1.9rem, 8vw, 3.2rem); }
  .sg-brand-row__num { min-width: 2.4rem; font-size: 0.76rem; }
  .sg-brand-row__plus { font-size: 1.1rem; }
  .sg-nav-overlay__info { gap: 2.4rem; }
  .sg-nav-contact__label { font-size: 0.76rem; }
  .sg-nav-contact__link { font-size: 1rem; }
  .sg-nav-contact__socials { font-size: 0.96rem; }
  .sg-nav-contact__cta { font-size: 0.8rem; letter-spacing: 0.2em; padding-bottom: 0.8rem; }
  .sg-nav-contact__cta-arrow { width: 2.4rem; }

  /* ─── Homepage panels ─── */
  .hp-panel { min-height: 16svh; }
  .hp-panel__label { font-size: 0.72rem; letter-spacing: 0.18em; }
  .hp-outline { top: 10%; bottom: 10%; left: 4%; right: 4%; }

  /* ─── Brand: back link ─── */
  .brand-back { left: 1.2rem; font-size: 0.68rem; padding: 0.6rem 1rem 0.6rem 0.7rem; }

  /* ─── Brand hero ─── */
  .brand-hero__inner { padding: 8rem 1.8rem 6rem; gap: 1.8rem; }
  .brand-hero__eyebrow { font-size: 0.72rem; letter-spacing: 0.28em; }
  .brand-hero__name { font-size: clamp(3.2rem, 12vw, 5.5rem); line-height: 0.88; }
  .brand-hero__desc { font-size: 1.44rem; line-height: 1.72; }
  .brand-btn-primary { padding: 1.7rem 2rem; font-size: 0.8rem; letter-spacing: 0.2em; }
  .brand-hero__scroll { bottom: 1.8rem; }

  /* ─── Brand info band ─── */
  .brand-infoband { padding: 2rem 1.6rem; gap: 1rem; }
  .brand-infoband__name { font-size: 1.3rem; }
  .brand-infoband__cat { font-size: 0.7rem; letter-spacing: 0.26em; }

  /* ─── Feature media ─── */
  .brand-feature-media { aspect-ratio: 3/2; }

  /* ─── Content ─── */
  .brand-content { padding: 6rem 1.6rem; }
  .brand-content__body { font-size: 1.5rem; line-height: 1.76; }
  .brand-content__body h2 { font-size: 2.6rem; margin-top: 3.2rem; }

  /* ─── Gallery: single column ─── */
  .brand-gallery { padding: 5rem 1.2rem; }
  .brand-gallery__grid { grid-template-columns: 1fr; gap: 0.3rem; }
  .brand-gallery__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .brand-gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }

  /* ─── Stats ─── */
  .brand-stats__inner { padding: 0 1.6rem; }
  .brand-stats__item  { padding: 2.4rem 0 2.4rem 1.6rem; }
  .brand-stats__value { font-size: 2.2rem; }

  /* ─── Quote ─── */
  .brand-quote { padding: 6rem 1.6rem; }
  .brand-quote__text { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .brand-quote__mark { font-size: 5.5rem; }

  /* ─── Inquiry modal ─── */
  .brand-inquiry__topbar { padding: 1.5rem 1.4rem; }
  .brand-inquiry__body   { padding: 0 1.4rem; }
  .brand-inquiry__heading { font-size: clamp(3rem, 9vw, 5rem); }
  .brand-inquiry__sub     { font-size: 1.3rem; }
  .brand-inquiry__form    { gap: 2rem; }

  /* ─── Contact page ─── */
  .contact-hero { padding: 0 1.6rem 4rem; }
  .contact-body { padding: 5rem 1.6rem; }

  /* ─── Video ─── */
  .brand-video__header { padding: 6rem 1.6rem 3.2rem; gap: 1rem; }
  .brand-video__title { font-size: clamp(2.4rem, 8vw, 4rem); }

  /* ─── CTA ─── */
  .brand-cta { padding: 6rem 1.6rem; }
  .brand-cta__text { font-size: clamp(3rem, 10vw, 5rem); }
  .brand-cta__btn { font-size: 0.8rem; letter-spacing: 0.2em; }

  /* ─── Footer ─── */
  .sg-footer { padding: 4.4rem 1.6rem 2.8rem; }
  .sg-footer__name { font-size: 1.5rem; }
  .sg-footer__tagline { font-size: 0.9rem; }
}
