/* ============================================
   SPONGE — MAIN STYLESHEET v4
   White canvas. Massive black type.
   Texture used ONCE (why-band only).
   Yellow on buttons + strip only.
   ============================================ */

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

:root {
  --yellow: #F5C200;
  --yellow-dk: #C49B00;
  --black: #1A1A1A;
  --black2: #2D2D2D;
  --grey: #6B6B6B;
  --light: #F5F4F0;
  --white: #FFFFFF;
  --font-head: 'Montserrat', 'Arial Black', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --r: 10px;
  --tx: 0.2s ease;
  --max: 1200px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --tex: url('../images/texture.jpg');
}

html { scroll-behavior: smooth; background: var(--black); }
body { font-family: var(--font-body); color: var(--black); background: var(--white); overflow-x: hidden; line-height: 1.6; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
address { font-style: normal; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.05; letter-spacing: -0.01em; }
p { font-size: 1rem; line-height: 1.7; color: var(--grey); }

.section-head { text-align: center; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 12px; }
.section-head p { font-size: 1.05rem; }

.stars { color: var(--yellow); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: 0.875rem;
  letter-spacing: 0.02em; padding: 13px 28px;
  border-radius: 100px; border: 2px solid transparent;
  transition: all var(--tx); white-space: nowrap; cursor: pointer;
}
/* Yellow buttons — texture background */
.btn--yellow {
  background-image: var(--tex); background-size: cover; background-position: center;
  background-color: var(--yellow); /* fallback */
  color: var(--black); border-color: transparent;
}
.btn--yellow:hover { filter: brightness(0.88); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.btn--dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn--dark:hover { background: var(--black2); transform: translateY(-1px); }

.btn--outline-dark { background: transparent; color: var(--black); border-color: var(--black); }
.btn--outline-dark:hover { background: var(--black); color: var(--white); }

.btn--outline-light { background: transparent; color: var(--black); border-color: rgba(0,0,0,0.35); }
.btn--outline-light:hover { background: rgba(0,0,0,0.08); border-color: rgba(0,0,0,0.6); }

.btn--lg { padding: 16px 36px; font-size: 0.9375rem; }
.btn--nav { padding: 9px 18px; font-size: 0.8125rem; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--tx);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.nav__inner {
  max-width: var(--max); margin: 0 auto; padding: 0 32px;
  height: 68px; display: flex; align-items: center; gap: 40px;
}
.nav__logo-img { height: 51px; width: auto; object-fit: contain; }
.nav__links { display: flex; gap: 28px; margin-left: auto; }
.nav__links a { font-family: var(--font-head); font-weight: 600; font-size: 0.82rem; color: var(--black); transition: color var(--tx); }
.nav__links a:hover { color: var(--yellow-dk); }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 22px; height: 2px; background: var(--black); border-radius: 2px; transition: all var(--tx); }
.nav__mobile { display: none; background: var(--white); border-top: 1px solid rgba(0,0,0,0.08); padding: 20px 32px; }
.nav__mobile ul { display: flex; flex-direction: column; gap: 16px; }
.nav__mobile a { font-family: var(--font-head); font-weight: 600; color: var(--black); font-size: 1rem; }
.nav__mobile .btn--yellow { margin-top: 8px; width: 100%; justify-content: center;   color: var(--black) !important;
}

/* ============================================
   HERO — white bg, massive type, photo right
   ============================================ */
.hero {
  padding-top: 68px; /* nav height */
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
}
.hero__left {
  padding: 80px 48px 80px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero__eyebrow {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey);
  margin-bottom: 24px;
}
.hero__heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 48px;
}
.hero__ctas { display: flex; align-items: center; gap: 24px; margin-bottom: 32px; flex-wrap: wrap; }
.hero__phone { font-family: var(--font-head); font-weight: 600; font-size: 0.875rem; color: var(--grey); white-space: nowrap; }
.hero__trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero__trust-item { font-family: var(--font-head); font-weight: 600; font-size: 0.75rem; color: var(--grey); display: flex; align-items: center; gap: 6px; }
.hero__trust-divider { width: 1px; height: 14px; background: rgba(0,0,0,0.12); }
.hero__right {
  position: relative; overflow: hidden;
  background: var(--light);
}
.hero__photo { width: 100%; height: 100%; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

/* ============================================
   TEXTURE STRIP — used ONCE here as separator
   ============================================ */
.tex-strip {
  background-image: var(--tex); background-size: cover; background-position: center;
  background-color: var(--yellow);
  overflow: hidden; padding: 14px 0;
}
.tex-strip__track {
  display: flex; gap: 28px; align-items: center;
  white-space: nowrap; animation: marquee 30s linear infinite; width: max-content;
}
.tex-strip__track span { font-family: var(--font-head); font-weight: 700; font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); }
.dot { opacity: 0.35; font-size: 0.4rem !important; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================
   INTRO + CALCULATOR
   ============================================ */
.intro-calc { padding: 80px 0; background: var(--white); }
.intro-calc__head { text-align: center; margin-bottom: 56px; }
.intro-calc__head h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); max-width: 700px; margin: 0 auto; }
.intro-calc__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: start;
}
.intro-calc__photo {
  border-radius: 12px; overflow: hidden;
  background: var(--light);
  aspect-ratio: 4/3;
}
.intro-calc__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   CALCULATOR — clean, white, professional
   ============================================ */
