/* ==========================================================================
   Promax Detailing Sydney — stylesheet
   Tokens are pulled straight from the approved Claude Design export.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Manrope:wght@400;500;600;700&display=swap');

:root {
  /* surfaces */
  --bg: #0a0b0d;
  --bg-alt: #101216;
  --bg-card: #131519;
  --bg-hero-glow: radial-gradient(circle at 78% 15%, rgba(58,110,240,0.22), transparent 55%);

  /* borders */
  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.06);
  --border-strong: rgba(255,255,255,0.15);
  --border-accent: rgba(74,134,255,0.4);
  --border-accent-soft: rgba(74,134,255,0.25);

  /* brand blue */
  --blue: #4a86ff;
  --blue-light: #6fa0ff;
  --blue-mid: #3f7cf0;
  --blue-dark: #2a5fd6;

  /* text */
  --text-primary: #f2f4f7;
  --text-body: #c3c8d1;
  --text-secondary: #a7adb6;
  --text-muted: #9aa1ab;
  --text-faint: #7d8590;
  --text-dim: #6b7178;

  /* type */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Manrope', sans-serif;

  /* shape */
  --radius-card: 6px;
  --radius-pill: 3px;
  --radius-round: 50%;

  /* layout */
  --max-width: 1280px;
  --side-pad: clamp(20px, 5vw, 48px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--side-pad);
  padding-right: var(--side-pad);
}

/* ---------- eyebrow / headings ---------- */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--blue-light);
  margin-bottom: 12px;
  text-transform: uppercase;
}

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

.section-head h2 { margin: 0; }

h1, h2, h3 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  margin: 0;
}

h1 { font-weight: 700; font-size: clamp(34px, 5vw, 58px); line-height: 1.08; }
h2 { font-weight: 700; font-size: clamp(26px, 4vw, 36px); }
h3 { font-weight: 600; font-size: 20px; letter-spacing: 1px; }

.lede {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  padding: 16px 32px;
  border-radius: var(--radius-pill);
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue-mid), var(--blue-dark));
  color: #fff;
  box-shadow: 0 8px 24px rgba(58,110,240,0.35);
}

.btn-primary:hover { box-shadow: 0 10px 30px rgba(58,110,240,0.48); }

.btn-small {
  padding: 11px 22px;
  font-size: 13px;
  box-shadow: 0 4px 16px rgba(58,110,240,0.35);
}

.btn-link {
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 3px;
  display: inline-block;
}

.btn-link.accent {
  color: var(--blue-light);
  border-bottom-color: var(--border-accent-soft);
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--side-pad);
  background: rgba(9,10,12,0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(120,160,255,0.14);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.brand-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #aab2bf 0%, #f2f4f7 35%, #7d97c9 55%, var(--blue-mid) 75%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-name .dot { color: var(--blue); -webkit-text-fill-color: var(--blue); }

.brand-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.main-nav a {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: var(--text-muted);
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease;
}

.main-nav a:hover { color: var(--text-primary); }
.main-nav a[aria-current="page"] {
  color: var(--text-primary);
  border-bottom-color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-body);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-link svg { flex-shrink: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  flex-shrink: 0;
}

/* Mobile nav panel — kept OUTSIDE the header in the DOM on purpose:
   the header's backdrop-filter creates a containing block, which would
   trap a fixed-position descendant inside the header's own box instead
   of the viewport. Living as a sibling avoids that entirely. */
.mobile-nav-panel { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--bg-hero-glow), var(--bg);
  padding: 100px var(--side-pad) 80px;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--blue-light);
  border: 1px solid rgba(111,160,255,0.35);
  border-radius: 3px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

.hero h1 { margin-bottom: 24px; text-wrap: pretty; }

.hero h1 .accent {
  background: linear-gradient(135deg, var(--blue-light), var(--blue-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 0 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 44px;
}

.hero-tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--text-body);
}

.hero-tagline .dot { color: var(--blue); margin: 0 8px; }

.hero-image { display: flex; justify-content: center; }
.hero-image img {
  width: 100%;
  max-width: 460px;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

/* ---------- trust bar ---------- */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 28px var(--side-pad);
}

.trust-bar .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item .label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--text-primary);
}

.trust-item .sub {
  font-size: 13px;
  color: var(--text-faint);
  margin-top: 4px;
}

/* ==========================================================================
   Sections / generic
   ========================================================================== */
.section { padding: 96px var(--side-pad); }
.section.tight { padding-top: 24px; }
.section.compact { padding-top: 64px; padding-bottom: 64px; }
.section.alt { background: var(--bg-alt); }
.section.hairline-top { border-top: 1px solid var(--border-soft); }
.section.hairline-bottom { border-bottom: 1px solid var(--border-soft); }

.page-hero {
  background: var(--bg-hero-glow), var(--bg);
  padding: 72px var(--side-pad) 56px;
  text-align: center;
}

.page-hero .lede { max-width: 560px; margin: 0 auto; }

/* ---------- pricing / service cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}

.card.featured {
  border-color: var(--border-accent);
  box-shadow: 0 0 0 1px rgba(74,134,255,0.12), 0 20px 50px rgba(58,110,240,0.12);
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.pricing-card { display: flex; flex-direction: column; text-align: center; }
.pricing-card .icon-badge { margin-left: auto; margin-right: auto; }
.pricing-card h3 { margin-bottom: 6px; }

.pricing-sub {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-faint);
  margin-bottom: 18px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  color: var(--blue);
}

.pricing-cta { text-align: center; margin-top: 40px; }

/* full pricing cards (services page) */
.service-card { text-align: left; }
.service-card .icon-badge { margin: 0 0 18px; }
.service-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  min-height: 44px;
}

