/*************************
      GLOBAL VARIABLES
**************************/

:root {
    --brand-color-1: rgb(36, 62, 146);
    --accent-color: rgb(253, 182, 21);
    --accent-gradient: linear-gradient(
        135deg,
        rgb(255, 211, 92),
        rgb(253, 182, 21),
        rgb(217, 143, 0)
    );
    --color-black: rgb(0, 0, 0);
    --color-white: rgb(255, 255, 255);
    --color-text: rgb(37, 37, 37);
    --color-border: rgb(225, 225, 225);
    --color-footer: rgb(222, 228, 242);
    --color-overlay: rgba(7, 20, 55, 0.76);
    --color-home-hero-overlay: rgba(36, 62, 146, 0.55);
    --color-page-hero-overlay: rgba(21, 39, 92, 0.68);
    --color-off-canvas: rgba(0, 0, 0, 0.9);
}

/*************************
      GLOBAL RESET
**************************/

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    background-color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

body.navigation-open {
    overflow: hidden;
}

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

/*************************
      SITE PREHEADER
**************************/

.site-preheader {
    display: flex;
    width: 100%;
    color: var(--color-white);
    background-color: var(--color-black);
}

.site-preheader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 2rem;
}

/*----------------------
  Phone Number
-----------------------*/

.site-preheader__phone {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.site-preheader__phone:hover,
.site-preheader__phone:focus-visible {
    text-decoration: underline;
}

/*----------------------
  Quote Button
-----------------------*/

.site-preheader__quote-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.site-preheader__quote-button:hover,
.site-preheader__quote-button:focus-visible {
    color: var(--color-black);
    background-color: var(--accent-color);
    background-image: var(--accent-gradient);
}

/*************************
      SITE HEADER
**************************/

.site-header {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
}

/*----------------------
  Logo
-----------------------*/

.site-header__logo {
    display: flex;
    align-items: center;
    width: 38%;
}

.site-header__logo-link {
    display: block;
    width: 100%;
}

.site-header__logo-image {
    width: 85%;
    max-width: 23.8rem;
    height: auto;
}

/*----------------------
  Mobile Menu Controls
-----------------------*/

.site-header__menu-toggle,
.site-header__menu-close,
.site-header__overlay {
    display: none;
}

.site-header__menu-toggle {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    color: var(--color-text);
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.site-header__menu-toggle-line {
    display: block;
    width: 100%;
    height: 0.1875rem;
    margin: 0.1875rem 0;
    background-color: var(--brand-color-1);
}

/*screen-reader menu label*/
.site-header__menu-label {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    margin: -0.0625rem;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/*----------------------
  Main Navigation
-----------------------*/

.site-header__navigation {
    display: flex;
    justify-content: flex-end;
    width: 62%;
}

.site-header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__menu-item {
    margin-left: 0.5rem;
}

.site-header__menu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 0.25rem solid transparent;
}

/*active and interactive navigation links*/
.site-header__menu-link:hover,
.site-header__menu-link:focus-visible,
.site-header__menu-link--active {
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border-bottom-color: var(--accent-color);
}

/*************************
      SITE MAIN
**************************/

.site-main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
}

/*************************
      HOME HERO
**************************/

.home-hero {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 30rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    background-image:
        linear-gradient(var(--color-home-hero-overlay), var(--color-home-hero-overlay)),
        url("../image/restaurant-hero-branded.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-hero__inner {
    width: 100%;
    padding: 5rem 8%;
    text-align: center;
}

.home-hero__eyebrow {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.9);
    text-transform: uppercase;
}

.home-hero__heading {
    width: 70%;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    line-height: 1.15;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.9);
}

.home-hero__text {
    width: 60%;
    margin: 0 auto 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.9);
}

/*----------------------
  Hero Buttons
-----------------------*/

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero__button {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.42);
    border: 2px solid var(--accent-color);
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.45);
    font-size: 1rem;
    font-weight: 700;
    text-shadow: 0 0.125rem 0.25rem var(--color-black);
    text-decoration: none;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
    color: var(--color-black);
    background-color: var(--accent-color);
    background-image: var(--accent-gradient);
    border-color: var(--accent-color);
}

/*************************
      MID NAVIGATION
**************************/

.mid-navigation {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.mid-navigation__inner {
    width: 100%;
    padding: 4rem 2rem;
}

/*----------------------
  Section Introduction
-----------------------*/

.mid-navigation__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    text-align: center;
}

.mid-navigation__introduction {
    width: 70%;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
}

/*----------------------
  Navigation Cards
-----------------------*/