.calc {
  background: var(--white); border-radius: 16px;
  box-shadow: 0 2px 0 0 var(--black), var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.1);
  overflow: hidden; position: relative;
}
.calc__header {
  background: var(--black); padding: 20px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.calc__title { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.3rem, 5vw, 1.7rem); line-height: 1.1; color: var(--white); margin-bottom: 5px; }
.calc__sub { font-size: 1rem; color: rgba(255,255,255,0.6); }
.calc__badge {
  font-family: var(--font-head); font-weight: 800; font-size: 0.72rem;
  letter-spacing: 0.06em;
  background-image: var(--tex); background-size: cover; background-color: var(--yellow);
  color: var(--black);
  padding: 6px 14px; border-radius: 100px;
}
.calc__progress-bar { height: 3px; background: rgba(0,0,0,0.06); }
.calc__progress-fill { height: 100%; background: var(--yellow); width: 20%; transition: width 0.35s ease; }

.calc__step { display: none; padding: 24px 28px; }
.calc__step.active { display: block; }
.calc__step-label { font-family: var(--font-head); font-weight: 700; font-size: 0.9rem; color: var(--black); margin-bottom: 4px; }
.calc__step-hint { font-size: 0.78rem; color: var(--grey); margin-bottom: 18px; }

/* Tiles */
.calc__grid { display: grid; gap: 8px; }
.calc__grid--3 { grid-template-columns: repeat(3, 1fr); }
.calc__grid--2 { grid-template-columns: repeat(2, 1fr); }

.calc__tile {
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  padding: 16px 8px; border-radius: 10px;
  border: 1.5px solid rgba(0,0,0,0.1); background: var(--light);
  cursor: pointer; text-align: center; transition: all var(--tx);
  font-family: var(--font-head);
}
.calc__tile:hover { border-color: var(--black); background: var(--white); }
.calc__tile.selected { border-color: var(--black); background: var(--white); box-shadow: inset 0 0 0 1px var(--black); }
.calc__tile span { font-weight: 700; font-size: 0.72rem; color: var(--black); line-height: 1.2; }
.calc__tile em { font-style: normal; font-size: 0.65rem; color: var(--yellow-dk); font-weight: 700; }
.calc__icon { width: 28px; height: 28px; color: var(--black); }

/* Counts */
.calc__counts { display: flex; flex-direction: column; margin-bottom: 16px; }
.calc__count-row { display: flex; justify-content: space-between; align-items: center; padding: 11px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.calc__count-row:last-child { border-bottom: none; }
.calc__count-name { font-family: var(--font-head); font-weight: 700; font-size: 0.8rem; color: var(--black); }
.calc__count-meta { font-size: 0.7rem; color: var(--grey); margin-top: 2px; }
.calc__count-ctrl { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.calc__minus, .calc__plus {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.15); background: var(--white);
  font-size: 1rem; color: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--tx); line-height: 1;
}
.calc__minus:hover, .calc__plus:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.calc__val { font-family: var(--font-head); font-weight: 800; font-size: 1rem; min-width: 20px; text-align: center; }

.calc__live { display: flex; justify-content: space-between; align-items: center; background: var(--light); border-radius: 8px; padding: 12px 16px; margin-bottom: 14px; }
.calc__live-label { font-size: 0.78rem; color: var(--grey); }
.calc__live-price { font-family: var(--font-head); font-weight: 900; font-size: 1.4rem; color: var(--black); }

