/* ==========================================================================
   Page Components: hero, cards, grids, timeline, team, modals, contact, FAQ
   ========================================================================== */

/* --- Hero (shared shape, used on Home + inner-page banners) --- */
.hero {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding: 12px 0 8px;
}

@media (min-width: 992px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }
}

.hero-text h1 {
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  color: var(--bg-dark-grey);
  margin-bottom: 18px;
}

.hero-text h1 span {
  color: var(--logo-purple);
}

.hero-text p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: #475569;
  margin-bottom: 26px;
  line-height: 1.6;
  max-width: 60ch;
}

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

.hero-visual {
  background: linear-gradient(135deg, var(--logo-purple) 0%, var(--bg-dark-grey) 100%);
  min-height: 260px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 30px;
}

@media (min-width: 992px) {
  .hero-visual {
    min-height: 400px;
    flex: 0 0 38%;
  }
  .hero-text {
    flex: 1;
  }
}

.hero-display-logo {
  max-width: 220px;
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.95);
  padding: 18px;
  border-radius: 12px;
}

.hero-visual h2 {
  font-size: 1.35rem;
}

.hero-visual p {
  margin-top: 8px;
  color: #E9E3F2;
}

/* --- Home hero: tighter top gap on mobile/tablet.
   Unlike the image-filled .page-banner on inner pages, this is the only
   section sitting directly under the fixed header with no photo to fill
   the space, so the generic .page top padding reads as dead empty space
   on short mobile viewports — pull it in until desktop has room to spare. --- */
.home-hero {
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .home-hero { padding-top: 40px; }
}

@media (min-width: 992px) {
  .home-hero { padding-top: 60px; }
}

/* --- Inner-page banner (About / Services / Our Team / Contact) ---
   Full-bleed background photo with a dark overlay, centered white text,
   and a breadcrumb — the section itself carries the background-image
   inline per page so each page can use its own photo. --- */
.page-banner {
  position: relative;
  padding: 90px 20px 60px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--bg-dark-grey);
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(35, 39, 51, 0.68) 0%, rgba(35, 39, 51, 0.85) 100%);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner .section-eyebrow {
  color: #E9DCF3;
}

.page-banner h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 5vw, 2.75rem);
  margin: 8px 0 16px;
}

.page-banner h1 span {
  color: var(--accent-coral);
}

.page-banner .section-subtitle {
  color: #E2E8F0;
  max-width: 620px;
}

.page-banner .hero-actions {
  justify-content: center;
  margin-top: 24px;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-size: 14px;
  font-weight: 600;
}

.breadcrumb a {
  color: var(--white);
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--accent-coral);
}

.breadcrumb .crumb-sep {
  color: var(--accent-coral);
}

.breadcrumb .crumb-current {
  color: var(--accent-coral);
}

/* --- Vision & Mission --- */
.vm-grid {
  display: grid;
  gap: 22px;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .vm-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

.vm-card {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--logo-purple);
}

@media (min-width: 768px) {
  .vm-card { padding: 35px; }
}

.vm-card h3 {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
  color: var(--bg-dark-grey);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vm-card p {
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 15px;
}

/* --- About: story + values --- */
.grid-2 {
  display: grid;
  gap: 34px;
  align-items: center;
}

@media (min-width: 992px) {
  .grid-2 {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
  }
}

.about-content p {
  font-size: 16px;
  line-height: 1.75;
  color: #475569;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

@media (min-width: 576px) {
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1200px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}

.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--accent-coral);
}

.value-card h4 {
  font-size: 16px;
  color: var(--bg-dark-grey);
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Timeline (Milestones) --- */
.timeline {
  margin-top: 20px;
  display: grid;
  gap: 20px;
}

@media (min-width: 768px) {
  .timeline { grid-template-columns: repeat(3, 1fr); }
}

.timeline-item {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  border-top: 4px solid var(--logo-purple);
  position: relative;
}

.timeline-tag {
  background-color: var(--logo-purple);
  color: var(--white);
  padding: 6px 14px;
  font-size: 13.5px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
  border-radius: 4px;
}

.timeline-item p {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.6;
}

/* --- Achievements / Footprint --- */
.footprint-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
  border-top: 5px solid var(--logo-purple);
  margin-top: 24px;
}

@media (min-width: 768px) {
  .footprint-card { padding: 40px; }
}

.footprint-card h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  color: var(--bg-dark-grey);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.footprint-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 576px) {
  .footprint-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .footprint-grid { grid-template-columns: repeat(4, 1fr); }
}

