/* ==========================================================================
   PRIME HOME SPECIALIST — style.css
   Bathroom Remodeling & Tile Specialists · Orlando, FL
   Built by RK Pulse following the RK PULSE Website Construction Standard v1.0

   SECTIONS
   01. Brand tokens
   02. Reset / base
   03. Typography helpers
   04. Buttons
   05. Top bar
   06. Header / navigation
   07. Hero
   08. Intro (More than a bathroom remodeler)
   09. Services (tabbed)
   10. Trust band / stats CTA
   11. Process (How it works)
   12. Gallery
   13. Special offer
   14. What sets us apart
   15. Why Orlando chooses us
   16. Credentials strip
   17. Service areas (accordion)
   18. FAQ accordion
   19. Forms / quote card
   20. Page hero (sub-pages)
   21. Content blocks (sub-pages)
   22. Final CTA
   23. Footer
   24. Animations / reveal
   25. Responsive
   ========================================================================== */

/* ==========================================================================
   01. BRAND TOKENS
   Extracted from the client's official logo: navy #0F2840 (mark + "PRIME HOME")
   and gold #D9B861 ("SPECIALIST"). --color-accent-deep is the same gold darkened
   to 4.7:1 on white, used wherever the gold carries text or an icon on a light
   background; the bright gold is reserved for fills and for dark backgrounds.
   ========================================================================== */
:root {
  --color-primary-dark: #0F2840;
  --color-primary:      #1C4166;
  --color-primary-soft: #2A5680;
  --color-accent:       #D9B861;
  --color-accent-light: #E8CE87;
  --color-accent-deep:  #8F6F24;
  --color-bg-light:     #F4F6F8;
  --color-bg-white:     #FFFFFF;
  --color-bg-stone:     #E7ECF1;
  --color-text-dark:    #101B28;
  --color-text-muted:   #5B6B7D;
  --color-text-light:   #C3CDD8;
  --color-border:       #E2E7ED;
  --color-gold:         #D9B861;

  --font-display: 'AmpersandFix', 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 1px 3px rgba(20, 24, 28, .07);
  --shadow-md: 0 8px 28px rgba(20, 24, 28, .10);
  --shadow-lg: 0 20px 60px rgba(20, 24, 28, .16);
  --transition: 220ms cubic-bezier(.4, 0, .2, 1);
}

/* Fraunces ships a heavily stylised ampersand that reads poorly at heading sizes.
   This maps U+0026 only onto a classic serif ampersand; every other glyph still
   comes from Fraunces. Listed first in --font-display so it wins for "&" alone. */
@font-face {
  font-family: 'AmpersandFix';
  src: local('Georgia'), local('Times New Roman'), local('Times'), local('serif');
  unicode-range: U+0026;
}

/* ==========================================================================
   02. RESET / BASE
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--color-text-dark);
  background: var(--color-bg-white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  color: var(--color-primary-dark);
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.2vw, 2.65rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.45rem); }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--tight { padding: 68px 0; }
.section--light { background: var(--color-bg-light); }
.section--stone { background: var(--color-bg-stone); }
.section--dark { background: var(--color-primary-dark); color: var(--color-text-light); }
.section--dark h2, .section--dark h3 { color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ==========================================================================
   03. TYPOGRAPHY HELPERS
   ========================================================================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--color-accent-light); }

.section-head { max-width: 760px; margin: 0 auto 56px; text-align: center; }
.section-head--left { margin-left: 0; text-align: left; }
.section-head p { color: var(--color-text-muted); font-size: 1.06rem; }
.section--dark .section-head p { color: var(--color-text-light); }

.lead { font-size: 1.12rem; color: var(--color-text-muted); }
.accent { color: var(--color-accent-deep); }
em.serif-em { font-style: italic; color: var(--color-accent-deep); }

.rule {
  width: 56px; height: 2px; border: 0;
  background: var(--color-accent);
  margin: 0 auto 22px;
}
.section-head--left .rule { margin-left: 0; }

/* ==========================================================================
   04. BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 26px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition);
}
.btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--color-primary); color: #fff; }
.btn--primary:hover { background: var(--color-primary-dark); }

.btn--accent { background: var(--color-accent); color: var(--color-primary-dark); }
.btn--accent:hover { background: var(--color-accent-light); color: var(--color-primary-dark); }

.btn--dark { background: var(--color-primary-dark); color: #fff; }
.btn--dark:hover { background: var(--color-primary); }

.btn--outline { border-color: var(--color-primary); color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: #fff; }

.btn--ghost-light { border-color: rgba(255, 255, 255, .45); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--color-primary-dark); border-color: #fff; }

.btn--sm { padding: 10px 18px; font-size: .8rem; }
.btn--block { width: 100%; }

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--color-accent-deep);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap var(--transition);
}
.link-more:hover { gap: 12px; }

/* ==========================================================================
   05. TOP BAR
   ========================================================================== */
