@font-face {
      font-family: "Source Sans Pro";
      font-style: normal;
      font-weight: 300;
      font-display: optional;
  src: url('../fonts/source-sans-pro-v14-latin-300.woff2') format('woff2');
}

    @font-face {
      font-family: "Source Sans Pro";
      font-style: normal;
      font-weight: 400;
      font-display: optional;
  src: url('../fonts/source-sans-pro-v14-latin-regular.woff2') format('woff2');
}

    @font-face {
      font-family: "Source Sans Pro";
      font-style: normal;
      font-weight: 700;
      font-display: optional;
  src: url('../fonts/source-sans-pro-v14-latin-700.woff2') format('woff2');
}

    :root {
      --accent: #dd7421;
      --accent-dark: #bd5f17;
      --accent-soft: #f9b986;
      --text: #555555;
      --headline: #3b3c42;
      --muted: #7f7f7f;
      --line: #e5e5e5;
      --light: #efefef;
      --light-soft: #f7f7f7;
      --white: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--white);
      color: var(--text);
      font-family: "Source Sans Pro", Arial, sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 33px;
      letter-spacing: 0;
      text-rendering: optimizeLegibility;
    }

    a {
      color: var(--accent);
      text-decoration: none;
    }

    a:hover,
    a:focus-visible {
      color: var(--headline);
    }

    a:focus-visible,
    button:focus-visible {
      outline: 3px solid rgba(221, 116, 33, 0.35);
      outline-offset: 3px;
    }

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

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    figure {
      margin-top: 0;
    }

    p {
      margin-bottom: 22px;
    }

    .container {
      width: min(1180px, calc(100% - 48px));
      margin: 0 auto;
    }

    .skip-link {
      position: absolute;
      top: -48px;
      left: 16px;
      z-index: 30;
      padding: 8px 12px;
      background: var(--accent);
      color: var(--white);
      font-weight: 700;
    }

    .skip-link:focus {
      top: 16px;
      color: var(--white);
    }

    .site-header {
      background: var(--white);
      border-bottom: 1px solid var(--line);
      position: relative;
      z-index: 20;
    }

    .header-inner {
      min-height: 150px;
      display: grid;
      grid-template-columns: 170px minmax(0, 1fr);
      gap: 34px;
      align-items: center;
    }

    .logo img {
      width: 160px;
      background: var(--white);
    }

    .mainnav {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: clamp(14px, 1.7vw, 24px);
      color: #393939;
      font-size: 17px;
      line-height: 24px;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .nav-item {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .mainnav a {
      color: #393939;
      transition: color 180ms ease;
    }

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

    .submenu-toggle {
      display: inline-flex;
      width: 22px;
      height: 22px;
      align-items: center;
      justify-content: center;
      border: 0;
      background: transparent;
      color: #393939;
      cursor: pointer;
      padding: 0;
    }

    .submenu-toggle span {
      width: 7px;
      height: 7px;
      border: solid currentColor;
      border-width: 0 1.5px 1.5px 0;
      transform: translateY(-2px) rotate(45deg);
      transition: transform 180ms ease, color 180ms ease;
    }

    .nav-item:hover > .submenu-toggle,
    .nav-item:focus-within > .submenu-toggle,
    .nav-item.active > .submenu-toggle {
      color: var(--accent);
    }

    .nav-item:hover > .submenu-toggle span,
    .nav-item:focus-within > .submenu-toggle span,
    .nav-item.is-submenu-open > .submenu-toggle span {
      transform: translateY(2px) rotate(225deg);
    }

    .nav-submenu {
      position: absolute;
      top: calc(100% + 18px);
      left: 50%;
      z-index: 40;
      width: min(920px, calc(100vw - 48px));
      padding: 22px 24px;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
      opacity: 0;
      pointer-events: none;
      text-align: left;
      text-transform: none;
      transform: translate(-50%, 8px);
      transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
      visibility: hidden;
      white-space: normal;
    }

    .nav-item:hover > .nav-submenu,
    .nav-item:focus-within > .nav-submenu,
    .nav-item.is-submenu-open > .nav-submenu {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, 0);
      visibility: visible;
    }

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

    .submenu-level-1 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px 24px;
    }

    .submenu-item {
      min-width: 0;
    }

    .submenu-item > a {
      display: block;
      color: var(--headline);
      font-size: 15px;
      font-weight: 700;
      line-height: 20px;
      padding: 0;
      text-transform: none;
    }

    .submenu-item > a:hover,
    .submenu-item > a:focus-visible,
    .submenu-item > a.active,
    .submenu-item.active > a {
      color: var(--accent);
    }

    .submenu-level-2 {
      display: grid;
      gap: 5px;
      margin-top: 8px;
    }

    .submenu-level-2 .submenu-item > a {
      color: #6b6b6b;
      font-size: 14px;
      font-weight: 400;
      line-height: 19px;
    }

    .submenu-level-2 .submenu-item > a:hover,
    .submenu-level-2 .submenu-item > a:focus-visible,
    .submenu-level-2 .submenu-item > a.active,
    .submenu-level-2 .submenu-item.active > a {
      color: var(--accent);
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--headline);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
      transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-toggle:focus-visible {
      outline: 3px solid rgba(221, 116, 33, 0.35);
      outline-offset: 3px;
    }

    .site-header.is-menu-open .menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .site-header.is-menu-open .menu-toggle span:first-child {
      transform: translateY(7px) rotate(45deg);
    }

    .site-header.is-menu-open .menu-toggle span:last-child {
      transform: translateY(-7px) rotate(-45deg);
    }

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

    .hero-slider {
      position: relative;
      overflow: hidden;
      background: var(--light);
      aspect-ratio: 1920 / 1000;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      background: var(--light);
      animation: heroFade 14s infinite ease-in-out;
      will-change: opacity;
    }

    .hero-slide:first-child {
      opacity: 1;
    }

    .hero-slide:nth-child(2) {
      animation-delay: -7s;
    }

    .hero-slide img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      background: var(--light);
    }

    .hero-slide-team img {
      object-fit: cover;
      object-position: center center;
    }

    @keyframes heroFade {
      0%,
      42% {
        opacity: 1;
      }

      50%,
      92% {
        opacity: 0;
      }

      100% {
        opacity: 1;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .hero-slide {
        animation: none;
        opacity: 0;
      }

      .hero-slide:first-child {
        opacity: 1;
      }
    }

    .breadcrumb {
      border-bottom: 1px solid var(--line);
      background: var(--white);
      color: #9b9b9b;
      font-size: 0.95rem;
      line-height: 38px;
    }

    .breadcrumb a {
      color: #9b9b9b;
    }

    .section {
      padding: 78px 0;
      background: var(--white);
    }

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

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

    .intro-stage {
      padding: 62px 0;
      background: var(--light);
    }

    .intro-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 185px 185px;
      gap: 54px;
      align-items: center;
    }

    .intro-copy {
      text-align: center;
    }

    .intro-copy p {
      margin-bottom: 18px;
      color: var(--text);
      font-size: 17px;
      font-weight: 300;
      line-height: 27px;
    }

    h1,
    h2,
    h3,
    h4,
    h5 {
      color: var(--headline);
      font-family: "Source Sans Pro", Arial, sans-serif;
      font-weight: 300;
      letter-spacing: 0;
    }

    h1 {
      margin-bottom: 16px;
      font-size: 26px;
      line-height: 34px;
    }

    h2 {
      margin-bottom: 28px;
      font-size: 32px;
      line-height: 43px;
    }

    h3 {
      margin-bottom: 30px;
      font-size: 22px;
      line-height: 31px;
    }

    h4 {
      margin-bottom: 22px;
      font-size: 24px;
      line-height: 32px;
    }

    h5 {
      margin-bottom: 16px;
      font-size: 17px;
      line-height: 24px;
    }

    .txt-accent,
    .txt-accent h3,
    .txt-accent h4,
    .txt-accent h5 {
      color: var(--accent);
    }

    .divider {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0;
      margin: 0 auto;
      width: 98px;
      height: 15px;
    }

    .divider::before,
    .divider::after {
      content: "";
      width: 42px;
      height: 1px;
      background: var(--accent-soft);
    }

    .divider span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--accent);
    }

    .focus-card img {
      width: 182px;
      margin: 0 auto;
    }

    .focus-card p {
      margin: 12px 0 0;
      color: var(--accent);
      font-size: 15px;
      line-height: 22px;
      text-align: center;
    }

    .site-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 82px;
      align-items: start;
    }

    .doctor-image {
      max-width: 500px;
      margin: 0 0 42px;
    }

    .doctor-image img {
      width: 100%;
    }

    .doctor-text {
      max-width: 500px;
      text-align: justify;
      font-size: 16px;
      line-height: 28px;
    }

    .link-list {
      margin-top: 34px;
      text-align: center;
      color: var(--accent);
      font-size: 16px;
      line-height: 28px;
    }

    .link-list p {
      margin-bottom: 2px;
    }

    .wide-copy {
      margin-top: 58px;
      padding-top: 36px;
      border-top: 1px solid var(--line);
      text-align: justify;
      font-size: 17px;
      line-height: 31px;
    }

    .location-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 48px;
      align-items: start;
    }

    .location-copy p {
      text-align: left;
    }

    .team-photo,
    .building-photo,
    .map-card {
      margin: 0;
      border: 1px solid var(--line);
      background: var(--white);
      padding: 18px;
    }

    .team-photo img,
    .building-photo img,
    .map-card img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .building-photo img {
      aspect-ratio: 4 / 3;
      display: block;
      object-fit: cover;
      object-position: center 58%;
    }

    .address-box {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 48px;
      align-items: start;
      margin-top: 38px;
    }

    .address-card {
      border-left: 4px solid var(--accent);
      background: var(--white);
      padding: 24px 28px;
      font-size: 17px;
      line-height: 30px;
    }

    .address-card p {
      margin-bottom: 16px;
    }

    .times {
      margin-top: 18px;
      border: 1px solid var(--line);
      background: var(--light-soft);
    }

    .times div {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 16px;
      padding: 10px 14px;
      border-bottom: 1px solid var(--line);
      font-size: 15px;
      line-height: 24px;
    }

    .times div:last-child {
      border-bottom: 0;
    }

    .times span {
      color: var(--muted);
    }

    .award-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 200px 200px;
      gap: 54px;
      align-items: center;
    }

    .award-grid p {
      text-align: justify;
    }

    .award-grid img {
      width: 200px;
      margin: 0 auto;
    }

    .content-copy {
      text-align: justify;
      font-size: 16px;
      line-height: 30px;
    }

    .philosophy {
      position: relative;
      overflow: hidden;
      background: #f5f0ea;
    }

    .philosophy::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(165deg, transparent 0 37%, rgba(249, 185, 134, 0.45) 37.2% 39%, transparent 39.2% 100%),
        linear-gradient(356deg, transparent 0 66%, rgba(249, 185, 134, 0.32) 66.2% 68%, transparent 68.2% 100%);
      pointer-events: none;
    }

    .philosophy .container {
      position: relative;
    }

    .news-placeholder {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0) 42%),
        var(--light);
    }

    .news-head {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
      gap: 42px;
      align-items: end;
      margin-bottom: 30px;
    }

    .section-intro {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .news-head .section-intro {
      max-width: 660px;
      margin-bottom: 0;
    }

    .section-eyebrow {
      margin-bottom: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 19px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .news-placeholder h3 {
      margin-bottom: 8px;
      font-size: 32px;
      line-height: 42px;
      font-weight: 300;
    }

    .section-lede {
      max-width: 660px;
      margin: 0;
      color: #686868;
      font-size: 17px;
      line-height: 29px;
    }

    .social-more-wrap {
      margin-top: 24px;
      text-align: center;
    }

    .social-more {
      display: inline-flex;
      min-width: 228px;
      justify-content: center;
      border-radius: 4px;
      background: var(--accent);
      color: var(--white);
      padding: 9px 28px;
      font-size: 15px;
      line-height: 20px;
      transition: background 180ms ease, transform 180ms ease;
    }

    .social-more:hover,
    .social-more:focus-visible {
      background: var(--accent-dark);
      color: var(--white);
      transform: translateY(-1px);
    }

    .elfsight-widget-frame {
      min-height: 220px;
      overflow: hidden;
    }

    .elfsight-instagram-widget {
      margin-top: 24px;
    }

    .elfsight-reviews-widget {
      min-height: 260px;
    }

    .press-note {
      max-width: none;
      margin: 0;
      border: 1px solid rgba(168, 116, 72, 0.22);
      border-left: 4px solid #a87448;
      border-radius: 6px;
      background: var(--white);
      padding: 22px 24px;
      box-shadow: 0 10px 26px rgba(80, 70, 62, 0.045);
    }

    .press-note h4 {
      margin-bottom: 8px;
      color: var(--headline);
      font-size: 22px;
      line-height: 30px;
      font-weight: 300;
    }

    .press-note p {
      margin-bottom: 10px;
    }

    .press-note p:last-child {
      margin-bottom: 0;
    }

    .press-kicker {
      color: var(--muted);
      font-size: 14px;
      line-height: 20px;
      text-transform: uppercase;
    }

    .reviews-section {
      overflow: hidden;
      background:
        linear-gradient(180deg, #f1f1f1 0, var(--light-soft) 100%);
      padding-top: 0;
    }

    .reviews-shell {
      border-top: 1px solid rgba(221, 116, 33, 0.18);
      padding-top: 58px;
    }

    .reviews-head {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
      align-items: end;
      margin-bottom: 30px;
    }

    .reviews-head h3 {
      margin-bottom: 8px;
      color: #68635f;
      font-size: 32px;
      line-height: 42px;
      font-weight: 300;
    }

    .rating-panel {
      display: grid;
      grid-template-columns: auto minmax(0, 1fr) auto;
      gap: 18px;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--white);
      padding: 20px 22px;
      box-shadow: 0 10px 26px rgba(80, 70, 62, 0.045);
    }

    .rating-score {
      color: var(--headline);
      font-size: 44px;
      line-height: 46px;
      font-weight: 300;
      font-variant-numeric: tabular-nums;
    }

    .rating-stars,
    .review-stars {
      color: #a87448;
      letter-spacing: 0;
      line-height: 1;
    }

    .rating-stars {
      margin-bottom: 5px;
      font-size: 24px;
    }

    .rating-panel p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 20px;
    }

    .review-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      border: 1px solid rgba(168, 116, 72, 0.34);
      background: #f4eee9;
      color: #7e5738;
      padding: 9px 18px;
      font-family: "Source Sans Pro", Arial, sans-serif;
      font-size: 15px;
      font-weight: 400;
      line-height: 20px;
      white-space: nowrap;
      transition: background 180ms ease, transform 180ms ease;
    }

    .review-cta:hover,
    .review-cta:focus-visible {
      background: #ece2da;
      color: #65452d;
      transform: translateY(-1px);
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 22px;
      align-items: stretch;
    }

    .review-card {
      display: flex;
      min-width: 0;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: 6px;
      background: var(--white);
      padding: 22px;
      box-shadow: 0 10px 24px rgba(80, 70, 62, 0.045);
    }

    .review-card header {
      display: flex;
      gap: 12px;
      align-items: center;
      margin-bottom: 18px;
    }

    .review-avatar {
      display: grid;
      width: 42px;
      height: 42px;
      flex: 0 0 auto;
      place-items: center;
      border-radius: 6px;
      background: #706b67;
      color: var(--white);
      font-size: 20px;
      font-weight: 700;
      line-height: 1;
    }

    .review-avatar.accent {
      background: #8a7566;
    }

    .review-avatar.green {
      background: #6f776b;
    }

    .review-avatar.muted {
      background: #77736f;
    }

    .review-author {
      min-width: 0;
      color: var(--headline);
      font-size: 16px;
      font-weight: 700;
      line-height: 20px;
    }

    .review-date {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 400;
      line-height: 18px;
    }

    .review-verified {
      display: inline-grid;
      width: 16px;
      height: 16px;
      margin-left: 4px;
      place-items: center;
      border-radius: 50%;
      background: #a87448;
      color: var(--white);
      font-size: 10px;
      line-height: 1;
      vertical-align: 1px;
    }

    .review-stars {
      margin-bottom: 14px;
      font-size: 18px;
    }

    .review-card blockquote {
      flex: 1;
      margin: 0 0 18px;
      color: #4e4e4e;
      font-size: 16px;
      line-height: 25px;
    }

    .review-source {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: auto;
      color: var(--muted);
      font-size: 14px;
      line-height: 20px;
    }

    .google-word {
      color: #777777;
      font-weight: 700;
      letter-spacing: 0;
    }

    .google-word span {
      color: inherit;
    }

    .reviews-foot {
      margin-top: 26px;
      text-align: center;
    }

    .reviews-foot .review-cta {
      display: inline;
      border: 0;
      background: transparent;
      padding: 0;
      color: var(--accent);
      font-family: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
      white-space: normal;
      transition: color 180ms ease;
    }

    .reviews-foot .review-cta:hover,
    .reviews-foot .review-cta:focus-visible {
      background: transparent;
      color: var(--headline);
      transform: none;
    }

    .travel-info {
      margin-top: 18px;
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .training-grid {
      display: grid;
      grid-template-columns: 300px minmax(0, 1fr);
      gap: 70px;
      align-items: center;
    }

    .training-grid img {
      width: 300px;
      margin: 0 auto;
    }

    .site-footer {
      background: var(--light-soft);
      border-top: 1px solid var(--line);
      padding: 58px 0 38px;
      color: var(--muted);
      font-size: 15px;
      line-height: 25px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr 1fr 1.4fr;
      gap: 42px;
      align-items: start;
    }

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

    .footer-grid li {
      padding: 5px 0;
      border-bottom: 1px solid var(--line);
    }

    .footer-grid li:last-child {
      border-bottom: 0;
    }

    .footer-grid a {
      color: var(--muted);
    }

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

    .footer-logo {
      width: 170px;
      margin-bottom: 16px;
      background: var(--white);
    }

    .footer-bottom {
      margin-top: 42px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
      display: flex;
      justify-content: space-between;
      gap: 20px;
      font-size: 14px;
    }

    .footer-bottom a {
      margin-left: 16px;
    }

    .mobile-menu-label {
      display: none;
      color: var(--headline);
      font-size: 14px;
      text-transform: uppercase;
    }

    @media (max-width: 1080px) {
      .header-inner {
        grid-template-columns: 1fr;
        gap: 18px;
        justify-items: center;
        padding: 24px 0;
      }

      .mainnav {
        flex-wrap: wrap;
        justify-content: center;
      }

      .intro-grid,
      .award-grid {
        grid-template-columns: 1fr 185px 185px;
        gap: 28px;
      }

      .site-grid-2,
      .location-grid,
      .address-box,
      .training-grid {
        grid-template-columns: 1fr;
      }

      .doctor-image,
      .doctor-text {
        max-width: none;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      .site-header {
        border-bottom: 1px solid var(--line);
      }

      .header-inner {
        grid-template-columns: auto auto;
        min-height: 0;
        gap: 16px;
        justify-content: space-between;
        justify-items: stretch;
        padding: 14px 0;
      }

      .logo {
        justify-self: start;
      }

      .logo img {
        width: 136px;
      }

      .menu-toggle {
        display: inline-flex;
        justify-self: end;
      }

      .mainnav {
        grid-column: 1 / -1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        border-top: 0 solid var(--line);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        font-size: 14px;
        line-height: 20px;
        white-space: normal;
        transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease, margin-top 180ms ease, border-top-width 180ms ease;
      }

      .nav-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 0;
        align-items: stretch;
        border-bottom: 1px solid var(--line);
      }

      .mainnav a {
        display: block;
        padding: 12px 4px;
        border-bottom: 0;
      }

      .nav-link {
        grid-column: 1;
      }

      .submenu-toggle {
        grid-column: 2;
        width: 44px;
        height: 44px;
        justify-self: end;
      }

      .nav-submenu {
        position: static;
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        background: #f8f8f8;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: max-height 220ms ease, visibility 180ms ease;
        visibility: hidden;
      }

      .nav-item:hover > .nav-submenu,
      .nav-item:focus-within > .nav-submenu {
        max-height: 0;
        visibility: hidden;
      }

      .nav-item.is-submenu-open > .nav-submenu {
        max-height: 1800px;
        visibility: visible;
      }

      .submenu-level-1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 4px 0 10px;
        border-top: 1px solid var(--line);
      }

      .submenu-item {
        border-bottom: 0;
      }

      .submenu-item > a {
        font-size: 14px;
        line-height: 20px;
        padding: 9px 14px;
      }

      .submenu-level-2 {
        gap: 0;
        margin-top: 0;
        padding: 0 0 6px;
      }

      .submenu-level-2 .submenu-item > a {
        font-size: 13px;
        line-height: 19px;
        padding: 5px 14px 5px 28px;
      }

      .site-header.is-menu-open .mainnav {
        max-height: 70vh;
        margin-top: 10px;
        overflow-y: auto;
        border-top-width: 1px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }
    }

    @media (max-width: 720px) {
      body {
        font-size: 17px;
        line-height: 30px;
      }

      .container {
        width: min(100% - 28px, 1120px);
      }

      .site-header {
        border-bottom: 1px solid var(--line);
      }

      .header-inner {
        grid-template-columns: auto auto;
        min-height: 0;
        gap: 16px;
        justify-content: space-between;
        justify-items: stretch;
        padding: 14px 0;
      }

      .logo img {
        width: 136px;
      }

      .logo {
        justify-self: start;
      }

      .menu-toggle {
        display: inline-flex;
        justify-self: end;
      }

      .mobile-menu-label {
        display: block;
      }

      .mainnav {
        grid-column: 1 / -1;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        max-height: 0;
        margin-top: 0;
        overflow: hidden;
        border-top: 0 solid var(--line);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        font-size: 14px;
        line-height: 20px;
        white-space: normal;
        transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease, visibility 180ms ease, margin-top 180ms ease, border-top-width 180ms ease;
      }

      .nav-item {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 44px;
        gap: 0;
        align-items: stretch;
        border-bottom: 1px solid var(--line);
      }

      .mainnav a {
        display: block;
        padding: 12px 4px;
        border-bottom: 0;
      }

      .nav-link {
        grid-column: 1;
      }

      .submenu-toggle {
        grid-column: 2;
        width: 44px;
        height: 44px;
        justify-self: end;
      }

      .nav-submenu {
        position: static;
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: 0;
        background: #f8f8f8;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        transition: max-height 220ms ease, visibility 180ms ease;
        visibility: hidden;
      }

      .nav-item:hover > .nav-submenu,
      .nav-item:focus-within > .nav-submenu {
        max-height: 0;
        visibility: hidden;
      }

      .nav-item.is-submenu-open > .nav-submenu {
        max-height: 1800px;
        visibility: visible;
      }

      .submenu-level-1 {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 4px 0 10px;
        border-top: 1px solid var(--line);
      }

      .submenu-item {
        border-bottom: 0;
      }

      .submenu-item > a {
        font-size: 14px;
        line-height: 20px;
        padding: 9px 14px;
      }

      .submenu-level-2 {
        gap: 0;
        margin-top: 0;
        padding: 0 0 6px;
      }

      .submenu-level-2 .submenu-item > a {
        font-size: 13px;
        line-height: 19px;
        padding: 5px 14px 5px 28px;
      }

      .site-header.is-menu-open .mainnav {
        max-height: 70vh;
        margin-top: 10px;
        overflow-y: auto;
        border-top-width: 1px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
      }

      .intro-stage,
      .section {
        padding: 48px 0;
      }

      .intro-grid,
      .award-grid,
      .news-head,
      .reviews-head,
      .reviews-grid,
      .rating-panel {
        grid-template-columns: 1fr;
      }

      h1 {
        font-size: 25px;
        line-height: 32px;
      }

      h2 {
        font-size: 28px;
        line-height: 38px;
      }

      .site-grid-2 {
        gap: 52px;
      }

      .award-grid img,
      .focus-card img {
        width: min(182px, 60vw);
      }

      .team-photo,
      .building-photo,
      .map-card {
        padding: 10px;
      }

      .section-intro,
      .news-head,
      .reviews-head {
        margin-bottom: 28px;
      }

      .news-head {
        gap: 24px;
      }

      .news-placeholder h3,
      .reviews-head h3 {
        font-size: 28px;
        line-height: 36px;
      }

      .rating-panel {
        justify-items: start;
      }

      .review-cta {
        width: 100%;
      }

      .times div {
        grid-template-columns: 1fr;
        gap: 0;
      }

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

      .footer-bottom {
        display: block;
      }

      .footer-bottom a {
        margin: 0 14px 0 0;
      }
    }

    @media (min-width: 700px) and (max-width: 1050px) {
      .reviews-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .reviews-head {
        grid-template-columns: 1fr;
      }

      .news-head {
        grid-template-columns: 1fr;
      }
    }
