/* =============================================
   DESIGN TOKENS
============================================= */
:root {
  --burgundy:      #5C1D2A;
  --burgundy-deep: #3A1018;
  --burgundy-mid:  #7A2E3E;
  --terracotta:    #C4714B;
  --terracotta-lt: #D9906A;
  --gold:          #C9A84C;
  --gold-lt:       #E0C47A;
  --cream:         #F7EDD8;
  --parchment:     #EFE0C1;
  --parchment-dk:  #D9CBAB;
  --espresso:      #2A1810;
  --warm-mid:      #7A5C50;
  --warm-lt:       #B89C8F;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-warm: 0 20px 60px rgba(42, 24, 16, 0.22);
  --shadow-card: 0 8px 32px rgba(42, 24, 16, 0.16);
}

/* =============================================
   RESET & BASE
============================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--espresso);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

/* =============================================
   SCROLL ANIMATIONS
============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.85s var(--ease-out), transform 0.85s var(--ease-out);
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(55px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.45s; }

/* =============================================
   FIXED NAVIGATION
============================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  padding: 2rem 4rem;
  /* Hidden until the in-banner .hero-nav scrolls out of view */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  pointer-events: none;
  transition: background 0.5s var(--ease), padding 0.4s var(--ease),
    box-shadow 0.4s, opacity 0.4s var(--ease), transform 0.4s var(--ease),
    visibility 0.4s;
}

.nav.is-scrolled {
  background: rgba(37, 14, 8, 0.93);
  backdrop-filter: blur(18px) saturate(1.5);
  padding: 0.9rem 4rem;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.35);
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: white;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}

.nav-links a:hover,
.nav-links a.is-active {
  color: white;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-links a.is-active {
  color: var(--gold-lt);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile overlay menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 490;
  background: var(--burgundy-deep);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-close {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 2rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.mobile-close:hover {
  opacity: 1;
}

/* =============================================
   HERO — SECTION 1
============================================= */
#home {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--burgundy-deep);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../media/images/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center bottom;
  transform: scale(1.07);
  transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-bg.ready {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    170deg,
    rgba(37, 10, 6, 0.62) 0%,
    rgba(37, 10, 6, 0.30) 45%,
    rgba(37, 10, 6, 0.65) 100%
  );
}

/* Warm color bleed */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(196, 113, 75, 0.12) 0%,
    rgba(92, 29, 42, 0.18) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  color: white;
}

/* Logo + decorative borders row */
.hero-header {
  padding-top: 5.5rem;
  width: 100%;
  max-width: 1100px;
}

.hero-logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-border {
  flex: 1;
  height: 7.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-border-l {
  border-left: 1px solid rgba(255, 255, 255, 0.45);
}

.hero-border-r {
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.5rem;
  gap: 1.25rem;
}

.hero-logo-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0 2.5rem;
  flex-shrink: 0;
}

.hero-logo-name {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: white;
  white-space: nowrap;
  line-height: 1;
}

.hero-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-lt);
  white-space: nowrap;
}

.hero-social-icon {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.75);
  transition: fill 0.3s;
  cursor: pointer;
  flex-shrink: 0;
}

.hero-social-icon:hover {
  fill: var(--gold);
}

/* Navigation below logo */
.hero-nav {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 1.25rem;
}

.hero-nav a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}

.hero-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}

.hero-nav a:hover {
  color: white;
}

.hero-nav a:hover::after {
  width: 100%;
}

/* Main headline at bottom */
.hero-foot {
  padding-bottom: 4rem;
  text-align: center;
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.05;
  color: white;
  animation: heroFadeUp 1.2s 0.3s both var(--ease-out);
}

.hero-title em {
  font-style: italic;
  color: var(--gold-lt);
}

.hero-tagline {
  margin-top: 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  animation: heroFadeUp 1.2s 0.55s both var(--ease-out);
}

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

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  animation: scrollBounce 2.4s ease-in-out infinite;
}

.scroll-cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* =============================================
   MARQUEE TICKER
============================================= */
.marquee-strip {
  background: var(--burgundy);
  padding: 0.9rem 0;
  overflow: hidden;
  display: flex;
  user-select: none;
}

