/* ============================================
   BACKYARD SKYSHED — Global Styles
   Dark, cinematic, awe-inspiring
   ============================================ */

:root {
  --black: #06070a;
  --deep-navy: #080d1a;
  --navy: #0d1526;
  --navy-mid: #111d33;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #f5f3ef;
  --white-dim: rgba(245, 243, 239, 0.7);
  --white-faint: rgba(245, 243, 239, 0.3);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }

h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.8rem); }

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-eyebrow.center { text-align: center; }
.section-title { margin-bottom: 1rem; }
.section-title.center { text-align: center; }
.section-sub { color: var(--white-dim); max-width: 600px; margin: 0 auto 3rem; text-align: center; }

/* ============================================
   UTILITY
   ============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-primary-lg {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1.2rem 3rem;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary-lg:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  border: 1px solid rgba(245,243,239,0.5);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.05); }

.btn-ghost {
  display: inline-block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

.btn-ghost-sm {
  display: inline-block;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-ghost-sm:hover { color: var(--gold-light); }

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  transition: background 0.4s, padding 0.4s;
}
#navbar.scrolled {
  background: rgba(6, 7, 10, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.2rem;
}
.nav-links .nav-cta:hover { background: var(--gold); color: var(--black); }
.nav-links .nav-phone {
  color: var(--white-dim);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: none;
}
.nav-links .nav-phone:hover { color: var(--gold); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: transform 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6,7,10,0.2) 0%,
    rgba(6,7,10,0.1) 40%,
    rgba(6,7,10,0.7) 75%,
    rgba(6,7,10,0.95) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.hero-brand {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-align: center;
}
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero-sub {
  font-size: 1.05rem;
  color: var(--white-dim);
  max-width: 580px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
  text-align: center;
}
.hero h1 {
  text-align: center;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1.2rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-faint);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white-faint), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ============================================
   INTRO STRIP
   ============================================ */
.intro-strip {
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 2rem 2rem;
}
.intro-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 3rem;
  gap: 0.3rem;
}
.stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.strip-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ============================================
   FEATURE SPLIT
   ============================================ */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}
.feature-split.reverse { direction: rtl; }
.feature-split.reverse > * { direction: ltr; }

.feature-img { overflow: hidden; position: relative; }
.feature-img img { transition: transform 0.8s ease; }
.feature-img:hover img { transform: scale(1.04); }

.feature-text {
  background: var(--deep-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem;
}
.feature-text h2 { margin-bottom: 1.5rem; }
.feature-text p { color: var(--white-dim); margin-bottom: 1rem; max-width: 480px; }
.feature-text p:last-of-type { margin-bottom: 2rem; }

/* ============================================
   MODELS PREVIEW
   ============================================ */
.models-preview {
  background: var(--black);
  padding: 7rem 2rem;
}
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-bottom: 3rem;
  background: rgba(255,255,255,0.06);
}
.model-card {
  background: var(--deep-navy);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  position: relative;
  transition: background 0.3s;
}
.model-card:hover { background: var(--navy-mid); }
.model-card.featured { background: var(--navy); }
.model-badge {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0.25rem 0.6rem;
}
.model-size {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--white);
}
.model-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.03em;
}
.model-desc { font-size: 0.85rem; color: var(--white-dim); line-height: 1.6; flex: 1; }
.models-cta { text-align: center; }

