/* ==========================================================================
   Simple Care — Design tokens
   ========================================================================== */
:root {
  /* Color */
  --navy-900: #14263B;
  --navy-700: #1B3A5C;
  --navy-600: #234A72;
  --blue-500: #3D6D96;
  --blue-300: #7FA8C9;
  --sky-100:  #E9F2F8;
  --sky-50:   #F5F9FC;
  --sand-100: #F3ECDD;
  --sand-200: #EADFC7;
  --white:    #FFFFFF;
  --ink-700:  #2B3B4C;
  --ink-500:  #55677A;
  --line:     #DEE7EE;

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", Georgia, serif;
  --font-body: "Public Sans", "Segoe UI", -apple-system, sans-serif;

  /* Scale */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 32px -18px rgba(20, 38, 59, 0.35);
  --shadow-card: 0 8px 24px -12px rgba(20, 38, 59, 0.18);

  --container: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--navy-900);
  margin: 0 0 0.5em;
  line-height: 1.15;
  font-weight: 600;
}

h1 { font-size: clamp(2.1rem, 3.6vw, 3.4rem); font-weight: 500; }
h2 { font-size: clamp(1.6rem, 2.6vw, 2.25rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--ink-500); }

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary {
  background: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { background: var(--navy-900); transform: translateY(-2px); }

.btn-secondary {
  background: transparent;
  color: var(--navy-700);
  border-color: var(--navy-700);
}
.btn-secondary:hover { background: var(--navy-700); color: var(--white); }

.btn-ghost {
  background: var(--white);
  color: var(--navy-700);
}
.btn-ghost:hover { background: var(--sky-100); }

.btn:focus-visible, a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 2px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-900);
}
.brand img { height: 48px; width: auto; position: relative; top: 6px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-700);
  position: relative;
  padding: 6px 0;
}
.nav-links a.active { color: var(--navy-700); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue-500);
  transition: width 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 24px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  position: relative;
  transition: all 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }

/* ==========================================================================
   Wave divider (signature element)
   ========================================================================== */
.wave-divider { display: block; width: 100%; line-height: 0; }
.wave-divider svg { width: 100%; height: 64px; display: block; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-200) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero h1 { color: var(--navy-900); margin-bottom: 22px; }
.hero p.lead { font-size: 1.1rem; max-width: 46ch; margin-bottom: 32px; }
.hero-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3.3;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 64% 42%; }
.hero-badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: rgba(20, 38, 59, 0.82);
  color: var(--white);
  backdrop-filter: blur(6px);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #6FE3A8;
  box-shadow: 0 0 0 4px rgba(111,227,168,0.25);
}

/* ==========================================================================
   Trust strip
   ========================================================================== */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  padding-top: 28px;
  padding-bottom: 28px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-700);
  flex: 1 1 220px;
}
.trust-item svg { flex-shrink: 0; width: 26px; height: 26px; color: var(--blue-500); }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */
.section { padding: 96px 0; }
.section-alt { background: var(--sky-50); }
.section-head {
  max-width: 620px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-head p { max-width: 50ch; margin-left: auto; margin-right: auto; }
.section-head.left { text-align: left; margin-left: 0; }

/* ==========================================================================
   Services grid (home)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sky-100);
  color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.service-card p { font-size: 0.94rem; margin-bottom: 18px; }
.service-card .link-more {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .link-more svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.service-card:hover .link-more svg { transform: translateX(4px); }

/* ==========================================================================
   Why trust (dark band)
   ========================================================================== */
.why-band {
  background: var(--navy-900);
  color: var(--white);
  padding: 96px 0;
}
.why-band h2 { color: var(--white); }
.why-band .section-head p { color: rgba(255,255,255,0.72); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.why-item { text-align: center; }
.why-icon {
  width: 68px; height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
}
.why-icon svg { width: 30px; height: 30px; color: #A9CBE6; }
.why-item h3 { color: var(--white); font-size: 1rem; }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(120deg, var(--blue-500), var(--navy-700));
  border-radius: var(--radius-lg);
  padding: 56px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--white);
  margin: 0 32px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.82); margin: 0; }
.cta-banner .btn-ghost { flex-shrink: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 32px;
  margin-top: 96px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--font-display); font-size: 1.3rem; }
