/* ==============================================
   THE VELO WORKS — SHARED STYLESHEET
   ============================================== */


/* -----------------------------------------------
   1. CSS VARIABLES
----------------------------------------------- */
:root {
  --black: #111;
  --brand: #E94C8D;
  --brand-dark: #D4407E;
  --brand-light: #F06BA3;
  --off-black: #1A1A1A;
  --dark: #2A2A2A;
  --g800: #333;
  --g600: #666;
  --g400: #999;
  --g300: #BBB;
  --g200: #D9D9D9;
  --g100: #EEE;
  --g50: #F7F7F7;
  --white: #FFF;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 780px;
  --nav-w: 1060px;
  --gut: clamp(1rem, 4vw, 1.5rem);
}


/* -----------------------------------------------
   2. RESET & BASE
----------------------------------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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


/* -----------------------------------------------
   3. LAYOUT
----------------------------------------------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gut);
}

/* Wide layout used by enve.html — overrides the CSS variables globally for that page */
.layout--wide {
  --max-w: 1060px;
  --gut: clamp(1.25rem, 5vw, 2.5rem);
}


/* -----------------------------------------------
   4. NAVIGATION
----------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s;
}

.nav.scrolled {
  border-bottom-color: var(--g100);
}

.nav-inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 15px 0;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 2.25rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--g600);
  transition: color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
}

.nav-phone {
  font-size: .78rem;
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.nav-phone svg {
  width: 14px;
  height: 14px;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  margin: 4.5px 0;
  transition: all .3s;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

@media (max-width: 768px) {
  .burger { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--g100);
    flex-direction: column;
    padding: 1.75rem var(--gut);
    gap: 1.25rem;
  }

  /* Compact nav: mobile dropdown starts lower */
  .nav--compact .nav-links {
    top: 54px;
  }

  .nav-links.open { display: flex; }

  .hide-mob { display: none !important; }
}


/* -----------------------------------------------
   5. BUTTONS
----------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .75rem 1.75rem;
  border-radius: 0;
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

.btn svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

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

.btn-outline { background: transparent; color: var(--black); border: 1.5px solid var(--g200); }
.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.btn-white { background: var(--white); color: var(--brand); }
.btn-white:hover { background: var(--g50); }

.btn-ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, .25); }
.btn-ghost:hover { border-color: rgba(255, 255, 255, .6); }

.btn-white-o { background: transparent; color: var(--white); border: 1.5px solid rgba(255, 255, 255, .3); }
.btn-white-o:hover { background: rgba(255, 255, 255, .08); border-color: rgba(255, 255, 255, .6); }

.btn-sm { padding: .55rem 1.25rem; font-size: .65rem; }


/* -----------------------------------------------
   6. SECTIONS (SHARED)
----------------------------------------------- */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section-grey { background: var(--g50); }
.section-black { background: var(--black); color: var(--white); }
.section-dark { background: var(--off-black); color: var(--white); }

.section-head {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 3rem;
}

.section-head .label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}

.section-black .section-head .label,
.section-dark .section-head .label {
  color: var(--brand-light);
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -.02em;
}

.section-head h2 strong { font-weight: 700; }

.section-head p {
  margin-top: .85rem;
  color: var(--g600);
  font-size: .92rem;
}

.section-black .section-head p,
.section-dark .section-head p {
  color: var(--g300);
}

/* Map wrapper (used in index + contact) */
.map-wrap {
  background: var(--g100);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid var(--g200);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 240px;
}

/* CTA bar (used in services + enve) */
.cta-bar {
  padding: 3.5rem 0;
  text-align: center;
}

.cta-bar h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: .6rem;
}

.cta-bar h2 strong { font-weight: 700; }

.cta-bar p {
  color: var(--g400);
  font-size: .9rem;
  margin-bottom: 2rem;
}