.footprint-item {
  background: var(--bg-light-grey);
  border: 1px solid var(--border);
  padding: 14px 10px;
  text-align: center;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13.5px;
  color: #475569;
  transition: all 0.3s ease;
}

.footprint-card:hover .footprint-item,
.footprint-card:focus-within .footprint-item {
  background: var(--logo-purple-tint);
  border-color: #D6CDE6;
  color: var(--logo-purple);
}

/* --- Services grid --- */
.grid-services {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .grid-services { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .grid-services { grid-template-columns: repeat(3, 1fr); }
}

.card {
  background-color: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border-top: 4px solid var(--accent-coral);
  display: flex;
  flex-direction: column;
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
  border-top-color: var(--logo-purple);
}

.card-icon {
  font-size: 26px;
  margin-bottom: 15px;
  color: var(--logo-purple);
  background: var(--logo-purple-tint);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.card h3 {
  font-size: 18.5px;
  margin-bottom: 12px;
  color: var(--bg-dark-grey);
  font-weight: 700;
}

.card p {
  color: var(--text-muted);
  line-height: 1.55;
  font-size: 14.5px;
}

/* --- Why choose --- */
.grid-why {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-why { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .grid-why { grid-template-columns: repeat(3, 1fr); }
}

.why-card {
  background-color: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  border-left: 4px solid var(--accent-coral);
}

.why-card:hover,
.why-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.05);
  border-left-color: var(--logo-purple);
}

.why-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.why-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  background: #FFF0F1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 17.5px;
  color: var(--bg-dark-grey);
  font-weight: 700;
}

.why-card p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 14.5px;
}

/* --- Working process --- */
.process-grid {
  display: grid;
  gap: 22px;
  margin-top: 24px;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1200px) {
  .process-grid { grid-template-columns: repeat(4, 1fr); }
}

.process-step {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.process-step .step-number {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-coral);
  margin-bottom: 10px;
  display: block;
}

.process-step h4 {
  font-size: 16.5px;
  color: var(--bg-dark-grey);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* --- Commitment banner --- */
.commitment-banner {
  background: linear-gradient(135deg, var(--bg-dark-grey) 0%, #334155 100%);
  color: white;
  padding: 30px 24px;
  border-radius: var(--radius-lg);
  margin-top: 24px;
}

@media (min-width: 768px) {
  .commitment-banner { padding: 40px; }
}

.commitment-banner > h3 {
  font-size: 1.15rem;
}

.commit-grid {
  display: grid;
  gap: 20px;
  margin-top: 26px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .commit-grid { grid-template-columns: repeat(2, 1fr); }
}

.commit-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 22px;
  border-radius: var(--radius-md);
  border-left: 3px solid var(--accent-coral);
  transition: background 0.3s ease;
}

.commit-item:hover {
  background: rgba(255, 255, 255, 0.06);
}

.commit-item h4 {
  color: var(--accent-coral);
  font-size: 17px;
  margin-bottom: 10px;
}

.commit-item p {
  font-size: 14px;
  opacity: 0.9;
  line-height: 1.6;
}

/* --- FAQ accordion --- */
.faq-list {
  max-width: 820px;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 20px;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--bg-dark-grey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.faq-question .faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--logo-purple);
  stroke-width: 2.4;
  transition: transform 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.is-open .faq-answer {
  max-height: 240px;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* --- Team grid --- */
.team-grid {
  display: grid;
  gap: 22px;
  margin-top: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}

.team-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.team-card:hover,
.team-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(104, 74, 144, 0.12);
  border-color: var(--logo-purple);
}

.team-card-trigger {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

.team-photo-box {
  width: 100%;
  height: 220px;
  background-color: var(--bg-light-grey);
  overflow: hidden;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-overlay-banner {
  background-color: #121212;
  color: var(--white);
  padding: 15px;
  text-align: center;
  border-top: 2px solid var(--logo-purple);
}

.team-overlay-banner .team-name {
  display: block;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}

.team-overlay-banner .team-role {
  display: block;
  font-size: 13px;
  color: #94A3B8;
  font-weight: 500;
}

.team-click-hint {
  text-align: center;
  padding: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--logo-purple);
  background-color: var(--logo-purple-tint);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--border);
}

/* --- Bio modal --- */
.bio-modal-overlay {
  z-index: 10005;
}

.bio-modal-card {
  background-color: var(--white);
  width: 100%;
  max-width: 480px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .bio-modal-card {
  transform: scale(1);
}

.bio-img-container {
  width: 100%;
  height: 240px;
  position: relative;
  background-color: var(--bg-light-grey);
}

@media (min-width: 576px) {
  .bio-img-container { height: 280px; }
}

.bio-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bio-dark-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.5) 75%, transparent 100%);
  padding: 25px 20px 15px;
  color: var(--white);
}

