/* Valer Fix homepage stylesheet */
/* Trade-credible. Warranty-grade. Sunshine Coast. */

:root {
  --slate: #1E2A38;
  --paper: #F5F1EA;
  --stone: #D8D2C8;
  --copper: #C56A3F;
  --charcoal: #2A2A2A;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --max-w: 1120px;
  --section-px: clamp(1.25rem, 5vw, 3rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--charcoal);
  background: var(--paper);
}

img { display: block; max-width: 100%; }
a { color: inherit; }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--slate);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-header__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.875rem var(--section-px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo__img { height: 36px; width: auto; display: block; }
.site-logo__placeholder {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.02em;
  text-decoration: none;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.site-nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.site-nav__link:hover { color: rgba(255,255,255,0.9); }
.site-nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: var(--copper);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.site-nav__cta:hover { opacity: 0.88; }
@media (max-width: 640px) {
  .site-nav { gap: 0; }
  .site-nav__link { display: none; }
}

/* ── HERO ── */
.hero {
  background: var(--slate);
  padding: clamp(4rem, 8vw, 7rem) var(--section-px);
}
.hero__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero__content { display: flex; flex-direction: column; }
.hero__image { display: flex; align-items: center; justify-content: center; }
.hero__photo-frame {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 540px;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 0.75rem;
  display: block;
  box-shadow: 0 12px 32px rgba(30, 42, 56, 0.12);
}
.hero__photo-stamp {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 140px;
  max-width: 32%;
  height: auto;
  opacity: 0.95;
  pointer-events: none;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 1.25rem;
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--paper);
  margin-bottom: 1.5rem;
}
.hero__subhead {
  font-size: 1.0625rem;
  color: rgba(245,241,234,0.65);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.cta {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.8125rem 1.75rem;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s;
}
.cta:hover { opacity: 0.88; }
.cta--primary { background: var(--copper); color: white; }
.cta--secondary {
  background: transparent;
  color: rgba(245,241,234,0.75);
  border: 1px solid rgba(245,241,234,0.2);
}
.cta--secondary:hover { border-color: rgba(245,241,234,0.45); }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--paper);
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: 2rem var(--section-px);
}
.stats-strip__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 2.5rem;
  border-right: 1px solid var(--stone);
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  color: var(--slate);
  line-height: 1.1;
}
.stat__label {
  font-size: 0.75rem;
  color: rgba(42,42,42,0.55);
  text-align: center;
  margin-top: 0.25rem;
}
@media (max-width: 600px) {
  .stat { padding: 0.75rem 1.25rem; border-right: none; border-bottom: 1px solid var(--stone); width: 50%; }
  .stat:last-child { border-bottom: none; }
}

/* ── WARRANTY PARTNERS ── */
.partners {
  background: var(--slate);
  padding: 3.5rem var(--section-px);
}
.partners__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.partners__eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1.5rem;
  text-align: center;
}
.partners__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 0;
}
.partner-tag {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245,241,234,0.55);
  padding: 0.5rem 1.25rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: color 0.15s;
}
.partner-tag:last-child { border-right: none; }
@media (max-width: 600px) {
  .partner-tag { border-right: none; padding: 0.4rem 0.875rem; }
}

/* ── SERVICES ── */
.services {
  background: var(--paper);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--section-px);
}
.services__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--slate);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-subhead {
  font-size: 1rem;
  color: rgba(42,42,42,0.6);
  max-width: 580px;
  margin-bottom: 2.5rem;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.875rem;
  padding: 1.75rem;
}
.service-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(197,106,63,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--copper);
}
.service-card__icon svg { width: 20px; height: 20px; }
.service-card__name {
  font-family: var(--font-display);
  font-size: 1.1875rem;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 0.5rem;
}
.service-card__body {
  font-size: 0.875rem;
  color: rgba(42,42,42,0.65);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.brand-chip {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(42,42,42,0.5);
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 100px;
  padding: 0.2rem 0.625rem;
}

/* ── PRICING ── */
.pricing {
  background: white;
  border-top: 1px solid var(--stone);
  border-bottom: 1px solid var(--stone);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--section-px);
}
.pricing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.pricing-zone {
  background: var(--paper);
  border: 1px solid var(--stone);
  border-radius: 0.875rem;
  padding: 1.75rem;
}
.pricing-zone__label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: rgba(42,42,42,0.4);
  margin-bottom: 1rem;
}
.pricing-zone__name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--slate);
  margin-bottom: 1.25rem;
}
.pricing-rows { display: flex; flex-direction: column; gap: 0.625rem; }
.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid var(--stone);
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row__service {
  font-size: 0.875rem;
  color: rgba(42,42,42,0.75);
}
.pricing-row__price {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--slate);
  white-space: nowrap;
}
.pricing__note {
  font-size: 0.8125rem;
  color: rgba(42,42,42,0.45);
  margin-top: 1.5rem;
  text-align: center;
}
@media (max-width: 640px) {
  .pricing__grid { grid-template-columns: 1fr; }
}