.cta-bar .btn-group {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* -----------------------------------------------
   7. FOOTER
----------------------------------------------- */
.footer {
  background: var(--black);
  color: var(--g400);
  padding: 3rem 0 1.5rem;
  font-size: .8rem;
}

/* Grid layout (services, enve, index) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

/* Flex layout (contact) */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-col p { line-height: 1.75; }

.footer-heading {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .85rem;
}

/* Contact page footer has tighter heading margin */
.footer-inner .footer-heading { margin-bottom: .5rem; }

.footer p { line-height: 1.75; }

.footer a {
  color: var(--g400);
  text-decoration: none;
  transition: color .2s;
}

.footer a:hover { color: var(--white); }

.footer-links { list-style: none; }

.footer-links li { margin-bottom: .35rem; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 1.25rem;
  text-align: center;
  font-size: .7rem;
  color: var(--g600);
}

/* Compact footer (index + contact) */
.footer--compact {
  padding: 2rem 0 1.25rem;
}

.footer--compact .footer-grid {
  margin-bottom: 1.5rem;
}

.footer--compact .footer-bottom {
  padding-top: 1rem;
}

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

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}


/* -----------------------------------------------
   8. MOBILE CTA BAR
----------------------------------------------- */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--brand);
}

.mobile-cta-inner { display: flex; }

.mobile-cta a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .85rem 0;
  transition: background .2s;
}

.mobile-cta a:first-child { border-right: 1px solid rgba(255, 255, 255, .1); }
.mobile-cta a:hover { background: var(--brand-dark); }

.mobile-cta svg {
  width: 15px;
  height: 15px;
}

@media (max-width: 768px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 50px; }
}


/* -----------------------------------------------
   9. ANIMATIONS & SCROLL REVEAL
----------------------------------------------- */
@keyframes fu {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.js-loaded .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s ease;
}

.js-loaded .reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.js-loaded .reveal-d1 { transition-delay: .07s; }
.js-loaded .reveal-d2 { transition-delay: .14s; }
.js-loaded .reveal-d3 { transition-delay: .21s; }


/* ==============================================
   PAGE: INDEX
   ============================================== */

/* 10. Hero
----------------------------------------------- */
.hero {
  padding: 5.5rem 0 0;
  overflow: hidden;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
  min-height: auto;
}

.hero-text { padding: 1rem 0; }

.hero-tag {
  display: inline-block;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
  opacity: 0;
  animation: fu .6s .15s forwards;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.6rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -.025em;
  max-width: 520px;
  margin: 0 0 1rem;
  opacity: 0;
  animation: fu .6s .3s forwards;
  text-align: left;
}

.hero h1 strong { font-weight: 700; }

.hero-sub {
  font-size: .95rem;
  color: var(--g600);
  max-width: 400px;
  margin: 0 0 1.5rem;
  line-height: 1.7;
  opacity: 0;
  animation: fu .6s .45s forwards;
  text-align: left;
}

.hero-actions {
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .6s .6s forwards;
  justify-content: flex-start;
}

.hero-img {
  position: relative;
  opacity: 0;
  animation: fu .7s .4s forwards;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  max-height: 55vh;
}

.hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17, 17, 17, .06) 0%, transparent 60%);
}

@media (max-width: 768px) {
  .hero { padding: 4.5rem 0 0; }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1rem;
  }

  .hero-text { padding: 0; text-align: center; }

  .hero h1,
  .hero-sub {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions { justify-content: center; }

  .hero-img img { min-height: 160px; max-height: 40vh; }
}


/* 11. Trust Bar
----------------------------------------------- */
.trust {
  border-top: 1px solid var(--g100);
  border-bottom: 1px solid var(--g100);
  padding: .75rem 0;
}

.trust-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gut);
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, 3.5vw, 3rem);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .7rem;
  font-weight: 600;
  color: var(--g400);
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.trust-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.5;
}


/* 12. Index: Section overrides (compact padding)
----------------------------------------------- */
.section--compact { padding: clamp(2rem, 4vw, 3rem) 0; }