.bio-dark-overlay h3 {
  font-size: 21px;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}

.bio-dark-overlay p {
  font-size: 13px;
  color: #CBD5E1;
  font-weight: 500;
}

.bio-body {
  padding: 22px;
}

.bio-text-para {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 20px;
}

.bio-footer {
  border-top: 1px solid #F1F5F9;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bio-linkedin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--linkedin-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.bio-linkedin-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Appointment modal --- */
.appointment-modal-container {
  background-color: var(--white);
  width: 100%;
  max-width: 950px;
  border-radius: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
}

@media (min-width: 850px) {
  .appointment-modal-container {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

.modal-overlay.open .appointment-modal-container {
  transform: scale(1);
}

.modal-left {
  display: none;
  background: linear-gradient(135deg, var(--bg-dark-grey) 0%, var(--logo-purple) 100%);
  padding: 45px;
  color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

@media (min-width: 850px) {
  .modal-left { display: flex; }
}

.modal-brand-tag {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-coral);
  margin-bottom: 20px;
}

.modal-left-content h2 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 15px;
}

.modal-left-content p {
  font-size: 15px;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 30px;
}

.premium-visual-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  margin-top: auto;
}

.visual-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.visual-row:last-child {
  margin-bottom: 0;
}

.visual-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(104, 74, 144, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-coral);
  flex-shrink: 0;
}

.visual-icon-box svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.visual-row-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: #F8FAFC;
}

.visual-row-text p {
  font-size: 12px;
  color: #94A3B8;
  margin: 0;
  line-height: 1.4;
}

.modal-right {
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 576px) {
  .modal-right { padding: 45px; }
}

.modal-right h3 {
  font-size: 22px;
  color: var(--bg-dark-grey);
  margin-bottom: 8px;
}

.modal-right .sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 25px;
}

.modal-submit-btn {
  background-color: var(--logo-purple);
  color: var(--white);
  border: none;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(104, 74, 144, 0.15);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modal-submit-btn:hover,
.modal-submit-btn:focus-visible {
  background-color: var(--logo-purple-dark);
  box-shadow: 0 6px 18px rgba(104, 74, 144, 0.25);
  transform: translateY(-1px);
}

.modal-submit-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* --- Contact page --- */
.contact-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .contact-layout {
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
  }
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--logo-purple);
}

@media (min-width: 576px) {
  .contact-box { padding: 40px; }
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid #F1F5F9;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--logo-purple-tint);
  color: var(--logo-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.contact-info-item h4 {
  font-size: 12.5px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  font-weight: 700;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-dark);
}

.contact-info-item a:hover,
.contact-info-item a:focus-visible {
  color: var(--logo-purple);
}

.contact-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.contact-social-row .social-icon {
  position: static;
  border-radius: 8px;
  transform: none;
}

.contact-social-row .social-icon:hover,
.contact-social-row .social-icon:focus-visible {
  width: 50px;
  transform: translateY(-3px);
}

.contact-form-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

@media (min-width: 576px) {
  .contact-form-card { padding: 40px; }
}

.contact-form-card h3 {
  font-size: 20px;
  color: var(--bg-dark-grey);
  margin-bottom: 6px;
}

.contact-form-card .sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  gap: 0 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 576px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.map-placeholder {
  margin-top: 24px;
  border-radius: var(--radius-md);
  border: 1.5px dashed var(--border);
  background: var(--bg-light-grey);
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  gap: 8px;
}

.map-placeholder svg {
  width: 32px;
  height: 32px;
  stroke: var(--logo-purple);
  fill: none;
  stroke-width: 1.6;
}

.map-placeholder strong {
  color: var(--bg-dark-grey);
  font-size: 15px;
}

.hours-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14.5px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row span:first-child {
  color: var(--text-muted);
}

.hours-row span:last-child {
  font-weight: 600;
  color: var(--text-dark);
}

/* --- 404 page --- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}

.error-code {
  font-size: clamp(4rem, 14vw, 7rem);
  font-weight: 800;
  color: var(--logo-purple);
  line-height: 1;
}

.error-page h1 {
  font-size: clamp(1.3rem, 4vw, 1.75rem);
  margin: 12px 0 14px;
  color: var(--bg-dark-grey);
}

.error-page p {
  color: var(--text-muted);
  max-width: 50ch;
  margin: 0 auto 26px;
}
