/* ============================================
   Ace Tutors — Design Tokens
============================================ */
:root {
  --ink: #111111;
  --ink-soft: #55555a;
  --cream: #ffffff;
  --cream-soft: #fafafa;
  --accent: #c9a227;
  --accent-dark: #8a6d18;
  --sage: #55555a;
  --sage-soft: #ececec;
  --accent-soft: #f3e7c4;
  --line: rgba(13, 13, 13, 0.1);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow: 0 24px 50px -28px rgba(13, 13, 13, 0.35);
  --ease: cubic-bezier(0.16, 0.8, 0.24, 1);
  --maxw: 1180px;
}

/* ============================================
   Reset
============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-soft);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

h1, h2, h3 { font-weight: 700; letter-spacing: -0.01em; line-height: 1.12; }

section { position: relative; }

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

/* ============================================
   Eyebrow / shared bits
============================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* ============================================
   Buttons
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), background-color 0.28s var(--ease), color 0.28s var(--ease);
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; transition: transform 0.28s var(--ease); }

.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px -12px rgba(201, 162, 39, 0.55); }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-outline { border: 1.5px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); transform: translateY(-3px); }

.btn-ghost-light { border: 1.5px solid rgba(255, 255, 255, 0.4); color: var(--cream); }
.btn-ghost-light:hover { background: var(--cream); color: var(--ink); transform: translateY(-3px); }

/* ============================================
   Floating WhatsApp button
============================================ */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 200;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(37, 211, 102, 0.65);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.whatsapp-float:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 34px -8px rgba(37, 211, 102, 0.75); }

.whatsapp-float svg { width: 30px; height: 30px; }

@media (max-width: 560px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}

/* ============================================
   Header
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(13, 13, 13, 0.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 4px;
}

.logo img { height: 60px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 40px; }

.nav-links { display: flex; align-items: center; gap: 32px; }

.nav-links a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding-block: 4px;
  transition: color 0.25s var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-links a.is-active { color: var(--ink); }
.nav-links a.is-active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
}

.nav-toggle span {
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 68px;
    right: 0;
    left: 0;
    height: calc(100vh - 68px);
    overflow-y: auto;
    background: var(--cream-soft);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 12px 28px 32px;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  body.nav-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
  }

  .nav-links a { display: block; width: 100%; padding-block: 14px; border-bottom: 1px solid var(--line); }

  .nav-cta { flex-direction: column; align-items: stretch; width: 100%; margin-top: 20px; }
  .nav-cta .btn { width: 100%; justify-content: center; }
}

/* ============================================
   Reveal-on-scroll utility
============================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.in-view { opacity: 1; transform: none; }

/* ============================================
   Hero
============================================ */
.hero { padding-top: 76px; padding-bottom: 96px; overflow: hidden; }

.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.6vw + 1.2rem, 3.6rem);
  margin-top: 18px;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero p.lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-art { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-art img { width: 100%; height: auto; max-width: 380px; }

.card-float {
  animation: float 6s ease-in-out infinite;
}

.card-float.delay {
  animation-delay: -3s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: left; }
  .hero-art { max-width: 200px; margin-inline: auto; }
}

/* ============================================
   Credibility strip
============================================ */
.strip { background: var(--ink); padding-block: 20px; }

.strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 36px;
}

.strip span {
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 36px;
}

.strip span::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 36px;
}

.strip span:last-child::after { display: none; }

/* ============================================
   How we help — editorial rows
============================================ */
.help { padding-block: 108px; }

.help-head { max-width: 620px; margin-bottom: 64px; }

.help-head h2 { font-size: clamp(1.9rem, 2.4vw + 1rem, 2.6rem); margin-top: 16px; }

.help-rows { border-top: 1px solid var(--line); }

.help-row {
  display: grid;
  grid-template-columns: 100px 1fr 1.3fr;
  gap: 32px;
  align-items: start;
  padding-block: 38px;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.4s var(--ease), background 0.4s var(--ease);
}

.help-row:hover { padding-left: 12px; background: rgba(201, 162, 39, 0.06); }

.help-row .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.help-row h3 { font-size: 1.25rem; }

.help-row p { color: var(--ink-soft); max-width: 52ch; }