.calc__cta {
  width: 100%; padding: 14px;
  background-image: var(--tex); background-size: cover; background-color: var(--yellow);
  color: var(--black); font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
  border-radius: 8px; border: none; transition: all var(--tx); cursor: pointer;
}
.calc__cta:hover { filter: brightness(0.88); transform: translateY(-1px); }

/* Result */
.calc__result-box { background: var(--black); border-radius: 10px; padding: 22px; text-align: center; margin-bottom: 18px; }
.calc__result-label { font-size: 0.7rem; color: rgba(255,255,255,0.45); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
.calc__result-price { font-family: var(--font-head); font-weight: 900; font-size: 2.2rem; color: var(--yellow); margin-bottom: 4px; }
.calc__result-note { font-size: 0.7rem; color: rgba(255,255,255,0.35); }

.calc__book { }
.calc__book-title { font-family: var(--font-head); font-weight: 700; font-size: 0.85rem; color: var(--black); margin-bottom: 10px; }
.calc__book-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 8px; }
.calc__field {
  width: 100%; padding: 10px 14px; border-radius: 8px;
  border: 1.5px solid rgba(0,0,0,0.12); font-family: var(--font-body);
  font-size: 0.875rem; background: var(--light); color: var(--black);
  outline: none; transition: border-color var(--tx); margin-bottom: 8px; display: block;
}
.calc__field:focus { border-color: var(--black); background: var(--white); }
.calc__book-row .calc__field { margin-bottom: 0; }
.calc__alts { display: flex; gap: 16px; justify-content: center; margin-top: 10px; }
.calc__alts a { font-size: 0.78rem; color: var(--grey); font-weight: 600; transition: color var(--tx); }
.calc__alts a:hover { color: var(--black); }

/* Photo / success */
.calc__photo-msg { text-align: center; margin-bottom: 16px; }
.calc__photo-msg svg { margin: 0 auto 12px; }
.calc__photo-msg h4 { font-size: 1rem; margin-bottom: 8px; }
.calc__photo-msg p { font-size: 0.85rem; color: var(--grey); margin-bottom: 16px; }
.calc__success { text-align: center; padding: 8px 0; }
.calc__success svg { margin: 0 auto 16px; }
.calc__success h4 { margin-bottom: 8px; }
.calc__success p { font-size: 0.875rem; color: var(--grey); margin-bottom: 20px; }
.calc__reset { background: none; border: 1.5px solid rgba(0,0,0,0.15); border-radius: 100px; padding: 8px 20px; font-size: 0.8rem; color: var(--grey); cursor: pointer; font-family: var(--font-body); transition: all var(--tx); }
.calc__reset:hover { border-color: var(--black); color: var(--black); }

.calc__dots { display: flex; gap: 6px; justify-content: center; padding: 14px 28px 16px; border-top: 1px solid rgba(0,0,0,0.06); }
.calc__dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(0,0,0,0.1); transition: all var(--tx); }
.calc__dot.active { background: var(--yellow); width: 20px; border-radius: 3px; }
.calc__back { position: absolute; bottom: 16px; left: 28px; font-size: 0.75rem; color: var(--grey); cursor: pointer; font-family: var(--font-body); transition: color var(--tx); }
.calc__back:hover { color: var(--black); }

/* ============================================
   SERVICES — photo cards
   ============================================ */
.services { padding: 80px 0; background: var(--white); }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.svc {
  display: block; background: var(--white);
  border: 1px solid rgba(0,0,0,0.08); overflow: hidden;
  transition: all var(--tx);
}
.svc:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); z-index: 1; }
.svc__photo {
  width: 100%; height: 220px;
  background: var(--light) center/cover no-repeat;
}
.svc__body { padding: 24px; }
.svc__body h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--black); }
.svc__price { font-size: 0.875rem; color: var(--grey); margin-bottom: 16px; }
.svc__btn {
  display: inline-block;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--black); padding: 8px 18px; border-radius: 4px;
  color: var(--black); transition: all var(--tx);
}
.svc:hover .svc__btn { background: var(--black); color: var(--white); }

/* ============================================
   ABOUT BAND
   ============================================ */
.about-band { padding: 80px 0; background: var(--white); border-top: 1px solid rgba(0,0,0,0.08); }
.about-band__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about-band__text h2 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); margin-bottom: 20px; }
.about-band__text p { margin-bottom: 14px; }
.about-band__why { background: var(--light); border-radius: 12px; padding: 36px; }
.about-band__why h3 { font-size: 1.3rem; margin-bottom: 16px; }
.about-band__why p { margin-bottom: 14px; font-size: 0.9375rem; }
.about-band__why p:last-child { margin-bottom: 0; }

