/* ══════════════════════════════════════
   THE SIGNATURE EXPERIENCE
   Main Stylesheet
   Luke Williams · Sheffield & Rotherham
══════════════════════════════════════ */

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

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --black: #080808;
  --dark: #0f0f0f;
  --mid: #1a1a1a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --text-muted: #888;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(to bottom, rgba(8,8,8,0.95), transparent);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(8,8,8,0.98);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.nav-logo {
  font-family: 'Pinyon Script', cursive;
  font-size: 2.2rem; color: var(--gold);
  text-decoration: none; line-height: 1;
}
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--cream); text-decoration: none;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  transition: color 0.3s; font-weight: 400;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 0.5rem 1.2rem !important;
  transition: all 0.3s !important;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; z-index: 110;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--cream); transition: all 0.3s;
}
.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 nav drawer */
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 105;
  background: rgba(8,8,8,0.98);
  flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--cream); text-decoration: none;
  font-size: 1rem; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 300; transition: color 0.3s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .mobile-cta {
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  padding: 0.8rem 2rem; margin-top: 1rem;
}

/* ── HERO ── */
.hero {
  height: 100vh; min-height: 600px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease, transform 8s ease;
  transform: scale(1.05);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(8,8,8,0.88) 0%, rgba(8,8,8,0.55) 55%, rgba(8,8,8,0.25) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 6rem; max-width: 800px;
  animation: heroFadeIn 1.8s ease forwards; opacity: 0;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 0.65rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-eyebrow::before {
  content: ''; width: 40px; height: 1px;
  background: var(--gold); display: block; flex-shrink: 0;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 300; line-height: 0.95; color: var(--white);
}
.hero-title-script {
  font-family: 'Pinyon Script', cursive;
  font-size: clamp(3.5rem, 8vw, 8rem);
  color: var(--gold); display: block; line-height: 1.1; margin-left: 1rem;
}
.hero-subtitle {
  font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(245,240,232,0.6);
  margin: 2rem 0 3rem; max-width: 400px; line-height: 2;
}
.hero-buttons { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; right: 4rem; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  color: var(--text-muted); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 1rem 2.5rem; font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif;
  border: none; cursor: pointer; display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn-ghost {
  color: var(--cream); text-decoration: none; font-size: 0.65rem;
  letter-spacing: 0.25em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 0.8rem;
  transition: all 0.3s; font-family: 'Montserrat', sans-serif;
}
.btn-ghost::after { content: '→'; transition: transform 0.3s; }
.btn-ghost:hover { color: var(--gold); }
.btn-ghost:hover::after { transform: translateX(5px); }

/* ── SHARED ── */
section { padding: 8rem 6rem; }
.section-eyebrow {
  font-size: 0.6rem; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: var(--gold); display: block; flex-shrink: 0;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 300; line-height: 1.1; margin-bottom: 1.5rem;
}
.gold { color: var(--gold); }
.italic { font-style: italic; }
.gold-divider { width: 60px; height: 1px; background: var(--gold); margin: 2rem 0; }
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── INTRO ── */
.intro {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
}
.intro-text p {
  font-size: 0.85rem; line-height: 2;
  color: rgba(245,240,232,0.7); margin-bottom: 1.5rem;
}
.signature-block { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(201,168,76,0.3); }
.signature-name { font-family: 'Pinyon Script', cursive; font-size: 3rem; color: var(--gold); line-height: 1; }
.signature-title { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; }
.intro-image { position: relative; height: 600px; }
.intro-image::before {
  content: ''; position: absolute;
  top: -20px; right: -20px; bottom: 20px; left: 20px;
  border: 1px solid rgba(201,168,76,0.3); z-index: 0;
}
.intro-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.partner-badge {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0.8rem;
  margin-top: 2.5rem; padding: 0.8rem 1.5rem;
  border: 1px solid rgba(201,168,76,0.25);
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted);
}
.partner-badge a { color: var(--gold); text-decoration: none; }
.partner-badge a:hover { text-decoration: underline; }

/* ── SERVICES ── */
.services { background: var(--black); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 4rem; }
.service-card {
  background: var(--mid); padding: 3rem 2.5rem;
  border-bottom: 2px solid transparent; transition: all 0.4s;
}
.service-card:hover { background: #1f1f1f; border-bottom-color: var(--gold); transform: translateY(-4px); }
.service-icon { font-size: 1.5rem; margin-bottom: 1.5rem; display: block; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-weight: 400; margin-bottom: 1rem; color: var(--cream);
}
.service-card p { font-size: 0.75rem; line-height: 1.9; color: var(--text-muted); }

/* ── FLEET ── */
.fleet { background: var(--dark); }
.fleet-intro { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
.fleet-intro p { font-size: 0.8rem; line-height: 2; color: rgba(245,240,232,0.6); }
.fleet-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.fleet-card { position: relative; overflow: hidden; cursor: pointer; height: 420px; }
.fleet-card.wide { grid-column: span 2; height: 540px; }
.fleet-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.fleet-card:hover img { transform: scale(1.05); }
.fleet-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 2.5rem;
}
.fleet-card-tag { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.fleet-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.fleet-card-desc {
  font-size: 0.7rem; color: rgba(245,240,232,0.5); line-height: 1.6;
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.fleet-card:hover .fleet-card-desc { max-height: 100px; }

/* ── McLAREN SPOTLIGHT ── */
.mclaren-spotlight { background: var(--black); padding: 0; }
.mclaren-feature { display: grid; grid-template-columns: 2fr 1fr; gap: 2px; }
.mclaren-feature-main { position: relative; height: 600px; overflow: hidden; }
.mclaren-feature-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
.mclaren-feature-main:hover img { transform: scale(1.03); }
.mclaren-feature-stack { display: flex; flex-direction: column; gap: 2px; }
.mclaren-thumb { flex: 1; overflow: hidden; min-height: 0; }
.mclaren-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.mclaren-thumb:hover img { transform: scale(1.08); }
.mclaren-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.95) 0%, transparent 100%);
  padding: 3rem;
}
.mclaren-caption .fleet-card-tag { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 0.5rem; }
.mclaren-caption h3 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 300; color: var(--white); margin-bottom: 0.5rem; }
.mclaren-caption p { font-size: 0.75rem; color: rgba(245,240,232,0.6); line-height: 1.8; max-width: 500px; }