.marquee-track {
  display: flex;
  flex-shrink: 0;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247, 237, 216, 0.55);
  padding: 0 2rem;
}

.marquee-track .dot {
  color: var(--gold);
  font-size: 0.45rem;
  vertical-align: middle;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   SECTION SHARED
============================================= */
.section {
  padding: 7rem 4rem;
}

.section-inner {
  max-width: 1340px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  line-height: 1.08;
}

.rule {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

.rule-center {
  margin: 1.5rem auto;
}

/* Buttons */
.btn {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.95rem 2.6rem;
  transition: transform 0.25s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--burgundy);
  color: var(--cream);
  border: 1px solid var(--burgundy);
}

.btn-dark:hover {
  background: transparent;
  color: var(--burgundy);
}

.btn-ghost-light {
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

/* =============================================
   DISCOVER / MAP — SECTION 2
============================================= */
#discover {
  background: var(--cream);
}

.map-wrap {
  position: relative;
  margin-top: 3rem;
}

.map-wrap::before,
.map-wrap::after {
  content: '';
  position: absolute;
  width: 70px;
  height: 70px;
  pointer-events: none;
  z-index: 1;
}

.map-wrap::before {
  top: -14px;
  left: -14px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}

.map-wrap::after {
  bottom: -14px;
  right: -14px;
  border-bottom: 2px solid var(--gold);
  border-right: 2px solid var(--gold);
}

.map-wrap iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: 3px;
  box-shadow: var(--shadow-warm);
  filter: sepia(0.12) saturate(0.95) contrast(1.02);
  display: block;
}

/* =============================================
   MOST POPULAR — SECTION 3
============================================= */
#popular {
  background: var(--parchment);
  overflow: hidden;
}

/* Filmstrip — breaks out of section padding on both sides */
.filmstrip-wrap {
  margin: 3rem -4rem 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.filmstrip-wrap:hover .filmstrip-track {
  animation-play-state: paused;
}

.filmstrip-track {
  display: flex;
  gap: 1.2rem;
  width: max-content;
  padding: 0.6rem 0;
  animation: filmstrip 38s linear infinite;
}

@keyframes filmstrip {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.film-card {
  position: relative;
  width: 400px;
  height: 275px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}

.film-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s var(--ease);
}

.film-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37, 10, 6, 0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.film-card:hover img { transform: scale(1.06); }
.film-card:hover .film-card-overlay { opacity: 1; }

.film-card-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.film-card-type {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-top: 0.3rem;
}

.popular-cta {
  text-align: center;
  margin-top: 3.5rem;
}

/* =============================================
   ABOUT US — SECTION 4
============================================= */
#about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

.about-collage {
  position: relative;
  height: 540px;
}

.about-collage::before {
  content: '';
  position: absolute;
  bottom: 12%;
  left: 3%;
  width: 56px;
  height: 56px;
  border: 1px solid var(--gold);
  opacity: 0.55;
}

.about-img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 75%;
  height: 73%;
  object-fit: cover;
  box-shadow: var(--shadow-warm);
}

.about-img-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 56%;
  height: 56%;
  object-fit: cover;
  box-shadow: var(--shadow-warm);
  border: 6px solid white;
}

.about-text p {
  font-size: 0.97rem;
  line-height: 1.95;
  color: var(--warm-mid);
  letter-spacing: 0.02em;
  margin-bottom: 1.4rem;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin: 2.5rem 0;
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
}

.stat-lbl {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-lt);
  margin-top: 0.3rem;
}

/* =============================================
   GET THE APP — SECTION 5
============================================= */
#app {
  background: var(--burgundy-deep);
  position: relative;
  overflow: hidden;
}

#app::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../media/images/gallery/wine-tasting.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.07;
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.app-text {
  color: var(--cream);
}

.app-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.9rem;
}