/* 13. Services Grid & Compare
----------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(225px, 1fr));
  gap: 1px;
  background: var(--g200);
  border: 1px solid var(--g200);
}

.s-card {
  background: var(--white);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background .3s;
}

.s-card:hover { background: var(--g50); }

.s-card-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6rem;
}

.s-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: .5rem;
  line-height: 1.35;
}

.s-card .price {
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: .85rem;
  color: var(--brand);
}

.s-card p {
  color: var(--g600);
  font-size: .82rem;
  line-height: 1.7;
  flex: 1;
}

/* Compare table */
.compare { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.compare-table { min-width: 600px; }

.compare-header,
.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  align-items: center;
}

.compare-header { margin-bottom: .25rem; }

.compare-feature {
  font-size: .82rem;
  font-weight: 500;
  color: var(--g600);
  padding: .45rem .75rem .45rem 0;
}

.compare-col {
  text-align: center;
  padding: .45rem .5rem;
}

.compare-header .compare-col {
  background: var(--white);
  padding: 1rem .5rem;
  border: 1px solid var(--g200);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  gap: .15rem;
}

.compare-header .compare-col--pop {
  background: var(--black);
  border-color: var(--black);
}

.compare-header .compare-col--pop .compare-tier,
.compare-header .compare-col--pop .compare-price,
.compare-header .compare-col--pop .compare-desc {
  color: var(--white);
}

.compare-tier {
  font-size: .88rem;
  font-weight: 700;
  color: var(--black);
}

.compare-price {
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--brand);
  letter-spacing: -.02em;
}

.compare-header .compare-col--pop .compare-price { color: var(--brand-light); }

.compare-desc {
  font-size: .7rem;
  color: var(--g400);
  font-weight: 500;
}

.compare-badge {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: .1rem;
}

.compare-row { border-bottom: 1px solid var(--g100); }
.compare-row:last-of-type { border-bottom: none; }
.compare-row .compare-col--pop { background: rgba(0, 0, 0, .02); }

.ck {
  width: 18px;
  height: 18px;
  stroke: var(--brand);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dash { color: var(--g200); font-size: 1rem; }

.compare-row--cta { border-bottom: none; margin-top: .75rem; }
.compare-row--cta .compare-col { padding: .5rem; }

@media (max-width: 600px) {
  .compare-table { min-width: 540px; }
  .compare-feature { font-size: .75rem; padding: .55rem .5rem .55rem 0; }
}


/* 14. Why Grid (Index — inside section-black)
----------------------------------------------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2.5rem;
}

.why-item {
  display: flex;
  gap: 1rem;
}

.why-num {
  flex-shrink: 0;
  font-size: .7rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: .05em;
  padding-top: .15rem;
}

/* In the index dark section, numbers are muted */
.section-black .why-num { color: var(--g600); }

.why-item h3 {
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.why-item p {
  color: var(--g600);
  font-size: .82rem;
  line-height: 1.65;
}

.section-black .why-item p { color: var(--g300); }

@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}


/* 15. Testimonial
----------------------------------------------- */
.testimonial {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.testimonial cite {
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  color: var(--g400);
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* 16. ENVE Banner (index homepage)
----------------------------------------------- */
.enve-banner {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--g200);
  overflow: hidden;
}

.enve-banner-text {
  flex: 1;
  padding: 1.5rem;
}

.enve-banner-text .label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .6rem;
}

.enve-banner-text h3 {
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .6rem;
}

.enve-banner-text p {
  color: var(--g600);
  font-size: .88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.enve-visual {
  width: 240px;
  flex-shrink: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
}

.enve-visual span {
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: .3em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .enve-banner { flex-direction: column; }
  .enve-visual { width: 100%; min-height: 100px; }
  .enve-banner-text { padding: 2rem 1.5rem; }
}


/* 17. Contact Grid (index)
----------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-info {
  font-size: .9rem;
  line-height: 1.85;
}

.contact-label {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .35rem;
}

.contact-block { margin-bottom: 1rem; }

.contact-btns {
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}

.contact-btns .btn { font-size: .68rem; padding: .65rem 1.3rem; }
.contact-btns .btn svg { width: 13px; height: 13px; }

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


/* 18. CTA Bar (Index — compact variant)
----------------------------------------------- */
.cta-bar--compact {
  padding: 2rem 0;
  text-align: center;
}

.cta-bar--compact h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: .6rem;
}

.cta-bar--compact h2 strong { font-weight: 700; }

.cta-bar--compact p {
  color: var(--g400);
  font-size: .9rem;
  margin-bottom: 1.25rem;
}

.cta-bar--compact .btn-group {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ==============================================
   PAGE: SERVICES
   ============================================== */

/* 19. Page Hero
----------------------------------------------- */
.page-hero {
  position: relative;
  height: 45vh;
  min-height: 320px;
  max-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  margin-top: 64px;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 17, 17, .7) 0%, rgba(17, 17, 17, .15) 60%, rgba(17, 17, 17, .05) 100%);
}