/* ── OCCASIONS ── */
.occasions { background: var(--black); }
.occasions-list {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 4rem;
  border: 1px solid rgba(201,168,76,0.15);
}
.occasion-item {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: background 0.3s;
}
.occasion-item:hover { background: rgba(201,168,76,0.05); }
.occasion-item:nth-child(4n) { border-right: none; }
.occasion-num {
  font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
  color: rgba(201,168,76,0.2); display: block; margin-bottom: 0.5rem; line-height: 1;
}
.occasion-item h4 { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream); margin-bottom: 0.5rem; font-weight: 500; }
.occasion-item p { font-size: 0.7rem; color: var(--text-muted); line-height: 1.7; }

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--mid); padding: 6rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%);
}
.cta-banner .section-title { max-width: 800px; margin: 0 auto 1rem; }
.cta-banner p { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.1em; margin-bottom: 3rem; }
.cta-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.cta-divider span { width: 30px; height: 1px; background: var(--gold); display: block; }

/* ── GALLERY ── */
.gallery { background: var(--dark); padding: 8rem 0; }
.gallery-header { padding: 0 6rem; margin-bottom: 3rem; }
.gallery-strip {
  display: flex; gap: 4px; overflow-x: auto;
  padding: 0 6rem 1rem;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
  -webkit-overflow-scrolling: touch;
}
.gallery-strip::-webkit-scrollbar { height: 3px; }
.gallery-strip::-webkit-scrollbar-track { background: transparent; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--gold); }
.gallery-item { flex: 0 0 380px; height: 280px; overflow: hidden; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }

/* ── CONTACT ── */
.contact { background: var(--black); display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.contact-info { background: var(--mid); padding: 6rem; display: flex; flex-direction: column; justify-content: center; }
.contact-detail { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
.contact-row { display: flex; flex-direction: column; gap: 0.3rem; }
.contact-label { font-size: 0.55rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.contact-value { font-size: 0.85rem; color: var(--cream); }
.contact-value a { color: var(--cream); text-decoration: none; transition: color 0.3s; }
.contact-value a:hover { color: var(--gold); }
.contact-form-side { background: var(--dark); padding: 6rem; display: flex; flex-direction: column; justify-content: center; }
.contact-form-side h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 300; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2); color: var(--cream);
  padding: 0.9rem 1.2rem; font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 300; outline: none;
  transition: border-color 0.3s; -webkit-appearance: none; border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--dark); }