.footer-brand img { height: 32px; width: auto; }
.footer-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer-col h4 { color: var(--white); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col li { display: block; margin-bottom: 10px; font-size: 0.92rem; }
.footer-col a:hover { color: var(--white); }
.footer-contact { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.94rem; }
.footer-contact svg { width: 18px; height: 18px; flex-shrink: 0; color: #A9CBE6; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: 12px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.18s ease, border-color 0.18s ease;
}
.social-link:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
.social-link svg { width: 18px; height: 18px; }

/* ==========================================================================
   Services page specific
   ========================================================================== */
.page-hero {
  background: var(--sky-100);
  padding: 64px 0 56px;
}
.page-hero .eyebrow { margin-bottom: 10px; }
.page-hero h1 { max-width: 20ch; }
.page-hero p.lead { max-width: 60ch; font-size: 1.05rem; }

.services-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: flex-start;
  padding: 72px 0;
}
.services-nav {
  position: sticky;
  top: 108px;
}
.services-nav .label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 14px;
}
.services-nav ul { border-left: 2px solid var(--line); }
.services-nav a {
  display: block;
  padding: 9px 0 9px 18px;
  margin-left: -2px;
  border-left: 2px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-500);
  transition: color 0.18s ease, border-color 0.18s ease;
}
.services-nav a:hover { color: var(--navy-700); }
.services-nav a.active { color: var(--navy-700); border-left-color: var(--blue-500); }

.service-detail {
  scroll-margin-top: 108px;
  padding-bottom: 64px;
  margin-bottom: 64px;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.service-detail:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.service-detail:nth-child(even) .service-detail-figure { order: 2; }
.service-detail-figure img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.service-detail-copy .index {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--blue-500);
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}
.service-detail-copy h2 { font-size: 1.5rem; margin-bottom: 14px; }
.service-detail-copy ul { margin: 16px 0; }
.service-detail-copy ul li {
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
  color: var(--ink-500);
  font-size: 0.95rem;
}
.service-detail-copy ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--sky-100);
  border: 1px solid var(--blue-300);
}
.tag-list { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.tag {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy-700);
  background: var(--sky-100);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   Blog listing page
   ========================================================================== */
.blog-list { padding-bottom: 16px; }
.blog-section { padding: 56px 0; }
.blog-section.tint { background: var(--sky-50); }
.blog-post {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
}
.blog-post-figure img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}
.blog-post-copy h2 { font-size: 1.4rem; margin-bottom: 12px; }
.blog-post-copy p { font-size: 0.96rem; }
.link-more {
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--blue-500);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-more svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.blog-post:hover .link-more svg { transform: translateX(4px); }

/* ==========================================================================
   Blog article page
   ========================================================================== */
.article-hero { padding: 48px 0 0; }
.article-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue-500);
  margin-bottom: 24px;
}
.article-nav-back svg { width: 16px; height: 16px; }
.article-hero h1 {
  max-width: 26ch;
  margin-bottom: 32px;
}
.article-hero-figure img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 21/9;
  object-fit: cover;
}
.article-body {
  max-width: 720px;
  padding-top: 48px;
  padding-bottom: 24px;
}
.article-body p { font-size: 1.02rem; color: var(--ink-700); }
.article-body h2 { font-size: 1.5rem; margin-top: 2em; }
.article-body h3 { font-size: 1.2rem; margin-top: 1.8em; }
.article-body ul, .article-body ol { margin: 0 0 1.2em; padding-left: 22px; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; color: var(--ink-700); }
.article-body a { color: var(--blue-500); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 860px) {
  .blog-post { grid-template-columns: 1fr; }
  .article-hero-figure img { aspect-ratio: 4/3; }
}


/* ==========================================================================
   Hero — full bleed variant (image blended into background, used on
   secondary pages like Quem Somos)
   ========================================================================== */
.hero-full {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--sand-100) 0%, var(--sand-200) 100%);
}
.hero-full img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 50%;
  z-index: 1;
}
.hero-full::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    var(--sand-200) 0%,
    var(--sand-200) 30%,
    rgba(234, 223, 199, 0.72) 42%,
    rgba(234, 223, 199, 0) 62%);
  z-index: 2;
}
.hero-full .container { position: relative; z-index: 3; padding: 88px 0; }
.hero-full-copy { max-width: 30ch; text-align: left; margin: 0; }
.hero-full-copy .lead { max-width: 42ch; }

