/* ════════════════════════════════════════════
   GOLDEN STANDARD DETAIL — premium gold/black
   ════════════════════════════════════════════ */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #EAD68F;
  --gold-deep:   #8A6D2B;
  --black:       #070707;
  --black-2:     #0D0D0C;
  --black-3:     #141312;
  --black-4:     #1C1A17;
  --white:       #F4F1EA;
  --muted:       #9A958A;
  --faint:       #5E5B53;
  --line:        rgba(201,168,76,0.16);
  --line-strong: rgba(201,168,76,0.42);
  --radius:      18px;
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --foil: linear-gradient(100deg, #8A6D2B 0%, #C9A84C 30%, #F2E2A8 50%, #C9A84C 70%, #8A6D2B 100%);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--gold); color: var(--black); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--black-4); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* film grain over everything, very subtle */
.grain {
  position: fixed;
  inset: -50%;
  width: 200%;
  height: 200%;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ─── type helpers ─── */
.foil {
  background: var(--foil);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: foilShift 7s ease-in-out infinite alternate;
}

@keyframes foilShift {
  from { background-position: 0% center; }
  to   { background-position: 100% center; }
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

.section { padding: 130px 0; }
.section-alt { background: var(--black-2); border-block: 1px solid var(--line); }

.section-head { text-align: center; margin-bottom: 72px; }

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.eyebrow span {
  display: block;
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.section-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: 0.005em;
}

.section-head h2 em { font-style: italic; font-weight: 600; }

.lede {
  color: var(--muted);
  max-width: 520px;
  margin: 18px auto 0;
  font-size: 1rem;
  font-weight: 300;
}

/* ─── buttons ─── */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.45s var(--ease);
}

.btn svg { width: 15px; height: 15px; }

.btn-gold {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-light));
  color: #181307;
}
.btn-gold::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.btn-gold:hover::after { left: 130%; }
.btn-gold:hover {
  box-shadow: 0 12px 40px rgba(201,168,76,0.35);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(244,241,234,0.04);
  color: var(--white);
  border: 1px solid rgba(244,241,234,0.18);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-line {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line-strong);
}
.btn-line:hover {
  background: rgba(201,168,76,0.08);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.btn-sm { padding: 11px 22px; font-size: 0.74rem; }
.btn-lg { padding: 18px 38px; }

/* ─── reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ════════ NAV ════════ */
#navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
#navbar.scrolled {
  background: rgba(7,7,7,0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 13px; }

.logo-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-strong);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  background: linear-gradient(140deg, rgba(201,168,76,0.12), transparent);
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.logo-text em { color: var(--gold); font-style: italic; }

.nav-links { display: flex; align-items: center; gap: 38px; }

.nav-links li a:not(.btn) {
  position: relative;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
  padding: 6px 0;
}
.nav-links li a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav-links li a:not(.btn):hover { color: var(--white); }
.nav-links li a:not(.btn):hover::after { transform: scaleX(1); transform-origin: left; }

.nav-mobile-actions {
  display: none;
  align-items: center;
  gap: 16px;
}

.nav-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 6px;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-light));
  color: #181307;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-call svg { width: 14px; height: 14px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  width: 26px; height: 1.5px;
  background: var(--white);
  transition: all 0.35s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(7,7,7,0.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 10px 28px 26px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 16px 0;
  border-bottom: 1px solid rgba(244,241,234,0.07);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
}
.mobile-cta { margin-top: 20px; }

/* ════════ HERO ════════ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-color: var(--black-2);
  background-image: url('img/hero-porsche.jpg');
  background-size: cover;
  background-position: center 58%;
  animation: heroZoom 14s var(--ease) both;
}

@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7,7,7,0.96) 25%, rgba(7,7,7,0.55) 60%, rgba(7,7,7,0.35) 100%),
    linear-gradient(to top, var(--black) 2%, transparent 30%),
    linear-gradient(to bottom, rgba(7,7,7,0.6), transparent 25%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
  padding: 140px 28px 110px;
}

.hero-rule {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  animation: fadeUp 1s var(--ease) 0.15s both;
}

.rule-line {
  width: 56px; height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 7.6vw, 6.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0.005em;
  margin-bottom: 30px;
  animation: fadeUp 1s var(--ease) 0.3s both;
}
.hero-title em { font-style: italic; }

.hero-sub {
  max-width: 480px;
  color: #C8C3B8;
  font-size: clamp(0.95rem, 1.6vw, 1.08rem);
  font-weight: 300;
  margin-bottom: 42px;
  animation: fadeUp 1s var(--ease) 0.45s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: fadeUp 1s var(--ease) 0.6s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeUp 1s var(--ease) 0.75s both;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.trust-chip svg { width: 17px; height: 17px; color: var(--gold); }

.trust-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-deep);
}

.hero-scroll {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: fadeUp 1.2s var(--ease) 1.3s both;
}
.hero-scroll span {
  display: block;
  width: 1px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.hero-scroll span::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--black);
  animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine {
  0%   { transform: translateY(0); }
  100% { transform: translateY(110%); }
}

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

/* ════════ TICKER ════════ */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--black-2);
  overflow: hidden;
  padding: 19px 0;
  position: relative;
}
.ticker::before, .ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--black-2), transparent); }
.ticker::after { right: 0; background: linear-gradient(-90deg, var(--black-2), transparent); }

