:root {
  --va-accent: #81e791;
  --va-green: #5fcf96;
  --va-top-header: #282828;
  --va-footer: #2b2b2b;
  --va-hero-bg: #e8e5e1;
  --va-text: #333333;
  --va-muted: #666666;
  --va-border: #e2e2e2;
  --va-white: #ffffff;
  --font-display: "Playfair Display", Georgia, serif;
  --font-heading: "Marcellus", Georgia, "Times New Roman", serif;
  --font-body: "Open Sans", system-ui, sans-serif;
  --font-hero-body: "Marcellus", Georgia, "Times New Roman", serif;
  --font-ui: "Montserrat", "Open Sans", sans-serif;
  --container: 1150px;
  --header-height: 70px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--va-text);
  line-height: 1.7em;
  background: var(--va-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--va-text);
}

a:hover {
  color: var(--va-green);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2em;
  color: var(--va-text);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

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

/* Top bar */
.top-header {
  background: var(--va-top-header);
  color: #bbb;
  font-size: 12px;
}

.top-header-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-height: 30px;
}

.top-header-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.top-header a {
  color: #bbb;
  text-decoration: none;
}

.top-header a:hover {
  color: var(--va-accent);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--va-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.6);
  transition: color 0.2s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--va-accent);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--va-text);
}

/* Hero */
.hero-section {
  background: rgba(232, 229, 225, 0.99);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: visible;
}

.hero-section .container.hero-grid {
  width: min(1280px, calc(100% - 48px));
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--hero-gap, 2.5rem);
}

.hero-copy {
  flex: 0 1 var(--hero-copy-max-width, 560px);
  max-width: var(--hero-copy-max-width, 560px);
  padding-top: 0;
  padding-left: 8px;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--hero-eyebrow-size, 32px);
  font-weight: 400;
  line-height: 1.2em;
  color: #2f2f2f;
  margin: 0 0 16px;
}

.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: var(--hero-title-size, 70px);
  font-weight: 400;
  line-height: 0.85em;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
  padding-bottom: 0.06em;
  color: #333;
  white-space: normal;
  overflow: visible;
}

.hero-copy p {
  font-family: var(--font-hero-body);
  font-size: 16px;
  line-height: 1.7em;
  color: #333;
  max-width: 100%;
  margin-bottom: 1em;
}

.hero-lead-list {
  margin: 0 0 1.5em;
  padding-left: 1.25rem;
  font-family: var(--font-hero-body);
  font-size: 16px;
  line-height: 1.7em;
  color: #333;
}

.hero-lead-list li + li {
  margin-top: 0.75rem;
}

.hero-visual {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  max-width: var(--hero-image-max-width, 580px);
  width: auto;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 0;
}

.hero-banner-wrap {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}

.hero-portrait-wrap,
.hero-session-wrap {
  border-radius: 240px;
  overflow: hidden;
  border: 12px solid #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.hero-portrait-wrap {
  width: 100%;
  max-width: var(--hero-image-max-width, 520px);
  margin-inline: auto;
  flex-shrink: 0;
}

.hero-portrait {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}

.hero-session-wrap {
  position: absolute;
  left: 0;
  bottom: 8%;
  width: 48%;
  max-width: 260px;
}

.hero-session {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
}

.page-home .hero-section .btn-primary {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 0;
  padding: 15px 0.5em 15px var(--hero-button-padding-left, 136px);
  color: #402d11;
  background-color: transparent;
  background-image: url("/images/hero-booking-arrow.svg");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 126px 48px;
  border: 0;
  box-shadow: none;
}

.page-home .hero-section .btn-primary:hover {
  color: #402d11;
  background-color: transparent;
  background-image: url("/images/hero-booking-arrow.svg");
  opacity: 0.85;
}

/* Sections */
.section {
  padding: 60px 0;
}

.section-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
  font-weight: 700;
  color: var(--va-muted);
  margin: 0 0 0.5rem;
}

.center-label {
  text-align: center;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--va-accent);
  margin: 1rem 0 1.5rem;
}

.services-layout .section-divider {
  margin-inline: auto;
}