.mid-navigation__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.mid-navigation__card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33%;
    min-height: 12rem;
    padding: 1.5rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-top: 0.375rem solid var(--accent-color);
    text-decoration: none;
}

.mid-navigation__card:hover,
.mid-navigation__card:focus-visible {
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border-color: var(--brand-color-1);
}

.mid-navigation__card:hover .mid-navigation__icon,
.mid-navigation__card:focus-visible .mid-navigation__icon {
    color: var(--brand-color-1);
    background-color: var(--color-white);
}

/*card icon*/
.mid-navigation__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 4rem;
    margin-right: 1rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    font-size: 2rem;
    font-weight: 700;
}

/*title and blurb container*/
.mid-navigation__content {
    display: flex;
    flex-direction: column;
    width: 75%;
}

.mid-navigation__card-title {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.mid-navigation__card-text {
    font-size: 1rem;
    line-height: 1.5;
}

/*************************
      MAIN CONTENT
**************************/

.main-content {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.main-content__inner {
    display: flex;
    align-items: stretch;
    width: 100%;
    min-height: 38rem;
}

.main-content__visual {
    width: 50%;
    overflow: hidden;
}

.main-content__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/*----------------------
  Company Introduction
-----------------------*/

.main-content__copy {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    padding: 4rem 5%;
}

.main-content__heading {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    line-height: 1.2;
}

.main-content__text {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.main-content__button {
    display: inline-block;
    padding: 0.75rem 3rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border: 2px solid var(--brand-color-1);
    border-bottom-color: var(--accent-color);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.main-content__button:hover,
.main-content__button:focus-visible {
    color: var(--brand-color-1);
    background-color: var(--color-white);
}

/*************************
      HOME DETAILS
**************************/

.home-details {
    width: 100%;
    padding: 4rem 8%;
    background-color: rgb(246, 248, 252);
}

.home-details__inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    width: 100%;
}

.home-details__card {
    padding: 2rem;
    background-color: var(--color-white);
    border: 1px solid var(--color-border);
    border-top: 0.375rem solid var(--accent-color);
    box-shadow: 0 0.5rem 1.5rem rgba(35, 52, 107, 0.1);
}

.home-details__heading {
    margin: 0 0 1rem;
    color: var(--brand-color-1);
    font-size: 1.5rem;
    line-height: 1.25;
}

.home-details__text,
.home-details__service-text {
    margin: 0;
    font-size: 1.0625rem;
    line-height: 1.7;
}

.home-details__service-area {
    margin-top: 2rem;
    padding: 2rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border-left: 0.5rem solid var(--accent-color);
}

.home-details__service-text + .home-details__service-text {
    margin-top: 1rem;
}

.home-details__phone {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: underline;
}

.home-details__phone:hover,
.home-details__phone:focus-visible {
    color: var(--color-white);
}

/*************************
      INTERIOR PAGE HERO
**************************/

.page-hero {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 20rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    background-image:
        linear-gradient(var(--color-page-hero-overlay), var(--color-page-hero-overlay)),
        url("../image/restaurant-hero-branded.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-hero__inner {
    width: 100%;
    padding: 3rem 8%;
    text-align: center;
}

.page-hero__heading {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.25rem solid var(--accent-color);
    font-size: 2.75rem;
}

.page-hero__text {
    width: 65%;
    margin: 0 auto;
    font-size: 1.25rem;
    line-height: 1.6;
}

/*************************
      FAQ CONTENT
**************************/

.faq-content {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.faq-content__inner {
    width: 100%;
    padding: 4rem 8%;
}

/*----------------------
  Section Introduction
-----------------------*/

.faq-content__introduction {
    width: 75%;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.faq-content__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 1.2;
}

.faq-content__text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

/*----------------------
  Accordion Items
-----------------------*/

.faq-accordion {
    width: 80%;
    margin: 0 auto;
}

.faq-accordion__item {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
}

.faq-accordion__question {
    margin: 0;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border-left: 0.5rem solid var(--accent-color);
    font-size: 1.25rem;
    line-height: 1.4;
}

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

.faq-accordion__button:hover,
.faq-accordion__button:focus-visible {
    background-color: var(--color-black);
}

.faq-accordion__button:focus-visible {
    outline: 3px solid var(--accent-color);
    outline-offset: -3px;
}

/*accordion open and close symbol*/
.faq-accordion__icon {
    position: relative;
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 1.5rem;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: var(--color-white);
    content: "";
    transform: translateY(-50%);
}

.faq-accordion__icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-accordion__button[aria-expanded="true"] .faq-accordion__icon::after {
    transform: translateY(-50%) rotate(0);
}

/*----------------------
  Accordion Answers
-----------------------*/

.faq-accordion__answer {
    padding: 1.5rem;
    background-color: var(--color-white);
}

.faq-accordion__answer[hidden] {
    display: none;
}

.faq-accordion__answer-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/*************************
      SPLIT CONTENT
**************************/

.split-content {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.split-content__text-column,
.split-content__image-column {
    width: 50%;
}

/*----------------------
  Text Column
-----------------------*/

.split-content__text-column {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40rem;
}

.split-content__text-inner {
    width: 78%;
    padding: 4rem 0;
}

.split-content__heading {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.split-content__text {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

/*----------------------
  Project Callout
-----------------------*/

.split-content__callout {
    padding: 2rem;
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    border-top: 0.375rem solid var(--accent-color);
    text-align: center;
}

.split-content__callout-heading {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    line-height: 1.25;
}

.split-content__qualifications {
    margin: 0;
    padding-left: 1.5rem;
    text-align: left;
}

.split-content__qualification {
    margin-bottom: 0.75rem;
    font-size: 1.0625rem;
    line-height: 1.5;
}

.split-content__qualification:last-child {
    margin-bottom: 0;
}

.split-content--credentials {
    background-color: rgb(246, 248, 252);
}

.split-content--credentials .split-content__text-column {
    min-height: 32rem;
}

.split-content__text-column--services {
    background-color: var(--color-white);
}

.split-content__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border: 2px solid var(--brand-color-1);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.split-content__button:hover,
.split-content__button:focus-visible {
    color: var(--brand-color-1);
    background-color: var(--color-white);
}

/*----------------------
  Image Column
-----------------------*/

.split-content__image-column {
    position: relative;
    min-height: 40rem;
    overflow: hidden;
}

.split-content__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content__image-label {
    position: absolute;
    right: 0;
    bottom: 20%;
    min-width: 30%;
    padding: 1rem 2rem;
    color: var(--color-white);
    background-color: var(--color-black);
    border-left: 0.375rem solid var(--accent-color);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}

/*************************
      SERVICES CONTENT
**************************/

.split-content--services .split-content__text-column {
    background-color: rgb(246, 248, 252);
}

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

.services-list__item {
    position: relative;
    margin-bottom: 0.875rem;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    background-color: var(--color-white);
    border-left: 0.3125rem solid var(--accent-color);
    box-shadow: 0 0.25rem 0.75rem rgba(35, 52, 107, 0.1);
    font-size: 1.0625rem;
    line-height: 1.5;
}

.services-list__item::before {
    position: absolute;
    top: 0.875rem;
    left: 1rem;
    color: var(--brand-color-1);
    font-weight: 700;
    content: "\2713";
}

.services-list__item:last-child {
    margin-bottom: 0;
}

.services-venues {
    width: 100%;
    color: var(--color-white);
    background-color: var(--brand-color-1);
}

.services-venues__inner {
    width: 100%;
    max-width: 82rem;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.services-venues__heading {
    margin: 0 auto 2rem;
    color: var(--color-white);
    font-size: 2.25rem;
    line-height: 1.25;
}

.services-venues__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.services-venues__item {
    padding: 1rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border-top: 0.3125rem solid var(--accent-color);
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
}

/*************************
      SITE CTA
**************************/

.site-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    background-image: url("../image/attnbg.png");
    background-position: center;
    background-repeat: repeat;
}

.site-cta__inner {
    width: 100%;
    max-width: 82rem;
    padding: 2rem;
    text-align: center;
}

.site-cta__heading {
    margin: 0 auto 1.25rem;
    color: var(--accent-color);
    font-size: 2.5rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.site-cta__text {
    max-width: 76rem;
    margin: 0 auto;
    color: var(--color-white);
    font-size: 1.25rem;
    line-height: 1.5;
}

.site-cta__quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 76rem;
    margin: 2rem auto 0;
    padding: 1rem 2rem;
    color: var(--color-text);
    background-color: var(--accent-color);
}

.site-cta__quote-heading {
    margin: 0;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.35;
}

.site-cta__phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 0.5rem 1rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border-radius: 0.4375rem;
    box-shadow: 0.125rem 0.125rem 0.1875rem rgba(0, 0, 0, 0.5);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.site-cta__phone:hover,
.site-cta__phone:focus-visible {
    color: var(--color-white);
    background-color: rgb(35, 52, 107);
}

.site-cta__phone:focus-visible {
    outline: 0.1875rem solid var(--color-white);
    outline-offset: 0.1875rem;
}

.site-cta__phone-icon {
    font-size: 1.375rem;
}

/*************************
      SITE FOOTER
**************************/

.site-footer {
    display: flex;
    width: 100%;
    margin-top: auto;
    color: var(--color-text);
    background-color: var(--color-footer);
    border-top: 0.375rem solid var(--accent-color);
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 3rem 2rem;
}

.site-footer__column {
    width: 28%;
}

.site-footer__column--about {
    width: 36%;
}

.site-footer__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--brand-color-1);
    font-size: 1.25rem;
}

/*----------------------
  Logo and Contact
-----------------------*/

.site-footer__logo-link {
    display: block;
    width: 100%;
    max-width: 20rem;
    margin-bottom: 1.5rem;
}

/*display the full-color brand artwork directly on the light footer*/
.site-footer__logo-image {
    width: 100%;
    height: auto;
}

.site-footer__contact {
    font-style: normal;
}

.site-footer__contact-line {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.site-footer__contact-link {
    color: var(--brand-color-1);
    text-decoration: none;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
}

/*----------------------
  About Company
-----------------------*/

.site-footer__about-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/*----------------------
  Footer Navigation
-----------------------*/

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

.site-footer__menu-item {
    margin-bottom: 0.75rem;
}

.site-footer__menu-link {
    color: var(--brand-color-1);
    font-size: 1rem;
    text-decoration: none;
}

.site-footer__menu-link:hover,
.site-footer__menu-link:focus-visible {
    color: var(--color-black);
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
}

/*************************
      SITE COPYRIGHT
**************************/

.site-copyright {
    width: 100%;
    padding: 0.75rem 1rem;
    color: rgb(255, 255, 255);
    background-color: rgb(35, 52, 107);
    border-top: 0.1875rem solid rgb(253, 182, 21);
    text-align: center;
}

.site-copyright__text {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
}

.site-copyright__link {
    color: rgb(253, 182, 21);
    font-weight: 700;
    text-decoration: none;
}

.site-copyright__link:hover,
.site-copyright__link:focus-visible {
    color: rgb(255, 255, 255);
    text-decoration: underline;
}

.site-copyright__link:focus-visible {
    outline: 0.125rem solid rgb(253, 182, 21);
    outline-offset: 0.1875rem;
}

/*************************
      LAPTOP BREAKPOINT
**************************/

@media (max-width: 64rem) {
    .site-preheader__inner,
    .site-header__inner {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .site-header__logo {
        width: 34%;
    }

    .site-header__navigation {
        width: 66%;
    }

    .site-header__menu-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .home-hero__inner {
        padding-right: 6%;
        padding-left: 6%;
    }

    .faq-content__inner {
        padding-right: 6%;
        padding-left: 6%;
    }

    .faq-accordion {
        width: 90%;
    }

    .site-footer__inner {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

/*************************
      TABLET BREAKPOINT
**************************/

@media (max-width: 56rem) {
    .site-preheader__inner {
        padding: 0.75rem 1rem;
    }

    .site-header__inner {
        padding: 0.75rem 1rem;
    }

    .site-header__logo {
        justify-content: flex-start;
        width: 70%;
    }

    .site-header__logo-link {
        width: 100%;
    }

    .site-header__logo-image {
        max-width: 22rem;
    }

    .site-header__menu-toggle {
        display: flex;
    }

    .site-header__menu-toggle:focus-visible,
    .site-header__menu-close:focus-visible {
        outline: 2px solid var(--brand-color-1);
        outline-offset: 0.25rem;
    }

    .site-header__navigation {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1002;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        padding: 2rem;
        overflow-y: auto;
        background-color: var(--color-off-canvas);
        border-left: 0;
        transition: right 0.3s ease;
    }

    .site-header--open .site-header__navigation {
        right: 0;
    }

    .site-header__menu-close {
        display: block;
        align-self: flex-end;
        width: 3rem;
        height: 3rem;
        margin-bottom: 2rem;
        padding: 0;
        color: var(--color-white);
        background-color: transparent;
        border: 2px solid var(--color-white);
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
    }

    .site-header__overlay {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        width: 100%;
        height: 100vh;
        padding: 0;
        background-color: var(--color-overlay);
        border: 0;
        cursor: pointer;
    }

    .site-header--open .site-header__overlay {
        display: block;
    }

    .site-header__menu {
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
    }

    .site-header__menu-item {
        width: 100%;
        margin: 0 0 0.5rem;
    }

    .site-header__menu-link {
        width: 100%;
        padding: 1rem;
        color: var(--color-white);
    }

    .home-hero__heading,
    .home-hero__text,
    .page-hero__text {
        width: 85%;
    }

    .home-hero__button {
        width: 42%;
        margin-right: 0.5rem;
        margin-left: 0.5rem;
        text-align: center;
    }

    .mid-navigation__introduction {
        width: 85%;
    }

    .faq-content__introduction,
    .faq-accordion {
        width: 100%;
    }

    .mid-navigation__card {
        width: 48%;
        margin-bottom: 1.5rem;
    }

    .main-content__inner {
        flex-direction: column;
        min-height: 0;
    }

    .main-content__visual,
    .main-content__copy {
        width: 100%;
    }

    .main-content__visual {
        min-height: 26rem;
    }

    .main-content__copy {
        padding: 3rem 2rem;
        text-align: center;
    }

    .home-details {
        padding: 3rem 2rem;
    }

    .home-details__inner {
        grid-template-columns: 1fr;
    }

    .site-cta__heading {
        font-size: 2.25rem;
    }

    .site-cta__quote {
        flex-direction: column;
        gap: 1rem;
    }

    .split-content {
        flex-direction: column;
    }

    .split-content__text-column,
    .split-content__image-column {
        width: 100%;
        min-height: 30rem;
    }

    .split-content__text-inner {
        width: 85%;
        padding: 3rem 0;
    }

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

    .site-footer__column,
    .site-footer__column--about {
        width: 48%;
        margin-bottom: 2rem;
    }
}

/*************************
      CELL PHONE BREAKPOINT
**************************/

@media (max-width: 35rem) {
    .site-preheader__inner {
        flex-direction: column;
    }

    .site-preheader__quote-button {
        margin-top: 0.75rem;
    }

    .site-header__logo {
        width: 72%;
    }

    .site-header__navigation {
        width: 100%;
        padding: 1.5rem;
    }

    .home-hero {
        min-height: 26rem;
    }

    .home-hero__inner,
    .page-hero__inner {
        padding: 3rem 1rem;
    }

    .home-hero__heading,
    .home-hero__text,
    .page-hero__text {
        width: 100%;
    }

    .home-hero__heading {
        font-size: 2.25rem;
    }

    .home-hero__text,
    .page-hero__text {
        font-size: 1.125rem;
    }

    .home-hero__actions {
        align-items: center;
        flex-direction: column;
    }

    .home-hero__button {
        width: 80%;
        margin: 0 0 1rem;
    }

    .page-hero__heading {
        font-size: 2.25rem;
    }

    .faq-content__inner {
        padding: 3rem 1rem;
    }

    .faq-content__heading {
        font-size: 2rem;
    }

    .faq-accordion__button {
        padding: 1rem;
    }

    .faq-accordion__answer {
        padding: 1rem;
    }

    .mid-navigation__inner {
        padding: 3rem 1rem;
    }

    .mid-navigation__heading {
        font-size: 2rem;
    }

    .mid-navigation__introduction {
        width: 100%;
    }

    .mid-navigation__card {
        width: 100%;
    }

    .main-content__visual {
        min-height: 18rem;
    }

    .main-content__copy {
        padding: 3rem 1rem;
    }

    .main-content__heading {
        font-size: 2rem;
    }

    .home-details {
        padding: 3rem 1rem;
    }

    .home-details__card,
    .home-details__service-area {
        padding: 1.5rem 1rem;
    }

    .site-cta__inner {
        padding: 2rem 1rem;
    }

    .site-cta__heading {
        font-size: 2rem;
    }

    .site-cta__text {
        font-size: 1.125rem;
    }

    .site-cta__quote {
        padding: 1.25rem 1rem;
    }

    .site-cta__quote-heading,
    .site-cta__phone {
        font-size: 1.5rem;
    }

    .site-cta__phone {
        width: 100%;
    }

    .split-content__text-column,
    .split-content__image-column {
        min-height: 24rem;
    }

    .split-content__text-inner {
        width: 100%;
        padding: 3rem 1rem;
    }

    .split-content__heading {
        font-size: 2rem;
    }

    .split-content__callout {
        padding: 1.5rem 1rem;
    }

    .split-content__button {
        width: 100%;
        text-align: center;
    }

    .split-content__image-label {
        min-width: 45%;
        padding: 1rem;
    }

    .services-venues__inner {
        padding: 3rem 1rem;
    }

    .services-venues__heading {
        font-size: 2rem;
    }

    .services-venues__list {
        grid-template-columns: 1fr;
    }

    .site-footer__inner {
        padding: 2rem 1rem;
    }

    .site-footer__column,
    .site-footer__column--about {
        width: 100%;
        text-align: center;
    }

    .site-footer__logo-image {
        margin-right: auto;
        margin-left: auto;
    }

    .site-footer__logo-link {
        margin-right: auto;
        margin-left: auto;
    }

}