/* ── BOOKING (MOCK) ── */
.booking {
  background: var(--slate);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--section-px);
  scroll-margin-top: 60px;
}
.booking__inner {
  max-width: 720px;
  margin: 0 auto;
}
.booking__eyebrow {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.booking__heading {
  font-family: var(--font-display);
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 400;
  color: var(--paper);
  margin-bottom: 0.5rem;
}
.booking__sub {
  font-size: 0.9375rem;
  color: rgba(245,241,234,0.5);
  margin-bottom: 2.5rem;
}
.booking-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
}
.booking-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.6875rem;
  color: rgba(245,241,234,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.booking-step--active { color: var(--paper); }
.booking-step__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(245,241,234,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(245,241,234,0.35);
}
.booking-step--active .booking-step__circle {
  background: var(--copper);
  border-color: var(--copper);
  color: white;
}
.booking-step__line {
  flex: 1;
  height: 1px;
  background: rgba(245,241,234,0.1);
  margin-bottom: 1.25rem;
}
.booking-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 1rem;
  padding: 2rem;
}
.booking-form__group { margin-bottom: 1.25rem; }
.booking-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(245,241,234,0.7);
  margin-bottom: 0.5rem;
}
.booking-form__radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.booking-form__radio {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5625rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  font-size: 0.875rem;
  color: rgba(245,241,234,0.7);
}
.booking-form__radio:hover { border-color: rgba(255,255,255,0.25); }
.booking-form__radio input[type="radio"] { display: none; }
.booking-form__radio.checked {
  border-color: var(--copper);
  background: rgba(197,106,63,0.1);
  color: var(--paper);
}
.booking-form__input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.5rem;
  padding: 0.6875rem 0.875rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--paper);
  outline: none;
  transition: border-color 0.15s;
}
.booking-form__input::placeholder { color: rgba(245,241,234,0.3); }
.booking-form__input:focus { border-color: var(--copper); }
.booking-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.booking-form__cta {
  width: 100%;
  margin-top: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--copper);
  color: white;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: 100px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.booking-form__cta:hover { opacity: 0.88; }
.booking__note {
  font-size: 0.75rem;
  color: rgba(245,241,234,0.3);
  text-align: center;
  margin-top: 1.25rem;
}
@media (max-width: 540px) {
  .booking-form__row { grid-template-columns: 1fr; }
}

/* ── ABOUT ── */
.about {
  background: var(--paper);
  padding: clamp(3.5rem, 6vw, 5.5rem) var(--section-px);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/valerfix_hero_mark.png');
  background-repeat: no-repeat;
  background-position: right -140px center;
  background-size: 780px auto;
  opacity: 0.07;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.about__inner { position: relative; z-index: 1; }
.about__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about__body {
  font-size: 1rem;
  color: rgba(42,42,42,0.75);
  line-height: 1.75;
}
.about__body p + p { margin-top: 1rem; }
.about__creds {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 2rem;
}
.about__cred {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(42,42,42,0.65);
}
.about__cred-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--copper);
  margin-top: 0.1rem;
}
.about__right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.about__portrait {
  width: 100%;
  border-radius: 0.75rem;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.about-stat {
  background: white;
  border: 1px solid var(--stone);
  border-radius: 0.75rem;
  padding: 1.5rem;
}
.about-stat__number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--slate);
  line-height: 1;
  margin-bottom: 0.375rem;
}
.about-stat__label {
  font-size: 0.8125rem;
  color: rgba(42,42,42,0.5);
  line-height: 1.4;
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero__image { order: -1; }
  .hero__photo-frame { max-width: 360px; margin: 0 auto; }
  .hero__photo-stamp { width: 110px; bottom: 0.75rem; right: 0.75rem; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__portrait { max-width: 320px; margin: 0 auto; }
  .about::before { background-size: 480px auto; background-position: right -100px bottom -60px; opacity: 0.05; }
}

/* ── FOOTER ── */
.site-footer {
  background: var(--slate);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem var(--section-px) 2rem;
}
.site-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.trust-pillar {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  color: rgba(245,241,234,0.45);
}
.trust-pillar__icon {
  width: 16px;
  height: 16px;
  color: var(--copper);
  flex-shrink: 0;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: rgba(245,241,234,0.5);
}
.footer-bottom__brand-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.9;
}
.footer-bottom__contact {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom__contact a {
  font-size: 0.8125rem;
  color: rgba(245,241,234,0.4);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-bottom__contact a:hover { color: rgba(245,241,234,0.75); }
.footer-bottom__copy {
  font-size: 0.75rem;
  color: rgba(245,241,234,0.25);
  width: 100%;
}