.page-hero-text {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2.5rem var(--gut);
  width: 100%;
}

.page-hero .label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: .5rem;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -.02em;
}

.page-hero h1 strong { font-weight: 700; }

.page-hero p {
  color: rgba(255, 255, 255, .65);
  font-size: .92rem;
  margin-top: .5rem;
  max-width: 480px;
}


/* 20. Service Feature Block
----------------------------------------------- */
.svc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--g200);
  overflow: hidden;
}

.svc-img {
  position: relative;
  min-height: 360px;
  overflow: hidden;
}

.svc-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.svc:hover .svc-img img { transform: scale(1.03); }

.svc-body {
  padding: 3rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.svc-body .label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}

.svc-body h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  font-weight: 300;
  margin-bottom: .15rem;
  letter-spacing: -.01em;
}

.svc-body h3 strong { font-weight: 700; }

.svc-body .price {
  font-size: 2rem;
  font-weight: 300;
  color: var(--brand);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}

.svc-body p {
  color: var(--g600);
  font-size: .85rem;
  line-height: 1.75;
  margin-bottom: .35rem;
}

.svc-body .included {
  margin-top: 1rem;
  list-style: none;
}

.svc-body .included li {
  font-size: .82rem;
  color: var(--g600);
  padding: .3rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.svc-body .included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .65rem;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.svc-body .svc-cta { margin-top: 1.5rem; }

.svc-note {
  font-size: .75rem;
  color: var(--g400);
  margin-top: .75rem;
  font-style: italic;
}

.svc.svc--reverse { direction: rtl; }
.svc.svc--reverse > * { direction: ltr; }

@media (max-width: 700px) {
  .svc, .svc.svc--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .svc > * { direction: ltr; }
  .svc-img { min-height: 240px; }
  .svc-body { padding: 2rem 1.5rem; }
}


/* 21. Repairs Grid
----------------------------------------------- */
.repairs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: var(--g200);
  border: 1px solid var(--g200);
}

.repair-card {
  background: var(--white);
  padding: 1.75rem 1.5rem;
  transition: background .3s;
}

.repair-card:hover { background: var(--g50); }

.repair-card h4 {
  font-size: .92rem;
  font-weight: 600;
  margin-bottom: .25rem;
}

.repair-card .rprice {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--brand);
  margin-bottom: .5rem;
}

.repair-card p {
  font-size: .78rem;
  color: var(--g600);
  line-height: 1.65;
}


/* ==============================================
   PAGE: ENVE
   ============================================== */

/* 22. ENVE Hero
----------------------------------------------- */
.enve-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 64px;
  overflow: hidden;
  background: var(--black);
}

.enve-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 40%, #111 100%);
}

.enve-hero-img {
  position: absolute;
  inset: 0;
  opacity: .35;
}

.enve-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enve-hero-content {
  position: relative;
  z-index: 1;
  padding: 3rem var(--gut);
  max-width: 640px;
}

.enve-hero .enve-wordmark {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: .35em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  opacity: 0;
  animation: fu .7s .2s forwards;
}

.enve-hero .sub {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-light);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fu .6s .35s forwards;
}

.enve-hero h1 {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  line-height: 1.75;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fu .6s .5s forwards;
}

.enve-hero .hero-actions {
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fu .6s .65s forwards;
}