/* ==========================================================================
   Prose section (Quem Somos history block)
   ========================================================================== */
.prose-section { max-width: 760px; margin: 0 auto; text-align: left; }
.prose-section h2 { text-align: center; margin-bottom: 40px; }
.prose-section p { font-size: 1.02rem; }

.stat-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 40px;
  background: var(--white);
}
.stat-band .trust-item { flex: 1 1 220px; }

@media (max-width: 860px) {
  .hero-full { min-height: 0; }
  .hero-full img { object-position: 68% 50%; }
  .hero-full::before {
    background: linear-gradient(180deg,
      var(--sand-200) 0%,
      var(--sand-200) 38%,
      rgba(234, 223, 199, 0.75) 55%,
      rgba(234, 223, 199, 0.15) 100%);
  }
  .hero-full .container { padding: 220px 0 40px; }
  .hero-full-copy { max-width: 100%; }
}

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-figure { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-layout { grid-template-columns: 1fr; }
  .services-nav { position: static; }
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) .service-detail-figure { order: 0; }
  .cta-banner { flex-direction: column; text-align: center; }
}

@media (max-width: 720px) {
  .nav-links, .header-actions .btn-primary { display: none; }
  .nav-toggle { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-top, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-banner { margin: 0 16px; padding: 40px 28px; }
  .section { padding: 64px 0; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ==========================================================================
   Contact page
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.contact-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--sky-100);
  color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.contact-card-icon svg { width: 26px; height: 26px; }
.contact-card h3 { margin-bottom: 6px; font-size: 1.1rem; }
.contact-card .contact-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy-900);
  margin-bottom: 8px;
  word-break: break-word;
}
.contact-card p.contact-desc { font-size: 0.92rem; margin-bottom: 22px; flex-grow: 1; }
.contact-card .btn { align-self: flex-start; }

/* Featured WhatsApp card */
.contact-card.featured {
  grid-column: span 3;
  background: linear-gradient(120deg, var(--blue-500), var(--navy-700));
  border: none;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 40px 48px;
}
.contact-card.featured:hover { transform: none; box-shadow: var(--shadow-soft); }
.contact-card.featured .contact-card-icon {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  width: 60px; height: 60px;
  margin-bottom: 0;
  flex-shrink: 0;
}
.contact-card.featured .contact-card-icon svg { width: 30px; height: 30px; }
.contact-card.featured .featured-copy { flex: 1; }
.contact-card.featured h3 { color: var(--white); font-size: 1.3rem; }
.contact-card.featured .contact-value { color: var(--white); font-size: 1.4rem; }
.contact-card.featured p.contact-desc { color: rgba(255,255,255,0.82); margin-bottom: 0; }
.contact-card.featured .btn-ghost { flex-shrink: 0; }

/* Hours band */
.hours-band {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  overflow: hidden;
}
.hours-row {
  flex: 1 1 260px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 36px;
}
.hours-row + .hours-row { border-left: 1px solid var(--line); }
.hours-row .hours-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--sky-100);
  color: var(--navy-700);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hours-row .hours-icon svg { width: 22px; height: 22px; }
.hours-row .hours-day {
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-bottom: 4px;
}
.hours-row .hours-time {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy-900);
}

@media (max-width: 980px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card.featured { grid-column: span 2; }
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card.featured { grid-column: span 1; flex-direction: column; align-items: flex-start; text-align: left; padding: 32px 28px; }
  .contact-card.featured .btn-ghost { width: 100%; justify-content: center; }
  .hours-row + .hours-row { border-left: none; border-top: 1px solid var(--line); }
}

/* ==========================================================================
   Clients / partners page
   ========================================================================== */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.client-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  aspect-ratio: 5/3.4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: transparent;
}
.client-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s ease;
}
.client-card:hover img { filter: grayscale(0) opacity(1); }

@media (max-width: 980px) {
  .clients-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .client-card { padding: 16px; }
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 84px 0 0 0;
  background: var(--white);
  z-index: 49;
  padding: 32px;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy-900);
}
.mobile-nav .btn { margin-top: 24px; width: 100%; justify-content: center; }