.app-heading {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.app-heading em {
  font-style: italic;
  color: var(--gold-lt);
}

.app-desc {
  font-size: 0.97rem;
  line-height: 1.85;
  color: rgba(247, 237, 216, 0.72);
  margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}

.app-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-badge {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: white;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.25s;
}

.app-badge:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.app-badge svg {
  width: 27px;
  height: 27px;
  fill: white;
  flex-shrink: 0;
}

.badge-sub {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  opacity: 0.65;
}

.badge-name {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Phone mockup */
.phone-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.phone-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.phone-shell {
  width: 255px;
  height: 510px;
  background: #1a0e09;
  border-radius: 42px;
  border: 2.5px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 50px 90px rgba(0, 0, 0, 0.6),
    inset 0 0 40px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.phone-screen {
  position: absolute;
  inset: 7px;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--burgundy-mid) 0%, var(--espresso) 100%);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.phone-notch {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 22px;
  background: #1a0e09;
  border-radius: 11px;
  z-index: 2;
}

.phone-ui {
  position: absolute;
  inset: 7px;
  border-radius: 36px;
  z-index: 1;
  background: linear-gradient(to bottom, transparent 60%, rgba(37, 10, 6, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.phone-ui-bar {
  width: 40%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 0.6rem;
}

.phone-ui-text {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: white;
  letter-spacing: 0.1em;
}

.phone-ui-sub {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* =============================================
   SEPARATOR BANNER — SECTION 6
============================================= */
#separator {
  position: relative;
  height: 460px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sep-bg {
  position: absolute;
  inset: -10%; /* extra room for parallax travel */
  background-image: url('../media/images/separator/separator-bg.jpg');
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.sep-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(37, 10, 6, 0.82) 0%,
    rgba(58, 16, 24, 0.60) 50%,
    rgba(37, 10, 6, 0.82) 100%
  );
}

.sep-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 3rem;
  max-width: 820px;
}

.sep-quote {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 4vw, 3.6rem);
  font-weight: 300;
  font-style: italic;
  color: white;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.sep-quote::before { content: '\201C'; color: var(--gold); }
.sep-quote::after  { content: '\201D'; color: var(--gold); }

.sep-attr {
  margin-top: 1.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-lt);
}

/* =============================================
   FOOTER — SECTION 7
============================================= */
footer {
  background: var(--espresso);
  color: var(--cream);
  padding: 5.5rem 4rem 2.5rem;
}

.footer-grid {
  max-width: 1340px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 4rem;
}

.footer-logo-text {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.1rem;
}

.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(247, 237, 216, 0.55);
  max-width: 270px;
}

.footer-socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 2rem;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, border-color 0.3s;
}

.footer-social-link:hover {
  background: var(--burgundy-mid);
  border-color: var(--burgundy-mid);
}

.footer-social-link svg {
  width: 15px;
  height: 15px;
  fill: white;
}

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.4rem;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  margin-top: 0.5rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(247, 237, 216, 0.55);
  letter-spacing: 0.04em;
  transition: color 0.3s;
}

.footer-col ul a:hover {
  color: var(--gold-lt);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}

.contact-item svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item span {
  font-size: 0.84rem;
  color: rgba(247, 237, 216, 0.55);
  line-height: 1.55;
}

.footer-bottom {
  max-width: 1340px;
  margin: 3.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  font-size: 0.73rem;
  color: rgba(247, 237, 216, 0.35);
  letter-spacing: 0.08em;
}

.footer-bottom-links {
  display: flex;
  gap: 2rem;
}

.footer-bottom-links a {
  font-size: 0.73rem;
  color: rgba(247, 237, 216, 0.35);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.footer-bottom-links a:hover {
  color: var(--gold-lt);
}

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1100px) {
  .about-grid  { gap: 4rem; }
  .app-grid    { gap: 4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  .section { padding: 5rem 1.5rem; }

  .nav           { padding: 1.5rem 1.5rem; }
  .nav.is-scrolled { padding: 0.8rem 1.5rem; }
  .nav-links     { display: none; }
  .nav-burger    { display: flex; }

  .hero-border { display: none; }
  .hero-nav    { gap: 1.4rem; flex-wrap: wrap; justify-content: center; }

  .filmstrip-wrap { margin-left: -1.5rem; margin-right: -1.5rem; }
  .film-card      { width: 280px; height: 200px; }

  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-collage { height: 320px; }

  .app-grid   { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }

  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer       { padding: 4rem 1.5rem 2rem; }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
