/* ============================================
   ESSENTIAL WEBSITE TEMPLATE — Main Styles
   Mobile-first, modular. Customize via :root below.
   ============================================ */

/* --------------------------------------------
   BRAND & THEME (customize for each client)
   Change these to rebrand the entire template.
   -------------------------------------------- */
:root {
  /* Primary brand — main text, footer bg, dark UI (from logo mark + business card's deep slate teal) */
  --color-primary: #14282b;
  /* Background and light surfaces — soft sage tint instead of stark white */
  --color-secondary: #f6faf8;
  /* Accent — CTAs, links, highlights (business card's blue-teal) */
  --color-accent: #2e6b72;
  /* Accent hover (optional; falls back to accent if omitted) */
  --color-accent-hover: #234f54;
  /* Muted text — descriptions, captions */
  --color-text-muted: #4d625f;
  /* Borders and dividers */
  --color-border: #cde2db;
  /* Alternate section background (subtle) */
  --color-bg-alt: #e6f1ea;
  /* Footer border/social (on dark) */
  --color-footer-border: rgba(255, 255, 255, 0.1);
  --color-footer-social-border: rgba(255, 255, 255, 0.3);
  /* Accent with opacity (cards, icons). If you change --color-accent, update these to same hue. */
  --color-accent-subtle: rgba(46, 107, 114, 0.1);
  --color-accent-shadow: rgba(46, 107, 114, 0.08);
  /* Brand gradient — from the business card's misty sky-to-mountain teal wash */
  --gradient-brand: linear-gradient(135deg, #f4faf7 0%, #d7ebe1 26%, #a9d2c3 55%, #6fa89b 80%, #3f6f6a 100%);

  /* Typography — matches the business card: serif wordmark + rounded sans body */
  --font-main: 'Poppins', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Motion */
  --ease: 0.2s ease;
}

/* --------------------------------------------
   SPACING SYSTEM (consistent scale)
   Use these vars instead of arbitrary rem/px.
   Scale: 4px base → 4,8,12,16,24,32,48,64,80
   -------------------------------------------- */
:root {
  --space-2xs: 0.25rem;   /* 4px */
  --space-xs: 0.5rem;     /* 8px */
  --space-sm: 0.75rem;    /* 12px */
  --space-md: 1rem;       /* 16px */
  --space-lg: 1.5rem;     /* 24px */
  --space-xl: 2rem;       /* 32px */
  --space-2xl: 3rem;      /* 48px */
  --space-3xl: 4rem;      /* 64px */
  --space-4xl: 5rem;      /* 80px */

  /* Section vertical padding — responsive */
  --space-section: clamp(var(--space-2xl), 8vw, var(--space-4xl));
  /* Container horizontal padding */
  --space-container: clamp(var(--space-md), 4vw, var(--space-xl));
}

/* --------------------------------------------
   LAYOUT CONSTANTS
   -------------------------------------------- */
:root {
  --container-max: 1200px;
  --nav-height: 72px;
  --radius-sm: 6px;
  --radius-md: 8px;
}

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--color-primary);
  background-color: var(--color-secondary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), opacity var(--ease);
}

ul {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 600;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

/* ============================================
   LAYOUT — Container & Sections
   All section spacing uses --space-section for consistency.
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-container);
}

.section {
  padding-block: var(--space-section);
}

/* Alternate background for visual separation */
.section--alt {
  background-color: var(--color-bg-alt);
}

/* Utility: extra top margin for in-section CTAs (e.g. "View All Services") */
.section__cta-wrap {
  text-align: center;
  margin-top: var(--space-xl);
}

/* ============================================
   NAVIGATION — Sticky, logo left / links right
   Mobile: hamburger toggles .nav__mobile
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
  height: var(--nav-height);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-container);
}

/* CUSTOMIZE: Replace text with <img> or keep wordmark */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
  white-space: nowrap;
}

.nav__logo img {
  height: 40px;
  width: auto;
}

.nav__logo:hover {
  color: var(--color-accent);
}

.nav__links {
  display: none;
}

@media (min-width: 1024px) {
  .nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: nowrap;
  }
}

.nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav__link:hover {
  color: var(--color-accent);
}

.nav__cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav__cta {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-accent);
    color: var(--color-secondary) !important;
    border-radius: var(--radius-sm);
    font-weight: 500;
  }

  .nav__cta:hover {
    opacity: 0.9;
    color: var(--color-secondary) !important;
  }
}

/* Hamburger — shown until there's room for the full nav; toggled by script.js */
.nav__toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

@media (min-width: 1024px) {
  .nav__toggle {
    display: none;
  }
}

.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--ease);
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu panel */
.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background-color: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform var(--ease), opacity var(--ease), visibility var(--ease);
}

