/* ===== Reset & base ===== */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #FBF6F2;
  color: #241C1A;
  -webkit-font-smoothing: antialiased;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  overflow-x: hidden;
}
a {
  color: #8E3B46;
  text-decoration: none;
}
a:hover {
  color: #241C1A;
}
::selection {
  background: #8E3B46;
  color: #FBF6F2;
}

/* ===== Keyframes ===== */
@keyframes letterIn {
  from { opacity: 0; transform: translateY(0.5em) rotate(2deg); }
  to { opacity: 1; transform: none; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== Shared utilities ===== */
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8E3B46;
}
.eyebrow-tight {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8E3B46;
}
.section-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #241C1A;
  opacity: 0.55;
}
.accent {
  color: #8E3B46;
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #8E3B46;
}
.grain-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: 0.05;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns=%22http://www.w3.org/2000/svg%22 width=%22160%22 height=%22160%22><filter id=%22n%22><feTurbulence type=%22fractalNoise%22 baseFrequency=%220.85%22 numOctaves=%222%22 stitchTiles=%22stitch%22/></filter><rect width=%22100%25%22 height=%22100%25%22 filter=%22url(%23n)%22/></svg>');
}

/* ===== Header ===== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.15rem clamp(1.4rem, 5vw, 5.5rem);
  transition: background .4s ease, padding .4s ease, box-shadow .4s ease;
}
#site-header.scrolled {
  background: rgba(251, 246, 242, 0.82);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(36, 28, 26, 0.08);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
#site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.site-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  font-family: 'Fraunces', serif;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  color: #241C1A;
}
.logo-star {
  display: inline-block;
  color: #8E3B46;
  font-size: 0.8em;
  transition: transform .7s cubic-bezier(.2,.7,.2,1);
}
#site-header a:hover .logo-star {
  transform: rotate(200deg) scale(1.25);
}
.nav-link {
  color: #241C1A;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* ===== Buttons ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  line-height: 1;
  height: 2.9em;
  padding-left: 1.2rem;
  padding-right: 3.5em;
  background: #241C1A;
  color: #FBF6F2;
  border: 1px solid #F3DAD5;
  transition: background-color .4s ease, color .4s ease, border-color .4s ease;
}
.cta-btn:hover {
  background: #F3DAD5;
  color: #241C1A;
  border-color: #F3DAD5;
}
.cta-btn .cta-icon {
  position: absolute;
  right: 0.32em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.25em;
  width: 2.25em;
  border-radius: 2rem;
  background: #F3DAD5;
  transition: transform .3s ease-out;
}
.cta-btn:hover .cta-icon {
  background: #241C1A;
}
.cta-btn:active .cta-icon {
  transform: scale(0.95);
}
.cta-btn .cta-icon svg {
  width: 1.05em;
  height: 1.05em;
  color: #241C1A;
  transition: transform .3s ease-out, color .4s ease;
}
.cta-btn:hover .cta-icon svg {
  transform: translateX(0.1em) rotate(-25deg);
  color: #F3DAD5;
}
.cta-btn.cta-sm {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 2.6em;
  padding-left: 0.95rem;
  padding-right: 2.9em;
  background: transparent;
  color: #8E3B46;
  border-color: rgba(142, 59, 70, 0.4);
}
.cta-btn.cta-sm:hover {
  background: #8E3B46;
  color: #FBF6F2;
  border-color: #8E3B46;
}
.cta-btn.cta-sm .cta-icon {
  background: #8E3B46;
  height: 2em;
  width: 2em;
}
.cta-btn.cta-sm .cta-icon svg {
  color: #FBF6F2;
}
.cta-btn.cta-sm:hover .cta-icon {
  background: #FBF6F2;
}
.cta-btn.cta-sm:hover .cta-icon svg {
  color: #8E3B46;
}

/* ===== Floating chrome (progress bar, sound toggle) ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: #8E3B46;
  z-index: 10001;
  transition: width .1s linear;
}
#sound-toggle {
  position: fixed;
  right: clamp(1rem, 4vw, 2rem);
  bottom: clamp(1rem, 4vw, 2rem);
  z-index: 10001;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  height: 42px;
  padding: 0 1rem 0 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(142, 59, 70, 0.35);
  background: rgba(251, 246, 242, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #241C1A;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .3s, color .3s;
}
#sound-bars {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}
.sound-bar {
  width: 2px;
  background: #8E3B46;
  border-radius: 1px;
  transition: height .3s;
}

/* ===== Duotone portrait placeholders (hero + about) ===== */
.duotone-portrait {
  position: relative;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(45deg, rgba(36,28,26,0.045) 0 2px, transparent 2px 15px),
    var(--duo-grad);
}
.duotone-caption {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  font-family: ui-monospace, monospace;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(251, 246, 242, 0.85);
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  padding: 5.5rem clamp(1.4rem, 5vw, 5.5rem) clamp(4.5rem, 8vw, 5.5rem);
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #8E3B46;
}
.hero-meta-right {
  color: #241C1A;
  opacity: 0.55;
}
.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(1.2rem, 3vw, 2rem);
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(142, 59, 70, 0.4);
  border-radius: 999px;
  padding: 0.45rem 0.95rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8E3B46;
  background: rgba(251, 246, 242, 0.5);
}
.hero-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(3.2rem, 13vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.025em;
  margin: 1.3rem 0 0;
}
.hero-title-accent {
  font-style: italic;
  font-weight: 300;
  color: #8E3B46;
  display: inline-block;
  margin-left: 0.06em;
}
#hero-tagline {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.15rem, 2.3vw, 1.9rem);
  line-height: 1.5;
  font-weight: 300;
  max-width: 28ch;
  margin: 1.9rem 0 0;
}
.hero-role {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.1rem;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: #241C1A;
  opacity: 0.72;
}
.hero-portrait {
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-photo {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 90%;
  height: 120%;
  transform: translateX(-50%);
  object-fit: cover;
  object-position: top center;
  z-index: 1;
  pointer-events: none;
}
.hero-signature {
  position: absolute;
  bottom: 1.6rem;
  right: -0.6rem;
  font-family: 'Sacramento', cursive;
  font-size: 1.9rem;
  color: #8E3B46;
  transform: rotate(-6deg);
  background: rgba(251, 246, 242, 0.7);
  padding: 0 0.35rem;
  border-radius: 6px;
  z-index: 2;
}
.hero-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #241C1A;
  opacity: 0.55;
  margin-top: 1rem;
}
.hero-footer-location {
  font-family: 'Fraunces', serif;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.95rem;
  opacity: 0.9;
}
.hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-scroll-line {
  width: 34px;
  height: 1px;
  background: #8E3B46;
  display: inline-block;
}

