/*
Theme Name: ICE Exotic Rentals
Theme URI: https://iceexotics.com
Author: ICE Exotic Rentals
Author URI: https://iceexotics.com
Description: Bespoke luxury theme for Ice Exotic Rentals — Atlanta's premier exotic and luxury car rental house. v1.2.1 adds a one-click cleanup tool to remove leftover v2 shortcode content from page editors. Same v1 design, every text bit editable from the WordPress admin.
Version: 1.4.1
Requires at least: 5.8
Tested up to: 6.7
Requires PHP: 7.4
License: Proprietary
License URI: https://iceexotics.com
Text Domain: ice-exotic
Tags: dark, luxury, custom-menu, custom-logo, threaded-comments, full-width-template
*/

/* ============ ICE EXOTIC RENTALS — SHARED STYLES ============ */

:root {
  --obsidian: #070707;
  --onyx: #0e0e0f;
  --charcoal: #161618;
  --graphite: #1f1f22;
  --smoke: #2a2a2e;
  --ice: #e6ecf2;
  --frost: #b9c7d6;
  --glacier: #7d94ad;
  --platinum: #d8dde3;
  --gold: #c9a961;
  --gold-deep: #a8873e;
  --silver: #b8bcc1;
  --text: #ececec;
  --text-muted: #8c8e92;
  --line: rgba(255, 255, 255, 0.08);

  --f-display: "Italiana", serif;
  --f-serif: "Cormorant Garamond", serif;
  --f-body: "Jost", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--f-body);
  font-weight: 300;
  color: var(--text);
  background: var(--obsidian);
  line-height: 1.65;
  overflow-x: hidden;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* WordPress alignments — keep theme behaving */
.alignleft, .alignright, .aligncenter, .alignwide, .alignfull { display: block; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute !important;
  width: 1px; word-wrap: normal !important;
}

/* ============ ATMOSPHERE ============ */
.atmosphere {
  position: fixed; inset: 0; pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(155, 184, 212, 0.08), transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(201, 169, 97, 0.06), transparent 50%);
}
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1; opacity: 0.04;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' /></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px 48px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  background: transparent; border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 48px;
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav.solid {
  background: rgba(7, 7, 7, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-display); font-size: 28px; letter-spacing: 0.25em;
  color: var(--ice);
}
.nav-logo .diamond {
  width: 14px; height: 14px;
  background: linear-gradient(135deg, #fff, var(--frost) 40%, var(--glacier));
  transform: rotate(45deg);
  box-shadow: 0 0 20px rgba(230, 236, 242, 0.4);
}
.nav-links {
  display: flex; gap: 42px; align-items: center;
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  font-weight: 400; list-style: none; padding: 0; margin: 0;
}
.nav-links li { list-style: none; padding: 0; margin: 0; }
.nav-links a {
  position: relative; padding: 6px 0;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover, .nav-links .current_page_item a, .nav-links .current-menu-item a, .nav-links a.active { color: var(--ice); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-links a:hover::after,
.nav-links .current_page_item a::after,
.nav-links .current-menu-item a::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 12px 26px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  transition: all 0.4s;
  position: relative; overflow: hidden;
}
.nav-cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta span { position: relative; z-index: 1; transition: color 0.3s; }
.nav-cta:hover span { color: var(--obsidian); }

.nav-menu-btn { display: none; width: 30px; height: 22px; position: relative; background: none; border: 0; padding: 0; }
.nav-menu-btn span {
  position: absolute; left: 0; right: 0; height: 1px; background: var(--ice);
  transition: all 0.3s;
}
.nav-menu-btn span:nth-child(1) { top: 0; }
.nav-menu-btn span:nth-child(2) { top: 50%; }
.nav-menu-btn span:nth-child(3) { bottom: 0; }
.nav-menu-btn.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-menu-btn.open span:nth-child(2) { opacity: 0; }
.nav-menu-btn.open span:nth-child(3) { bottom: 50%; transform: rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 48px;
}
.hero.compact { min-height: 70vh; }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(201, 169, 97, 0.15), transparent 60%),
    linear-gradient(135deg, #0a0a0b 0%, #1a1a1c 50%, #0e0e0f 100%);
}
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.55) 0%, rgba(7, 7, 7, 0.35) 40%, rgba(7, 7, 7, 0.95) 100%),
    linear-gradient(90deg, rgba(7, 7, 7, 0.85) 0%, rgba(7, 7, 7, 0.3) 60%, transparent 100%);
  z-index: 2;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  animation: slowZoom 20s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}