.nav__mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1024px) {
  .nav__mobile {
    display: none;
  }
}

.nav__mobile .nav__link {
  display: block;
  padding: var(--space-xs) 0;
  font-size: 1rem;
}

/* ============================================
   BUTTONS — .btn, .btn--primary, .btn--secondary
   ============================================ */

.btn {
  display: inline-block;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 500;
  text-align: center;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: opacity var(--ease), transform var(--ease);
}

.btn:hover {
  opacity: 0.9;
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.btn--secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

/* ============================================
   HERO (home page)
   CUSTOMIZE: Headline and subheadline in HTML.
   ============================================ */

.hero {
  position: relative;
  padding-top: clamp(var(--space-xl), 6vw, var(--space-3xl));
  padding-bottom: 0;
  text-align: center;
  overflow: hidden;
}

/* Full-bleed sky + sun behind the hero content */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero .hero__subtitle {
  color: #2f4a46;
}

/* Ascending ridgelines — echoes the business card's misty mountain scene;
   nearest ridge color matches --color-bg-alt so it flows into the next section */
.hero__illustration {
  position: relative;
  z-index: 1;
  margin-top: clamp(var(--space-md), 3vw, var(--space-xl));
  line-height: 0;
}

.hero__illustration svg {
  display: block;
  width: 100%;
  height: clamp(90px, 10vw, 140px);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-inline: auto;
}

/* Brand tagline — from business card: "There's always another level | There's always an Ascension" */
.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  flex-wrap: wrap;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.eyebrow__divider {
  color: var(--color-border);
}

.hero__title {
  margin-bottom: var(--space-md);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
}

/* ============================================
   SECTION HEADERS — Centered title + subtitle
   Reused across Services, About, Testimonials, etc.
   ============================================ */

.section-header {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: clamp(var(--space-xl), 5vw, var(--space-2xl));
}

.section-header__title {
  margin-bottom: var(--space-sm);
}

.section-header__subtitle {
  color: var(--color-text-muted);
  font-size: 1rem;
}

/* ============================================
   SERVICE CARDS — Grid of cards
   CUSTOMIZE: Copy .service-card blocks in HTML; add icons to assets/icons.
   ============================================ */

.services-grid {
  display: grid;
  gap: var(--space-lg);
  grid-template-columns: 1fr;
}

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

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
  }
}

/* Modifier: exactly two services — stay two columns at every width, capped and centered
   instead of stretching to a four-column grid with two empty slots. */
.services-grid--2 {
  max-width: 780px;
  margin-inline: auto;
}