@media (max-width: 720px) {
  .help-row { grid-template-columns: 44px 1fr; }
  .help-row p { grid-column: 2 / 3; }
}

/* ============================================
   Levels teaser
============================================ */
.levels { padding-block: 108px; background: var(--cream); }

.levels-head { max-width: 620px; margin-bottom: 48px; }

.levels-head h2 { font-size: clamp(1.9rem, 2.4vw + 1rem, 2.6rem); margin-top: 16px; }

.levels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.level-card {
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  border: 1px solid var(--line);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.level-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.level-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.level-card.primary .tag { background: var(--sage-soft); color: var(--sage); }
.level-card.gcse .tag { background: var(--accent-soft); color: var(--accent-dark); }
.level-card.alevel .tag { background: var(--ink); color: var(--cream); }

.level-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.level-card p { color: var(--ink-soft); margin-bottom: 24px; }

.level-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.92rem;
}

.level-link svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.level-card:hover .level-link svg { transform: translateX(4px); }

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

/* ============================================
   Testimonials
============================================ */
.testimonials { padding-block: 108px; }

.testimonials-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 48px;
}

.testimonials-head h2 { font-size: clamp(1.9rem, 2.4vw + 1rem, 2.6rem); margin-top: 16px; max-width: 520px; }

.t-controls { display: flex; gap: 10px; }

.t-controls button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.t-controls button:hover { background: var(--ink); color: var(--cream); }
.t-controls svg { width: 18px; height: 18px; }

.t-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.t-track::-webkit-scrollbar { display: none; }

.t-card {
  scroll-snap-align: start;
  flex: 0 0 min(420px, 86vw);
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--line);
}

.t-card .quote-mark { font-size: 2.6rem; color: var(--accent); line-height: 1; font-weight: 700; margin-bottom: 6px; display: block; }

.t-card p.quote { font-size: 1.02rem; color: var(--ink); margin-bottom: 22px; }

.t-card .who { font-weight: 700; font-size: 0.92rem; }
.t-card .role { color: var(--ink-soft); font-size: 0.85rem; }

/* ============================================
   CTA band
============================================ */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding-block: 90px;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.cta-band h2 { font-size: clamp(1.9rem, 2.6vw + 1rem, 2.8rem); margin-top: 16px; margin-bottom: 16px; }

.cta-band p { color: rgba(255, 255, 255, 0.75); max-width: 50ch; margin-inline: auto; margin-bottom: 36px; }

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

.cta-band .eyebrow { color: var(--accent); }

/* ============================================
   Footer
============================================ */
.site-footer { background: var(--cream); border-top: 1px solid var(--line); padding-top: 72px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 72px;
}

.footer-brand p { color: var(--ink-soft); margin-top: 16px; max-width: 34ch; }

.footer-grid h4 { font-size: 0.95rem; margin-bottom: 18px; }

.footer-grid ul li { margin-bottom: 12px; }

.footer-grid a { color: var(--ink-soft); font-size: 0.94rem; transition: color 0.25s var(--ease); }
.footer-grid a:hover { color: var(--accent-dark); }

.footer-contact a { display: flex; align-items: center; gap: 10px; }

.footer-contact a svg { width: 16px; height: 16px; color: var(--accent-dark); flex-shrink: 0; }

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

/* ============================================
   Page hero (interior pages)
============================================ */
.page-hero { padding-top: 72px; padding-bottom: 64px; }

.page-hero h1 { font-size: clamp(2.2rem, 3.2vw + 1rem, 3.2rem); margin-top: 16px; }

.page-hero p.lead { color: var(--ink-soft); max-width: 56ch; margin-top: 18px; font-size: 1.05rem; }

/* ============================================
   Shared section head (interior pages)
============================================ */
.section-head { max-width: 620px; margin-bottom: 48px; }

.section-head h2 { font-size: clamp(1.9rem, 2.4vw + 1rem, 2.6rem); margin-top: 16px; }

.section-head p { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

/* ============================================
   Services — subject grids
============================================ */
.services-level { padding-block: 84px; }

.services-level.alt { background: var(--cream); }

.subject-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.subject-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.subject-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.services-level.alt .subject-card { background: var(--cream-soft); }

.subject-card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: var(--shadow); }

.subject-card h3 { font-size: 1.05rem; margin-bottom: 8px; }

