/* ==========================================================================
   Bess Irrigation — Design System
   Primary Blue  #0078F0  (from logo)
   Ink           #0B0F14  (near-black, warmer than pure black)
   Grass Green   #1F8A3B  (healthy-lawn accent, used sparingly)
   Sand          #F3EEE3  (warm section background, coastal Carolina)
   ========================================================================== */

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

:root{
  --blue: #0078F0;
  --blue-dark: #0058B8;
  --blue-deep: #013a75;
  --ink: #0B0F14;
  --ink-soft: #1A2028;
  --green: #1F8A3B;
  --green-dark: #146228;
  --sand: #F3EEE3;
  --sand-dark: #E7DFCC;
  --white: #FFFFFF;
  --gray-600: #4B5563;
  --gray-500: #6B7280;
  --gray-200: #E5E7EB;

  --display: 'Anton', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;
  --space-9: 128px;

  --radius: 10px;
  --radius-lg: 20px;
  --container: 1180px;

  --shadow-sm: 0 2px 8px rgba(11,15,20,0.08);
  --shadow-md: 0 8px 24px rgba(11,15,20,0.12);
  --shadow-lg: 0 20px 48px rgba(11,15,20,0.18);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4{ margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: 0.01em; line-height: 1.05; text-transform: uppercase; }
p{ margin: 0; }
button{ font-family: inherit; }

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

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

/* ---------- Eyebrow / tracked label (callback to logo's dot-separated caption style) ---------- */
.eyebrow{
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-dark);
  margin-bottom: var(--space-3);
}
.eyebrow .dot{
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue);
  flex: none;
}
.eyebrow svg{ width: 15px; height: 15px; flex: none; }
.eyebrow.on-dark{ color: #8FC3FF; }
.eyebrow.on-dark .dot{ background: var(--blue); }

/* ---------- Type scale ---------- */
.h1{ font-size: clamp(2.6rem, 5.4vw, 4.6rem); }
.h2{ font-size: clamp(2rem, 3.6vw, 3rem); }
.h3{ font-size: clamp(1.35rem, 2.2vw, 1.75rem); }
.lede{ font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; color: var(--gray-600); font-weight: 400; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease);
  min-height: 44px;
  white-space: nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn:active{ transform: translateY(0); }
.btn svg{ width: 18px; height: 18px; flex: none; }

.btn-primary{
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover{ background: var(--blue-dark); box-shadow: var(--shadow-lg); }

.btn-outline{
  background: transparent;
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
}
.btn-outline:hover{ background: rgba(255,255,255,0.12); border-color: var(--white); }

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

.btn-block{ width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: var(--space-4);
}
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}
.brand img{ width: 52px; height: 52px; }
.brand-text{ display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .name{ font-family: var(--display); font-size: 20px; letter-spacing: 0.01em; color: var(--ink); text-transform: uppercase; }
.brand-text .tag{ font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue); }

.main-nav{ display: flex; align-items: center; gap: var(--space-5); }
.main-nav ul{ display: flex; gap: var(--space-4); white-space: nowrap; }
.main-nav a{
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
  transition: color 180ms var(--ease);
}
.main-nav a:hover{ color: var(--blue); }
.main-nav a.active{ color: var(--blue); }
.main-nav a.active::after{
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  border-radius: 3px;
  background: var(--blue);
}

.header-cta{ display: flex; align-items: center; gap: var(--space-3); }
.header-phone{
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.header-phone svg{ width: 18px; height: 18px; color: var(--blue); flex: none; }

.nav-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg{ width: 26px; height: 26px; }

.mobile-panel{
  display: none;
  flex-direction: column;
  padding: var(--space-3) var(--space-4) var(--space-5);
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.mobile-panel a{
  padding: 14px 4px;
  font-weight: 600;
  font-size: 17px;
  border-bottom: 1px solid var(--gray-200);
}
.mobile-panel a.active{ color: var(--blue); }
.mobile-panel .btn{ margin-top: var(--space-3); }

@media (max-width: 1180px){
  .header-phone .label{ display: none; }
}
@media (max-width: 1080px){
  .main-nav{ display: none; }
  .nav-toggle{ display: inline-flex; }
  body.nav-open .mobile-panel{ display: flex; }
}
@media (max-width: 520px){
  .header-inner{ gap: var(--space-2); }
  .brand img{ width: 42px; height: 42px; }
  .brand-text .name{ font-size: 16px; }
  .brand-text .tag{ font-size: 9.5px; letter-spacing: 0.06em; }
  .header-phone{ display: none; }
  .header-cta{ gap: var(--space-2); }
  .header-cta .btn-primary{ padding: 12px 16px; font-size: 14px; }
}
@media (max-width: 380px){
  .brand-text .tag{ display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero{
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}
.hero-media{
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img{
  width: 100%; height: 100%; object-fit: cover; object-position: center 30%;
}
.hero-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,10,16,0.55) 0%, rgba(6,10,16,0.25) 30%, rgba(6,10,16,0.55) 68%, rgba(6,10,16,0.92) 100%),
    linear-gradient(90deg, rgba(6,10,16,0.55) 0%, rgba(6,10,16,0.05) 45%);
}
.hero-content{
  position: relative;
  z-index: 1;
  padding: 160px 0 var(--space-8);
  width: 100%;
}
.hero-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  margin-bottom: var(--space-4);
}
.hero-badge img{ width: 34px; height: 34px; }
.hero-badge span{ font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

.hero h1{ max-width: 15ch; margin-bottom: var(--space-4); text-shadow: 0 4px 24px rgba(0,0,0,0.35); }
.hero h1 em{ font-style: normal; color: var(--blue); }
.hero-lede{ max-width: 52ch; font-size: clamp(1.05rem,1.6vw,1.25rem); color: rgba(255,255,255,0.88); margin-bottom: var(--space-5); }
.hero-actions{ display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-6); }

.hero-stats{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.25);
}
.hero-stats .stat-num{ font-family: var(--display); font-size: 2rem; color: var(--white); display: block; }
.hero-stats .stat-label{ font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

@media (max-width: 640px){
  .hero{ min-height: 100vh; }
  .hero-content{ padding-top: 130px; }
}

/* ==========================================================================
   Sprinkler-arc divider — the signature element
   ========================================================================== */
.arc-divider{
  position: relative;
  line-height: 0;
  z-index: 2;
}
.arc-divider svg{ width: 100%; height: auto; display: block; }
.arc-divider .arc-line{
  stroke-dasharray: 340;
  stroke-dashoffset: 340;
  transition: stroke-dashoffset 1100ms var(--ease);
}
.arc-divider.in-view .arc-line{ stroke-dashoffset: 0; }
.arc-divider .drop{
  opacity: 0;
  transform-origin: center;
}
.arc-divider.in-view .drop{ animation: drop-fall 1400ms var(--ease) forwards; }
.arc-divider.in-view .drop:nth-of-type(2){ animation-delay: 120ms; }
.arc-divider.in-view .drop:nth-of-type(3){ animation-delay: 260ms; }
@keyframes drop-fall{
  0%{ opacity: 0; transform: translateY(-6px) scale(0.6); }
  40%{ opacity: 1; }
  100%{ opacity: 0; transform: translateY(16px) scale(0.9); }
}
@media (prefers-reduced-motion: reduce){
  .arc-divider .arc-line{ stroke-dashoffset: 0; transition: none; }
  .arc-divider .drop{ display: none; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
section{ position: relative; }
.section{ padding: var(--space-8) 0; }
.section-sand{ background: var(--sand); }
.section-ink{ background: var(--ink); color: var(--white); }
.section-blue{ background: var(--blue); color: var(--white); }

.section-head{ max-width: 680px; margin-bottom: var(--space-6); }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lede{ margin-top: var(--space-3); }
.section-ink .lede, .section-ink .eyebrow:not(.on-dark){ color: rgba(255,255,255,0.72); }

/* ---------- Trust strip ---------- */
.trust-strip{
  background: var(--ink);
  color: var(--white);
  padding: var(--space-4) 0;
}
.trust-strip .container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3) var(--space-6);
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
}
.trust-item svg{ width: 20px; height: 20px; color: var(--blue); flex: none; }

/* ---------- Service cards ---------- */
.grid{ display: grid; gap: var(--space-5); }
.grid-3{ grid-template-columns: repeat(3, 1fr); }
.grid-2{ grid-template-columns: repeat(2, 1fr); }
.grid-4{ grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px){ .grid-3{ grid-template-columns: repeat(2, 1fr); } .grid-4{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .grid-3, .grid-2, .grid-4{ grid-template-columns: 1fr; } }

.card{
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease), border-color 260ms var(--ease);
}
.card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }

.icon-badge{
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(0,120,240,0.1);
  border: 2px solid var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-4);
  flex: none;
}
.icon-badge svg{ width: 26px; height: 26px; color: var(--blue); }
.icon-badge.green{ background: rgba(31,138,59,0.1); border-color: var(--green); }
.icon-badge.green svg{ color: var(--green); }