.hero-inner {
  position: relative; z-index: 5;
  max-width: 1400px; margin: 0 auto; width: 100%;
  padding-top: 100px;
}
.hero-eyebrow {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 30px;
  display: flex; align-items: center; gap: 16px;
  opacity: 0; animation: fadeUp 1s 0.3s forwards;
}
.hero-eyebrow::before {
  content: ""; width: 40px; height: 1px; background: var(--gold);
}
.hero-title {
  font-family: var(--f-display);
  font-size: clamp(54px, 10vw, 160px);
  line-height: 0.92;
  color: var(--ice);
  letter-spacing: -0.01em;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1.2s 0.5s forwards;
}
.hero.compact .hero-title { font-size: clamp(48px, 7vw, 110px); }
.hero-title em {
  font-family: var(--f-serif);
  font-style: italic; font-weight: 300;
  color: var(--gold);
}
.hero-sub {
  font-family: var(--f-serif);
  font-size: clamp(18px, 2vw, 22px);
  max-width: 620px;
  color: var(--text-muted);
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.5;
  opacity: 0; animation: fadeUp 1s 0.8s forwards;
}
.hero-ctas {
  display: flex; gap: 20px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 1s 1.1s forwards;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 36px;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative; overflow: hidden;
}
.btn-primary { background: var(--ice); color: var(--obsidian); border: 1px solid var(--ice); }
.btn-primary:hover { background: transparent; color: var(--ice); transform: translateY(-2px); box-shadow: 0 10px 40px rgba(230, 236, 242, 0.15); }
.btn-ghost { background: transparent; color: var(--ice); border: 1px solid rgba(255, 255, 255, 0.25); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--obsidian); border: 1px solid var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); transform: translateY(-2px); }
.btn-arrow { width: 18px; height: 1px; background: currentColor; position: relative; }
.btn-arrow::after { content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px; border-right: 1px solid currentColor; border-top: 1px solid currentColor; transform: rotate(45deg); }