@media (min-width: 992px) {
  .services-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

/* Modifier: exactly three items — stay three columns, capped and centered. */
.services-grid--3 {
  max-width: 1040px;
  margin-inline: auto;
}

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

@media (min-width: 992px) {
  .services-grid--3 {
    gap: var(--space-xl);
  }
}

.service-card {
  padding: var(--space-lg);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.service-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px var(--color-accent-shadow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  background-color: var(--color-accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.service-card__title {
  margin-bottom: var(--space-xs);
}

.service-card__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ============================================
   ABOUT — Two-column (image + text)
   CUSTOMIZE: Image path and body copy in HTML.
   ============================================ */

.about-two-col {
  display: grid;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .about-two-col {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.about-two-col__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--color-border);
}

.about-two-col__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-two-col__text .section-header {
  text-align: left;
  margin-inline: 0;
  margin-bottom: var(--space-md);
}

.about-two-col__body {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

/* ============================================
   MISSION / VISION — Two-column cards
   ============================================ */

.mission-grid {
  display: grid;
  gap: var(--space-xl);
}

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

.mission-card {
  padding: var(--space-xl);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
}

.mission-card__title {
  margin-bottom: var(--space-sm);
  color: var(--color-accent);
}

.mission-card__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ============================================
   PROCESS STEPS — Numbered step list (New Clients page)
   ============================================ */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 760px;
  margin-inline: auto;
}

.process-step {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
}

.process-step__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
}

.process-step__title {
  margin-bottom: var(--space-2xs);
}

.process-step__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ============================================
   FAQ — Simple question/answer list
   ============================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item__question {
  margin-bottom: var(--space-xs);
}

.faq-item__answer {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ============================================
   POLICY CONTENT — Privacy Policy page
   ============================================ */

.policy-section {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: var(--space-2xl);
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section__title {
  margin-bottom: var(--space-md);
  color: var(--color-accent);
}

.policy-section__intro {
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.policy-block {
  margin-bottom: var(--space-lg);
}

.policy-block:last-child {
  margin-bottom: 0;
}

.policy-block__title {
  font-weight: 600;
  margin-bottom: var(--space-2xs);
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xs);
  margin-top: var(--space-2xs);
}

.policy-list li {
  position: relative;
  padding-left: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--color-accent);
}

/* ============================================
   TEAM — Grid of team cards
   CUSTOMIZE: Add/remove .team-card; set image + name/role.
   ============================================ */

.team-grid {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

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

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

.team-card {
  text-align: center;
}

.team-card__image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: var(--space-md);
  background-color: var(--color-border);
}

.team-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  margin-bottom: var(--space-2xs);
}

.team-card__role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

/* ============================================
   CTA BANNER — Full-width dark strip + CTA
   Uses --color-primary for background.
   ============================================ */

.cta-banner {
  text-align: center;
  padding: var(--space-section);
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.cta-banner__title {
  margin-bottom: var(--space-sm);
  color: var(--color-secondary);
}

.cta-banner__text {
  margin-bottom: var(--space-lg);
  opacity: 0.9;
  max-width: 480px;
  margin-inline: auto;
}

.cta-banner .btn--primary {
  background-color: var(--color-accent);
  color: var(--color-secondary);
}

.cta-banner .btn--primary:hover {
  background-color: var(--color-accent-hover);
}

/* ============================================
   FOOTER — Contact info + social
   CUSTOMIZE: Address, email, phone, social URLs in HTML.
   ============================================ */

.footer {
  padding-block: var(--space-section);
  background-color: var(--color-primary);
  color: var(--color-secondary);
}

.footer__inner {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 1.2fr 1fr 1fr;
    align-items: start;
  }
}

.footer__brand .nav__logo {
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.footer__brand .nav__logo:hover {
  color: var(--color-accent);
}

.footer__tagline {
  font-size: 0.875rem;
  font-style: italic;
  opacity: 0.85;
  margin-bottom: var(--space-sm);
}

.footer__contact {
  font-size: 0.9375rem;
  opacity: 0.9;
  line-height: 1.8;
}

.footer__contact a:hover {
  color: var(--color-accent);
}

.footer__heading {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer__links a {
  font-size: 0.9375rem;
  opacity: 0.9;
}

.footer__links a:hover {
  color: var(--color-accent);
  opacity: 1;
}

.footer__social {
  display: flex;
  gap: var(--space-md);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-footer-social-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--ease), background-color var(--ease);
}

.footer__social a:hover {
  border-color: var(--color-accent);
  background-color: var(--color-accent-subtle);
}

.footer__bottom {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--color-footer-border);
  font-size: 0.875rem;
  opacity: 0.7;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom {
    text-align: left;
    grid-column: 1 / -1;
  }
}

/* ============================================
   PAGE HERO — Inner pages (About, Services, Contact)
   Thin banner with title + subtitle.
   ============================================ */

.page-hero {
  padding-block: clamp(var(--space-2xl), 6vw, var(--space-3xl));
  text-align: center;
  background: var(--gradient-brand);
  border-bottom: 1px solid var(--color-border);
}

.page-hero .eyebrow {
  margin-bottom: var(--space-sm);
}

.page-hero__title {
  margin-bottom: var(--space-xs);
}

.page-hero__subtitle {
  color: #2f4a46;
  font-size: 1rem;
}

/* ============================================
   PRICING (optional) — Services page
   Remove section from HTML if not used.
   ============================================ */

.pricing-grid {
  display: grid;
  gap: var(--space-lg);
}

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

.pricing-card {
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.pricing-card:hover {
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px var(--color-accent-shadow);
}

.pricing-card__name {
  margin-bottom: var(--space-xs);
}

.pricing-card__price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--space-md);
}

.pricing-card__price span {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.pricing-card__features {
  text-align: left;
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.pricing-card__features li {
  padding: var(--space-2xs) 0;
  padding-left: var(--space-lg);
  position: relative;
}

.pricing-card__features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* ============================================
   CONTACT PAGE — Form + business info
   Form: replace action when adding backend.
   ============================================ */

.contact-grid {
  display: grid;
  gap: var(--space-xl);
}

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

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-form__section-title {
  position: relative;
  align-self: flex-start;
  padding-bottom: var(--space-sm);
}

.contact-form__section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, var(--color-accent) 0%, transparent 100%);
}

.contact-form label {
  display: block;
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: var(--space-2xs);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-primary);
  background-color: var(--color-secondary);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease);
}

.contact-form select {
  cursor: pointer;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__row {
  display: grid;
  gap: var(--space-sm);
}

@media (min-width: 480px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info__block {
  margin-bottom: var(--space-lg);
}

.contact-info__title {
  margin-bottom: var(--space-xs);
  font-size: 1rem;
}

.contact-info__text {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact-info__text a:hover {
  color: var(--color-accent);
}

/* ============================================
   UTILITIES
   ============================================ */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