.subject-card p { color: var(--ink-soft); font-size: 0.92rem; }

@media (max-width: 900px) {
  .subject-grid, .subject-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .subject-grid, .subject-grid.cols-4 { grid-template-columns: 1fr; }
}

/* ============================================
   About — intro (mission / who we are)
============================================ */
.about-intro { padding-block: 100px; }

.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

.intro-grid h3 { font-size: 1.25rem; margin-bottom: 14px; }

.intro-grid p { color: var(--ink-soft); }

@media (max-width: 720px) {
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   About — tutors
============================================ */
.tutors { padding-block: 100px; background: var(--cream); }

.tutors .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.tutors-text p { color: var(--ink-soft); margin-top: 16px; max-width: 48ch; }

.tutor-checklist {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 34px;
}

.tutor-checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-block: 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}

.tutor-checklist li:last-child { border-bottom: none; }

.check-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.check-badge svg { width: 13px; height: 13px; }

@media (max-width: 860px) {
  .tutors .container { grid-template-columns: 1fr; }
}

/* ============================================
   Pricing — plan cards
============================================ */
.pricing { padding-block: 84px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.pricing-card .badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card h3 { font-size: 1.1rem; margin-bottom: 16px; }

.pricing-card .price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px; }

.pricing-card .price .from { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); margin-right: 4px; }

.pricing-card .price .currency { font-size: 1.15rem; font-weight: 700; }

.pricing-card .price .amount { font-size: 2.5rem; font-weight: 800; line-height: 1; }

.pricing-card .price .period { color: var(--ink-soft); font-size: 0.88rem; margin-left: 2px; }

.pricing-card ul { margin-bottom: 28px; flex: 1; }

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.pricing-card li:last-child { border-bottom: none; }

.pricing-card li svg { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }

.pricing-card .btn { width: 100%; justify-content: center; }

.pricing-card.featured {
  background: var(--ink);
  border-color: var(--ink);
}

.pricing-card.featured h3,
.pricing-card.featured .price .amount,
.pricing-card.featured .price .currency { color: var(--cream); }

.pricing-card.featured .price .period { color: rgba(255, 255, 255, 0.65); }

.pricing-card.featured .price .from { color: rgba(255, 255, 255, 0.65); }

.pricing-card.featured li { color: rgba(255, 255, 255, 0.78); border-bottom-color: rgba(255, 255, 255, 0.15); }

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ============================================
   Pricing — FAQ (native details/summary)
============================================ */
.faq { padding-block: 84px; }

.faq-list { max-width: 780px; border-top: 1px solid var(--line); }

.faq-item { border-bottom: 1px solid var(--line); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  font-weight: 700;
  font-size: 1.02rem;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary .icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }

.faq-item summary .icon::before,
.faq-item summary .icon::after {
  content: "";
  position: absolute;
  background: var(--ink);
  transition: transform 0.3s var(--ease);
}

.faq-item summary .icon::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.faq-item summary .icon::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }

.faq-item[open] summary .icon::after { transform: translateX(-50%) scaleY(0); }

.faq-item p { color: var(--ink-soft); padding-bottom: 24px; max-width: 65ch; }

/* ============================================
   Contact & Booking
============================================ */
.contact-section { padding-block: 84px; }

.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.contact-method-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.contact-method-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--accent); }

.contact-method-card .method-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-method-card .method-icon svg { width: 24px; height: 24px; }

.contact-method-card h3 { font-size: 1.1rem; margin-bottom: 8px; }

.contact-method-card p { color: var(--ink-soft); font-size: 0.95rem; word-break: break-word; }

.contact-method-card.whatsapp .method-icon { background: #25d366; color: var(--cream); }

.hours-card { border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 32px; background: var(--cream); }

.hours-card.hours-card-standalone { max-width: 480px; margin-inline: auto; }

.hours-card h4 { font-size: 1.05rem; margin-bottom: 14px; text-align: center; }

.hours-card .row { display: flex; justify-content: space-between; padding-block: 11px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }

.hours-card .row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-card .row:first-of-type { padding-top: 0; }

.hours-card .row span:first-child { font-weight: 700; }
.hours-card .row span:last-child { color: var(--ink-soft); }

@media (max-width: 860px) {
  .contact-methods { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; margin-bottom: 32px; }
}