.form-group textarea { height: 100px; resize: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── FOOTER ── */
footer {
  background: var(--black); border-top: 1px solid rgba(201,168,76,0.15);
  padding: 3rem 6rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-family: 'Pinyon Script', cursive; font-size: 1.8rem; color: var(--gold); }
.footer-copy { font-size: 0.6rem; letter-spacing: 0.15em; color: var(--text-muted); text-align: center; line-height: 1.8; }
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-links { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.footer-links a:hover { color: var(--gold); }

/* ════════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════════ */

/* ── TABLET (≤1024px) ── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2.5rem; }
  .nav-links { gap: 1.5rem; }
  section { padding: 6rem 3rem; }
  .hero-content { padding: 0 3rem; }
  .hero-scroll { right: 2rem; }
  .intro { gap: 3rem; }
  .intro-image { height: 450px; }
  .fleet-intro { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .occasions-list { grid-template-columns: repeat(2, 1fr); }
  .occasion-item:nth-child(4n) { border-right: 1px solid rgba(201,168,76,0.15); }
  .occasion-item:nth-child(2n) { border-right: none; }
  .mclaren-feature { grid-template-columns: 1fr 1fr; }
  .mclaren-feature-main { height: 500px; }
  .contact { grid-template-columns: 1fr; }
  .contact-info { padding: 4rem 3rem; }
  .contact-form-side { padding: 4rem 3rem; }
  footer { padding: 3rem; }
  .gallery-header { padding: 0 3rem; }
  .gallery-strip { padding: 0 3rem 1rem; }
  .gallery-item { flex: 0 0 300px; height: 230px; }
  .cta-banner { padding: 5rem 3rem; }
}

/* ── MOBILE (≤768px) ── */
@media (max-width: 768px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 1.5rem; max-width: 100%; }
  .hero-eyebrow { font-size: 0.55rem; margin-bottom: 1rem; }
  .hero-eyebrow::before { width: 25px; }
  .hero-subtitle { font-size: 0.65rem; margin: 1.5rem 0 2rem; }
  .hero-buttons { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .hero-scroll { display: none; }
  section { padding: 4rem 1.5rem; }
  .intro { grid-template-columns: 1fr; gap: 0; }
  .intro-image { height: 300px; order: -1; }
  .intro-image::before { display: none; }
  .intro-text { padding-top: 2.5rem; }
  .services-grid { grid-template-columns: 1fr; gap: 2px; }
  .service-card { padding: 2rem 1.5rem; }
  .fleet-intro { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: 1fr; }
  .fleet-card { height: 300px; }
  .fleet-card.wide { grid-column: span 1; height: 320px; }
  .fleet-card-desc { max-height: 80px; }
  .mclaren-feature { grid-template-columns: 1fr; }
  .mclaren-feature-main { height: 320px; }
  .mclaren-feature-stack { flex-direction: row; height: 160px; }
  .mclaren-thumb { flex: 1; }
  .mclaren-caption { padding: 1.5rem; }
  .mclaren-caption h3 { font-size: 1.6rem; }
  .mclaren-caption p { display: none; }
  .occasions-list { grid-template-columns: 1fr 1fr; }
  .occasion-item { padding: 1.5rem 1rem; }
  .occasion-num { font-size: 2rem; }
  .occasion-item:nth-child(4n) { border-right: 1px solid rgba(201,168,76,0.15); }
  .occasion-item:nth-child(2n) { border-right: none; }
  .cta-banner { padding: 4rem 1.5rem; }
  .gallery { padding: 4rem 0; }
  .gallery-header { padding: 0 1.5rem; }
  .gallery-strip { padding: 0 1.5rem 1rem; gap: 3px; }
  .gallery-item { flex: 0 0 260px; height: 200px; }
  .contact { grid-template-columns: 1fr; }
  .contact-info { padding: 3rem 1.5rem; }
  .contact-form-side { padding: 3rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 2.5rem 1.5rem; flex-direction: column; align-items: center; text-align: center; gap: 1.5rem; }
  .footer-links { justify-content: center; }
}

/* ── SMALL MOBILE (≤480px) ── */
@media (max-width: 480px) {
  .nav-logo { font-size: 1.8rem; }
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-title-script { font-size: clamp(3rem, 14vw, 5rem); margin-left: 0.5rem; }
  .section-title { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .occasions-list { grid-template-columns: 1fr; }
  .occasion-item:nth-child(2n) { border-right: 1px solid rgba(201,168,76,0.15); }
  .occasion-item:nth-child(1n) { border-right: none; }
  .gallery-item { flex: 0 0 220px; height: 170px; }
  .mclaren-feature-stack { height: 130px; }
  .fleet-card { height: 260px; }
  .fleet-card.wide { height: 280px; }
  .signature-name { font-size: 2.5rem; }
}