/* About */
.about-section {
  background: var(--va-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-section h2,
.about-section h3,
.about-section h4,
.services-section h2,
.services-section h3,
.services-section h4 {
  font-family: var(--font-heading);
}

.about-section p,
.services-intro-col p,
.split-row p {
  font-family: var(--font-hero-body);
  font-size: 16px;
}

.about-subtitle {
  margin: 0.5rem 0 0;
  font-weight: 400;
  font-family: var(--font-heading);
}

.about-subtitle {
  margin-top: 0.5rem;
}

.consultation-heading {
  margin-top: 2rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 20px;
  margin: 1rem 0 1.5rem;
}

.contact-links span {
  margin-bottom: 15px;
}

.contact-links a {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-size: 16px;
  color: var(--va-text);
}

.contact-links a i {
  font-size: 20px;
}

.contact-links a:hover {
  color: #0077cc;
}

.about-visual img {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

/* Services */
.services-section {
  background: #f9f9f9;
}

.concern-areas-header {
  text-align: center;
  margin-bottom: 2rem;
}

.concern-areas-header .section-divider {
  margin-inline: auto;
}

.concern-areas-title {
  margin-top: 0;
}

.concern-areas-intro {
  max-width: 720px;
  margin-inline: auto;
}

.concern-areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem 2rem;
  margin-bottom: 3rem;
}

.concern-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--va-white);
  padding: 1.25rem 1.5rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.concern-card-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.4;
  color: #8b6aae;
  margin-top: 0.15rem;
}

.concern-card h4 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
}

.concern-card p {
  margin: 0;
  line-height: 1.6;
}

.audience-block,
.welcome-block {
  margin-top: 1rem;
}

.section-cta {
  margin-top: 1.25rem;
}

.home-subsection {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.info-card-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.info-card-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.info-card-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.info-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--va-white);
  padding: 1.25rem 1.35rem;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.info-card.compact h4 {
  font-size: 1rem;
}

.info-card-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.4;
  color: #8b6aae;
  margin-top: 0.15rem;
}

