:root {
  --wp-teal: #10b8b0;
  --wp-teal-dark: #07827d;
  --wp-black: #111111;
  --wp-white: #ffffff;
  --font-display: "Arial Black", Arial, sans-serif;
  --font-body:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  --font-heading:
    "Times New Roman",
    Times,
    serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
}

body.mobile-menu-open {
  overflow: hidden;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.desktop-nav a,
.mobile-nav__links a,
.btn,
.mobile-nav__order,
.mobile-nav__call {
  font-family: var(--font-display);
}

h1 {
  font-family: var(--font-heading);
}

/* ========================================
   GLOBAL HEADER
======================================== */

.site-header {
  position: relative;
  z-index: 9999;
}

/* ========================================
   ANNOUNCEMENT BAR
======================================== */

.announcement-bar {
  background: var(--wp-black);
  color: var(--wp-white);
  font-family: var(--font-heading);
  overflow: hidden;
}

.announcement-bar__inner {
  position: relative;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0.55rem 1rem;

  text-align: center;

  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.announcement-bar__inner::before,
.announcement-bar__inner::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--wp-teal);
  vertical-align: middle;
  margin: 0 0.85rem;
  border-radius: 999px;
}

/* ========================================
   DESKTOP HEADER
======================================== */

.main-header {
  position: relative;
  background: var(--wp-white);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  z-index: 30;
}

.main-header__inner {
  max-width: 1220px;
  margin: 0 auto;
  padding: .6rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  display: block;

  max-height: 60px;
  width: auto;
}

/* ========================================
   DESKTOP NAVIGATION
======================================== */

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 1.6rem;
}

.desktop-nav a {
  color: #333333;
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--wp-teal-dark);
}

/* ========================================
   DESKTOP BUTTONS
======================================== */

.header-actions {
  display: flex;
  align-items: center;

  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 0.45rem;

  padding: 0.75rem 1rem;

  border-radius: 999px;

  font-size: 0.85rem;
  font-weight: 800;

  text-decoration: none;

  line-height: 1;

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--order {
  background: var(--wp-black);
  color: var(--wp-white);
}

.btn--order:hover {
  background: var(--wp-teal-dark);
}

.btn--call {
  background: var(--wp-teal);
  color: var(--wp-white);
}

.btn--call i {
  position: relative;
  top: 2px;
}

.btn--call:hover {
  background: var(--wp-teal-dark);
}

/* ========================================
   MOBILE DEFAULTS
======================================== */

.mobile-menu-toggle,
.mobile-call {
  display: none;
}

.mobile-nav {
  display: none;
}

/* ========================================
   MOBILE STYLES
======================================== */

@media (max-width: 900px) {

  /* =========================
     MOBILE HEADER LAYOUT
  ========================= */

  .main-header__inner {
    grid-template-columns: 44px 1fr 44px;

    gap: 0;

    padding: 0.9rem 1rem;
  }

  .site-logo {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;
  }

  .site-logo img {
    margin: 0 auto;

    max-height: 46px;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  /* =========================
     MOBILE HAMBURGER
  ========================= */

  .mobile-menu-toggle {
    position: relative;

    z-index: 100001;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;

    width: 44px;
    height: 44px;

    background: transparent;

    border: 0;

    padding: 0;

    cursor: pointer;
  }

  .mobile-menu-toggle span {
    display: block;

    width: 25px;
    height: 2px;

    background: var(--wp-black);

    border-radius: 99px;

    transition:
      transform 0.25s ease,
      opacity 0.25s ease;
  }

  /* =========================
     MOBILE PHONE BUTTON
  ========================= */

  .mobile-call {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 44px;
    height: 44px;

    color: var(--wp-white);

    background: var(--wp-teal);

    border-radius: 50%;

    text-decoration: none;

    font-size: 1rem;
  }

  /* =========================
     MOBILE OVERLAY
  ========================= */

  .mobile-nav {
    position: fixed;

    inset: 0;

    z-index: 99999;

    display: flex;

    background: rgba(0, 0, 0, 0.4);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .mobile-nav__panel {
    width: 100%;
    min-height: 100vh;

    background: var(--wp-white);

    padding:
      1.5rem
      1.5rem
      2rem;

    display: flex;
    flex-direction: column;

    transform: translateX(-100%);

    transition: transform 0.35s ease;
  }

  /* =========================
     MOBILE TOP BAR
  ========================= */

  .mobile-nav__top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 2rem;
  }

  .mobile-nav__logo {
    display: inline-flex;
    align-items: center;
  }

  .mobile-nav__logo img {
    display: block;

    max-height: 58px;
    width: auto;
  }

  .mobile-nav__close {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: transparent;

    border: 0;

    padding: 0;

    cursor: pointer;

    font-size: 1.75rem;

    color: var(--wp-black);
  }

  /* =========================
     MOBILE LINKS
  ========================= */

  .mobile-nav__links {
    display: flex;
    flex-direction: column;
  }

  .mobile-nav__links a {
    color: var(--wp-black);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
  }

  .mobile-nav__links a:hover {
    color: var(--wp-teal-dark);
  }

  /* =========================
     MOBILE DIVIDER
  ========================= */

  .mobile-nav__divider {
    width: 100%;
    height: 1px;

    background: rgba(0, 0, 0, 0.12);

    margin:
      1.5rem
      0;
  }

  /* =========================
   MOBILE SOCIALS
========================= */

  .mobile-nav__socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }

  .mobile-nav__socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--wp-black);
    color: var(--wp-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition:
      transform 0.2s ease,
      background 0.2s ease;
  }

  .mobile-nav__socials a:hover {
    background: var(--wp-teal);
    transform: translateY(-2px);
  }

  /* =========================
     MOBILE CTA BUTTONS
  ========================= */

  .mobile-nav__order,
  .mobile-nav__call {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 0.45rem;

    width: 100%;
    min-height: 54px;

    border-radius: 999px;

    text-decoration: none;

    font-size: 0.95rem;
    font-weight: 900;

    text-transform: uppercase;

    letter-spacing: 0.03em;
  }

  .mobile-nav__order {
    background: var(--wp-black);
    color: var(--wp-white);
  }

  .mobile-nav__call {
    margin-top: 0.85rem;

    background: var(--wp-teal);
    color: var(--wp-white);
  }

  /* =========================
     OPEN STATE
  ========================= */

  .site-header.is-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header.is-open .mobile-nav__panel {
    transform: translateX(0);
  }

  .site-header.is-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}