/* ===== FONTS ===== */
@font-face {
 font-family: 'Mirano';
 src: url('fonts/Mirano-ExtendedBold.woff2') format('woff2'),
 url('fonts/Mirano-ExtendedBold.woff') format('woff'),
 url('fonts/Mirano-ExtendedBold.otf') format('opentype'),
 url('fonts/Mirano-ExtendedBold.ttf') format('truetype');
 font-weight: bold;
 font-style: normal;
 font-display: swap;
}

/* ===== VARIABLES ===== */
:root {
 --black: #0A0A0A;
 --hot-red: #7a1f24;
 --wine: #5c161a;
 --chrome: #C9CDD2;
 --cream: #F4F1EC;
 --font-head: 'Mirano', 'Archivo Expanded', 'Archivo', sans-serif;
 --font-body: 'Montserrat', sans-serif;
}

/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
 background: var(--black);
 color: var(--cream);
 font-family: var(--font-body);
 overflow-x: hidden;
 line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
 font-family: var(--font-head);
 text-transform: uppercase;
 letter-spacing: 1px;
 line-height: 1.05;
}

/* ===== NAV ===== */
.nav {
 position: fixed;
 top: 0; left: 0; right: 0;
 z-index: 100;
 display: flex;
 justify-content: space-between;
 align-items: center;
 padding: 18px 40px;
 background: rgba(10,10,10,0.4);
 backdrop-filter: blur(10px);
 transition: background 0.3s;
}
.nav.scrolled { background: rgba(10,10,10,0.95); }
.nav img { height: 42px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
 font-family: var(--font-head);
 font-size: 13px;
 letter-spacing: 2px;
 color: var(--cream);
 transition: color 0.25s;
}
.nav-links a:hover { color: var(--hot-red); }
.nav-toggle { display: none; font-size: 26px; background: none; border: none; color: var(--cream); cursor: pointer; }

/* ===== BUTTONS ===== */
.btn {
 display: inline-block;
 background: var(--hot-red);
 color: var(--cream);
 font-family: var(--font-head);
 letter-spacing: 2px;
 font-size: 14px;
 padding: 16px 38px;
 border: none;
 cursor: pointer;
 transition: transform 0.25s, background 0.25s;
}
.btn:hover { background: var(--wine); transform: translateY(-3px); }
.btn-outline {
 background: transparent;
 border: 1px solid var(--chrome);
 color: var(--chrome);
}
.btn-outline:hover { background: var(--chrome); color: var(--black); }

/* ===== HERO (left aligned) ===== */
.hero {
 position: relative;
 height: 100vh;
 display: flex;
 flex-direction: column;
 justify-content: center;
 align-items: flex-start;
 text-align: left;
 overflow: hidden;
 padding: 0 60px;
}
.hero-bg {
 position: absolute;
 inset: 0;
 background: url('images/hero-steam.jpg') center/cover no-repeat;
 transform: scale(1.1);
 z-index: -2;
}
.hero::after {
 content: '';
 position: absolute; inset: 0;
 background: rgba(10,10,10,0.5);
 z-index: -1;
}
.hero h1 {
 font-size: clamp(2.5rem, 8vw, 7rem);
 font-weight: 900;
 color: var(--cream);
 max-width: 900px;
 line-height: 1.05;
 text-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.hero p {
 color: var(--chrome);
 letter-spacing: 3px;
 margin: 20px 0 30px;
 font-size: 14px;
 font-weight: 600;
}

/* ===== SECTION HEADINGS ===== */
.section { padding: 100px 40px; }
.section-label {
 color: var(--hot-red);
 letter-spacing: 4px;
 font-family: var(--font-head);
 font-size: 14px;
 text-align: center;
 margin-bottom: 12px;
}
.section-title {
 text-align: center;
 font-size: clamp(2rem, 5vw, 4rem);
 margin-bottom: 60px;
 color: var(--cream);
}

/* ===== OFFER TILES ===== */
.tiles {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 16px;
 max-width: 1300px;
 margin: 0 auto;
}
.tile {
 position: relative;
 height: 480px;
 overflow: hidden;
 cursor: pointer;
 border-radius: 12px;
}
.tile img {
 width: 100%; height: 100%;
 object-fit: cover;
 filter: grayscale(20%) brightness(0.7);
 transition: transform 0.6s, filter 0.6s;
}
.tile:hover img { transform: scale(1.08); filter: grayscale(0%) brightness(0.85); }
.tile-title {
 position: absolute;
 bottom: 30px; left: 30px;
 font-family: var(--font-head);
 font-size: 2rem;
 color: var(--cream);
 letter-spacing: 3px;
}

/* ===== CHROME BAND (no text) ===== */
.divider {
 height: 300px;
 background: url('images/chrome.jpg') center/cover no-repeat;
}

/* ===== PRICING ===== */
.cards {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 24px;
 max-width: 900px;
 margin: 0 auto;
}
.card {
 border: 1px solid var(--chrome);
 padding: 40px 30px;
 text-align: center;
 transition: transform 0.3s, border-color 0.3s;
 display: flex;
 flex-direction: column;
 border-radius: 16px;
}
.card:hover { transform: translateY(-8px); border-color: var(--hot-red); }
.card h3 { font-size: 1.5rem; color: var(--cream); margin-bottom: 16px; }
.card .price { font-family: var(--font-head); color: var(--hot-red); font-size: 2.6rem; margin-bottom: 20px; }
.card p.desc { color: var(--chrome); margin-bottom: 28px; flex-grow: 1; }

/* ===== FAQ ACCORDION ===== */
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(201,205,210,0.2); }
.faq-q {
 width: 100%;
 background: none; border: none;
 color: var(--cream);
 font-family: var(--font-head);
 letter-spacing: 1px;
 font-size: 1.1rem;
 padding: 24px 0;
 text-align: left;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 gap: 20px;
}
.faq-q .plus { color: var(--hot-red); font-size: 1.5rem; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.5s ease;
 color: var(--chrome);
}
.faq-item.open .faq-a { max-height: 1200px; padding-bottom: 24px; }
.faq-a p { margin-bottom: 12px; }
.faq-a a { color: var(--cream); text-decoration: underline; }
.faq-a strong { color: var(--cream); }