/* ============================================
   PHOTO GRID — 4 col, texture as border
   ============================================ */
.photo-grid {
  background: var(--white);
  padding: 0 0 8px;
}
.photo-grid__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  background-image: var(--tex); background-size: cover; background-color: var(--yellow);
  padding: 10px;
}
.pg-item {
  aspect-ratio: 1;
  background: var(--light) center/cover no-repeat;
  border-radius: 4px; overflow: hidden;
  transition: transform var(--tx);
}
.pg-item:hover { transform: scale(1.02); z-index: 1; }
.photo-grid__cta { text-align: center; padding: 32px 0 18px; background: var(--white); }

/* ============================================
   WHY BAND — ONLY section with texture background
   ============================================ */
.why-band {
  background-image: var(--tex); background-size: cover; background-color: var(--yellow);
  padding: 72px 0;
}
.why-band__grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; align-items: center; }
.why-band__photo { border-radius: 12px; overflow: hidden; }
.why-band__photo img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.why-band__content { background: rgba(255,255,255,0.9); border-radius: 12px; padding: 40px; }
.why-band__content h2 { font-size: clamp(1.3rem, 2vw, 1.7rem); margin-bottom: 24px; color: var(--black); }
.why-list { display: flex; flex-direction: column; gap: 14px; }
.why-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9375rem; color: var(--black); line-height: 1.4; }
.why-list li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--black); }
.why-band__equip { border-radius: 12px; overflow: hidden; }
.why-band__equip img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }

/* ============================================
   AREAS
   ============================================ */
.areas { padding: 80px 0; background: var(--light); }
.areas__tabs { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
.areas__tab {
  font-family: var(--font-head); font-weight: 700; font-size: 0.8rem;
  padding: 9px 20px; border-radius: 100px;
  border: 1.5px solid rgba(0,0,0,0.15); color: var(--grey);
  transition: all var(--tx); background: var(--white); cursor: pointer;
}
.areas__tab:hover { border-color: var(--black); color: var(--black); }
.areas__tab.active { background: var(--black); border-color: var(--black); color: var(--white); }
.areas__panel { display: none; }
.areas__panel.active { display: block; }
.areas__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
.areas__grid a {
  font-family: var(--font-head); font-weight: 600; font-size: 0.85rem;
  color: var(--black); padding: 10px 16px; border-radius: 8px;
  background: var(--white); text-align: center;
  border: 1.5px solid transparent; transition: all var(--tx); display: block;
}
.areas__grid a:hover { border-color: var(--black); }

/* ============================================
   REVIEWS
   ============================================ */
.reviews { padding: 80px 0; background: var(--white); }
.reviews__rating { display: flex; align-items: center; gap: 10px; justify-content: center; margin-top: 10px; }
.reviews__rating .stars { font-size: 1.2rem; }
.reviews__rating strong { font-family: var(--font-head); font-size: 1.1rem; }
.reviews__rating span { font-size: 0.875rem; color: var(--grey); }
.reviews__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.review { background: var(--light); border-radius: 12px; padding: 28px; border-left: 3px solid var(--yellow); }
.review__stars { color: var(--yellow); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 12px; }
.review blockquote { font-size: 0.9rem; color: var(--black); font-style: italic; line-height: 1.6; margin-bottom: 12px; }
.review cite { font-family: var(--font-head); font-size: 0.75rem; font-weight: 700; color: var(--grey); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--black); padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__logo { height: 44px; width: auto; margin-bottom: 16px; object-fit: contain; }
.footer__brand p { font-size: 0.85rem; color: rgba(255,255,255,0.38); line-height: 1.6; }
.footer__col h5 { font-family: var(--font-head); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 9px; }
.footer__col li a, .footer__col address p, .footer__col address a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--tx); }
.footer__col li a:hover, .footer__col address a:hover { color: var(--yellow); }
.footer__col address p { margin-bottom: 8px; }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__left { padding: 60px 40px; }
  .hero__right { height: 400px; }
  .intro-calc__grid { grid-template-columns: 1fr; }
  .intro-calc__photo { aspect-ratio: 16/7; }
  .why-band__grid { grid-template-columns: 1fr 1fr; }
  .why-band__equip { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .about-band__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .photo-grid__inner { grid-template-columns: repeat(3, 1fr); }
  .areas__grid { grid-template-columns: repeat(3, 1fr); }
  .nav__links, .btn--nav { display: none; }
  .nav__burger { display: flex; }
  .nav__mobile.open { display: block; }
}
@media (max-width: 640px) {
  .hero__left { padding: 40px 24px; }
  .hero__heading { font-size: clamp(2.8rem, 14vw, 5rem); }
  .hero__right { height: 300px; }
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .photo-grid__inner { grid-template-columns: repeat(2, 1fr); }
  .areas__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; }
  .why-band__grid { grid-template-columns: 1fr; }
  .calc__grid--3 { grid-template-columns: repeat(2, 1fr); }
  .calc__book-row { grid-template-columns: 1fr; }
  .container { padding: 0 20px; }
}
@media (prefers-reduced-motion: reduce) {
  .tex-strip__track { animation: none; }
  * { transition: none !important; }
}