.topbar {
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  font-size: .82rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  flex-wrap: wrap;
}
.topbar__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--color-text-light);
  transition: color var(--transition);
}
a.topbar__item:hover { color: var(--color-accent-light); }
.topbar__item svg { width: 14px; height: 14px; color: var(--color-accent); }
.topbar__social { display: flex; gap: 12px; }
.topbar__social a { display: inline-flex; color: var(--color-text-light); transition: color var(--transition); }
.topbar__social a:hover { color: var(--color-accent-light); }
.topbar__social svg { width: 15px; height: 15px; }

/* ==========================================================================
   06. HEADER / NAVIGATION
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.header.is-scrolled { box-shadow: var(--shadow-md); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}
.header__logo img { height: 48px; max-width: 220px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__list { display: flex; align-items: center; gap: 28px; }
.nav__link {
  position: relative;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .03em;
  color: var(--color-text-dark);
  padding: 6px 0;
  transition: color var(--transition);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--color-accent);
  transition: width var(--transition);
}
.nav__link:hover, .nav__link.is-active { color: var(--color-accent-deep); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 9px;
  color: var(--color-primary-dark);
}
.menu-toggle svg { width: 22px; height: 22px; display: block; }

/* ==========================================================================
   07. HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  color: #fff;
  background:
    linear-gradient(100deg, rgba(20, 24, 28, .90) 0%, rgba(20, 24, 28, .72) 48%, rgba(20, 24, 28, .42) 100%),
    url('../images/gallery/bathroom-modern-gray.jpg') center/cover no-repeat;
  padding: 104px 0;
}
.hero__inner { max-width: 760px; }
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}
.hero__stars { color: var(--color-gold); letter-spacing: 2px; }
.hero__title { color: #fff; margin-bottom: .45em; }
.hero__title em { font-style: italic; color: var(--color-accent-light); }
.hero__subtitle {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .86);
  max-width: 620px;
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 40px; }
.hero__badges { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .86rem;
  color: rgba(255, 255, 255, .88);
}
.hero__badge svg { width: 18px; height: 18px; color: var(--color-accent-light); }

/* ==========================================================================
   08. INTRO — "More than a bathroom remodeler"
   ========================================================================== */
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.intro__media { position: relative; }
.intro__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}
.intro__stamp {
  position: absolute;
  right: -20px;
  bottom: 34px;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  border-radius: var(--radius-lg);
  padding: 20px 26px;
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 190px;
}
.intro__stamp strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 4px;
}
.intro__stamp span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }

/* ==========================================================================
   09. SERVICES (tabbed)
   ========================================================================== */
.tabs__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.tabs__group-label {
  text-align: center;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.tab-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 11px 22px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--color-text-dark);
  transition: all var(--transition);
}
.tab-btn:hover { border-color: var(--color-accent-deep); color: var(--color-accent-deep); }
.tab-btn.is-active {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: #fff;
}
.tabs__panels { margin-top: 44px; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fadeUp 420ms ease both; }

.service-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail__media img {
  border-radius: var(--radius-lg);
  aspect-ratio: 5 / 4;
  object-fit: cover;
  width: 100%;
  box-shadow: var(--shadow-md);
}
.service-detail__title { margin-bottom: .2em; }
.service-detail__sub {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-style: italic;
  color: var(--color-accent-deep);
  margin-bottom: 18px;
}
.service-detail__list { margin: 22px 0 28px; display: grid; gap: 10px; }
.service-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .97rem;
  color: var(--color-text-muted);
}
.service-detail__list svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; color: var(--color-accent-deep); }
.service-detail__cta { display: flex; flex-wrap: wrap; gap: 12px; }