.card h3{ text-transform: none; font-family: var(--body); font-weight: 800; font-size: 19px; margin-bottom: 10px; letter-spacing: 0; }
.card p{ color: var(--gray-600); font-size: 15px; line-height: 1.65; }
.card .card-link{
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: var(--space-3);
  font-weight: 700; font-size: 14px; color: var(--blue);
}
.card .card-link svg{ width: 16px; height: 16px; transition: transform 200ms var(--ease); }
.card .card-link:hover svg{ transform: translateX(3px); }

/* ---------- How it works ---------- */
.steps{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); counter-reset: step; }
@media (max-width: 780px){ .steps{ grid-template-columns: 1fr; } }
.step{ position: relative; padding-top: var(--space-2); }
.step-num{
  font-family: var(--display);
  font-size: 3.2rem;
  color: rgba(0,120,240,0.18);
  display: block;
  margin-bottom: var(--space-2);
}
.step h3{ text-transform: none; font-family: var(--body); font-weight: 800; font-size: 19px; margin-bottom: 8px; }
.step p{ color: var(--gray-600); font-size: 15px; }

/* ---------- Split (image + text) ---------- */
.split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
@media (max-width: 900px){ .split{ grid-template-columns: 1fr; gap: var(--space-5); } }
.split .media{ position: relative; }
.split .media img{ border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-lg); }
.split.reverse .media{ order: 2; }
.split.reverse .content{ order: 1; }
@media (max-width: 900px){ .split .media, .split.reverse .media{ order: 1; } .split .content, .split.reverse .content{ order: 2; } }