/* ============================================
   GLOBAL: ANYTHING ON TEXTURE = BLACK TEXT
   Catches all white-on-yellow edge cases
   ============================================ */

/* CTA band — all text and buttons must be black */
.cta-band,
.final-cta,
.why-band,
.photo-grid,
.tex-strip,
.contact-wa,
.blog-callout {
  color: var(--black);
}

/* Outline button specifically when sitting on texture bg */
/* Outline buttons on texture — black outline, black text */
.cta-band .btn--outline-dark,
.cta-band .btn--outline-light,
.final-cta .btn--outline-dark,
.final-cta .btn--outline-light,
.why-band .btn--outline-dark,
.why-band .btn--outline-light {
  background: transparent;
  color: var(--black);
  border-color: rgba(0,0,0,0.45);
}
.cta-band .btn--outline-dark:hover,
.cta-band .btn--outline-light:hover,
.final-cta .btn--outline-dark:hover,
.final-cta .btn--outline-light:hover {
  background: rgba(0,0,0,0.08);
  border-color: rgba(0,0,0,0.7);
  color: var(--black);
}

/* btn--dark ALWAYS stays white text — never override */
.btn--dark,
.cta-band .btn--dark,
.final-cta .btn--dark,
.why-band .btn--dark,
.photo-grid .btn--dark,
.photo-grid__cta .btn--dark {
  background: var(--black) !important;
  color: var(--white) !important;
  border-color: var(--black) !important;
}
.btn--dark:hover,
.cta-band .btn--dark:hover,
.final-cta .btn--dark:hover {
  background: var(--black2) !important;
  color: var(--white) !important;
}

/* Phone numbers and links on texture */
.cta-band a,
.final-cta a,
.why-band a {
  color: var(--black);
}

/* p tags inside texture sections */
.cta-band p,
.final-cta p,
.contact-wa p,
.blog-callout p {
  color: rgba(0,0,0,0.65);
}

/* Photo grid CTA button — black on texture */
.photo-grid__cta .btn--dark {
  background: var(--black);
  color: var(--white);
}
.photo-grid__cta .btn--dark:hover {
  background: var(--black2);
}

/* Sponge-texture fill on the hero word "SPONGE" */
.hero__sponge {
  background-color: var(--yellow);
  background-image: var(--tex);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--yellow); /* fallback if background-clip:text unsupported */
}

/* Sponge-texture button (yellow texture fill, black text) */
.btn--sponge {
  background-color: var(--yellow);
  background-image: var(--tex);
  background-size: cover;
  background-position: center;
  color: var(--black);
  border: none;
}
.btn--sponge:hover { filter: brightness(0.94); }