/* ===== Stats ===== */
.stats-section {
  background: #F3DAD5;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.4rem, 5vw, 5.5rem);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
}
.stat-label {
  margin-top: 0.7rem;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8E3B46;
}

/* ===== About ===== */
.about-section {
  padding: clamp(4rem, 9vw, 8rem) clamp(1.4rem, 5vw, 5.5rem);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.about-photo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.about-lead {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.6vw, 2.15rem);
  line-height: 1.5;
  margin: 1.5rem 0 0;
}
.about-quote {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.7rem);
  line-height: 1.4;
  color: #8E3B46;
  margin: 2.2rem 0;
  padding-left: 1.4rem;
  border-left: 2px solid #8E3B46;
}
.about-body {
  font-size: 1rem;
  line-height: 1.85;
  max-width: 52ch;
  color: #241C1A;
  opacity: 0.82;
}
.services-grid {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem 2rem;
  max-width: 460px;
}
.service-row {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(36, 28, 26, 0.15);
  padding-top: 0.65rem;
}
.service-num {
  font-family: ui-monospace, monospace;
  color: #8E3B46;
}

/* ===== Reels ===== */
.reels-section {
  padding: 0 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.reels-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(36, 28, 26, 0.15);
  padding: 1.4rem clamp(1.4rem, 5vw, 5.5rem) 0;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.reels-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  line-height: 1;
  margin: 0;
}
#reel-track {
  display: flex;
  gap: clamp(0.9rem, 2vw, 1.6rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 2rem 0 2.4rem;
  perspective: 1400px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
#reel-track::-webkit-scrollbar {
  display: none;
}
.reel-spacer {
  flex: 0 0 calc(50% - min(31vw, 120px));
}
.reel {
  flex: 0 0 auto;
  width: min(62vw, 240px);
  scroll-snap-align: center;
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
  background-image:
    repeating-linear-gradient(45deg, rgba(36,28,26,0.05) 0 2px, transparent 2px 15px),
    linear-gradient(165deg, #C98A8F, #8E3B46);
}
.reel::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20, 14, 13, 0.72), rgba(20, 14, 13, 0));
  pointer-events: none;
}
.reel-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.reel-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(251, 246, 242, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s, opacity .5s;
  opacity: 0.85;
  z-index: 1;
}
.reel-play {
  width: 0;
  height: 0;
  border-left: 13px solid #8E3B46;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 3px;
}
.reel-caption {
  position: absolute;
  left: 0.9rem;
  bottom: 0.85rem;
  z-index: 1;
  font-family: ui-monospace, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(251, 246, 242, 0.9);
}
.reels-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}
.reel-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(142, 59, 70, 0.4);
  background: transparent;
  color: #8E3B46;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background .3s, color .3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-nav-btn svg {
  width: 18px;
  height: 18px;
}
#reel-dots {
  display: flex;
  gap: 0.5rem;
}