/* Service cards (services page) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.card__media img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card__title { font-size: 1.28rem; margin-bottom: .4em; }
.card__text { color: var(--color-text-muted); font-size: .97rem; flex: 1; }
.card__footer { margin-top: 20px; }
.card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-bg-light);
  color: var(--color-accent-deep);
  margin-bottom: 18px;
}
.card__icon svg { width: 24px; height: 24px; }

/* ==========================================================================
   10. TRUST BAND / STATS CTA
   ========================================================================== */
.trust-band {
  background: var(--color-primary);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}
.trust-band h2 { color: #fff; max-width: 820px; margin: 0 auto .5em; }
.trust-band p { color: rgba(255, 255, 255, .82); max-width: 640px; margin: 0 auto 30px; }
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 42px;
}
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.4vw, 2.9rem);
  font-weight: 700;
  line-height: 1;
  color: var(--color-accent-light);
  display: block;
  margin-bottom: 6px;
}
.stat__label {
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}

/* ==========================================================================
   11. PROCESS (How it works)
   ========================================================================== */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}
.process__step {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 30px 34px;
}
.process__step::before {
  counter-increment: step;
  content: '0' counter(step);
  position: absolute;
  top: -22px;
  left: 30px;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-accent-deep);
  opacity: .34;
  line-height: 1;
}
.process__icon {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-bg-light);
  color: var(--color-accent-deep);
  margin-bottom: 20px;
}
.process__icon svg { width: 25px; height: 25px; }
.process__step h3 { margin-bottom: .45em; }
.process__step p { color: var(--color-text-muted); font-size: .97rem; }
.process__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 48px; }

/* ==========================================================================
   12. GALLERY
   ========================================================================== */
.gallery__filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.filter-btn {
  background: transparent;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 9px 20px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all var(--transition);
}
.filter-btn:hover { border-color: var(--color-accent-deep); color: var(--color-accent-deep); }
.filter-btn.is-active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-primary-dark);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 1 / 1;
  background: var(--color-bg-stone);
}
.gallery__item.is-tall { grid-row: span 2; aspect-ratio: 1 / 2.07; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(.4, 0, .2, 1);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item::after {
  content: attr(data-caption);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 44px 18px 16px;
  font-size: .85rem;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(to top, rgba(20, 24, 28, .85), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover::after { opacity: 1; }
.gallery__item.is-hidden { display: none; }

/* ==========================================================================
   13. SPECIAL OFFER
   ========================================================================== */
.offer {
  background: var(--color-primary-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 58px 56px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.offer h2 { color: #fff; margin-bottom: .35em; }
.offer h2 em { font-style: italic; color: var(--color-accent-light); }
.offer p { color: rgba(255, 255, 255, .8); margin-bottom: 0; }
.offer__points { display: grid; gap: 12px; margin-top: 24px; }
.offer__points li { display: flex; gap: 10px; font-size: .95rem; color: rgba(255, 255, 255, .86); }
.offer__points svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 4px; color: var(--color-accent-light); }
.offer__actions { display: grid; gap: 12px; }

/* ==========================================================================
   14. WHAT SETS US APART
   ========================================================================== */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pillar {
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
}
.pillar__icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--color-bg-light);
  color: var(--color-accent-deep);
  margin-bottom: 20px;
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { margin-bottom: .45em; }
.pillar p { color: var(--color-text-muted); font-size: .97rem; }

/* ==========================================================================
   15. WHY ORLANDO CHOOSES US
   ========================================================================== */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: center;
}
.why__media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why__media img { border-radius: var(--radius-lg); aspect-ratio: 3 / 4; object-fit: cover; width: 100%; }
.why__media img:first-child { margin-top: 36px; }
.why__points { display: grid; gap: 24px; margin: 28px 0 32px; }
.why__point { display: flex; gap: 16px; }
.why__point svg { width: 26px; height: 26px; flex-shrink: 0; color: var(--color-accent-deep); margin-top: 3px; }
.why__point h3 { font-size: 1.12rem; margin-bottom: .3em; }
.why__point p { color: var(--color-text-muted); font-size: .96rem; margin: 0; }
.why__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ==========================================================================
   16. CREDENTIALS STRIP
   ========================================================================== */
.credentials {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 40px 0;
  background: #fff;
}
.credentials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.credential { display: grid; justify-items: center; gap: 10px; }
.credential svg { width: 30px; height: 30px; color: var(--color-accent-deep); }
.credential span {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

/* ==========================================================================
   17. SERVICE AREAS (accordion)
   ========================================================================== */
.areas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 40px;
  align-items: start;
}
.area-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
}
.area-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.area-item__q svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--color-accent-deep);
  transition: transform var(--transition);
}
.area-item.is-open .area-item__q svg { transform: rotate(180deg); }
.area-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 320ms cubic-bezier(.4, 0, .2, 1);
}
.area-item__a-inner { padding: 0 24px 22px; }
.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-cities li {
  font-size: .85rem;
  color: var(--color-text-muted);
  background: var(--color-bg-light);
  border-radius: 100px;
  padding: 6px 14px;
}