.ticker-track {
  display: flex;
  align-items: center;
  gap: 36px;
  width: max-content;
  animation: tick 36s linear infinite;
}
.ticker-track span {
  font-family: 'Playfair Display', serif;
  font-size: 0.98rem;
  font-style: italic;
  color: var(--muted);
  white-space: nowrap;
}
.ticker-track i {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--gold);
}
@keyframes tick {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════ PACKAGES ════════ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 22px;
  margin-bottom: 96px;
}

.pkg {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--black-3), var(--black-2) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 38px 30px 30px;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.pkg:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.pkg-featured {
  background:
    linear-gradient(165deg, rgba(201,168,76,0.1), rgba(201,168,76,0.02) 55%),
    linear-gradient(165deg, var(--black-3), var(--black-2));
  border-color: var(--line-strong);
  box-shadow: 0 0 60px rgba(201,168,76,0.12);
}
.pkg-featured:hover { box-shadow: 0 24px 80px rgba(201,168,76,0.18); }

.pkg-flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-light));
  color: #181307;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  white-space: nowrap;
}
.pkg-flag svg { width: 11px; height: 11px; }

.pkg-flag-special {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
}

.pkg-price .was {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
}
.pkg-price .was s {
  color: var(--muted);
  text-decoration-color: rgba(201,168,76,0.65);
  text-decoration-thickness: 1.5px;
}

.pkg-stage {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.pkg-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.pkg-price {
  font-family: 'Playfair Display', serif;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  margin: 22px 0 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.pkg-price sup {
  font-size: 1.5rem;
  color: var(--gold);
  margin-right: 3px;
  vertical-align: 18px;
}
.pkg-price .per {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--faint);
  margin-left: 9px;
}

.pkg-plus {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.pkg-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 30px;
}
.pkg-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  font-weight: 300;
  color: #BDB8AC;
  line-height: 1.5;
}
.pkg-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 0.6rem;
  color: var(--gold);
}

.pkg-cta { width: 100%; margin-top: auto; }

.pkg-maint {
  border: 1px dashed var(--line-strong);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 22px;
}
.maint-label {
  display: block;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.pkg-maint p {
  font-size: 0.85rem;
  font-weight: 300;
  color: #BDB8AC;
}
.pkg-maint strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}

/* specialty */
.spec-head { margin-bottom: 40px; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 22px;
}

.spec {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: linear-gradient(165deg, var(--black-3), var(--black-2) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.spec:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
}

.spec-icon {
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(140deg, rgba(201,168,76,0.12), transparent);
}
.spec-icon svg { width: 26px; height: 26px; color: var(--gold); }

.spec-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.spec-top h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 600;
}
.spec-price {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.spec-price strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold);
  margin-left: 4px;
}

.spec-body p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 18px;
}

.spec-list { display: flex; flex-direction: column; gap: 10px; }
.spec-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  font-weight: 300;
  color: #BDB8AC;
}
.spec-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 1px;
  font-size: 0.6rem;
  color: var(--gold);
}

.spec .btn { align-self: flex-start; }

.pkg-note {
  margin-top: 48px;
  text-align: center;
  font-size: 0.8rem;
  color: var(--faint);
  letter-spacing: 0.03em;
}

/* ── mid-page booking prompt ── */
.mid-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  padding: 34px 42px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(201,168,76,0.1), rgba(201,168,76,0.02));
}
.mid-cta-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.mid-cta-text p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
}
.mid-cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── sticky mobile call bar ── */
.call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  gap: 10px;
  padding: 12px 14px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(7,7,7,0.93);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(115%);
  transition: transform 0.45s var(--ease);
}
.call-bar.visible { transform: none; }

.cb-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 10px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cb-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.cb-call {
  background: linear-gradient(120deg, var(--gold-deep), var(--gold) 45%, var(--gold-light));
  color: #181307;
}
.cb-text {
  border: 1.5px solid var(--line-strong);
  color: var(--gold);
}

/* ════════ IMAGE BAND ════════ */
.band {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-block: 1px solid var(--line);
}

.band-media {
  position: absolute;
  inset: 0;
  background-color: var(--black-3);
  background-image: url('img/band-m5-foam.jpg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
}

.band-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(7,7,7,0.55), rgba(7,7,7,0.92));
}

.band-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 28px;
  max-width: 760px;
}
.band-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  font-weight: 500;
  line-height: 1.3;
}
.band-quote em { color: var(--gold); }
.band-quote cite {
  display: block;
  margin-top: 22px;
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ════════ GALLERY ════════ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.g-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 5;
  background: var(--black-3);
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}
.g-item:hover img { transform: scale(1.06); }