/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
  background: var(--navy);
  padding: 6rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.testimonial-section blockquote {
  max-width: 750px;
  margin: 0 auto;
}
.testimonial-section blockquote p {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  line-height: 1.6;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.testimonial-section blockquote p::before { content: '\201C'; color: var(--gold); }
.testimonial-section blockquote p::after { content: '\201D'; color: var(--gold); }
.testimonial-section cite {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
  font-style: normal;
}

/* ============================================
   TESTIMONIAL STRIP (home page)
   ============================================ */
.testimonial-strip {
  background: var(--navy);
  padding: 7rem 2rem;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--deep-navy);
  padding: 2.5rem;
  border-top: 2px solid var(--gold);
}
.testimonial-text {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-text::before { content: '\201C'; color: var(--gold); margin-right: 2px; }
.testimonial-text::after { content: '\201D'; color: var(--gold); margin-left: 2px; }
.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-dim);
}
.testimonial-author span { color: var(--gold); margin-left: 0.3rem; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ============================================
   HOW IT WORKS STRIP
   ============================================ */
.hiw-strip {
  background: var(--black);
  padding: 7rem 2rem;
}
.hiw-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin: 4rem 0 3rem;
  flex-wrap: wrap;
}
.hiw-step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 0 1.5rem;
  text-align: center;
}
.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.hiw-step h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.hiw-step p { font-size: 0.85rem; color: var(--white-dim); }
.hiw-arrow {
  font-size: 1.5rem;
  color: rgba(201,168,76,0.3);
  align-self: center;
  padding: 0 0.5rem;
  flex-shrink: 0;
}
.hiw-cta { text-align: center; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img { object-position: center center; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,7,10,0.72);
}
.cta-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
}
.cta-content h2 { margin-bottom: 1.5rem; }
.cta-content p {
  color: var(--white-dim);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--deep-navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 5rem 2rem 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo {
  display: block;
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-brand p { font-size: 0.85rem; color: var(--white-dim); line-height: 1.8; }

.footer-links h4, .footer-contact h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--white-dim);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }

.footer-contact p { font-size: 0.85rem; color: var(--white-dim); margin-bottom: 0.5rem; }
.footer-contact a { color: var(--white-dim); transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.btn-footer-cta {
  display: inline-block;
  margin-top: 1.5rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: background 0.2s;
}
.btn-footer-cta:hover { background: var(--gold-light); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.75rem;
  color: rgba(245,243,239,0.2);
}

/* ============================================
   INNER PAGE HERO (used on sub-pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 5vh;
}
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(6,7,10,0.4) 0%, rgba(6,7,10,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content .section-eyebrow { margin-bottom: 0.75rem; }
.page-hero-content h1 { font-size: clamp(2.2rem, 4vw, 4rem); }

/* ============================================
   MODELS PAGE
   ============================================ */
.models-full {
  background: var(--black);
  padding: 6rem 2rem;
}
.models-full .container { max-width: 1100px; }
.models-table-wrap { overflow-x: auto; }
.models-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.models-table th {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: left;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.models-table td {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  color: var(--white-dim);
}
.models-table tr:hover td { background: var(--navy); color: var(--white); }
.models-table .size-col { font-family: var(--serif); font-size: 1.3rem; color: var(--white); }
.models-table .price-col { font-weight: 600; color: var(--gold); font-size: 1rem; }

.includes-section {
  background: var(--deep-navy);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.include-card {
  background: var(--navy);
  padding: 2rem;
  border-left: 2px solid var(--gold);
}
.include-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.include-card ul { list-style: none; }
.include-card li {
  font-size: 0.85rem;
  color: var(--white-dim);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.include-card li:last-child { border: none; }
.include-card li::before { content: '— '; color: var(--gold); }

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-grid {
  background: var(--black);
  padding: 5rem 2rem 7rem;
}
.gallery-masonry {
  columns: 3;
  column-gap: 6px;
  max-width: 1300px;
  margin: 0 auto;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.85);
}
.gallery-item:hover img { transform: scale(1.04); filter: brightness(1); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(6,7,10,0.85) 0%, transparent 100%);
  padding: 2rem 1rem 0.75rem;
  font-size: 0.75rem;
  color: var(--white-dim);
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ============================================
   HOW IT WORKS PAGE
   ============================================ */
.hiw-full {
  background: var(--black);
  padding: 6rem 2rem;
}
.hiw-numbered {
  max-width: 800px;
  margin: 0 auto;
}
.hiw-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hiw-item:last-child { border-bottom: none; }
.hiw-num {
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(201,168,76,0.2);
  line-height: 1;
  text-align: right;
}
.hiw-body h3 { margin-bottom: 0.75rem; }
.hiw-body p { color: var(--white-dim); font-size: 0.95rem; }

.specs-section {
  background: var(--deep-navy);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 3rem;
}
.spec-item {
  background: var(--navy);
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.spec-label { font-size: 0.8rem; color: var(--white-dim); letter-spacing: 0.05em; }
.spec-val { font-family: var(--serif); font-size: 1.1rem; color: var(--gold); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  background: var(--black);
  padding: 6rem 2rem;
}
.about-story .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { color: var(--white-dim); margin-bottom: 1rem; }
.about-img { height: 550px; overflow: hidden; }
.about-img img { height: 100%; object-fit: cover; }

.values-section {
  background: var(--deep-navy);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.value-card {
  padding: 2rem 0;
  border-top: 1px solid var(--gold);
}
.value-card h3 { margin-bottom: 0.75rem; }
.value-card p { font-size: 0.85rem; color: var(--white-dim); }

/* ============================================
   FAQ PAGE
   ============================================ */
.faq-section {
  background: var(--black);
  padding: 6rem 2rem;
}
.faq-list {
  max-width: 780px;
  margin: 3rem auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  text-align: left;
  padding: 1.75rem 0;
  font-family: var(--serif);
  font-size: 1.15rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q .faq-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 0 1.75rem;
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.8;
}
.faq-item.open .faq-a { display: block; }

/* ============================================
   QUOTE / CONTACT PAGE
   ============================================ */
.quote-section {
  background: var(--black);
  padding: 6rem 2rem;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.quote-form-side h2 { margin-bottom: 0.5rem; }
.quote-form-side > p { color: var(--white-dim); margin-bottom: 2.5rem; }

.quote-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy); }

.form-submit {
  background: var(--gold);
  color: var(--black);
  border: none;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  align-self: flex-start;
}
.form-submit:hover { background: var(--gold-light); }

.quote-info-side { padding-top: 1rem; }
.quote-info-side h3 { font-size: 1.3rem; margin-bottom: 0.75rem; }
.quote-info-side p { color: var(--white-dim); font-size: 0.9rem; margin-bottom: 1rem; }

.contact-block {
  background: var(--navy);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.contact-block h4 {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.contact-block p { font-size: 0.85rem; color: var(--white-dim); margin: 0; line-height: 1.8; }
.contact-block a { color: var(--white-dim); transition: color 0.2s; }
.contact-block a:hover { color: var(--gold); }

.calendly-block {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 2rem;
  text-align: center;
}
.calendly-block h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.calendly-block p { color: var(--white-dim); font-size: 0.85rem; margin-bottom: 1.5rem; }
.btn-calendly {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  transition: background 0.2s;
}
.btn-calendly:hover { background: var(--gold-light); }

/* ============================================
   ABOUT HERO (aerial shop photo)
   ============================================ */
.about-hero {
  width: 100%;
  height: 55vh;
  min-height: 360px;
  overflow: hidden;
  margin-top: 72px;
}
.about-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ============================================
   ABOUT LONG-FORM CONTENT
   ============================================ */
.about-long {
  background: var(--black);
  padding: 6rem 2rem;
}
.about-long-inner {
  max-width: 780px;
  margin: 0 auto;
}
.about-block { padding: 0; }
.about-block h2 { margin-bottom: 1.5rem; font-size: clamp(1.6rem, 3vw, 2.5rem); }
.about-block p { color: var(--white-dim); margin-bottom: 1rem; font-size: 1rem; line-height: 1.85; }
.about-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
  margin: 4rem 0;
}

.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.delivery-region {
  background: var(--navy);
  padding: 1.25rem 1.5rem;
  border-top: 2px solid var(--gold);
}
.delivery-region h4 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.delivery-region p {
  font-size: 0.82rem;
  color: var(--white-dim);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .delivery-grid { grid-template-columns: 1fr; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  cursor: zoom-out;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}
#lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 1001;
}
#lightbox-close:hover { opacity: 1; }
.gallery-item { cursor: zoom-in; }

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none;
  background: var(--navy);
  border: 1px solid var(--gold);
  padding: 2rem;
  text-align: center;
  margin-top: 1rem;
}
.form-success p { color: var(--white-dim); }

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--deep-navy);
  padding: 2.5rem;
  text-decoration: none;
  transition: background 0.3s;
}
.blog-card:hover { background: var(--navy-mid); }
.blog-card-meta {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.blog-card-title {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.blog-card-excerpt {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.5rem;
}
.blog-card-read {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.blog-card:hover .blog-card-read { color: var(--gold-light); }

/* Blog article layout */
.blog-article {
  background: var(--black);
  padding: 6rem 2rem;
}
.blog-article-inner {
  max-width: 740px;
  margin: 0 auto;
}
.blog-lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white);
  line-height: 1.75;
  margin-bottom: 3rem;
  font-weight: 300;
}
.blog-article-inner h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.blog-article-inner h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gold-light);
}
.blog-article-inner p {
  color: var(--white-dim);
  font-size: 0.97rem;
  line-height: 1.85;
  margin-bottom: 1.25rem;
}
.blog-list {
  list-style: none;
  margin: 1.5rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.blog-list li {
  color: var(--white-dim);
  font-size: 0.97rem;
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}
.blog-list li::before {
  content: '—';
  color: var(--gold);
  position: absolute;
  left: 0;
}
.blog-cta-box {
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  border-left: 3px solid var(--gold);
  padding: 2.5rem;
  margin-top: 4rem;
}
.blog-cta-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}
.blog-cta-box p {
  color: var(--white-dim);
  margin-bottom: 0;
}

@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: 0; height: 100vh; width: 270px; background: var(--deep-navy); padding: 5rem 2rem 2rem; gap: 1.5rem; border-left: 1px solid rgba(255,255,255,0.08); z-index: 200; overflow-y: auto; }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; z-index: 300; position: relative; }
  .feature-split { grid-template-columns: 1fr; }
  .feature-split .feature-img { height: 280px; }
  .feature-split.reverse { direction: ltr; }
  .models-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-story .container { grid-template-columns: 1fr; }
  .about-img { height: 300px; }
  .values-grid { grid-template-columns: 1fr; }
  .quote-inner { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-masonry { columns: 2; }
  .specs-grid { grid-template-columns: 1fr; }
  .hiw-steps { flex-direction: column; align-items: center; }
  .hiw-arrow { transform: rotate(90deg); }
  .form-row { grid-template-columns: 1fr; }
  .strip-stat { padding: 0.5rem 1.5rem; }
  /* Hide dividers between stats when they wrap on mobile */
  .strip-divider { display: none; }
  /* Table: show only Size + Price on mobile, hide rest */
  .models-table th:nth-child(2),
  .models-table td:nth-child(2),
  .models-table th:nth-child(3),
  .models-table td:nth-child(3),
  .models-table th:nth-child(5),
  .models-table td:nth-child(5) { display: none; }
  .models-table { min-width: unset; width: 100%; }
  .size-col { white-space: nowrap; font-size: 1.1rem; }
  .price-col { white-space: nowrap; }
}

@media (max-width: 600px) {
  .gallery-masonry { columns: 1; }
  .hiw-item { grid-template-columns: 50px 1fr; gap: 1rem; }
  /* Hero buttons: full-width, centered */
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { text-align: center; }
  .hero h1 { font-size: 2rem; }
  /* Page hero text tighter on small screens */
  .page-hero-content h1 { font-size: 2rem; }
  /* Intro strip: 2-col grid instead of flex row */
  .intro-strip .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    justify-items: center;
  }
  /* Blog cards single col */
  .blog-grid { grid-template-columns: 1fr; }
  /* Quote form padding */
  .quote-section { padding: 4rem 1.25rem; }
  /* About hero shorter on mobile */
  .about-hero { height: 40vw; min-height: 200px; }
}