.price-row {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.price-col .price-label {
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-faint);
}

.price-col .price-value {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
  color: var(--blue);
}

.price-col .price-value.alt { color: var(--text-primary); }

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.feature-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text-body);
}

.feature-item svg { flex-shrink: 0; margin-top: 3px; }

.notice-box {
  max-width: var(--max-width);
  margin: 40px auto 0;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  padding: 16px;
  color: var(--text-muted);
  font-size: 13px;
}

/* ---------- ceramic / feature band ---------- */
.feature-band {
  background: linear-gradient(135deg, #0d1830, #0a0b0d 60%);
  padding: 80px var(--side-pad);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.feature-band .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.feature-band.reverse .wrap { grid-template-columns: 1fr 1fr; }
.feature-band .price-lg {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 24px;
}

.feature-band p { max-width: 460px; margin: 0 0 24px; }

.photo-frame {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- recent work / gallery grid ---------- */
.recent-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.recent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.recent-grid .photo-frame { aspect-ratio: 4 / 3; border-radius: 8px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.ba-grid .photo-frame { aspect-ratio: 1 / 1; border-radius: 6px; }

.ba-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--text-faint);
  margin-top: 8px;
}

.ba-label.after { color: var(--blue-light); }

.gallery-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.gallery-meta .title {
  font-family: var(--font-heading);
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-primary);
}

.tag {
  font-size: 12px;
  color: var(--blue-light);
  background: rgba(74,134,255,0.1);
  border: 1px solid var(--border-accent-soft);
  border-radius: 3px;
  padding: 4px 10px;
}

/* ---------- testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  border: 1px dashed rgba(255,255,255,0.18);
  border-radius: var(--radius-card);
  padding: 28px;
  background: rgba(255,255,255,0.02);
}

.stars { color: var(--blue); font-size: 14px; margin-bottom: 12px; }

.testimonial-text {
  font-size: 13px;
  color: var(--text-faint);
  line-height: 1.6;
  margin: 0 0 16px;
}

.testimonial-name {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- CTA band ---------- */
.cta-band {
  padding: 80px var(--side-pad);
  text-align: center;
}

.cta-band h2 { margin-bottom: 16px; }
.cta-band p { color: var(--text-secondary); margin: 0 0 32px; }

/* ---------- add-ons / fleet ---------- */
.two-col-cards {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
}

.addon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
  margin-top: 24px;
}

.addon-item { font-size: 14px; color: var(--text-body); }

.card p.note { margin: 28px 0 0; font-size: 14px; color: var(--text-muted); }

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card { padding: 40px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item svg { flex-shrink: 0; margin-top: 2px; }

.contact-item .label {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.contact-item .value {
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.social-row { display: flex; gap: 12px; margin-top: 32px; }

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.social-icon:hover { color: var(--blue-light); border-color: var(--border-accent); }

.contact-book-btn {
  display: block;
  text-align: center;
  margin-top: 32px;
  width: 100%;
}

.contact-side { display: flex; flex-direction: column; gap: 20px; }

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 15px;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .chev {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--blue-light);
}

.faq-item[open] summary .chev { transform: rotate(180deg); }

.faq-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 14px 0 0;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid rgba(120,160,255,0.14);
  padding: 64px var(--side-pad) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #aab2bf 0%, #f2f4f7 35%, #7d97c9 55%, var(--blue-mid) 75%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 0 20px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--blue-light);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a, .footer-links span {
  color: var(--text-body);
  font-size: 14px;
}

.footer-links a:hover { color: var(--blue-light); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--text-body);
  font-size: 14px;
}

.footer-contact .hours { color: var(--text-faint); font-size: 13px; margin-top: 6px; }

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-dim);
  font-size: 13px;
}

/* ==========================================================================
   Photo placeholder (until real photography is dropped in)
   ========================================================================== */
.photo-frame.is-placeholder {
  background: linear-gradient(160deg, #15181e, #0d0f13);
  border: 1px dashed rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px;
  text-align: center;
}

.placeholder-inner svg { color: rgba(111,160,255,0.4); }
.placeholder-inner span {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--text-dim);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 340px; }
  .feature-band .wrap { grid-template-columns: 1fr; }
  .feature-band .photo-frame { order: -1; }
  .two-col-cards { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .phone-link span { display: none; }

  body.nav-open .mobile-nav-panel {
    display: flex;
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px var(--side-pad) 24px;
    overflow-y: auto;
    z-index: 90;
  }

  .mobile-nav-panel a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 16px;
    color: var(--text-muted);
  }

  .mobile-nav-panel a[aria-current="page"] { color: var(--text-primary); }

  body.nav-open { overflow: hidden; }
}

@media (max-width: 720px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .trust-bar .wrap { grid-template-columns: 1fr; gap: 16px; }
  .recent-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .addon-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .section { padding: 64px var(--side-pad); }
  .feature-band { padding: 56px var(--side-pad); }
}

@media (max-width: 480px) {
  .ba-grid { gap: 8px; }
  h1 { font-size: 34px; }
}