.g-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 44px 22px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: linear-gradient(to top, rgba(7,7,7,0.92), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.g-item:hover figcaption { opacity: 1; transform: none; }

.gallery-cta {
  margin-top: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.gallery-cta p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
}

@media (max-width: 860px) {
  .gallery { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .g-item figcaption { opacity: 1; transform: none; }
}
@media (max-width: 560px) {
  .gallery { grid-template-columns: 1fr; }
}

/* ════════ PROCESS ════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 50px;
}

.step { position: relative; padding-top: 18px; }

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 4.6rem;
  font-weight: 600;
  line-height: 1;
  background: var(--foil);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
  display: block;
  margin-bottom: 20px;
}

.step h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

/* ════════ TINTING ════════ */
.tint-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}

.tint {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, var(--black-3), var(--black-2) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 46px 36px 38px;
  transition: transform 0.5s var(--ease), border-color 0.5s, box-shadow 0.5s;
}
.tint:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
}

.tint-featured {
  background:
    linear-gradient(165deg, rgba(201,168,76,0.1), rgba(201,168,76,0.02) 55%),
    linear-gradient(165deg, var(--black-3), var(--black-2));
  border-color: var(--line-strong);
  box-shadow: 0 0 60px rgba(201,168,76,0.1);
}

.tint h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.tint-desc {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 24px;
}

.tint-full {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 22px;
  margin-bottom: 4px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: linear-gradient(120deg, rgba(201,168,76,0.12), rgba(201,168,76,0.03));
}
.tint-full .tf-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.tint-full .tf-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.tint-full .tf-price sup {
  font-size: 0.95rem;
  color: var(--gold);
  margin-right: 2px;
  vertical-align: 9px;
}

.tint-prices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--line);
  margin-bottom: 12px;
}
.tint-prices .tp {
  padding: 16px 6px;
  text-align: center;
}
.tint-prices .tp:first-child { border-right: 1px solid var(--line); }
.tint-prices .tp span {
  display: block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 6px;
}
.tint-prices .tp strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1;
}
.tint-prices .tp sup {
  font-size: 0.95rem;
  color: var(--gold);
  margin-right: 2px;
  vertical-align: 8px;
}

.tint .pkg-list { margin-bottom: 32px; }
.tint .btn { align-self: flex-start; }

/* ════════ CONTACT ════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 26px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(165deg, var(--black-3), var(--black-2));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: border-color 0.4s, transform 0.4s var(--ease);
}
.c-card:hover { border-color: var(--line-strong); transform: translateX(5px); }

.c-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: linear-gradient(140deg, rgba(201,168,76,0.12), transparent);
}
.c-icon svg { width: 20px; height: 20px; color: var(--gold); }

.c-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 3px;
}

.c-value { font-size: 0.95rem; font-weight: 500; }

.c-note {
  padding: 22px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}
.c-note .c-value { color: var(--muted); font-weight: 300; font-size: 0.9rem; }

/* form */
.contact-form {
  background: linear-gradient(165deg, var(--black-3), var(--black-2) 70%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group { display: flex; flex-direction: column; gap: 9px; }

.form-group label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--faint);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(7,7,7,0.5);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C9A84C'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 46px;
  cursor: pointer;
}
.form-group option { background: var(--black-3); }

.form-group input::placeholder,
.form-group textarea::placeholder { color: #4A463E; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-submit { width: 100%; padding: 18px; }

.form-note {
  text-align: center;
  font-size: 0.76rem;
  color: var(--faint);
}

/* ════════ FOOTER ════════ */
footer {
  border-top: 1px solid var(--line);
  background: var(--black-2);
  overflow: hidden;
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.footer-word {
  display: block;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 8.5vw, 7rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.1;
  padding: 64px 0 10px;
  white-space: nowrap;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
  padding: 40px 0 48px;
}

.footer-tag {
  font-size: 0.86rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
}

.footer-links { display: flex; flex-direction: column; gap: 13px; }
.footer-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 13px; }
.footer-social a {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  transition: border-color 0.35s, background 0.35s, transform 0.35s var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  transform: translateY(-3px);
}
.footer-social svg { width: 17px; height: 17px; color: var(--muted); transition: color 0.3s; }
.footer-social a:hover svg { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(244,241,234,0.06);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 0.74rem; color: var(--faint); letter-spacing: 0.06em; }

.privacy-link { color: var(--gold); transition: color 0.3s; }
.privacy-link:hover { color: var(--gold-light); }

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1020px) {
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-mobile-actions { display: flex; }
  .hamburger { display: flex; }
  .call-bar { display: flex; }
  body { padding-bottom: 86px; }
  .section { padding: 90px 0; }
  .pkg-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); margin-bottom: 72px; }
  .band-media { background-attachment: scroll; }
  .steps { gap: 38px; }
  .mid-cta { padding: 28px 26px; text-align: center; justify-content: center; }
  .mid-cta-actions { width: 100%; flex-direction: column; }
  .mid-cta-actions .btn { width: 100%; }
}

@media (max-width: 560px) {
  .section { padding: 76px 0; }
  .pkg-grid, .spec-grid, .tint-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .contact-form { padding: 30px 22px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-row { flex-direction: column; gap: 34px; }
  .logo-text { display: none; }
  .nav-mobile-actions { gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