/* Home service cards — two-button layout (Instant Quote + More info) */
.svc__actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.svc__btn--quote { background: var(--yellow); color: var(--black); border: 1px solid var(--yellow); }
.svc__btn--info  { background: transparent; color: var(--black); border: 1px solid rgba(0,0,0,.22); }
.svc:hover .svc__btn--quote { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.svc:hover .svc__btn--info  { background: transparent; color: var(--black); }
.svc__btn--quote:hover { filter: brightness(.94); }
.svc__btn--info:hover  { background: var(--black); color: var(--white); border-color: var(--black); }

/* WhatsApp — floating button + green CTA button */
.wa-float { position: fixed; right: 20px; bottom: 20px; z-index: 9999; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,.28); transition: transform .18s; }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
.btn--whatsapp { background: #25D366; color: #fff; border-color: #25D366; gap: 8px; }
.btn--whatsapp:hover { background: #1ebe5b; border-color: #1ebe5b; color: #fff; }
.btn--whatsapp svg { width: 19px; height: 19px; fill: currentColor; }
@media (max-width: 600px){ .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; } }
/* Make the WhatsApp option stand out in the calculator contact step */
.calc__alts a[href*="wa.me"] { color: #25D366; font-weight: 700; }

/* Free Car Wash promo styles removed (offer discontinued) */

/* Google-style reviews section */
.greviews{padding:64px 0;background:var(--light);}
.gr-head{display:flex;align-items:center;gap:16px;background:#fff;border:1px solid #e6e6e6;border-radius:14px;padding:20px 26px;margin-bottom:24px;box-shadow:0 6px 20px -14px rgba(0,0,0,.2);flex-wrap:wrap;}
.gr-head__title{font-family:var(--font-head);font-weight:800;font-size:1.1rem;color:var(--black);}
.gr-rating{display:flex;align-items:center;gap:10px;margin-top:2px;}
.gr-score{font-weight:800;font-size:1.3rem;color:#e7711b;}
.gr-headstars{color:#FBBC04;letter-spacing:1px;font-size:1.05rem;}
.gr-count{color:var(--grey);font-size:.9rem;}
.gr-cta{margin-left:auto;background:#1a73e8;color:#fff;text-decoration:none;font-family:var(--font-head);font-weight:700;font-size:.9rem;padding:11px 22px;border-radius:100px;}
.gr-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;}
.gr-card{background:#fff;border:1px solid #e6e6e6;border-radius:14px;padding:20px 22px;}
.gr-top{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.gr-avatar{width:42px;height:42px;border-radius:50%;color:#fff;font-family:var(--font-head);font-weight:700;font-size:1.1rem;display:flex;align-items:center;justify-content:center;flex-shrink:0;text-transform:uppercase;}
.gr-meta{flex:1;min-width:0;}
.gr-name{font-weight:600;color:var(--black);font-size:.98rem;}
.gr-date{color:var(--grey);font-size:.82rem;}
.gr-glogo{flex-shrink:0;}
.gr-stars{color:#FBBC04;letter-spacing:1px;font-size:1rem;margin-bottom:6px;}
.gr-title{font-weight:700;color:var(--black);font-size:.92rem;margin-bottom:4px;}
.gr-text{color:#3c4043;font-size:.92rem;line-height:1.55;margin:0;}
@media(max-width:820px){.gr-grid{grid-template-columns:1fr;}.gr-cta{margin-left:0;width:100%;text-align:center;}}


/* The Right Schedule section */
.schedule{padding:72px 0;background:var(--light);}
.sched-head{text-align:center;max-width:680px;margin:0 auto 40px;}
.sched-head h2{font-family:var(--font-head);font-weight:900;font-size:2rem;color:#1A1A1A;margin:8px 0 12px;}
.sched-head p{color:var(--grey);font-size:1.05rem;line-height:1.6;margin:0;}
.sched-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:36px;}
.sched-card{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:16px;padding:28px 24px;text-align:center;box-shadow:0 10px 30px -18px rgba(0,0,0,.25);}
.sched-card--hi{border:2px solid var(--yellow);position:relative;}
.sched-card--hi::after{content:"OUR MAX";position:absolute;top:-11px;left:50%;transform:translateX(-50%);background:var(--yellow);color:#1A1A1A;font-family:var(--font-head);font-weight:800;font-size:.62rem;letter-spacing:.08em;padding:4px 12px;border-radius:100px;}
.sched-freq{font-family:var(--font-head);font-weight:900;font-size:2.4rem;color:#1A1A1A;line-height:1;margin-bottom:12px;}
.sched-card--hi .sched-freq{color:var(--yellow-dk);}
.sched-card h3{font-family:var(--font-head);font-weight:800;font-size:1.05rem;color:#1A1A1A;margin:0 0 8px;}
.sched-card p{color:var(--grey);font-size:.92rem;line-height:1.5;margin:0;}
.sched-note{background:#141414;border-radius:18px;padding:40px 36px;text-align:center;}
.sched-note__big{font-family:var(--font-head);font-weight:800;font-size:1.5rem;line-height:1.3;color:#fff;margin:0 auto 12px;max-width:760px;}
.sched-note__big span{color:var(--yellow);}
.sched-note__sub{color:rgba(255,255,255,.7);font-size:1rem;margin:0;}
@media(max-width:820px){.sched-grid{grid-template-columns:1fr;max-width:400px;margin:0 auto 32px;}.sched-note__big{font-size:1.25rem;}}

/* =====================================================================
   MOBILE BATCH — homepage phone changes + video hero
   One isolated block. Base styles (call button + video-hero) apply on all
   widths; everything else is scoped to phones. Desktop is unchanged.
   ===================================================================== */

/* #3 — phone number as a full CTA button (all breakpoints) */
.btn--call { background: var(--black); color: #fff; border-color: var(--black); gap: 8px; }
.btn--call:hover { background: var(--black2); border-color: var(--black2); color: #fff; }
.btn--call svg { width: 18px; height: 18px; fill: currentColor; }

/* Mobile hero pitch line — shown on phones only */
.hero__pitch { display: block; }

/* Reviews "See more" button — mobile only */
.home .gr-more { display: none; }

/* VIDEO HERO — hidden by default; shown on phones only */
.vhero { display: none; }
.vhero__video { position: absolute; max-width: 100%; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.vhero__inner { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; padding: 0 24px; }
.vhero__logo { width: min(62vw, 300px); height: auto; opacity: 0; animation: vheroLogo .8s ease .25s forwards; }
.vhero__tagline { font-family: 'Inter', system-ui, sans-serif; font-weight: 700; text-transform: uppercase;
  color: #1A1A1A; letter-spacing: .18em; margin-top: 16px; line-height: 1.2;
  font-size: clamp(13px, 3.6vw, 16px); opacity: 0; animation: vheroTag .7s ease 1.3s forwards; }
@keyframes vheroLogo { to { opacity: 1; } }
@keyframes vheroTag  { to { opacity: 1; } }
/* opacity reveal is a gentle fade — safe to keep under reduced-motion */

/* #2 — burger to the right whenever it is visible */
@media (max-width: 900px) {
  .nav__burger { margin-left: auto; }
}

/* ---- phones ---- */
@media (max-width: 768px) {

  /* #1 + video hero — reorder the top of the page.
     Visual order: video hero, photo grid, ticker, then the WE-ARE-SPONGE hero. */
  body.home { display: flex; flex-direction: column; }
  .vhero      { display: block; order: -100; position: relative; width: 100%;
                height: calc(100vh - 68px); height: calc(100dvh - 68px);
                min-height: 480px; overflow: hidden; background: #12232b; }
  .tex-strip  { order: -90; }
  .hero       { order: -80; padding-top: 0; }
  .greviews   { order: -70; }
  .intro-calc { order: -60; }   /* calculator lifted above The Right Schedule */
  .schedule   { order: -50; }
  .photo-grid { order: -65; }   /* gallery directly under the reviews on mobile */
  /* photo grid returns to its natural spot lower down (no order set) */

  /* buttons-only hero: hide the headline (kept crawlable for SEO) + photo, add breathing room */
  .hero__heading { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
                   overflow: hidden; clip: rect(0,0,0,0); clip-path: inset(50%); white-space: nowrap; border: 0; }
  .hero__right { display: none; }
  .hero__left { padding: 56px 24px; align-items: center; text-align: center; }
  .hero__trust { justify-content: center; }
  .hero__pitch { display: block; text-align: center; margin-bottom: 24px; }
  .hero__pitch-title { font-family: var(--font-head); font-weight: 900; color: var(--black);
                       font-size: clamp(1.9rem, 8vw, 2.6rem); line-height: 1.05; letter-spacing: -0.01em; }
  .hero__pitch-sub { font-family: var(--font-head); font-weight: 600; color: var(--grey);
                     font-size: 16px; margin-top: 10px; }

  /* #reviews — show 3, reveal the rest with the button */
  .home .gr-grid .gr-card:nth-child(n+4) { display: none; }
  .home .gr-grid.gr-expanded .gr-card:nth-child(n+4) { display: block; }
  .home .gr-more { display: block; width: 100%; max-width: 420px; margin: 20px auto 0; padding: 16px;
             border: 2px solid var(--black); border-radius: 100px; background: #fff; color: var(--black);
             font-family: var(--font-head); font-weight: 700; font-size: 16px; cursor: pointer; }
  .home .gr-more:hover { background: var(--black); color: #fff; }
  .home .gr-grid.gr-expanded ~ .gr-more { display: none; }

  /* #3 — three CTAs stacked, centred, equal prominence */
  .hero__ctas { flex-direction: column; align-items: stretch; justify-content: center;
                gap: 12px; max-width: 420px; margin-left: auto; margin-right: auto; }
  .hero__ctas .btn { width: 100%; }

  /* #5 — hide the black schedule band (keep the frequency cards) */
  .sched-note { display: none; }

  /* #6 — hide the crew photo beside the calculator */
  .intro-calc__photo { display: none; }

  /* #7 — bigger, more app-like calculator */
  .calc__step { padding: 22px 18px; }
  .calc__grid { gap: 10px; }
  .calc__tile { padding: 20px 10px; border-radius: 14px; gap: 10px; min-height: 104px; justify-content: center; }
  .calc__icon { width: 36px; height: 36px; }
  .calc__minus, .calc__plus { width: 44px; height: 44px; font-size: 1.4rem; }
  .calc__count-ctrl { gap: 16px; }
  .calc__count-row { padding: 14px 0; }
  .calc__val { font-size: 1.2rem; min-width: 28px; }
  .calc__cta { padding: 18px; border-radius: 12px; }
  .calc__live { padding: 14px 16px; }

  /* #4 — 16px minimum on body copy, links, inputs, buttons and names
     (decorative micro-labels left at design size — see handover note) */
  body { font-size: 16px; }
  .btn, .btn--lg, .btn--nav { font-size: 16px; }
  p, .section-head p, .sched-head p { font-size: 16px; }
  .hero__trust-item { font-size: 16px; }
  .calc__step-label, .calc__step-hint, .calc__count-name, .calc__count-meta,
  .calc__live-label, .calc__alts a, .calc__photo-msg p, .calc__success p,
  .calc__tile span, .calc__cta, .calc__field { font-size: 16px; }
  .calc__tile em { font-size: 13px; }
  .calc__field { padding: 14px; }               /* 16px also stops iOS input zoom */
  .gr-name, .gr-text, .gr-title, .gr-count { font-size: 16px; }
  .sched-card p, .sched-card h3 { font-size: 16px; }
  .about-band__why p, .why-list li { font-size: 16px; }
  .areas__tab, .areas__grid a { font-size: 16px; }
  .footer__brand p, .footer__col li a, .footer__col address p, .footer__col address a { font-size: 16px; }
  .nav__mobile a { font-size: 16px; }

  /* #8 — the "Why Sponge?" box, relocated just above the footer by site.js */
  .about-band__why.why-moved { order: 0; margin: 8px 20px 44px; }
}


/* =====================================================================
   FAQ — accordion (details/summary, no JS needed)
   ===================================================================== */
.faq { padding: 72px 0; background: var(--light); }
.faq__list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: 12px; overflow: hidden; }
.faq__item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 20px 22px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--black); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; font-family: var(--font-head); font-weight: 700; font-size: 1.5rem;
  line-height: 1; color: var(--yellow-dk); flex-shrink: 0; }
.faq__item[open] summary::after { content: "\2212"; }
.faq__a { padding: 0 22px 20px; }
.faq__a p { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--grey); }
@media (max-width: 768px) {
  .faq { padding: 48px 0; }
  .faq__item summary { font-size: 16px; padding: 18px; }
  .faq__a { padding: 0 18px 18px; }
}


/* Hero guarantee panel — premium card like the calculator */
.hero__panel { background: var(--white); border-radius: 16px; box-shadow: 0 2px 0 0 var(--black), var(--shadow-lg); border: 1px solid rgba(0,0,0,0.1); padding: 28px 26px; }
.hero__panel .hero__ctas { margin-bottom: 20px; }
.hero__panel .hero__trust { margin: 0; }
.hero__pitch-title { font-family: var(--font-head); font-weight: 800; color: var(--black); font-size: clamp(1.5rem, 2.2vw, 2.1rem); line-height: 1.1; letter-spacing: -0.01em; }
.hero__pitch-sub { font-family: var(--font-head); font-weight: 600; color: var(--grey); font-size: 1.05rem; margin-top: 6px; }
.hero__panel .hero__pitch { margin-bottom: 22px; }
@media (max-width: 768px) {
  .hero__left { padding: 24px 16px; }
  .hero__panel { padding: 26px 20px; }
  .hero__panel .hero__pitch { margin-bottom: 20px; }
  .hero__trust { flex-direction: column; gap: 10px; }
  .hero__trust-divider { display: none; }
  /* #6 services copy + buttons */
  .svc__body h3 { font-size: 1.15rem; }
  .svc__price { font-size: 16px; }
  .svc__btn { font-size: 16px; padding: 12px 20px; }
}
