/* ============================================================
   Golfschool Het Rijk van Sybrook — Stylesheet
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --green-dark:   #1a3a1a;
  --green-medium: #2d6a2d;
  --green-light:  #4a9640;
  --green-pale:   #e8f0e8;
  --white:        #ffffff;
  --gray-light:   #f6f6f4;
  --gray-mid:     #e2e2de;
  --gray-text:    #6b6b6b;
  --text:         #1c1c1c;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-width: 1100px;
  --radius: 4px;
  --shadow: 0 2px 16px rgba(0,0,0,0.10);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

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

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Layout helpers ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--gray {
  background: var(--gray-light);
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.btn--primary {
  background: var(--green-medium);
  color: var(--white);
  border-color: var(--green-medium);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
}

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

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

.btn--outline-dark {
  background: transparent;
  color: var(--green-medium);
  border-color: var(--green-medium);
}

.btn--outline-dark:hover {
  background: var(--green-medium);
  color: var(--white);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 58, 26, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#site-header.scrolled {
  background: rgba(26, 58, 26, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 110px;
  gap: 1.5rem;
  transition: height 0.4s ease;
}

#site-header.scrolled .header-inner {
  height: 64px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-img {
  height: 56px;
  width: auto;
  transition: height 0.4s ease;
}

#site-header.scrolled .logo-img {
  height: 36px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.3;
  max-width: 220px;
  transition: font-size 0.4s ease;
}

#site-header.scrolled .logo-text {
  font-size: 0.9rem;
}

/* Nav */
#main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 400;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.header-cta {
  margin-left: 0.5rem;
  flex-shrink: 0;
}

/* Dropdown submenu */
.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--green-dark);
  border-radius: 0 0 6px 6px;
  padding: 0.5rem 0;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 110;
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: color var(--transition), background var(--transition);
}

.dropdown-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}

.mobile-nav-cta {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  --parallax-y: 0px;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--green-dark) 0%,
    #1e4a1e 40%,
    #254f25 70%,
    var(--green-medium) 100%
  );
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background-image: url('../img/hero.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: translateY(var(--parallax-y));
  will-change: transform;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 58, 26, 0.4) 0%,
    rgba(26, 58, 26, 0.6) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 7rem 0 4rem;
  max-width: 720px;
  will-change: transform, opacity;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 0.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   PROFESSIONALS SECTION
   ============================================================ */
.professionals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pro-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

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

.pro-card-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  background: var(--gray-mid);
}

.pro-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pro-card-links {
  margin-top: auto;
}

.pro-card-kwalificatie {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-medium);
  margin-bottom: 0.4rem;
}

.pro-card-naam {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.pro-card-titel {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin-bottom: 1rem;
}

.pro-card-bio {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.pro-card-links {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ============================================================
   SECTION HEADER
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-medium);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--gray-text);
}

/* ============================================================
   PROFESSIONAL PAGE
   ============================================================ */
.pro-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 8rem 0 4rem;
}

.pro-hero-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
}

.pro-hero-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.pro-hero-kwalificatie {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.75rem;
}

.pro-hero h1 {
  margin-bottom: 0.5rem;
}

.pro-hero-titel {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1.5rem;
}

.pro-contact {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 2rem;
}

.pro-contact a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.pro-contact a:hover {
  color: var(--white);
}

.pro-bio-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.pro-bio-text {
  flex: 1;
  max-width: 680px;
}

.qr-section {
  text-align: center;
  flex-shrink: 0;
}

.qr-img {
  border-radius: 8px;
  border: 1px solid var(--gray-mid);
}

.qr-section p {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--gray-text);
  max-width: 200px;
}

.pro-bio-section {
  padding: 5rem 0;
}

.pro-bio-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}

/* ============================================================
   TARIEVEN
   ============================================================ */
.tarieven-intro {
  font-size: 1.05rem;
  color: var(--gray-text);
  max-width: 600px;
  margin-bottom: 2rem;
}

.tarieven-section-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--green-medium);
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.tarieven-table-wrap {
  overflow-x: auto;
  border-radius: 6px;
  border: 1px solid var(--gray-mid);
  margin-bottom: 3rem;
}