.checklist{ display: flex; flex-direction: column; gap: 14px; margin-top: var(--space-4); }
.checklist li{ display: flex; align-items: flex-start; gap: 12px; font-weight: 600; font-size: 15.5px; }
.checklist svg{ width: 22px; height: 22px; color: var(--green); flex: none; margin-top: 1px; }

/* ---------- Stat band ---------- */
.stat-band{ display: grid; grid-template-columns: repeat(4,1fr); gap: var(--space-5); }
@media (max-width: 780px){ .stat-band{ grid-template-columns: repeat(2,1fr); } }
.stat{ text-align: center; }
.stat .num{ font-family: var(--display); font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--white); display: block; }
.stat .label{ font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 6px; }

/* ---------- Service area chips ---------- */
.town-grid{ display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 900px){ .town-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px){ .town-grid{ grid-template-columns: repeat(2, 1fr); } }
.town-chip{
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14.5px;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease), box-shadow 200ms var(--ease);
}
.town-chip svg{ width: 18px; height: 18px; color: var(--blue); flex: none; }
.town-chip:hover{ border-color: var(--blue); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* ---------- CTA band ---------- */
.cta-band{
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band h2{ margin-bottom: 6px; }
.cta-band p{ color: rgba(255,255,255,0.85); font-size: 16px; }
.cta-band .actions{ display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: rgba(255,255,255,0.75); padding: var(--space-7) 0 var(--space-4); }
.footer-grid{ display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.1fr; gap: var(--space-6); margin-bottom: var(--space-6); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: 1fr; } }
.footer-brand{ display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-3); }
.footer-brand img{ width: 48px; height: 48px; }
.footer-brand .name{ font-family: var(--display); font-size: 19px; color: var(--white); text-transform: uppercase; }
.footer-col h4{ font-family: var(--body); text-transform: uppercase; letter-spacing: 0.08em; font-size: 13px; color: var(--white); font-weight: 700; margin-bottom: var(--space-3); }
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{ font-size: 14.5px; transition: color 180ms var(--ease); }
.footer-col a:hover{ color: var(--white); }
.footer-contact li{ display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; }
.footer-contact svg{ width: 18px; height: 18px; color: var(--blue); flex: none; margin-top: 2px; }
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom a{ color: rgba(255,255,255,0.5); }
.footer-bottom a:hover{ color: var(--white); }
.social-link{
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  transition: background 200ms var(--ease);
}
.social-link:hover{ background: var(--blue); }
.social-link svg{ width: 18px; height: 18px; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero{
  background: var(--ink);
  color: var(--white);
  padding: 150px 0 var(--space-7);
  position: relative;
  overflow: hidden;
}
.page-hero .container{ position: relative; z-index: 1; }
.page-hero .eyebrow{ color: #8FC3FF; }
.page-hero .lede{ color: rgba(255,255,255,0.75); max-width: 60ch; margin-top: var(--space-3); }
.page-hero-bg{ position: absolute; inset: 0; opacity: 0.16; }
.page-hero-bg img{ width: 100%; height: 100%; object-fit: cover; }

/* ---------- Misc utility ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.reveal{ opacity: 0; transform: translateY(24px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in-view{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){ .reveal{ opacity: 1; transform: none; transition: none; } }

.tel-link{ color: var(--blue); font-weight: 700; }

.badge-pill{
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,120,240,0.08);
  color: var(--blue-dark);
  border-radius: 999px;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
}

/* Value / about page specific */
.value-card{ display: flex; gap: var(--space-4); align-items: flex-start; }
.value-card .icon-badge{ margin-bottom: 0; }
.value-card h3{ text-transform: none; font-family: var(--body); font-weight: 800; font-size: 18px; margin-bottom: 6px; }
.value-card p{ color: var(--gray-600); font-size: 15px; }

/* Contact page */
.contact-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: start; }
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }
.contact-card{
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  display: flex;
  gap: var(--space-4);
  align-items: center;
  margin-bottom: var(--space-3);
}
.contact-card .icon-badge{ margin-bottom: 0; }
.contact-card .label{ font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 4px; }
.contact-card .value{ font-family: var(--display); font-size: 22px; text-transform: none; letter-spacing: 0; }
.map-frame{ border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--gray-200); }

/* Services detail list */
.service-detail{
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-detail:last-child{ border-bottom: none; }
.service-detail .icon-badge{ width: 64px; height: 64px; margin-bottom: 0; }
.service-detail .icon-badge svg{ width: 30px; height: 30px; }
.service-detail h3{ text-transform: none; font-family: var(--body); font-weight: 800; font-size: 21px; margin-bottom: 8px; }
.service-detail p{ color: var(--gray-600); font-size: 15.5px; max-width: 62ch; }
@media (max-width: 640px){ .service-detail{ grid-template-columns: 1fr; } }