/* ===== Selected work ===== */
.work-section {
  padding: 0 clamp(1.4rem, 5vw, 5.5rem) clamp(4rem, 9vw, 7rem);
}
.work-intro {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.work-heading {
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 1.05;
  margin: 1rem 0 0;
}
.work-subhead {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(36, 28, 26, 0.15);
  padding-top: 1.2rem;
}
.work-subhead-title {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  margin: 0;
}

/* ===== UGC grid ===== */
.ugc-grid {
  display: flex;
  gap: clamp(0.7rem, 1.4vw, 1rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.8rem;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.ugc-grid::-webkit-scrollbar {
  height: 6px;
}
.ugc-grid::-webkit-scrollbar-thumb {
  background: rgba(142, 59, 70, 0.3);
  border-radius: 3px;
}
.ugc-grid > .ugc {
  flex: 0 0 auto;
  width: clamp(150px, 20vw, 190px);
  scroll-snap-align: start;
}
.ugc {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), box-shadow .5s;
}
.ugc::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background: linear-gradient(to top, rgba(20, 14, 13, 0.72), rgba(20, 14, 13, 0));
  pointer-events: none;
}
.ugc-icon {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251, 246, 242, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .4s;
}
.ugc-play {
  width: 0;
  height: 0;
  border-left: 10px solid #8E3B46;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  margin-left: 2px;
}
.ugc-caption {
  position: absolute;
  left: 0.75rem;
  bottom: 0.7rem;
  font-family: ui-monospace, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.06em;
  color: rgba(251, 246, 242, 0.92);
}
.ugc-caption.is-dark {
  color: rgba(36, 28, 26, 0.75);
}


/* ===== Brand index (accordion) ===== */
.brand-index-wrap {
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
  border-bottom: 1px solid rgba(36, 28, 26, 0.15);
}
.brand-item {
  border-top: 1px solid rgba(36, 28, 26, 0.15);
}
.brand-row {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: clamp(0.8rem, 3vw, 2.5rem);
  padding: clamp(1rem, 2.4vw, 1.7rem) 0;
  color: #241C1A;
  transition: color .4s, padding-left .4s;
}
.brand-row:hover {
  color: #8E3B46 !important;
}
.brand-row:hover .brand-row-name {
  font-style: italic;
}
.brand-row-num {
  font-family: ui-monospace, monospace;
  font-size: 0.72rem;
  color: #8E3B46;
}
.brand-row-name {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(1.35rem, 3.6vw, 2.6rem);
  transition: font-style .3s;
}
.brand-row-meta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.55;
  text-align: right;
}
.brand-row-plus {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  color: #8E3B46;
  transition: transform .4s;
  line-height: 1;
}
.brand-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .55s cubic-bezier(.2,.7,.2,1);
}
.brand-panel-inner {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  padding: 0 0 1.6rem;
  flex-wrap: wrap;
}
.brand-panel-media {
  position: relative;
  flex: 0 0 auto;
  width: clamp(200px, 46vw, 340px);
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  box-shadow: 0 24px 60px -40px rgba(142, 59, 70, 0.55);
}
.brand-panel-media .ugc-icon {
  opacity: 0.85;
}
.brand-panel-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.98rem;
  line-height: 1.8;
  color: #241C1A;
  opacity: 0.8;
  margin: 0.2rem 0 0;
  max-width: 42ch;
}