.info-card h4 {
  margin: 0 0 0.45rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.info-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

.subsection-footer {
  margin-top: 1.75rem;
  max-width: 820px;
}

.virtual-therapy-header h3 {
  margin-top: 0;
}

.virtual-globe-icon {
  color: #8b6aae;
  margin-right: 0.35rem;
}

.virtual-tagline {
  font-size: 1.1rem;
  margin: 0.75rem 0 1rem;
}

.virtual-subheading {
  margin: 2rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.virtual-where-row {
  margin-top: 2.5rem;
}

.faq-heart-icon {
  color: #8b6aae;
  margin-right: 0.35rem;
  font-size: 0.9em;
}

.audience-subtitle {
  margin-top: 1.5rem;
  font-size: 1.1rem;
}

.audience-list li {
  line-height: 1.5;
}

.audience-cta {
  margin-top: 1rem;
}

.services-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.services-intro-col {
  text-align: center;
}

.services-intro-col h2 {
  margin-top: 0;
}

.service-blurb {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.service-blurb-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--va-accent);
}

.service-blurb h4 {
  margin: 0 0 0.5rem;
}

.service-blurb p {
  margin-bottom: 0.5rem;
}

.learn-more {
  color: var(--va-green);
  font-weight: 700;
  text-decoration: none;
}

.learn-more:hover {
  color: var(--va-accent);
}

.split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.split-row.reverse {
  direction: rtl;
}

.split-row.reverse > * {
  direction: ltr;
}

.split-image img {
  width: 100%;
  border-radius: 2px;
}

.bullet-list {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.bullet-list li + li {
  margin-top: 0.35rem;
}

/* FAQ */
.faq-section {
  background: var(--va-white);
}

.faq-heading {
  text-align: center;
  margin-bottom: 2rem;
}

.faq-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.faq-toggle {
  border: 1px solid var(--va-border);
  margin-bottom: 10px;
  background: var(--va-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: none;
  border: 0;
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: var(--va-text);
}

.faq-icon::before {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--va-accent);
}

.faq-toggle.open .faq-icon::before {
  content: "−";
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1rem;
}

.faq-toggle.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin: 0;
}

/* Contact */
.contact-section {
  background: linear-gradient(135deg, #f3f0ec 0%, #e8e5e1 100%);
}

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 2rem;
  align-items: stretch;
}

.contact-copy h2 {
  font-size: 22px;
  margin: 0 0 1rem;
}

.contact-copy h2 a {
  text-decoration: none;
  color: inherit;
}

.contact-phone-heading {
  font-size: 20px;
}

.contact-visual {
  background:
    linear-gradient(rgba(232, 229, 225, 0.4), rgba(232, 229, 225, 0.4)),
    url("/images/about-nayab.webp") center top / cover no-repeat;
  min-height: 400px;
  border-radius: 4px;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font: inherit;
  background: var(--va-white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.radio-group {
  border: 0;
  margin: 0;
  padding: 0;
}

.radio-group legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.radio-group label {
  margin-right: 1.5rem;
  font-weight: 400;
}

.form-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.captcha-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.captcha-row input {
  width: 60px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6em 1.5em;
  border-radius: 3px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--va-accent);
  color: var(--va-text);
  border-color: var(--va-accent);
}

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

.btn-secondary {
  background: transparent;
  color: var(--va-text);
  border-color: var(--va-text);
}

.btn-secondary:hover {
  background: var(--va-text);
  color: var(--va-white);
}

.btn-block {
  display: block;
  width: 100%;
}

/* Footer */
.site-footer {
  background: var(--va-footer);
  color: #ccc;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-title {
  color: var(--va-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 1rem;
}

.site-footer a {
  color: #ccc;
}

.site-footer a:hover {
  color: var(--va-accent);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li + li {
  margin-top: 0.35rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  text-align: center;
  font-size: 13px;
}

#footer-info {
  margin: 0;
  color: #999;
}

/* Inner pages */
.page-inner .page-main {
  background: var(--va-white);
}

.page-hero {
  background: var(--va-hero-bg);
  border-bottom: 1px solid var(--va-border);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 300px;
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 2.5rem;
}

.page-hero-copy--center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.page-hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.page-intro {
  font-size: 16px;
  line-height: 1.8;
  color: var(--va-muted);
  margin: 0;
  max-width: 52ch;
}

.page-hero-copy--center .page-intro {
  max-width: none;
}

.page-hero-image {
  overflow: hidden;
  max-height: 400px;
  background: #ddd;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: center center;
}

.post-meta {
  font-size: 13px;
  color: var(--va-muted);
  margin: 0.75rem 0 0;
}

.section--content {
  padding-top: 48px;
  padding-bottom: 72px;
}

.page-main .content-body {
  max-width: 800px;
}

.service-body {
  max-width: 820px;
}

.article-body {
  max-width: 760px;
}

.content-body.wide {
  max-width: none;
}

.content-body h2,
.content-body h3,
.content-body h4 {
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.content-body h2:first-child,
.content-body h3:first-child {
  margin-top: 0;
}

.content-body ul,
.content-body ol {
  padding-left: 1.25rem;
}

.content-body img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 2rem auto;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
}

.content-body p {
  margin: 0 0 1.15rem;
}

.text-link {
  font-family: var(--font-ui);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--va-accent);
}

.text-link:hover {
  color: var(--va-green);
}

/* Blog index */
.article-featured-banner {
  padding: 0 0 2rem;
  background: var(--va-hero-bg);
  border-bottom: 1px solid var(--va-border);
}

.article-featured-img {
  display: block;
  width: 100%;
  max-width: 760px;
  height: auto;
  margin: 0 auto;
  border-radius: 4px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.blog-card {
  border: 1px solid var(--va-border);
  background: var(--va-white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.08);
}

.blog-card-image {
  display: block;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.blog-card-body h2 {
  font-size: 1.5rem;
  margin: 0.35rem 0 0.75rem;
}

.blog-card-body h2 a {
  text-decoration: none;
}

.blog-card-body h2 a:hover {
  color: var(--va-green);
}

.blog-card-body p {
  color: var(--va-muted);
  margin: 0 0 1rem;
}

.blogs-aside {
  padding: 1.5rem;
  background: #f9f9f9;
  border: 1px solid var(--va-border);
  text-align: center;
}

.blogs-aside .btn {
  margin-top: 1rem;
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--va-border);
}

/* Booking / calendar */
.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 1.5rem;
  align-items: start;
}

.booking-panel {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 0;
  border: 1px solid var(--va-border);
  background: var(--va-white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.booking-panel-visual img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.booking-panel-copy {
  padding: 2rem 1.75rem;
}

.booking-panel-copy h2 {
  margin: 0 0 0.75rem;
  font-size: 1.65rem;
}

.booking-panel-copy p {
  margin: 0 0 1rem;
  color: var(--va-muted);
}

.booking-note-inline {
  font-size: 13px;
  color: var(--va-text);
}

.booking-panel .cta-panel-actions {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.booking-aside {
  padding: 1.5rem;
  background: #f9f9f9;
  border: 1px solid var(--va-border);
}

.booking-aside h2 {
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.booking-aside p {
  margin: 0 0 1rem;
}

.booking-steps {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  color: var(--va-muted);
}

.booking-steps li + li {
  margin-top: 0.5rem;
}

.booking-aside .btn + .btn {
  margin-top: 0.75rem;
}

.booking-note {
  margin-top: 2rem;
  text-align: center;
  color: var(--va-muted);
}

.cta-panel {
  margin-top: 2.5rem;
  padding: 2rem 1.75rem;
  text-align: center;
  background: linear-gradient(180deg, #f9f9f9 0%, #f3f3f3 100%);
  border: 1px solid var(--va-border);
}

.cta-panel h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.cta-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

.page-banner {
  padding: 3rem 0 2rem;
  background: var(--va-hero-bg);
}

.calendar-embed iframe {
  width: 100%;
  min-height: 720px;
  border: 1px solid var(--va-border);
  border-radius: 4px;
  margin-bottom: 1.5rem;
}

.narrow {
  max-width: 640px;
}

.center {
  text-align: center;
}

/* Responsive */
@media (max-width: 980px) {
  h1 {
    font-size: 32px;
  }

  .hero-section {
    min-height: auto;
    padding: 60px 0 40px;
  }

  .hero-copy h1 {
    font-size: 50px;
    white-space: normal;
  }

  .hero-eyebrow {
    font-size: 32px;
  }

  .hero-session-wrap {
    width: 50%;
    max-width: 240px;
  }

  .page-home .hero-section .btn-primary {
    padding-left: 122px;
  }

  .hero-copy {
    max-width: none;
    flex: 1 1 100%;
    padding-left: 0;
  }

  .hero-section .container.hero-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .hero-visual {
    flex: 1 1 100%;
    width: 100%;
    min-height: auto;
  }

  .about-grid,
  .services-layout,
  .concern-areas-grid,
  .info-card-grid.cols-2,
  .info-card-grid.cols-3,
  .info-card-grid.cols-4,
  .split-row,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-session {
    position: static;
    margin-top: 1rem;
  }

  .split-row.reverse {
    direction: ltr;
  }

  .contact-visual {
    min-height: 280px;
  }

  .nav-toggle {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: calc(30px + var(--header-height));
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: stretch;
    background: var(--va-white);
    border: 1px solid var(--va-border);
    padding: 1rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open {
    display: flex;
  }

  .site-header {
    position: relative;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

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

  .page-hero-image {
    order: -1;
  }

  .page-hero-copy {
    padding: 2rem 1.25rem;
  }

  .booking-layout {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    grid-template-columns: 1fr;
  }

  .booking-panel-visual img {
    min-height: 200px;
    max-height: 220px;
  }
}

@media (min-width: 981px) {
  .hero-section .container.hero-grid {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--hero-gap, 2rem);
  }

  .hero-copy {
    flex: 0 1 var(--hero-copy-max-width, 560px);
    max-width: var(--hero-copy-max-width, 560px);
  }

  .hero-visual {
    flex: 0 1 var(--hero-image-max-width, 580px);
    min-width: 0;
    max-width: var(--hero-image-max-width, 580px);
    width: 100%;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: 1.5rem;
  }

  .hero-banner-wrap {
    max-width: 100%;
    width: 100%;
  }

  .hero-banner {
    width: 100%;
    height: auto;
    object-fit: unset;
  }

  .hero-portrait-wrap {
    max-width: var(--hero-image-max-width, 580px);
  }
}

@media (max-width: 767px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-eyebrow {
    font-size: 22px;
  }

  .hero-session-wrap {
    display: none;
  }

  .page-home .hero-section .btn-primary {
    padding-left: 90px;
    letter-spacing: 0;
  }
}