/* 23. Product Categories
----------------------------------------------- */
.cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat {
  border: 1px solid var(--g200);
  overflow: hidden;
  transition: border-color .3s, transform .3s;
}

.cat:hover { border-color: var(--brand); transform: translateY(-3px); }

.cat-img {
  height: 240px;
  overflow: hidden;
  background: var(--g100);
}

.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.cat:hover .cat-img img { transform: scale(1.04); }

.cat-body { padding: 1.5rem; }

.cat-body .label {
  font-size: .55rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .35rem;
}

.cat-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .4rem;
}

.cat-body p {
  font-size: .82rem;
  color: var(--g600);
  line-height: 1.65;
  margin-bottom: 1rem;
}

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


/* 24. Feature Row (alternating image + text)
----------------------------------------------- */
.feat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--g200);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.feat:last-child { margin-bottom: 0; }

.feat-img {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.feat-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.feat:hover .feat-img img { transform: scale(1.03); }

.feat-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feat-body .label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}

.feat-body h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 300;
  margin-bottom: .75rem;
  letter-spacing: -.01em;
}

.feat-body h3 strong { font-weight: 700; }

.feat-body p {
  color: var(--g600);
  font-size: .85rem;
  line-height: 1.75;
}

.feat.feat--reverse { direction: rtl; }
.feat.feat--reverse > * { direction: ltr; }

@media (max-width: 700px) {
  .feat, .feat.feat--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .feat > * { direction: ltr; }
  .feat-img { min-height: 220px; }
  .feat-body { padding: 2rem 1.5rem; }
}


/* 25. Why Grid (ENVE page — light numbers on dark background)
----------------------------------------------- */
.why-grid--enve .why-num { color: var(--brand-light); }
.why-grid--enve .why-item p { color: var(--g300); }


/* 26. ENVE Quote
----------------------------------------------- */
.enve-quote {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}

.enve-quote blockquote {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.75;
  color: var(--g600);
  margin-bottom: 1rem;
}

.enve-quote cite {
  font-style: normal;
  font-size: .72rem;
  font-weight: 600;
  color: var(--g400);
  letter-spacing: .08em;
  text-transform: uppercase;
}


/* ==============================================
   PAGE: CONTACT
   ============================================== */

/* 27. Contact Page Layout
----------------------------------------------- */
.page {
  padding: 5rem 0 2.5rem;
}

.page h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 300;
  letter-spacing: -.02em;
  margin-bottom: .35rem;
}

.page h1 strong { font-weight: 700; }

.page-intro {
  color: var(--g600);
  font-size: .92rem;
  margin-bottom: 2rem;
  max-width: 460px;
}


/* 28. Contact Methods
----------------------------------------------- */
.methods {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: var(--g200);
  border: 1px solid var(--g200);
  margin-bottom: 2rem;
}

.method {
  background: var(--white);
  padding: 1.5rem 1.25rem;
  text-align: center;
  text-decoration: none;
  transition: background .2s;
}

.method:hover { background: var(--g50); }

.method-icon {
  width: 28px;
  height: 28px;
  margin: 0 auto .6rem;
  stroke: var(--brand);
  fill: none;
  stroke-width: 1.5;
}

.method-icon.fill-icon { fill: var(--brand); stroke: none; }

.method-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g400);
  margin-bottom: .2rem;
}

.method-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
}

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


/* 29. Details, Address & Map
----------------------------------------------- */
.details {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  align-items: start;
}

.dl {
  font-size: .88rem;
  line-height: 1.8;
}

.dl-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .2rem;
  margin-top: 1.25rem;
}

.dl-label:first-child { margin-top: 0; }

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


/* 30. Service Areas & Quick Links
----------------------------------------------- */
.areas {
  border-top: 1px solid var(--g100);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
}

.areas-label {
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .5rem;
}

.areas p {
  font-size: .85rem;
  color: var(--g600);
  line-height: 1.75;
}

.quick {
  border-top: 1px solid var(--g100);
  padding-top: 1.5rem;
  display: flex;
  gap: .6rem;
  flex-wrap: wrap;
}