/* ==========================================================================
   18. FAQ ACCORDION
   ========================================================================== */
.faq { display: grid; gap: 14px; max-width: 880px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.is-open { border-color: var(--color-accent-deep); }
.faq-item__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: none;
  border: 0;
  padding: 24px 26px;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary-dark);
}
.faq-item__q svg {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--color-accent-deep);
  transition: transform var(--transition);
}
.faq-item.is-open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 320ms cubic-bezier(.4, 0, .2, 1); }
.faq-item__a-inner { padding: 0 26px 26px; color: var(--color-text-muted); font-size: 1rem; }

/* ==========================================================================
   19. FORMS / QUOTE CARD
   ========================================================================== */
.quote-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.quote-card__title { font-size: 1.6rem; margin-bottom: .25em; }
.quote-card__subtitle { color: var(--color-text-muted); font-size: .96rem; margin-bottom: 26px; }

.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 7px;
}
.form input,
.form select,
.form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 13px 15px;
  transition: border-color var(--transition), background var(--transition);
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--color-accent-deep);
}
.form textarea { min-height: 130px; resize: vertical; }
.form__note { font-size: .82rem; color: var(--color-text-muted); }

/* Contact info blocks */
.contact__grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
.contact-list { display: grid; gap: 22px; margin-bottom: 34px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item__icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-bg-light);
  color: var(--color-accent-deep);
}
.contact-item__icon svg { width: 21px; height: 21px; }
.contact-item h3 { font-size: 1.02rem; margin-bottom: .2em; }
.contact-item p, .contact-item a { color: var(--color-text-muted); font-size: .97rem; margin: 0; }
.contact-item a:hover { color: var(--color-accent-deep); }

/* ==========================================================================
   20. PAGE HERO (sub-pages)
   ========================================================================== */
.page-hero {
  background: linear-gradient(100deg, rgba(20, 24, 28, .92), rgba(47, 69, 80, .82));
  color: #fff;
  padding: 88px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: .35em; }
.page-hero p { color: rgba(255, 255, 255, .84); max-width: 680px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--color-accent-light); }

/* ==========================================================================
   21. CONTENT BLOCKS (sub-pages)
   ========================================================================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }

.check-list { display: grid; gap: 12px; margin: 22px 0 0; }
.check-list li { display: flex; gap: 11px; font-size: .98rem; color: var(--color-text-muted); }
.check-list svg { width: 19px; height: 19px; flex-shrink: 0; margin-top: 4px; color: var(--color-accent-deep); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.value__icon { color: var(--color-accent-deep); margin-bottom: 16px; }
.value__icon svg { width: 28px; height: 28px; }
.value h3 { font-size: 1.15rem; margin-bottom: .4em; }
.value p { color: var(--color-text-muted); font-size: .95rem; }

.timeline { display: grid; gap: 0; max-width: 780px; margin: 0 auto; }
.timeline__item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
}
.timeline__item:last-child { border-bottom: 0; }
.timeline__year {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent-deep);
}
.timeline__body h3 { font-size: 1.12rem; margin-bottom: .3em; }
.timeline__body p { color: var(--color-text-muted); font-size: .97rem; }

/* ==========================================================================
   22. FINAL CTA
   ========================================================================== */