/* ============ MARQUEE ============ */
.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(7, 7, 7, 0.4);
  backdrop-filter: blur(10px);
  overflow: hidden; z-index: 4;
}
.marquee-track { display: flex; gap: 60px; white-space: nowrap; animation: marquee 40s linear infinite; font-family: var(--f-display); font-size: 22px; color: var(--text-muted); letter-spacing: 0.2em; }
.marquee-track span { display: flex; align-items: center; gap: 60px; }
.marquee-track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); display: inline-block; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ============ SECTIONS ============ */
.section { position: relative; z-index: 2; padding: 140px 48px; max-width: 1600px; margin: 0 auto; }
.section-label { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 16px; }
.section-label::before { content: ""; width: 40px; height: 1px; background: var(--gold); }
.section-title { font-family: var(--f-display); font-size: clamp(44px, 6vw, 96px); line-height: 0.95; color: var(--ice); letter-spacing: -0.01em; margin-bottom: 30px; }
.section-title em { font-family: var(--f-serif); font-style: italic; color: var(--gold); font-weight: 300; }
.section-lead { font-family: var(--f-serif); font-weight: 300; font-size: clamp(18px, 1.5vw, 22px); max-width: 680px; color: var(--text-muted); line-height: 1.6; }
.section-center { text-align: center; max-width: 900px; margin: 0 auto 80px; }
.section-center .section-label { justify-content: center; }
.section-center .section-label::after { content: ""; width: 40px; height: 1px; background: var(--gold); }
.reveal { opacity: 0; transform: translateY(40px); transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* SAFETY NET: if JS fails to load or the IntersectionObserver doesn't fire
   (e.g. very tall sections on mobile, slow connections, blocked scripts),
   ensure content is always visible after 2.5s via pure CSS animation. */
.reveal { animation: ice-reveal-fallback 0s 2.5s forwards; }
@keyframes ice-reveal-fallback {
  to { opacity: 1; transform: translateY(0); }
}
/* When JS adds .in, the transition takes precedence and the animation
   becomes irrelevant (it would otherwise have no effect after .in is set). */

/* ============ FLEET ============ */
.fleet-section { padding: 60px 48px 140px; }
.fleet-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 70px; gap: 40px; }
.fleet-tabs { display: flex; gap: 4px; padding: 6px; border: 1px solid var(--line); background: rgba(20, 20, 22, 0.5); flex-wrap: wrap; }
.fleet-tab { padding: 12px 22px; font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-muted); transition: all 0.3s; font-weight: 500; }
.fleet-tab:hover { color: var(--ice); }
.fleet-tab.active { background: var(--ice); color: var(--obsidian); }
.fleet-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 28px; }
.car { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--onyx); transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); cursor: pointer; min-height: 420px; text-decoration: none; color: inherit; display: block; }
.car:hover { border-color: var(--gold); transform: translateY(-6px); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); }
.car-img { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(ellipse at 30% 30%, rgba(201, 169, 97, 0.2), transparent 60%), linear-gradient(135deg, #1a1a1c 0%, #0e0e0f 50%, #161618 100%); }
.car-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1); }
.car:hover .car-img img { transform: scale(1.1); }
.car-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(7, 7, 7, 0.3) 60%, rgba(7, 7, 7, 0.95) 100%); }
.car-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 32px; z-index: 2; }
.car-brand { font-size: 10px; letter-spacing: 0.35em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.car-name { font-family: var(--f-display); font-size: 34px; color: var(--ice); line-height: 1; margin-bottom: 16px; }
.car-meta { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.car-price { font-family: var(--f-serif); font-weight: 400; }
.car-price strong { color: var(--ice); font-size: 22px; display: block; }
.car-price small { color: var(--text-muted); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; }
.car-specs { display: flex; gap: 14px; font-size: 11px; color: var(--text-muted); }
.car-specs span b { display: block; color: var(--ice); font-weight: 400; margin-bottom: 2px; font-size: 13px; font-family: var(--f-serif); }
.car-badge { position: absolute; top: 24px; right: 24px; z-index: 3; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; padding: 7px 12px; background: rgba(7, 7, 7, 0.7); backdrop-filter: blur(10px); border: 1px solid var(--line); color: var(--gold); }
.car.wide { grid-column: span 8; }
.car.tall { grid-column: span 4; min-height: 620px; }
.car.half { grid-column: span 6; min-height: 520px; }
.car.third { grid-column: span 4; }
.car.standard { grid-column: span 4; min-height: 460px; }

/* ============ FORMS ============ */
.form-wrap { padding: 50px; background: rgba(14, 14, 15, 0.5); border: 1px solid var(--line); backdrop-filter: blur(10px); }
.form-group { margin-bottom: 24px; }
.form-group label { display: block; font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.form-group label .req { color: var(--gold); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid var(--line); padding: 12px 0;
  color: var(--ice); font-family: var(--f-serif); font-size: 17px; font-weight: 300;
  transition: border-color 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select {
  appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c9a961' fill='none' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat; background-position: right center; padding-right: 30px;
}
.form-group select option { background: var(--charcoal); color: var(--ice); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.form-row.three { grid-template-columns: 1fr 1fr 1fr; }
.form-submit { width: 100%; padding: 20px; background: var(--gold); color: var(--obsidian); font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; transition: all 0.4s; margin-top: 20px; border: 1px solid var(--gold); cursor: pointer; }
.form-submit:hover { background: transparent; color: var(--gold); }
.form-note { font-family: var(--f-serif); font-style: italic; color: var(--text-muted); font-size: 14px; margin-top: 24px; text-align: center; }

/* ============ CONTACT ============ */
.contact-section { padding: 140px 48px; background: linear-gradient(180deg, var(--obsidian), var(--onyx)); border-top: 1px solid var(--line); }
.contact-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.contact-info h3 { font-family: var(--f-display); font-size: 54px; color: var(--ice); line-height: 1; margin-bottom: 30px; }
.contact-info h3 em { font-family: var(--f-serif); font-style: italic; color: var(--gold); font-weight: 300; }
.contact-info p { font-family: var(--f-serif); font-size: 18px; color: var(--text-muted); line-height: 1.6; margin-bottom: 40px; }
.contact-details { margin-top: 40px; }
.contact-row { padding: 24px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: 100px 1fr; gap: 24px; align-items: start; }
.contact-row:last-child { border-bottom: 1px solid var(--line); }
.contact-row .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); padding-top: 4px; }
.contact-row .val { font-family: var(--f-serif); font-size: 18px; color: var(--ice); line-height: 1.5; }
.contact-row .val a { transition: color 0.3s; }
.contact-row .val a:hover { color: var(--gold); }

/* ============ FOOTER ============ */
.site-footer { padding: 60px 48px 30px; background: var(--obsidian); border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer-inner { max-width: 1600px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.footer-logo { font-family: var(--f-display); font-size: 40px; color: var(--ice); letter-spacing: 0.2em; margin-bottom: 20px; display: flex; align-items: center; gap: 14px; }
.footer-logo .diamond { width: 16px; height: 16px; background: linear-gradient(135deg, #fff, var(--frost), var(--glacier)); transform: rotate(45deg); }
.footer-tagline { font-family: var(--f-serif); font-style: italic; color: var(--text-muted); max-width: 340px; line-height: 1.6; }
.footer-col h5 { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer-col a { display: block; padding: 8px 0; color: var(--text-muted); font-size: 14px; transition: color 0.3s; }
.footer-col a:hover { color: var(--ice); }
.footer-bottom { max-width: 1600px; margin: 30px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); flex-wrap: wrap; gap: 16px; }

/* ============ MEMBERSHIP TIERS ============ */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tier { position: relative; padding: 50px 40px; background: linear-gradient(180deg, var(--onyx) 0%, var(--charcoal) 100%); border: 1px solid var(--line); overflow: hidden; transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); display: flex; flex-direction: column; }
.tier::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--tier-color, var(--silver)); opacity: 0.8; }
.tier::after { content: ""; position: absolute; inset: -1px; background: radial-gradient(ellipse at top, var(--tier-glow, transparent), transparent 60%); pointer-events: none; opacity: 0.3; }
.tier:hover { transform: translateY(-10px); border-color: var(--tier-color, var(--silver)); box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 40px var(--tier-glow, transparent); }
.tier.featured { transform: scale(1.03); border-color: var(--gold); }
.tier.featured:hover { transform: scale(1.03) translateY(-10px); }
.tier.silver { --tier-color: var(--silver); --tier-glow: rgba(184, 188, 193, 0.15); }
.tier.gold { --tier-color: #e8c879; --tier-glow: rgba(232, 200, 121, 0.15); }
.tier.platinum { --tier-color: var(--gold); --tier-glow: rgba(201, 169, 97, 0.2); }
.tier-badge { position: absolute; top: 20px; right: 20px; font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; padding: 6px 12px; background: var(--gold); color: var(--obsidian); font-weight: 500; }
.tier-name { font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--tier-color); margin-bottom: 20px; font-weight: 500; }
.tier-title { font-family: var(--f-display); font-size: 64px; color: var(--ice); line-height: 0.9; margin-bottom: 8px; }
.tier-sub { font-family: var(--f-serif); font-style: italic; color: var(--text-muted); font-size: 17px; margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.tier-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 6px; }
.tier-price-num { font-family: var(--f-display); font-size: 72px; color: var(--ice); line-height: 1; }
.tier-price-per { font-family: var(--f-serif); font-size: 16px; color: var(--text-muted); }
.tier-days { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--tier-color); margin-bottom: 36px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.tier-features { flex: 1; list-style: none; margin-bottom: 40px; padding: 0; }
.tier-features li { padding: 14px 0; padding-left: 28px; font-size: 14px; color: var(--text); font-weight: 300; position: relative; border-bottom: 1px solid rgba(255, 255, 255, 0.05); list-style: none; }
.tier-features li:last-child { border-bottom: none; }
.tier-features li::before { content: ""; position: absolute; left: 0; top: 21px; width: 12px; height: 1px; background: var(--tier-color); }
.tier-features li b { color: var(--ice); font-weight: 500; }
.tier-cta { display: block; text-align: center; padding: 18px; width: 100%; font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; border: 1px solid var(--tier-color); color: var(--tier-color); transition: all 0.4s; }
.tier-cta:hover { background: var(--tier-color); color: var(--obsidian); }
.tier.platinum .tier-cta { background: var(--gold); color: var(--obsidian); }
.tier.platinum .tier-cta:hover { background: transparent; color: var(--gold); }

/* ============ MOBILE ============ */
@media (max-width: 1100px) {
  .nav { padding: 18px 24px; }
  .nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; }
  .nav-menu-btn { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    padding: 40px 24px;
    background: rgba(7, 7, 7, 0.98); backdrop-filter: blur(30px);
    border-bottom: 1px solid var(--line);
    gap: 24px; font-size: 14px;
  }
  .nav-cta { display: none; }
  .hero { padding: 0 24px; }
  .section { padding: 90px 24px; }
  .fleet-header { flex-direction: column; align-items: flex-start; gap: 30px; }
  .fleet-grid { grid-template-columns: 1fr; gap: 20px; }
  .car.wide, .car.tall, .car.half, .car.third, .car.standard { grid-column: span 1; min-height: 400px; }
  .tiers { grid-template-columns: 1fr; gap: 24px; }
  .tier.featured { transform: none; }
  .tier.featured:hover { transform: translateY(-10px); }
  .contact-section { padding: 90px 24px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .form-wrap { padding: 32px 24px; }
  .form-row, .form-row.three { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding: 50px 24px 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 600px) {
  .hero-marquee { padding: 14px 0; }
  .marquee-track { font-size: 16px; gap: 40px; }
  .marquee-track span { gap: 40px; }
  .btn { padding: 16px 24px; font-size: 11px; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-ctas .btn { justify-content: center; }
  .tier { padding: 40px 28px; }
  .tier-title { font-size: 48px; }
  .tier-price-num { font-size: 56px; }
  .contact-row { grid-template-columns: 1fr; gap: 6px; }
}

/* ============ HOMEPAGE — RESPONSIVE COMPONENTS (v1.2.3) ============ */

/* "ICE Standard" two-column section */
.home-standard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.home-standard-prose {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 20px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.home-standard-prose:last-of-type { margin-bottom: 32px; }
.home-standard-images {
  position: relative;
  height: 600px;
}
.home-standard-image {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  background: linear-gradient(135deg, #1a1a1c, #0e0e0f);
}
.home-standard-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-standard-image-1 {
  top: 0; right: 0;
  width: 75%; height: 60%;
}
.home-standard-image-2 {
  bottom: 0; left: 0;
  width: 65%; height: 55%;
}

/* Golf section */
.home-golf {
  position: relative;
  padding: 160px 48px;
  overflow: hidden;
}
.home-golf-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(125,148,173,0.1), transparent 70%),
              linear-gradient(180deg, #0e1419 0%, #1a2128 50%, #0a0e12 100%);
}
.home-golf-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35) saturate(0.8);
}
.home-golf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--obsidian) 0%, rgba(7,7,7,0.6) 30%, rgba(7,7,7,0.6) 70%, var(--obsidian) 100%);
}
.home-golf-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.home-golf-lead { margin: 0 auto 50px; }
.home-golf-ctas {
  justify-content: center;
  animation: none;
  opacity: 1;
}

/* Testimonial section */
.home-testimonial {
  padding: 140px 48px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.home-testimonial-mark {
  font-family: var(--f-display);
  font-size: 140px;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.25;
  margin-bottom: 20px;
}
.home-testimonial-quote {
  font-family: var(--f-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(22px, 3vw, 42px);
  color: var(--ice);
  line-height: 1.4;
  margin-bottom: 40px;
}
.home-testimonial-attr {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.home-testimonial-rule {
  width: 40px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

/* ============ TABLET BREAKPOINT (1100px) ============ */
@media (max-width: 1100px) {
  .home-standard-grid {
    gap: 60px;
  }
  .home-standard-images {
    height: 500px;
  }
  .home-golf {
    padding: 100px 24px;
  }
  .home-testimonial {
    padding: 100px 24px;
  }
  .home-testimonial-mark {
    font-size: 100px;
  }
}

/* ============ MOBILE BREAKPOINT (820px) — stack everything ============ */
@media (max-width: 820px) {
  /* Stack two-column ICE Standard section */
  .home-standard-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  /* Show images stacked, not overlapping */
  .home-standard-images {
    position: static;
    height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .home-standard-image {
    position: static;
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 3;
  }
  .home-standard-prose {
    font-size: 17px;
  }

  /* Golf section */
  .home-golf {
    padding: 80px 20px;
  }
  .home-golf-ctas {
    flex-direction: column;
    gap: 14px;
  }
  .home-golf-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Testimonial */
  .home-testimonial {
    padding: 80px 20px;
  }
  .home-testimonial-mark {
    font-size: 80px;
    margin-bottom: 12px;
  }
  .home-testimonial-quote {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .home-testimonial-attr {
    font-size: 10px;
    letter-spacing: 0.25em;
    gap: 10px;
  }
  .home-testimonial-rule {
    width: 24px;
  }

  /* Section padding */
  .section { padding: 70px 20px; }

  /* Hero — make sure title doesn't overflow */
  .hero-title {
    font-size: clamp(40px, 11vw, 80px) !important;
    line-height: 1.05;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 1.6;
  }
  .hero-eyebrow {
    font-size: 10px;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section titles fit on small screens */
  .section-title {
    font-size: clamp(36px, 8vw, 60px) !important;
    line-height: 1.05;
  }
  .section-lead {
    font-size: 16px;
  }

  /* Marquee — smaller text, tighter pacing */
  .marquee-track {
    font-size: 14px !important;
    gap: 28px !important;
  }

  /* Tier cards — fix oversized text */
  .tier {
    padding: 32px 22px;
  }
  .tier-name {
    font-size: 36px !important;
  }
  .tier-price-num {
    font-size: 44px !important;
  }
  .tier-price-per {
    font-size: 14px !important;
  }
  .tier-features li {
    font-size: 14px;
  }

  /* Fleet cards — make them readable */
  .fleet-section {
    padding: 40px 20px 70px;
  }
  .fleet-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  .car,
  .car.wide, .car.tall, .car.half, .car.third, .car.standard {
    grid-column: 1 / -1 !important;
    min-height: 340px !important;
    width: 100%;
  }
  .car-info {
    padding: 22px;
  }
  .car-brand {
    font-size: 10px;
    letter-spacing: 0.25em;
  }
  .car-name {
    font-size: 24px !important;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  .car-meta {
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
  }
  .car-price strong {
    font-size: 18px;
  }
  .car-price small {
    font-size: 10px;
  }
  .car-specs {
    gap: 12px;
    font-size: 10px;
    flex-wrap: wrap;
  }
  .car-specs span b {
    font-size: 12px;
  }
  .car-badge {
    top: 14px;
    right: 14px;
    font-size: 8px;
    padding: 5px 9px;
    letter-spacing: 0.25em;
  }

  /* Fleet header column alignment */
  .fleet-header {
    gap: 20px;
  }
  .fleet-tabs {
    flex-wrap: wrap;
    gap: 8px;
  }
  .fleet-tab {
    font-size: 11px;
    padding: 8px 14px;
  }

  /* Buttons fit phones */
  .btn {
    padding: 14px 22px;
    font-size: 11px;
    letter-spacing: 0.2em;
  }
}

/* ============ SMALL PHONE BREAKPOINT (480px) ============ */
@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .fleet-section { padding: 30px 16px 60px; }
  .home-golf { padding: 70px 16px; }
  .home-testimonial { padding: 70px 16px; }
  .home-testimonial-quote {
    font-size: 18px;
  }
  .home-testimonial-mark {
    font-size: 64px;
  }
  .home-standard-prose {
    font-size: 16px;
    line-height: 1.6;
  }
  .hero-title {
    font-size: 11vw !important;
  }
  .section-title {
    font-size: 36px !important;
  }
  .tier-name {
    font-size: 32px !important;
  }
  .tier-price-num {
    font-size: 38px !important;
  }
}

/* ============ SEO LANDING PAGE — FAQ + COMPACT HERO (v1.3) ============ */

/* Compact hero variant for SEO pages */
.hero.compact { min-height: 50vh; padding: 100px 24px 60px; }
.hero.compact .hero-title { font-size: clamp(40px, 7vw, 80px); }

/* SEO page sections breathe a bit */
.seo-landing-page .section { padding-top: 60px; padding-bottom: 60px; }

/* FAQ accordion */
.seo-faq { max-width: 880px; margin: 0 auto; }
.faq-list { margin-top: 40px; }
.faq-item {
  border: 1px solid var(--line);
  background: rgba(20, 20, 22, 0.4);
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--f-serif);
  font-size: 19px;
  font-weight: 400;
  color: var(--ice);
  list-style: none;
  position: relative;
  padding-right: 60px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  font-weight: 200;
  transition: transform 0.3s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item summary:hover { color: var(--gold); }
.faq-answer {
  padding: 0 28px 26px;
  font-family: var(--f-serif);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-answer p { margin-bottom: 14px; }
.faq-answer p:last-child { margin-bottom: 0; }

@media (max-width: 820px) {
  .hero.compact { min-height: 40vh; padding: 80px 20px 40px; }
  .faq-item summary { font-size: 17px; padding: 18px 22px; padding-right: 50px; }
  .faq-item summary::after { right: 20px; }
  .faq-answer { padding: 0 22px 22px; font-size: 16px; }
}

/* ============ BLOG SYSTEM (v1.4) ============ */

.blog-list { padding-top: 80px; padding-bottom: 100px; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-card {
  background: var(--onyx);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.blog-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1c, #0e0e0f);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }

.blog-card-body { padding: 28px; }
.blog-card-meta {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.blog-card-title {
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--ice);
  line-height: 1.2;
  margin-bottom: 14px;
}
.blog-card-excerpt {
  font-family: var(--f-serif);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-card-cta {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.blog-pagination {
  text-align: center;
  margin-top: 60px;
}
.blog-pagination .nav-links {
  display: inline-flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.blog-pagination .page-numbers {
  padding: 12px 18px;
  border: 1px solid var(--line);
  color: var(--ice);
  text-decoration: none;
  font-size: 14px;
  font-family: var(--f-sans);
  transition: all 0.3s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Single post body */
.blog-body { padding: 80px 24px; }
.blog-body-inner {
  max-width: 760px;
  margin: 0 auto;
  font-family: var(--f-serif);
  font-size: 19px;
  color: var(--text);
  line-height: 1.8;
}
.blog-body-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(28px, 3vw, 40px);
  color: var(--ice);
  font-weight: 400;
  margin: 50px 0 20px;
  line-height: 1.2;
}
.blog-body-inner h3 {
  font-family: var(--f-display);
  font-size: clamp(22px, 2.4vw, 30px);
  color: var(--ice);
  font-weight: 400;
  margin: 40px 0 16px;
  line-height: 1.2;
}
.blog-body-inner p { margin-bottom: 22px; }
.blog-body-inner ul, .blog-body-inner ol {
  margin: 0 0 22px 24px;
  padding: 0;
}
.blog-body-inner li { margin-bottom: 10px; }
.blog-body-inner a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 169, 97, 0.3);
  transition: border-color 0.3s;
}
.blog-body-inner a:hover { border-color: var(--gold); }
.blog-body-inner blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: var(--ice);
  font-size: 21px;
}
.blog-body-inner img {
  max-width: 100%;
  height: auto;
  margin: 30px 0;
  border: 1px solid var(--line);
}

.blog-tags {
  max-width: 760px;
  margin: 60px auto 0;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.blog-tag {
  display: inline-block;
  padding: 6px 14px;
  margin: 4px 6px 4px 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.3s;
}
.blog-tag:hover { border-color: var(--gold); }

.blog-related { padding-top: 80px; padding-bottom: 80px; border-top: 1px solid var(--line); }

@media (max-width: 1100px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
}
@media (max-width: 820px) {
  .blog-grid { grid-template-columns: 1fr; gap: 24px; }
  .blog-list { padding: 60px 20px 80px; }
  .blog-card-body { padding: 22px; }
  .blog-card-title { font-size: 22px; }
  .blog-body { padding: 60px 20px; }
  .blog-body-inner { font-size: 17px; }
  .blog-body-inner h2 { font-size: 26px; margin: 36px 0 16px; }
  .blog-body-inner h3 { font-size: 22px; margin: 28px 0 14px; }
}