/* ===== Brand logos marquee ===== */
.logos-section {
  border-top: 1px solid rgba(36, 28, 26, 0.15);
  padding-top: 2rem;
}
.marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee:hover .marquee-track {
  animation-play-state: paused;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  width: max-content;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  opacity: 0.7;
  letter-spacing: 0.02em;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.logo-mark {
  height: clamp(38px, 5.5vw, 56px);
  width: auto;
  display: block;
  flex: 0 0 auto;
}

/* ===== Contact ===== */
.contact-section {
  position: relative;
  overflow: hidden;
  background: #241C1A;
  color: #FBF6F2;
  padding: clamp(4.5rem, 10vw, 9rem) clamp(1.4rem, 5vw, 5.5rem) clamp(2rem, 4vw, 3rem);
}
.contact-heading {
  position: relative;
  z-index: 1;
  font-family: 'Fraunces', serif;
  font-weight: 300;
  font-size: clamp(2.6rem, 9vw, 7.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 1.5rem 0 0;
}
.contact-heading-accent {
  font-style: italic;
  color: #F3DAD5;
}
.contact-actions {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 2.5rem;
}
.contact-social {
  display: flex;
  gap: 1.8rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.footer-bar {
  position: relative;
  z-index: 1;
  margin-top: clamp(4rem, 9vw, 7rem);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 1.5rem;
  border-top: 1px solid rgba(243, 218, 213, 0.2);
  padding-top: 1.6rem;
}
.footer-signature {
  font-family: 'Sacramento', cursive;
  font-size: 2.4rem;
  line-height: 0.9;
  color: #F3DAD5;
}
.footer-meta {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.55;
}

/* ===== UGC fullscreen video lightbox ===== */
.ugc-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 20000;
  align-items: center;
  justify-content: center;
  background: rgba(10, 8, 7, 0.96);
}
.ugc-lightbox.is-open {
  display: flex;
}
.ugc-lightbox-video {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: 100%;
  object-fit: contain;
}
.ugc-lightbox-close {
  position: fixed;
  top: clamp(1rem, 4vw, 2rem);
  right: clamp(1rem, 4vw, 2rem);
  z-index: 1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(251, 246, 242, 0.3);
  background: rgba(251, 246, 242, 0.1);
  color: #FBF6F2;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

/* ===== Responsive ===== */
@media (max-width: 860px) {
  .hero { padding-top: 9rem !important; }
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-grid .hero-portrait { order: -1; max-width: 320px !important; margin: 0 auto; }
  .hero-portrait > div { width: min(72vw, 320px) !important; }
  .about-grid { grid-template-columns: 1fr !important; }
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .brand-grid { grid-template-columns: 1fr !important; }
  .services-grid { grid-template-columns: 1fr !important; }
  .brand-panel-inner { justify-content: center; }
  .brand-panel-media { width: min(80vw, 380px) !important; margin: 0 auto; }
}
@media (max-width: 560px) {
  .brand-row { grid-template-columns: auto 1fr auto !important; column-gap: 1rem !important; }
  .brand-row-meta { display: none !important; }
  .stats-grid { gap: 2rem 1.2rem !important; }
  .ugc-grid > .ugc { width: clamp(130px, 44vw, 170px) !important; }
}
@media (max-width: 640px) {
  #site-header nav .nav-link:not([href='#contact']) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none !important; }
}