.final-cta {
  background:
    linear-gradient(rgba(20, 24, 28, .90), rgba(20, 24, 28, .90)),
    url('../images/gallery/bathroom-marble-shower.jpg') center/cover no-repeat;
  color: #fff;
  padding: 96px 0;
  text-align: center;
}
.final-cta h2 { color: #fff; max-width: 780px; margin: 0 auto .4em; }
.final-cta p { color: rgba(255, 255, 255, .82); max-width: 620px; margin: 0 auto 32px; }
.final-cta__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   23. FOOTER
   ========================================================================== */
.footer {
  background: var(--color-primary-dark);
  color: var(--color-text-light);
  padding: 72px 0 0;
  font-size: .94rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__logo img { height: 48px; max-width: 220px; width: auto; margin-bottom: 20px; }
.footer__about { color: rgba(255, 255, 255, .7); margin-bottom: 22px; }
.footer h4 {
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 20px;
}
.footer__links { display: grid; gap: 11px; }
.footer__links a { color: rgba(255, 255, 255, .72); transition: color var(--transition); }
.footer__links a:hover { color: var(--color-accent-light); }
.footer__contact { display: grid; gap: 14px; }
.footer__contact a, .footer__contact span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--color-accent-light); }
.footer__contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 4px; color: var(--color-accent); }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  display: grid; place-items: center;
  color: rgba(255, 255, 255, .78);
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-primary-dark); }
.footer__social svg { width: 17px; height: 17px; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .85rem;
  color: rgba(255, 255, 255, .56);
}

/* Mobile sticky call bar */
.callbar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--color-primary-dark);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 10px 12px;
  gap: 10px;
}
.callbar .btn { flex: 1; padding: 12px 10px; font-size: .78rem; }

/* ==========================================================================
   24. ANIMATIONS / REVEAL
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.4, 0, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal--delay-1 { transition-delay: 110ms; }
.reveal--delay-2 { transition-delay: 220ms; }
.reveal--delay-3 { transition-delay: 330ms; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ==========================================================================
   25. RESPONSIVE
   ========================================================================== */

/* --- Tablet / small desktop --- */
@media (max-width: 1024px) {
  .section { padding: 76px 0; }
  .intro__grid, .why__grid, .split, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__media { order: 0; }
  .intro__stamp { right: 16px; }
  .service-detail { grid-template-columns: 1fr; gap: 36px; }
  .service-detail__media { order: -1; }
  .process, .pillars, .value-grid { grid-template-columns: 1fr; }
  .process__step::before { top: -18px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item.is-tall { grid-row: span 1; aspect-ratio: 1 / 1; }
  .offer { grid-template-columns: 1fr; padding: 44px 32px; gap: 32px; }
  .areas__grid { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .why__media img:first-child { margin-top: 0; }
}

/* --- Mobile navigation breakpoint --- */
@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    padding: 12px 24px 24px;
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--color-border); }
  .nav__link { display: block; padding: 15px 0; font-size: 1rem; }
  .nav__link::after { display: none; }
  .nav__cta { flex-direction: column; align-items: stretch; margin-top: 20px; }
  .header__inner { position: relative; min-height: 72px; }
  .header__logo img { height: 40px; max-width: 180px; }
  .footer__logo img { height: 40px; max-width: 180px; }
}

/* --- Mobile --- */
@media (max-width: 768px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .section--tight { padding: 48px 0; }
  .container { padding: 0 18px; }

  .topbar { font-size: .76rem; }
  .topbar__inner { justify-content: center; gap: 10px 18px; padding-top: 8px; padding-bottom: 8px; }
  .topbar__group--hours { display: none; }

  .hero { min-height: 0; padding: 72px 0; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__badges { gap: 10px 20px; }

  .section-head { margin-bottom: 40px; }
  .tabs__nav { gap: 6px; }
  .tab-btn { padding: 9px 15px; font-size: .8rem; }

  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gallery__item::after { opacity: 1; font-size: .74rem; padding: 30px 12px 10px; }

  .offer { padding: 36px 24px; }
  .quote-card { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; }

  .credentials__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 34px; padding-bottom: 40px; }
  .footer { padding-top: 56px; }
  .footer__bottom { justify-content: center; text-align: center; }

  .timeline__item { grid-template-columns: 1fr; gap: 6px; }
  .process__actions { flex-direction: column; align-items: stretch; }
  .final-cta__actions { flex-direction: column; align-items: stretch; }

  .callbar { display: flex; }
  body { padding-bottom: 66px; }
}

/* --- Small phones --- */
@media (max-width: 420px) {
  .gallery__grid { grid-template-columns: 1fr; }
  .credentials__grid { grid-template-columns: 1fr; }
  .hero__badge { font-size: .8rem; }
}