/* ===== BOOK / WIDGET EMBED (rounded corners) ===== */
.embed-wrap {
 max-width: 1100px;
 margin: 0 auto;
 min-height: 600px;
 border-radius: 20px;
 overflow: hidden;
}
.embed-wrap iframe,
.embed-wrap > div {
 border-radius: 20px;
 overflow: hidden;
}

/* ===== FOOTER ===== */
.footer {
 background: #060606;
 padding: 70px 40px 40px;
 display: grid;
 grid-template-columns: repeat(4, 1fr);
 gap: 40px;
 border-top: 1px solid rgba(201,205,210,0.15);
}
.footer h4 { font-family: var(--font-head); color: var(--hot-red); letter-spacing: 2px; margin-bottom: 18px; font-size: 14px; }
.footer p, .footer a { color: var(--chrome); font-size: 14px; margin-bottom: 8px; display: block; }
.footer a:hover { color: var(--cream); }
.footer .logo-col img { height: 50px; margin-bottom: 16px; }

/* ===== LIGHTBOX POPUP ===== */
.popup-overlay {
 position: fixed; inset: 0;
 background: rgba(0,0,0,0.85);
 display: flex; align-items: center; justify-content: center;
 z-index: 1000;
 opacity: 0; visibility: hidden;
 transition: opacity 0.4s, visibility 0.4s;
}
.popup-overlay.show { opacity: 1; visibility: visible; }
.popup {
 background: var(--black);
 border: 2px solid var(--hot-red);
 padding: 50px 40px;
 text-align: center;
 max-width: 440px;
 width: 90%;
 position: relative;
 transform: scale(0.9);
 transition: transform 0.4s;
 border-radius: 16px;
}
.popup-overlay.show .popup { transform: scale(1); }
.popup .label { color: var(--hot-red); letter-spacing: 3px; font-size: 13px; margin-bottom: 12px; }
.popup h2 { color: var(--cream); font-size: 2.2rem; margin-bottom: 8px; }
.popup .deal { color: var(--chrome); font-size: 1.4rem; letter-spacing: 2px; margin-bottom: 28px; }
.popup .close {
 position: absolute; top: 14px; right: 18px;
 background: none; border: none; color: var(--chrome);
 font-size: 24px; cursor: pointer;
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
 .tiles { grid-template-columns: 1fr; }
 .footer { grid-template-columns: 1fr 1fr; }
 .nav-links {
 position: fixed; top: 0; right: -100%;
 flex-direction: column;
 background: var(--black);
 height: 100vh; width: 70%;
 padding: 80px 30px;
 gap: 24px;
 transition: right 0.35s;
 }
 .nav-links.open { right: 0; }
 .nav-toggle { display: block; z-index: 101; }
}
@media (max-width: 560px) {
 .footer { grid-template-columns: 1fr; }
 .section { padding: 70px 20px; }
 .hero { padding: 0 30px; }
}