.tarieven-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.tarieven-table th {
  background: var(--green-dark);
  color: var(--white);
  padding: 0.75rem 0.75rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.tarieven-table thead th .th-sub {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}

.tarieven-table th:not(:first-child) {
  text-align: center;
}

.tarieven-table td {
  padding: 0.75rem 0.75rem;
  border-bottom: 1px solid var(--gray-mid);
  vertical-align: middle;
}

.tarieven-table td {
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.tarieven-table td:first-child {
  text-align: left;
  color: var(--green-dark);
  font-weight: 500;
}

.tarieven-table tbody th[scope="row"] {
  background: var(--gray-light);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text);
  text-align: left;
}

.tarieven-table tr:last-child td {
  border-bottom: none;
}

.tarieven-table tr:hover td {
  background: var(--gray-light);
}

.tarieven-table .cat-header td {
  background: var(--gray-light);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 0.6rem 1.25rem;
}

.tarieven-table .cat-header:hover td {
  background: var(--gray-light);
}

.tarieven-table .dash {
  color: #999;
}

.les-duur {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-left: 0.4rem;
}

.stappenplan-card {
  background: var(--green-pale);
  border: 1px solid #c8dac8;
  border-radius: 6px;
  padding: 2rem 2.5rem;
  margin-top: 3rem;
}

.stappenplan-card h3 {
  margin-bottom: 0.5rem;
}

.stappenplan-card p {
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}

.stappenplan-items {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.stappenplan-item {
  background: var(--white);
  border-radius: 4px;
  padding: 1rem 1.5rem;
  min-width: 200px;
}

.stappenplan-item-naam {
  font-size: 0.85rem;
  color: var(--gray-text);
  margin-bottom: 0.3rem;
}

.stappenplan-item-prijs {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green-dark);
  font-weight: 600;
}

/* ============================================================
   PING FITTING
   ============================================================ */
.ping-intro {
  font-size: 1.1rem;
  color: #333;
  max-width: 680px;
  line-height: 1.8;
}

.ping-stappen {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.ping-stap {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  position: relative;
}

.ping-stap-nummer {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gray-mid);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 1rem;
}

.ping-stap h3 {
  margin-bottom: 0.75rem;
  color: var(--green-dark);
}

.ping-stap p {
  font-size: 0.95rem;
  color: var(--gray-text);
}

.ping-contact-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: 6px;
  padding: 2.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.ping-contact-card h3 {
  margin-bottom: 0.25rem;
}

.ping-contact-card .subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.ping-contact-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.ping-contact-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.ping-contact-links a:hover {
  color: var(--white);
}

.ping-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.ping-hero-logo {
  height: 60px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  flex-shrink: 0;
}

/* ============================================================
   PAGE HERO (interior pages)
   ============================================================ */
.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 7rem 0 3.5rem;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 560px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--green-pale);
  border-top: 1px solid #c8dac8;
  border-bottom: 1px solid #c8dac8;
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--gray-text);
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-contact a:hover {
  color: var(--white);
}

.footer-bottom {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--white);
  border-radius: 8px;
  max-width: 660px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  transform: translateY(16px);
  transition: transform 0.2s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray-text);
  line-height: 1;
  padding: 0.25rem;
  transition: color var(--transition);
}

.modal-close:hover {
  color: var(--text);
}

.modal h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.modal-sub {
  color: var(--gray-text);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.modal-pros {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-pro {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid var(--gray-mid);
  border-radius: 6px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.modal-pro:hover {
  border-color: var(--green-medium);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.modal-pro-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  background: var(--gray-mid);
}

.modal-pro-naam {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.15rem;
}

.modal-pro-kwalificatie {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-bottom: 0.6rem;
}

.modal-pro-boek {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-medium);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition);
}

.modal-pro-boek:hover {
  color: var(--green-dark);
}

.modal-pro-boek::after {
  content: '→';
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .professionals-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ping-stappen {
    grid-template-columns: 1fr;
  }

  .pro-hero-inner {
    grid-template-columns: 220px 1fr;
    gap: 2rem;
  }
}

@media (max-width: 760px) {
  .tarieven-table thead {
    display: none;
  }

  .tarieven-table td.dash {
    display: none !important;
  }

  .tarieven-table-wrap {
    overflow-x: visible;
  }

  .tarieven-table,
  .tarieven-table tbody,
  .tarieven-table tr {
    display: block;
  }

  .tarieven-table tr {
    padding: 14px 16px;
    border-radius: 8px;
    transition: background 0.15s ease;
  }

  .tarieven-table tr:hover {
    background: var(--gray-light);
  }

  .tarieven-table tr:hover td {
    background: transparent;
  }

  .tarieven-table tr:last-child {
    border-bottom: none;
  }

  .tarieven-table td {
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: flex-start;
    text-align: left;
    border-bottom: none;
    padding: 6px 0;
    font-size: 0.9rem;
  }

  /* Titel per kaart (eerste cel = personen-label) */
  .tarieven-table td:first-child {
    font-weight: 700;
    padding-bottom: 8px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--gray-mid);
  }

  /* Label links via data-label */
  .tarieven-table td::before {
    content: attr(data-label);
    font-size: 0.9rem;
    color: var(--gray-text);
  }

  .tarieven-table td:first-child::before {
    display: none;
  }

  .tarieven-table td .val {
    margin-left: auto;
    white-space: nowrap;
    text-align: right;
  }
}

@media (max-width: 680px) {
  .pro-bio-layout {
    flex-direction: column;
  }

  .qr-section {
    align-self: center;
  }
  .section { padding: 3.5rem 0; }

  .professionals-grid {
    grid-template-columns: 1fr;
  }

  #main-nav,
  .header-cta {
    display: none;
  }

  #main-nav.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--green-dark);
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 0.25rem;
  }

  #main-nav.open .nav-link {
    text-align: left;
    border-radius: 0;
    padding: 0.5rem 0;
  }

  #main-nav.open .nav-link.active {
    background: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
  }

  #main-nav.open .mobile-nav-cta {
    display: inline-block;
    margin-top: 0.75rem;
    text-align: center;
    align-self: flex-start;
  }

  .dropdown-menu {
    display: block;
    position: static;
    background: none;
    box-shadow: none;
    padding: 0.25rem 0 0.25rem 1rem;
    min-width: 0;
  }

  .dropdown-link {
    padding: 0.35rem 0;
    font-size: 0.85rem;
    text-align: left;
  }

  #main-nav.open + .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .pro-hero-inner {
    grid-template-columns: 1fr;
  }

  .pro-hero-img {
    max-width: 240px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .ping-contact-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
