/* ======================================================
   Don Señor Theme 7-23-26: 9:30pm
   Restaurant-specific colors, typography, nav styling,
   hero personality, and button colors.
====================================================== */

/* ======================================================
   DON SEÑOR DESIGN TOKENS
====================================================== */

:root {
  /* Brand Colors */
  --color-primary: #ED1C24;
  --color-primary-dark: #D7151D;
  --color-primary-shadow: #8F121A;
  --color-accent: #F3BE3D;
  --color-accent-dark: #E5A928;

  /* Neutral Colors */
  --color-cream: #EFE0C7;
  --color-offwhite: #FDF8EE;
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-text: #1F1F1F;
  --color-navbar-border: #959595;

  /* Fonts */
  --font-display: "Lilita One", sans-serif;
  --font-accent: "Salsa", cursive;
  --font-body: system-ui, sans-serif;

  /* Borders and Corners */
  --border-width-button: 3px;
  --border-width-card: 4px;
  --border-radius-card: 18px;
  --border-radius-card-mobile: 15px;
  --border-radius-round: 50%;

  /* Shadows */
  --shadow-navbar: 0 2px 10px rgba(0, 0, 0, .05);
  --shadow-card: 0 15px 35px rgba(69, 30, 21, .17);
  --shadow-card-hover: 0 24px 45px rgba(69, 30, 21, .24);
  --shadow-text: 0 3px 10px rgba(0, 0, 0, .45);

  /* Motion */
  --transition-fast: .2s ease;
  --transition-standard: .3s ease;
  --transition-slow: .65s ease;

  /* Section Rhythm */
  --section-space: clamp(2.5rem, 7vw, 3.5rem);

}

/* ======================================================
   SITE NAVIGATION

   Structure
   • Navbar shell
   • Logo
   • Navigation links
   • Navigation actions
   • Location button
   • Responsive navigation
====================================================== */


/* ------------------------------------------------------
   Navbar Shell
------------------------------------------------------ */

.site-navbar {
  min-height: var(--lp-header-height);
  padding: 0;

  background: var(--color-cream);
  border-top: 10px solid var(--color-navbar-border);
  box-shadow: var(--shadow-navbar);

  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;

  z-index: 1030;
}

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

.site-logo {
  height: 60px;

  object-fit: contain;
}


/* ------------------------------------------------------
   Navigation Links
------------------------------------------------------ */

.site-nav-link {
  padding: 0 !important;

  color: var(--color-text);
  font-size: 18px;
  line-height: 1;
  text-decoration: none;

  transition: color var(--transition-fast);
}

.site-nav-link:hover,
.site-nav-link:focus {
  color: var(--color-primary);
}


/* ------------------------------------------------------
   Navigation Actions
------------------------------------------------------ */

.site-navbar-right {
  gap: 20px;
}

.nav-button {
  font-size: 18px;
}


/* ------------------------------------------------------
   Location Button
------------------------------------------------------ */

.site-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 56px;
  height: 56px;

  background: var(--color-white);
  border: var(--border-width-button) solid var(--color-black);
  border-radius: var(--border-radius-round);

  color: var(--color-black);
  font-size: 22px;
  text-decoration: none;

  transition:
    background-color var(--transition-fast),
    transform var(--transition-fast);
}

.site-icon-button:hover,
.site-icon-button:focus {
  background: #FAF7F0;
  color: var(--color-black);
  transform: translateY(-2px);
}


/* ------------------------------------------------------
   Responsive Navigation
------------------------------------------------------ */

.site-mobile-nav-extra {
  display: none;
}

@media (max-width: 991.98px) {

  .site-navbar {
    min-height: var(--lp-header-height);
    padding: 12px 0;
    background: var(--color-cream);
  }

  .site-navbar-wrap {
    position: static;
  }

  .site-navbar-collapse {
    position: fixed;
    top: var(--lp-header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1029;
    width: 100%;
    height: calc(100dvh - var(--lp-header-height));
    padding: 1.75rem 24px 2.25rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background:
      radial-gradient(circle at 88% 14%, rgba(243, 190, 61, .12), transparent 20rem),
      var(--color-cream);
    border-top: 1px solid rgba(31, 31, 31, .08);
    box-shadow: none;
  }

  .site-navbar-collapse.collapsing {
    height: calc(100dvh - var(--lp-header-height)) !important;
    transition: none;
  }

  body:has(.site-navbar-collapse.show) {
    overflow: hidden;
  }

  .site-navbar-toggler {
    position: relative;
  }

  .site-navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: none;
  }

  .site-navbar-toggler[aria-expanded="true"]::before,
  .site-navbar-toggler[aria-expanded="true"]::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 27px;
    height: 3px;
    background: currentColor;
    border-radius: 999px;
  }

  .site-navbar-toggler[aria-expanded="true"]::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-navbar-toggler[aria-expanded="true"]::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-navbar-left {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 0 0 1.35rem;
    border-bottom: 2px solid rgba(31, 31, 31, .16);
  }

  .site-navbar-left .nav-item {
    width: 100%;
  }

  .site-nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    padding: .48rem 0 !important;
    color: var(--color-text);
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 5vw, 2.25rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: .01em;
  }

  .site-mobile-nav-extra {
    display: block;
    width: min(100%, 720px);
    margin: 0 auto;
    padding: 1.25rem 0 1.35rem;
    border-bottom: 2px solid rgba(31, 31, 31, .16);
  }

  .site-mobile-nav-label {
    margin: 0 0 .7rem;
    color: var(--color-primary);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
  }

  .site-mobile-location-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem .75rem;
  }

  .site-mobile-location-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: .55rem .7rem;
    background: rgba(255, 255, 255, .42);
    border: 1px solid rgba(31, 31, 31, .12);
    border-radius: var(--lp-radius);
    color: var(--color-text);
    font-size: .98rem;
    font-weight: 850;
    line-height: 1.1;
    text-decoration: none;
  }

  .site-mobile-location-link:hover,
  .site-mobile-location-link:focus-visible {
    background: var(--color-white);
    color: var(--color-primary);
  }

  .site-mobile-fiesta-link {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: 1rem;
    color: var(--color-primary);
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none;
  }

  .site-mobile-fiesta-link:hover,
  .site-mobile-fiesta-link:focus-visible {
    color: var(--color-primary-dark);
    text-decoration: underline;
  }

  #newsletter-title {
    scroll-margin-top: calc(var(--lp-header-height) + 1.5rem);
  }

  .site-navbar-right {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: .75rem;
    width: min(100%, 720px);
    margin: 0 auto;
    padding-top: 1.35rem;
  }

  .site-navbar-right .nav-button {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding-inline: .75rem;
    font-size: 1rem;
    line-height: 1;
  }

  .site-navbar-right .site-icon-button {
    grid-column: 1 / -1;
    width: max-content;
    height: auto;
    aspect-ratio: auto;
    gap: .45rem;
    margin: .15rem auto 0;
    padding: .35rem 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--color-text);
    font-size: .95rem;
    font-weight: 850;
    line-height: 1;
  }

  .site-navbar-right .site-icon-button::after {
    content: "Find a Location";
  }

  .site-navbar-right .site-icon-button:hover,
  .site-navbar-right .site-icon-button:focus-visible {
    background: transparent;
    color: var(--color-primary);
    transform: none;
  }
}

@media (max-width: 575.98px) {
  .site-navbar-collapse {
    padding-top: 1.15rem;
    padding-bottom: 1.5rem;
  }

  .site-navbar .lp-button {
    min-width: 0;
  }

  .site-navbar-left,
  .site-mobile-nav-extra,
  .site-navbar-right {
    width: 100%;
  }

  .site-nav-link {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
    padding-block: .38rem !important;
  }

  .site-mobile-nav-extra {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .site-mobile-location-grid {
    gap: .45rem .55rem;
  }

  .site-mobile-location-link {
    min-height: 40px;
    padding: .45rem .55rem;
    font-size: .9rem;
  }

  .site-mobile-fiesta-link {
    margin-top: .8rem;
    font-size: 1rem;
  }

  .site-navbar-right {
    gap: .55rem;
    padding-top: 1rem;
  }

  .site-navbar-right .nav-button {
    min-height: 46px;
    font-size: .9rem;
  }
}

/* ---------- Button Colors ---------- */

.lp-button-primary {
  background: var(--color-primary);
  border: var(--border-width-button) solid var(--color-primary);
  color: var(--color-white);
}

.lp-button-primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  color: var(--color-white);
}

.lp-button-secondary {
  background: var(--color-white);
  border: var(--border-width-button) solid var(--color-black);
  color: var(--color-black);
}

.lp-button-secondary:hover {
  background: #FAF7F0;
  color: var(--color-black);
}


/* ======================================================
   SECTION HEADING THEME
   Shared Don Señor typography for framework section
   heading primitives. Individual sections control scale,
   color, spacing, alignment, and text treatments.
====================================================== */

.lp-section-eyebrow {
  font-family: var(--font-accent);
}

.lp-section-title {
  font-family: var(--font-display);
  letter-spacing: .01em;
  text-transform: uppercase;
}


/* ======================================================
   HERO

   Structure
   • Section foundation
   • Background treatment
   • Atmospheric overlay
   • Hero typography
   • Hero actions
   • Responsive
====================================================== */


/* ------------------------------------------------------
   Section Foundation
------------------------------------------------------ */

.lp-hero {
  background-image:
    url("../../images/blue-marg.jpg");
}


/* ------------------------------------------------------
   Atmospheric Overlay
------------------------------------------------------ */

.lp-hero-overlay {
  background:
    rgba(0, 0, 0, .15);
}


/* ------------------------------------------------------
   Hero Typography
------------------------------------------------------ */

.hero-title {
  color: var(--color-offwhite);

  font-family: var(--font-display);

  text-shadow:
    0 5px 18px rgba(0, 0, 0, .45);
}

.hero-kicker {
  margin-bottom: -.15em;

  font-size:
    clamp(1.5rem, 2.25vw, 2.5rem);

  font-weight: 700;
}

.hero-main {
  font-size:
    clamp(3.6rem, 7vw, 6.5rem);

  font-weight: 900;
  line-height: .9;
}

.hero-accent {
  color: var(--color-primary);

  text-shadow:
    0 2px 0 var(--color-primary-shadow),
    0 5px 14px rgba(0, 0, 0, .35);
}

.hero-time {
  font-size: .9em;
}

.hero-subtitle {
  color: rgba(255, 255, 255, .94);

  font-size:
    clamp(1.1rem, 2vw, 2rem);

  font-weight: 600;
  letter-spacing: .01em;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, .45);
}


/* ------------------------------------------------------
   Hero Actions
------------------------------------------------------ */

.hero-button {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  min-width: 345px;
  min-height: 112px;
  padding: 0 1.75rem;

  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;

  border: none !important;

  box-shadow: none;

  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: .02em;
  text-decoration: none;

  filter:
    drop-shadow(
      0 6px 12px rgba(0, 0, 0, .28)
    );

  transition:
    transform var(--transition-fast),
    filter var(--transition-fast);
}

.hero-button:hover,
.hero-button:focus {
  transform: translateY(-8px);

  filter:
    drop-shadow(
      0 12px 22px rgba(0, 0, 0, .35)
    );
}

.hero-button-pickup {
  background-image:
    url("../../images/button-scallop-red.svg");

  background-size: 102% 102%;

  color: var(--color-white);
}

.hero-button-pickup:hover,
.hero-button-pickup:focus {
  color: var(--color-white);
}

.hero-button-delivery {
  background-image:
    url("../../images/button-scallop-white.svg");

  color: var(--color-black);
}

.hero-button-delivery:hover,
.hero-button-delivery:focus {
  color: var(--color-black);
}

.hero-button-icon {
  flex: 0 0 auto;

  font-size: 1.65rem;
}

.hero-button-text {
  flex: 1;

  white-space: nowrap;
}

.hero-button-arrow {
  flex: 0 0 auto;

  font-size: 2rem;
  line-height: 1;

  transition:
    transform var(--transition-fast);
}

.hero-button:hover .hero-button-arrow,
.hero-button:focus .hero-button-arrow {
  transform: translateX(8px);
}


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

@media (max-width: 575.98px) {

  .hero-kicker {
    font-size:
      clamp(1.4rem, 7vw, 2rem);
  }

  .hero-main {
    font-size:
      clamp(3rem, 15vw, 4.5rem);
  }

  .hero-subtitle {
    max-width: 92%;

    font-size:
      clamp(1.15rem, 5vw, 1.5rem);
  }

}


/* ======================================================
   THE DON SEÑOR DIFFERENCE

   Structure
   • Section foundation
   • Decorative bands
   • Section container
   • Section header
   • Header actions
   • Feature grid
   • Card placement
====================================================== */


/* ------------------------------------------------------
   Section Foundation
------------------------------------------------------ */

.difference-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(237, 28, 36, .055),
      transparent 26rem
    ),
    radial-gradient(
      circle at 90% 85%,
      rgba(143, 18, 26, .045),
      transparent 28rem
    ),
    var(--color-cream);

  color: var(--color-text);
}


/* ------------------------------------------------------
   Decorative Bands
------------------------------------------------------ */

.difference-band {
  position: relative;

  width: 100%;
  height: 42px;

  background-color: var(--color-primary-dark);
  background-image:
    linear-gradient(
      30deg,
      rgba(255, 255, 255, .12) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, .12) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, .12) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, .12) 87.5%
    ),
    linear-gradient(
      30deg,
      rgba(0, 0, 0, .15) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, .15) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(0, 0, 0, .15) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, .15) 87.5%
    );

  background-position:
    0 0,
    0 0,
    34px 21px,
    34px 21px;

  background-size: 68px 42px;
}

.difference-band::after {
  content: "";

  position: absolute;
  right: 0;
  left: 0;

  height: 5px;

  background: var(--color-accent-dark);
}

.difference-band-top::after {
  bottom: 0;
}

.difference-band-bottom::after {
  top: 0;
}


/* ------------------------------------------------------
   Section Container
------------------------------------------------------ */

.difference-container {
  padding-block: var(--section-space);
}


/* ------------------------------------------------------
   Section Header
------------------------------------------------------ */

.difference-header {
  grid-template-columns:
    minmax(300px, 1.1fr)
    minmax(320px, .9fr);
  align-items: end;
  gap: clamp(2rem, 6vw, 6rem);

  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.difference-eyebrow {
  margin-bottom: .6rem;

  color: var(--color-primary);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.difference-title {
  max-width: 760px;

  color: var(--color-primary);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: .88;

  text-shadow:
    2px 2px 0 rgba(143, 18, 26, .16);
}


/* ------------------------------------------------------
   Header Copy and Actions
------------------------------------------------------ */

.difference-header-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.difference-intro {
  max-width: 650px;
  margin: 0;

  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  font-weight: 650;
  line-height: 1.55;
}

.difference-button {
  min-width: 200px;
  min-height: 63px;
  font-size: 1.08rem;
}


/* ------------------------------------------------------
   Feature Grid
------------------------------------------------------ */

.difference-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(175px, 1fr));
  gap: clamp(1rem, 1.6vw, 1.6rem);

  min-height: 820px;
}


/* ------------------------------------------------------
   Card Placement
------------------------------------------------------ */

/* Large left anchor */

.difference-card-fresh {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}


/* Wide upper-right card */

.difference-card-margaritas {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}


/* Tall right card */

.difference-card-family {
  grid-column: 8 / 13;
  grid-row: 2 / 4;
}


/* Lower-left card */

.difference-card-recipes {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}


/* Lower-center card */

.difference-card-fiesta {
  grid-column: 4 / 8;
  grid-row: 3 / 4;
}


/* ======================================================
   DIFFERENCE CARD SYSTEM

   Structure
   • Card shell
   • Card media
   • Images and video
   • Overlay
   • Card content
   • Card typography
   • Placeholder artwork
   • Hover interactions
====================================================== */


/* ------------------------------------------------------
   Card Shell
------------------------------------------------------ */

.difference-card {
  background: var(--color-primary-shadow);
  border: var(--border-width-card) solid rgba(255, 255, 255, .78);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);

}


/* ------------------------------------------------------
   Card Media
------------------------------------------------------ */

.difference-card-media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

}


/* ------------------------------------------------------
   Card Images and Video
------------------------------------------------------ */


/* ------------------------------------------------------
   Card Overlay
------------------------------------------------------ */

.difference-card-overlay {
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, .68) 0%,
      rgba(0, 0, 0, .46) 24%,
      rgba(0, 0, 0, .16) 42%,
      rgba(0, 0, 0, 0) 58%
    );
}


/* ------------------------------------------------------
   Card Content
------------------------------------------------------ */

.difference-card-content {
  padding: clamp(1.4rem, 2.3vw, 2.4rem);

  color: var(--color-white);
}


/* ------------------------------------------------------
   Card Typography
------------------------------------------------------ */

.difference-card-label {
  margin: 0 0 .4rem;

  color: var(--color-accent);
  font-family: var(--font-accent);
  font-size: clamp(.9rem, 1vw, 1.05rem);
  line-height: 1.2;
}

.difference-card-title {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.4vw, 2.8rem);
  line-height: .95;
  text-transform: uppercase;

  text-shadow: var(--shadow-text);
}

.difference-card-text {
  max-width: 35rem;
  margin: .75rem 0 0;

  color: rgba(255, 255, 255, .9);
  font-size: clamp(.95rem, 1.05vw, 1.1rem);
  font-weight: 600;
  line-height: 1.45;
}


/* ------------------------------------------------------
   Hover Interactions
------------------------------------------------------ */

.difference-card:hover {
  box-shadow: var(--shadow-card-hover);
}


/* ------------------------------------------------------
   Difference Responsive
------------------------------------------------------ */

@media (max-width: 991.98px) {

  .difference-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.5rem;
  }

  .difference-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(300px, auto);

    min-height: 0;
  }

  .difference-card-fresh {
    grid-column: 1 / 3;
    grid-row: auto;

    min-height: 520px;
  }

  .difference-card-margaritas,
  .difference-card-family,
  .difference-card-recipes,
  .difference-card-fiesta {
    grid-column: auto;
    grid-row: auto;
  }

  .difference-card-family {
    min-height: 450px;
  }

}


@media (max-width: 767.98px) {

  .difference-band {
    height: 32px;

    background-size: 52px 32px;
    background-position:
      0 0,
      0 0,
      26px 16px,
      26px 16px;
  }

  .difference-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .difference-card-fresh,
  .difference-card-margaritas,
  .difference-card-family,
  .difference-card-recipes,
  .difference-card-fiesta {
    grid-column: 1;
    grid-row: auto;

    min-height: 360px;
  }

  .difference-card-fresh,
  .difference-card-family {
    min-height: 460px;
  }

}


@media (max-width: 575.98px) {

  .difference-title {
    font-size: clamp(2.75rem, 14vw, 4.1rem);
  }

  .difference-intro {
    font-size: 1.05rem;
  }

  .difference-button {
    width: 100%;
  }

  .difference-card {
    min-height: 340px;

    border-width: 3px;
    border-radius: var(--border-radius-card-mobile);
  }

  .difference-card-fresh,
  .difference-card-family {
    min-height: 420px;
  }

  .difference-card-content {
    padding: 1.5rem;
  }

}


/* ======================================================
   HANDCRAFTED MARGARITAS

   Structure
   • Section foundation
   • Background media
   • Atmospheric overlay
   • Content container
   • Typography
   • Actions
   • Responsive
====================================================== */


/* ------------------------------------------------------
   Section Foundation
------------------------------------------------------ */

.margarita-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  display: flex;
  align-items: center;

  min-height: clamp(620px, 78vh, 850px);

  background: #18110D;
  color: var(--color-white);
}


/* ------------------------------------------------------
   Background Media
------------------------------------------------------ */

.margarita-media {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.margarita-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* ------------------------------------------------------
   Atmospheric Overlay
------------------------------------------------------ */

.margarita-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;

  background:
    linear-gradient(
      90deg,
      rgba(15, 8, 5, .92) 0%,
      rgba(15, 8, 5, .78) 32%,
      rgba(15, 8, 5, .38) 58%,
      rgba(15, 8, 5, .08) 78%,
      rgba(15, 8, 5, 0) 100%
    ),
    linear-gradient(
      to top,
      rgba(0, 0, 0, .28),
      rgba(0, 0, 0, 0) 45%
    );
}


/* ------------------------------------------------------
   Content Container
------------------------------------------------------ */

.margarita-container {
  position: relative;

  width: 100%;
  padding-top: clamp(5rem, 9vw, 8rem);
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.margarita-content {
  max-width: 650px;
}


/* ------------------------------------------------------
   Typography
------------------------------------------------------ */

.margarita-eyebrow {
  margin-bottom: .75rem;

  color: var(--color-accent);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.2;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, .45);
}

.margarita-title {

  color: var(--color-white);
  font-size: clamp(3.5rem, 6.5vw, 6.75rem);
  line-height: .84;

  text-shadow:
    0 5px 18px rgba(0, 0, 0, .48);
}

.margarita-copy {
  max-width: 585px;
  margin: 1.5rem 0 0;

  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  font-weight: 600;
  line-height: 1.55;

  text-shadow:
    0 2px 8px rgba(0, 0, 0, .38);
}


/* ------------------------------------------------------
   Actions
------------------------------------------------------ */

.margarita-actions {
  gap: 1rem;

  margin-top: 2rem;
}

.margarita-button,
.margarita-happy-hour-button {
  min-width: 210px;
  min-height: 58px;
}


.margarita-happy-hour-button {
  background: rgba(18, 12, 9, .52);
  border:
    var(--border-width-button)
    solid
    rgba(255, 255, 255, .9);

  color: var(--color-white);

  backdrop-filter: blur(5px);
}

.margarita-happy-hour-button:hover,
.margarita-happy-hour-button:focus {
  background: var(--color-white);
  border-color: var(--color-white);

  color: var(--color-text);
}


/* ------------------------------------------------------
   Tablet
------------------------------------------------------ */

@media (max-width: 991.98px) {

  .margarita-section {
    min-height: 680px;
  }

  .margarita-image {
    object-position: right center;
  }

  .margarita-content {
    max-width: 54%;
  }

  .margarita-title {
    font-size: clamp(3rem, 6vw, 4.6rem);
  }

  .margarita-overlay {
    background:
      linear-gradient(
        90deg,
        rgba(15, 8, 5, .9) 0%,
        rgba(15, 8, 5, .72) 48%,
        rgba(15, 8, 5, .26) 78%,
        rgba(15, 8, 5, .08) 100%
      ),
      linear-gradient(
        to top,
        rgba(0, 0, 0, .28),
        rgba(0, 0, 0, 0) 45%
      );
  }

}


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

@media (max-width: 575.98px) {

  .margarita-section {
    align-items: flex-end;

    min-height: 720px;
  }

  .margarita-image {
    object-position: 65% center;
  }

  .margarita-overlay {
    background:
      linear-gradient(
        to top,
        rgba(12, 7, 4, .97) 0%,
        rgba(12, 7, 4, .88) 36%,
        rgba(12, 7, 4, .42) 68%,
        rgba(12, 7, 4, .12) 100%
      );
  }

  .margarita-container {
    padding-top: 11rem;
    padding-bottom: 3.5rem;
  }

  .margarita-content {
    max-width: 100%;
  }

  .margarita-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  .margarita-copy {
    max-width: 520px;

    font-size: 1.05rem;
  }

  .margarita-actions {
    flex-direction: column;
  }

  .margarita-button,
  .margarita-happy-hour-button {
    width: 100%;
  }

}


/* ======================================================
   HAPPY HOUR

   Structure
   • Section foundation
   • Decorative bands
   • Section layout
   • Heading and schedule
   • Specials
   • Responsive
====================================================== */


/* ------------------------------------------------------
   Section Foundation
------------------------------------------------------ */

.happy-hour-band {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 20% 30%,
      rgba(255, 255, 255, .07),
      transparent 22rem
    ),
    radial-gradient(
      circle at 85% 70%,
      rgba(0, 0, 0, .12),
      transparent 24rem
    ),
    var(--color-primary-dark);

  color: var(--color-white);
}


/* ------------------------------------------------------
   Decorative Bands
------------------------------------------------------ */

.happy-hour-pattern {
  width: 100%;
  height: 18px;

  background-color: var(--color-primary-shadow);

  background-image:
    linear-gradient(
      30deg,
      rgba(255, 255, 255, .14) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, .14) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, .14) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, .14) 87.5%
    ),
    linear-gradient(
      30deg,
      rgba(0, 0, 0, .16) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, .16) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(0, 0, 0, .16) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(0, 0, 0, .16) 87.5%
    );

  background-position:
    0 0,
    0 0,
    29px 9px,
    29px 9px;

  background-size: 58px 18px;
}

.happy-hour-pattern-top {
  border-bottom:
    var(--border-width-card)
    solid
    var(--color-accent-dark);
}

.happy-hour-pattern-bottom {
  border-top:
    var(--border-width-card)
    solid
    var(--color-accent-dark);
}


/* ------------------------------------------------------
   Section Layout
------------------------------------------------------ */

.happy-hour-container {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);

  padding-top: clamp(2rem, 3.5vw, 3rem);
  padding-bottom: clamp(2rem, 3.5vw, 3rem);
}


/* ------------------------------------------------------
   Heading and Schedule
------------------------------------------------------ */

.happy-hour-heading {
  flex: 0 0 auto;
}

.happy-hour-eyebrow {
  margin: 0;

  color: var(--color-accent);
  font-family: var(--font-accent);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  line-height: 1;
}

.happy-hour-schedule {
  margin: .5rem 0 0;

  color: rgba(255, 255, 255, .92);
  font-size: clamp(.95rem, 1.1vw, 1.05rem);
  font-weight: 750;
  line-height: 1.3;
  white-space: nowrap;
}


/* ------------------------------------------------------
   Specials
------------------------------------------------------ */

.happy-hour-specials {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.happy-hour-special {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 74px;
  padding:
    .25rem
    clamp(1rem, 2.5vw, 2.25rem);

  border-left:
    1px solid rgba(255, 255, 255, .25);
}

.happy-hour-price {
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.5vw, 2.75rem);
  line-height: .9;

  text-shadow:
    0 3px 10px rgba(0, 0, 0, .24);
}

.happy-hour-item {
  margin-top: .45rem;

  color: rgba(255, 255, 255, .9);
  font-size: clamp(.9rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.25;
}


/* ------------------------------------------------------
   Tablet
------------------------------------------------------ */

@media (max-width: 991.98px) {

  .happy-hour-container {
    grid-template-columns: 1fr;
    gap: 1.75rem;

    text-align: center;
  }

  .happy-hour-special:first-child {
    border-left: none;
  }

}


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

@media (max-width: 575.98px) {

  .happy-hour-container {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .happy-hour-schedule {
    white-space: normal;
  }

  .happy-hour-specials {
    grid-template-columns: 1fr;
  }

  .happy-hour-special {
    min-height: auto;
    padding: 1rem 0;

    border-top:
      1px solid rgba(255, 255, 255, .22);

    border-left: none;
  }

  .happy-hour-special:first-child {
    border-top: none;
  }

}


/* ======================================================
   ABOUT DON SEÑOR

   Structure
   • Section foundation
   • Section container
   • Two-column layout
   • Portrait
   • Story content
   • Typography
   • Responsive
====================================================== */


/* ------------------------------------------------------
   Section Foundation
------------------------------------------------------ */

.about-section {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 18%,
      rgba(237, 28, 36, .055),
      transparent 28rem
    ),
    radial-gradient(
      circle at 92% 82%,
      rgba(243, 190, 61, .08),
      transparent 26rem
    ),
    var(--color-offwhite);

  color: var(--color-text);
}


/* ------------------------------------------------------
   Section Container
------------------------------------------------------ */

.about-container {
  padding-block: var(--section-space);
}


/* ------------------------------------------------------
   Two-Column Layout
------------------------------------------------------ */

.about-layout {
  grid-template-columns:
    minmax(320px, .9fr)
    minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);

  max-width: 1500px;
  margin-inline: auto;
}


/* ------------------------------------------------------
   Portrait
------------------------------------------------------ */

.about-portrait {
  position: relative;

  margin: 0;
}

.about-image-frame {
  position: relative;
  overflow: hidden;

  aspect-ratio: 4 / 5;

  background: var(--color-cream);
  border: var(--border-width-card) solid var(--color-white);
  border-radius: var(--border-radius-card);
  box-shadow: var(--shadow-card);
}

.about-image-frame::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: 1;

  border:
    1px solid
    rgba(143, 18, 26, .16);
  border-radius:
    calc(
      var(--border-radius-card)
      - var(--border-width-card)
    );

  pointer-events: none;
}

.about-image {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transition:
    transform var(--transition-slow);
}

.about-portrait:hover .about-image {
  transform: scale(1.025);
}

.about-caption {
  position: absolute;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 2;

  padding: .7rem 1rem;

  background: rgba(143, 18, 26, .92);
  border-radius: var(--lp-radius);

  color: var(--color-white);
  font-family: var(--font-accent);
  font-size: clamp(.95rem, 1.2vw, 1.15rem);
  line-height: 1;

  box-shadow:
    0 8px 20px rgba(0, 0, 0, .2);

  backdrop-filter: blur(4px);
}


/* ------------------------------------------------------
   Story Content
------------------------------------------------------ */

.about-content {
  max-width: 720px;
}

.about-header {
  margin-bottom: clamp(1.75rem, 3vw, 2.75rem);
}

.about-story {
  max-width: 680px;
}

.about-story p {
  margin: 0 0 1.25rem;

  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.7;
}

.about-story p:last-child {
  margin-bottom: 0;
}


/* ------------------------------------------------------
   Typography
------------------------------------------------------ */

.about-eyebrow {
  margin-bottom: .65rem;

  color: var(--color-primary);
  font-size: clamp(1.05rem, 1.5vw, 1.4rem);
  line-height: 1.2;
}

.about-title {
  max-width: 800px;

  color: var(--color-primary);
  font-size: clamp(3.1rem, 5.8vw, 6rem);
  line-height: .88;

  text-shadow:
    2px 2px 0
    rgba(143, 18, 26, .15);
}

.about-lead {
  font-size:
    clamp(1.3rem, 1.9vw, 1.75rem)
    !important;
  font-weight: 700;
  line-height: 1.45 !important;
}

.about-lead strong {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.15em;
  font-weight: 400;
  text-transform: uppercase;
}

.about-introduction {
  color: var(--color-primary-shadow);
  font-weight: 800;
}

.about-signoff {
  margin: clamp(2rem, 4vw, 3rem) 0 0;

  color: var(--color-primary);
  font-family: var(--font-accent);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  line-height: 1;
}


/* ------------------------------------------------------
   Tablet
------------------------------------------------------ */

@media (max-width: 991.98px) {

  .about-layout {
    grid-template-columns:
      minmax(280px, .85fr)
      minmax(360px, 1.15fr);
    gap: clamp(2.5rem, 5vw, 4rem);
  }

  .about-title {
    font-size:
      clamp(3rem, 6vw, 4.75rem);
  }

}


/* ------------------------------------------------------
   Small Tablet
------------------------------------------------------ */

@media (max-width: 767.98px) {

  .about-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-portrait {
    width: min(100%, 580px);
    margin-inline: auto;
  }

  .about-image-frame {
    aspect-ratio: 4 / 3;
  }

  .about-content {
    max-width: 680px;
    margin-inline: auto;
  }

}


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

@media (max-width: 575.98px) {

  .about-layout {
    gap: 2.5rem;
  }

  .about-image-frame {
    aspect-ratio: 4 / 5;

    border-width: 3px;
    border-radius:
      var(--border-radius-card-mobile);
  }

  .about-caption {
    right: .85rem;
    bottom: .85rem;

    padding: .65rem .85rem;
  }

  .about-title {
    font-size:
      clamp(2.8rem, 13vw, 4.15rem);
  }

  .about-title br {
    display: none;
  }

  .about-story p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

}


/* ======================================================
   DON SEÑOR FIESTA CLUB

   Structure
   • Section foundation
   • Section container
   • Two-column layout
   • Signup introduction
   • Form card
   • Form fields
   • Birthday fields
   • Submit action
   • Responsive
====================================================== */


/* ------------------------------------------------------
   Section Foundation
------------------------------------------------------ */

.newsletter-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 20%,
      rgba(255, 255, 255, .1),
      transparent 27rem
    ),
    radial-gradient(
      circle at 88% 80%,
      rgba(0, 0, 0, .13),
      transparent 29rem
    ),
    var(--color-primary-dark);

  color: var(--color-white);
}

.newsletter-section::before {
  content: "";

  position: absolute;
  inset: 0;
  z-index: -1;

  background-image:
    linear-gradient(
      30deg,
      rgba(255, 255, 255, .035) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, .035) 87.5%
    ),
    linear-gradient(
      150deg,
      rgba(255, 255, 255, .035) 12%,
      transparent 12.5%,
      transparent 87%,
      rgba(255, 255, 255, .035) 87.5%
    );

  background-size: 76px 48px;

  pointer-events: none;
}


/* ------------------------------------------------------
   Section Container
------------------------------------------------------ */

.newsletter-container {
  padding-block: var(--section-space);
}


/* ------------------------------------------------------
   Two-Column Layout
------------------------------------------------------ */

.newsletter-layout {
  grid-template-columns:
    minmax(320px, .8fr)
    minmax(540px, 1.2fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);

  max-width: 1500px;
  margin-inline: auto;
}


/* ------------------------------------------------------
   Signup Introduction
------------------------------------------------------ */

.newsletter-intro {
  max-width: 590px;
}

.newsletter-eyebrow {
  margin-bottom: .7rem;

  color: var(--color-accent);
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  line-height: 1.2;
}

.newsletter-title {

  color: var(--color-white);
  font-size: clamp(3.4rem, 5.8vw, 6rem);
  line-height: .96;

  text-shadow:
    0 5px 16px rgba(0, 0, 0, .28);
}

.newsletter-copy {
  max-width: 555px;
  margin: 1.5rem 0 0;

  color: rgba(255, 255, 255, .92);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  font-weight: 600;
  line-height: 1.55;
}

.newsletter-highlights {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .85rem;

  margin-top: 2rem;
}

.newsletter-highlight {
  display: inline-flex;
  align-items: center;
  gap: .75rem;

  color: rgba(255, 255, 255, .94);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.3;
}

.newsletter-highlight i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 2.15rem;
  height: 2.15rem;

  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: var(--border-radius-round);

  color: var(--color-accent);
  font-size: 1rem;
}


/* ------------------------------------------------------
   Form Card
------------------------------------------------------ */

.newsletter-form-card {
  padding: clamp(1.5rem, 3vw, 2.75rem);

  background: var(--color-offwhite);
  border: var(--border-width-card) solid rgba(255, 255, 255, .88);
  border-radius: var(--border-radius-card);

  box-shadow:
    0 24px 55px rgba(69, 30, 21, .28);

  color: var(--color-text);
}


.newsletter-form-header {
  margin-bottom: 1.75rem;
}

.newsletter-form-title {
  margin: 0;

  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: .95;
  text-transform: uppercase;
}

.newsletter-form-note {
  margin: .65rem 0 0;

  color: rgba(31, 31, 31, .78);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1.45;
}


/* ------------------------------------------------------
   Form Layout
------------------------------------------------------ */

.newsletter-form-grid {
  grid-template-columns:
    repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}


.newsletter-field-email {
  grid-column: 1 / 2;
}

.newsletter-field-location {
  grid-column: 2 / 3;
}


/* ------------------------------------------------------
   Form Fields
------------------------------------------------------ */

.newsletter-label {
  margin: 0 0 .5rem;

  color: var(--color-text);
  font-size: .92rem;
  font-weight: 850;
  line-height: 1.2;
}

.newsletter-required {
  color: var(--color-primary);
}

.newsletter-input,
.newsletter-select {
  min-height: 52px;
  padding: .75rem 1rem;

  background: var(--color-white);
  border:
    2px solid
    rgba(31, 31, 31, .25);
  border-radius: var(--lp-radius);

  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.2;

  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast),
    background-color var(--transition-fast);
}

.newsletter-select {
  appearance: auto;
}

.newsletter-input::placeholder {
  color: rgba(31, 31, 31, .45);
}

.newsletter-input:hover,
.newsletter-select:hover {
  border-color: rgba(31, 31, 31, .48);
}

.newsletter-input:focus,
.newsletter-select:focus {
  outline: none;

  background: var(--color-white);
  border-color: var(--color-primary);

  box-shadow:
    0 0 0 4px rgba(237, 28, 36, .14);
}


/* ------------------------------------------------------
   Birthday Fields
------------------------------------------------------ */

.newsletter-birthday {
  grid-column: 1 / 2;
}

.newsletter-birthday-fields {
  display: flex;
  align-items: flex-end;
  gap: .6rem;
}

.newsletter-birthday-field {
  flex: 0 0 auto;
}

.newsletter-subfield-label {
  display: block;

  margin: 0 0 .35rem;

  color: rgba(31, 31, 31, .7);
  font-size: .72rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter-birthday-input {
  width: 78px;

  text-align: center;
}

.newsletter-birthday-divider {
  padding-bottom: .85rem;

  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1;
}

.newsletter-field-help {
  margin: .6rem 0 0;

  color: rgba(31, 31, 31, .68);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.35;
}


/* ------------------------------------------------------
   Submit Action
------------------------------------------------------ */

.newsletter-submit-wrap {
  align-items: flex-end;
}

.newsletter-submit {
  width: 100%;
  min-height: 52px;
}


/* ------------------------------------------------------
   Spam Protection and Privacy
------------------------------------------------------ */

.newsletter-privacy {
  margin: 1.5rem 0 0;

  color: rgba(31, 31, 31, .66);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.45;
}


/* ------------------------------------------------------
   Tablet
------------------------------------------------------ */

@media (max-width: 991.98px) {

  .newsletter-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .newsletter-intro {
    max-width: 760px;

    text-align: center;
  }

  .newsletter-copy {
    margin-inline: auto;
  }

  .newsletter-highlights {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .newsletter-form-card {
    width: min(100%, 800px);
    margin-inline: auto;
  }

}


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

@media (max-width: 575.98px) {

  .newsletter-title {
    font-size:
      clamp(2.9rem, 13vw, 4.25rem);
  }

  .newsletter-highlights {
    flex-direction: column;
    align-items: flex-start;

    width: fit-content;
    margin-inline: auto;
  }

  .newsletter-form-card {
    padding: 1.4rem;

    border-width: 3px;
    border-radius:
      var(--border-radius-card-mobile);
  }

  .newsletter-form-grid {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .newsletter-field-email,
  .newsletter-field-location,
  .newsletter-birthday {
    grid-column: 1;
  }

  .newsletter-submit-wrap {
    grid-column: 1;
  }

  .newsletter-birthday-input {
    width: 72px;
  }

}


/* ======================================================
   FAN FAVORITES

   Structure
   • Section foundation
   • Section container
   • Section header
   • Feature grid
   • Card system
   • Section actions
   • Responsive
====================================================== */


/* ------------------------------------------------------
   Section Foundation
------------------------------------------------------ */

.favorites-section {
  position: relative;

  background:
    linear-gradient(
      rgba(255,255,255,.72),
      rgba(255,255,255,.72)
    ),
    var(--color-offwhite);

  color: var(--color-text);
}


/* ------------------------------------------------------
   Section Container
------------------------------------------------------ */

.favorites-container {
  padding-block: var(--section-space);
}


/* ------------------------------------------------------
   Section Header
------------------------------------------------------ */

.favorites-header {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4.5rem);

  text-align: center;
}

.favorites-eyebrow {
  margin-bottom: .6rem;

  color: var(--color-primary);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
}

.favorites-title {

  color: var(--color-primary);
  font-size: clamp(3rem, 5.5vw, 5.6rem);
  line-height: .9;

  text-shadow:
    2px 2px 0 rgba(143,18,26,.16);
}

.favorites-intro {
  max-width: 650px;
  margin: 1.25rem auto 0;

  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
  font-weight: 650;
  line-height: 1.5;
}


/* ------------------------------------------------------
   Feature Grid
------------------------------------------------------ */

.favorites-grid {
  display: grid;

  grid-template-columns:
    repeat(2, minmax(0,1fr));

  grid-template-rows:
    repeat(2,minmax(285px,1fr));

  gap: clamp(1rem,1.6vw,1.6rem);

  min-height:700px;
}

.favorite-card-featured {
  grid-row:1 / 3;
}


/* ------------------------------------------------------
   Card Shell
------------------------------------------------------ */

.favorite-card {
  background: var(--color-primary-shadow);

  border:
    var(--border-width-card)
    solid
    rgba(255,255,255,.86);

  border-radius: var(--border-radius-card);

  box-shadow: var(--shadow-card);

}


/* ------------------------------------------------------
   Card Link
------------------------------------------------------ */

.favorite-card-link {
  position:absolute;
  inset:0;

  display:block;

  color: var(--color-white);
  text-decoration:none;
}

.favorite-card-link:hover,
.favorite-card-link:focus {
  color:var(--color-white);
  text-decoration:none;
}


/* ------------------------------------------------------
   Card Media
------------------------------------------------------ */


/* ------------------------------------------------------
   Card Overlay
------------------------------------------------------ */

.favorite-card-overlay {
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.74) 0%,
      rgba(0,0,0,.48) 28%,
      rgba(0,0,0,.14) 52%,
      rgba(0,0,0,0) 70%
    );
}


/* ------------------------------------------------------
   Card Content
------------------------------------------------------ */

.favorite-card-content {
  padding:
    clamp(1.4rem,2.3vw,2.4rem);

  color:var(--color-white);
}


/* ------------------------------------------------------
   Card Typography
------------------------------------------------------ */

.favorite-card-label {
  margin:0 0 .4rem;

  color:var(--color-accent);

  font-family:var(--font-accent);

  font-size:
    clamp(.9rem,1vw,1.05rem);

  line-height:1.2;
}

.favorite-card-title {
  margin:0;

  font-family:var(--font-display);

  font-size:
    clamp(2rem,3vw,3.5rem);

  line-height:.95;

  text-transform:uppercase;

  text-shadow:var(--shadow-text);
}

.favorite-card-action {
  display:inline-flex;
  align-items:center;
  gap:.55rem;

  margin-top:1rem;

  color:rgba(255,255,255,.94);

  font-size:.95rem;
  font-weight:800;

  line-height:1;

  text-transform:uppercase;
}

.favorite-card-action i {
  transition:
    transform var(--transition-fast);
}


/* ------------------------------------------------------
   Hover Interactions
------------------------------------------------------ */

.favorite-card:hover {
  box-shadow:
    var(--shadow-card-hover);
}

.favorite-card:hover .favorite-card-action i,
.favorite-card:focus-within .favorite-card-action i {
  transform:translateX(5px);
}


/* ------------------------------------------------------
   Section Actions
------------------------------------------------------ */

.favorites-footer {
  justify-content:center;

  margin-top:
    clamp(1.25rem,2vw,1.75rem);
}

.favorites-menu-button {
  min-width:215px;
  min-height:58px;
}


/* ------------------------------------------------------
   Tablet
------------------------------------------------------ */

@media (max-width:991.98px){

  .favorites-grid{

    grid-template-rows:
      repeat(2,minmax(300px,auto));

    min-height:0;
  }

  .favorite-card-featured{

    grid-column:1 / 3;
    grid-row:auto;

    min-height:500px;
  }

}


/* ------------------------------------------------------
   Small Tablet
------------------------------------------------------ */

@media (max-width:767.98px){

  .favorites-grid{

    grid-template-columns:1fr;
    grid-template-rows:none;
    grid-auto-rows:auto;
  }

  .favorite-card,
  .favorite-card-featured{

    grid-column:1;
    grid-row:auto;

    min-height:380px;
  }

  .favorite-card-featured{
    min-height:480px;
  }

}


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

@media (max-width:575.98px){

  .favorites-title{
    font-size:
      clamp(2.75rem,14vw,4.1rem);
  }

  .favorites-intro{
    font-size:1.05rem;
  }

  .favorite-card{

    min-height:340px;

    border-width:3px;
    border-radius:
      var(--border-radius-card-mobile);
  }

  .favorite-card-featured{
    min-height:420px;
  }

  .favorite-card-content{
    padding:1.5rem;
  }

  .favorites-menu-button{
    width:100%;
  }

}

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

   Structure
   • Footer foundation
   • Decorative top rule
   • Main container
   • Locations heading
   • Location cards
   • Shared hours
   • Utility bar
   • Responsive
====================================================== */


/* ------------------------------------------------------
   Footer Foundation
------------------------------------------------------ */

.site-footer {
  position: relative;

  background: var(--color-offwhite);

  color: #3f2d24;
}

.site-footer-main {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 12%,
      rgba(237, 28, 36, .035),
      transparent 20rem
    ),
    radial-gradient(
      circle at 92% 88%,
      rgba(243, 190, 61, .06),
      transparent 20rem
    ),
    var(--color-offwhite);

  border-top: 1px solid rgba(63, 45, 36, .12);
}


/* ------------------------------------------------------
   Decorative Top Rule

   A thin neutral border spans the full footer.
   This centered gradient overlays it:
   transparent → red → gold → red → transparent
------------------------------------------------------ */

.site-footer-main::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: min(360px, 54vw);
  height: 4px;

  background:
    linear-gradient(
      90deg,
      transparent,
      var(--color-primary) 18%,
      var(--color-accent) 50%,
      var(--color-primary) 82%,
      transparent
    );

  transform: translateX(-50%);

  pointer-events: none;
}


/* ------------------------------------------------------
   Main Container
------------------------------------------------------ */

.site-footer-container {
  position: relative;
  z-index: 1;

  padding-top: clamp(2.25rem, 3.5vw, 3.25rem);
  padding-bottom: clamp(1.75rem, 2.5vw, 2.5rem);
}


/* ------------------------------------------------------
   Locations
------------------------------------------------------ */

.footer-locations {
  max-width: 1500px;
  margin-inline: auto;
}


/* ------------------------------------------------------
   Locations Heading
------------------------------------------------------ */

.footer-section-header {
  position: relative;

  margin-bottom: clamp(1.35rem, 2vw, 1.9rem);
  padding-top: 1.3rem;

  text-align: center;
}


/* Thin ornamental divider */

.footer-section-header::before {
  content: "";

  position: absolute;
  top: 0;
  left: 50%;

  width: min(240px, 42vw);
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(63, 45, 36, .22) 20%,
      rgba(63, 45, 36, .22) 80%,
      transparent
    );

  transform: translateX(-50%);
}


/* Center diamond */

.footer-section-header::after {
  content: "";

  position: absolute;
  top: -3px;
  left: 50%;

  width: 7px;
  height: 7px;

  background: var(--color-primary);

  transform:
    translateX(-50%)
    rotate(45deg);
}

.footer-eyebrow {
  margin: 0 0 .2rem;

  color: var(--color-primary);
  font-family: var(--font-accent);
  font-size: clamp(.95rem, 1.1vw, 1.15rem);
  line-height: 1.2;
}

.footer-section-title {
  margin: 0;

  color: #3f2d24;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3.55rem);
  line-height: .96;
  letter-spacing: .01em;
  text-transform: uppercase;
}


/* ------------------------------------------------------
   Location Grid
------------------------------------------------------ */

.footer-location-grid {
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: clamp(.9rem, 1.35vw, 1.2rem);
}


/* ------------------------------------------------------
   Location Cards
------------------------------------------------------ */

.footer-location-card {
  padding: clamp(1rem, 1.25vw, 1.3rem);

  background: var(--color-white);
  border: 1px solid rgba(63, 45, 36, .12);
  border-radius: var(--border-radius-card);

  box-shadow:
    0 10px 24px rgba(63, 45, 36, .065);

  transition:
    transform var(--transition-fast),
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.footer-location-card:hover {
  transform: translateY(-3px);

  border-color: rgba(237, 28, 36, .3);

  box-shadow:
    0 15px 30px rgba(63, 45, 36, .1);
}

.footer-location-card-header {
  padding-bottom: .72rem;
  margin-bottom: .8rem;

  border-bottom: 1px solid rgba(63, 45, 36, .1);
}

.footer-location-name {
  margin: 0;

  font-family: var(--font-display);
  font-size: clamp(1.35rem, 1.55vw, 1.72rem);
  line-height: 1;
}

.footer-location-name-link {
  color: #3f2d24;
  text-decoration: none;

  transition:
    color var(--transition-fast);
}

.footer-location-name-link:hover,
.footer-location-name-link:focus-visible {
  color: var(--color-primary);
}


/* ------------------------------------------------------
   Location Details
------------------------------------------------------ */

.footer-location-details {
  gap: .65rem;

  margin-bottom: .85rem;
}

.footer-location-link {
  grid-template-columns: 1.05rem minmax(0, 1fr);
  gap: .5rem;

  color: rgba(63, 45, 36, .76);
  font-size: .86rem;
  font-weight: 650;
  line-height: 1.38;

  transition:
    color var(--transition-fast);
}

.footer-location-link i {
  margin-top: .12rem;

  color: var(--color-primary);
  font-size: .85rem;
}

.footer-location-link:hover,
.footer-location-link:focus-visible {
  color: #3f2d24;
}


/* ------------------------------------------------------
   Location Social Links
------------------------------------------------------ */

.footer-location-social {
  gap: .48rem;

  margin-top: auto;
}

.footer-social-link {
  width: 2.15rem;
  height: 2.15rem;

  background: rgba(237, 28, 36, .055);
  border: 1px solid rgba(237, 28, 36, .14);
  border-radius: 50%;

  color: var(--color-primary);
  font-size: .88rem;
  line-height: 1;

  transition:
    transform var(--transition-fast),
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast);
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  transform: translateY(-2px);

  background: var(--color-primary);
  border-color: var(--color-primary);

  color: var(--color-white);
}


/* ------------------------------------------------------
   Shared Hours
------------------------------------------------------ */

.footer-hours {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;

  width: fit-content;
  margin: clamp(1.4rem, 2.2vw, 2rem) auto 0;
  padding: .65rem 1rem;

  background: rgba(63, 45, 36, .045);
  border: 1px solid rgba(63, 45, 36, .1);
  border-radius: var(--lp-radius);
}

.footer-hours > i {
  color: var(--color-primary);
  font-size: 1rem;
}

.footer-hours-copy {
  display: flex;
  align-items: baseline;
  gap: .45rem;
}

.footer-hours-label {
  color: #3f2d24;
  font-size: .84rem;
  font-weight: 850;
}

.footer-hours-time {
  color: rgba(63, 45, 36, .72);
  font-size: .84rem;
  font-weight: 650;
}


/* ------------------------------------------------------
   Utility Bar
------------------------------------------------------ */

.site-footer-utility {
  background: #18110d;

  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer-utility-container {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    auto
    minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;

  min-height: 62px;
  padding-top: .75rem;
  padding-bottom: .75rem;
}

.site-footer-copyright,
.site-footer-credit {
  margin: 0;

  color: rgba(255, 255, 255, .62);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.4;
}

.site-footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.site-footer-legal a,
.site-footer-credit-link {
  color: rgba(255, 255, 255, .72);
  text-decoration: none;

  transition:
    color var(--transition-fast);
}

.site-footer-legal a:hover,
.site-footer-legal a:focus-visible,
.site-footer-credit-link:hover,
.site-footer-credit-link:focus-visible {
  color: var(--color-accent);
}

.site-footer-credit {
  text-align: right;
}

.site-footer-credit-link {
  font-family: var(--font-accent);
  font-size: .88rem;
}


/* ------------------------------------------------------
   Keyboard Focus
------------------------------------------------------ */

.site-footer-main a:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 4px;
}

.site-footer-utility a:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}


/* ------------------------------------------------------
   Medium Desktop and Tablet
------------------------------------------------------ */

@media (max-width: 1199.98px) {

  .site-footer-container {
    padding-top: 2.5rem;
  }

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

  .footer-location-card {
    padding: 1.2rem;
  }

}


/* ------------------------------------------------------
   Tablet
------------------------------------------------------ */

@media (max-width: 767.98px) {

  .site-footer-container {
    padding-top: 2.25rem;
    padding-bottom: 2rem;
  }

  .footer-section-header {
    margin-bottom: 1.4rem;
  }

  .site-footer-utility-container {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: .65rem;

    min-height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;

    text-align: center;
  }

  .site-footer-credit {
    text-align: center;
  }

}


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

@media (max-width: 575.98px) {

  .site-footer-container {
    padding-top: 2rem;
    padding-bottom: 1.75rem;
  }

  .site-footer-main::before {
    width: min(260px, 62vw);
  }

  .footer-section-header {
    padding-top: 1.15rem;
  }

  .footer-section-header::before {
    width: min(200px, 55vw);
  }

  .footer-section-title {
    font-size: clamp(2.05rem, 11vw, 2.75rem);
  }

  .footer-location-grid {
    grid-template-columns: 1fr;
    gap: .85rem;
  }

  .footer-location-card {
    padding: 1.05rem;
    border-radius: var(--border-radius-card-mobile);
  }

  .footer-location-name {
    font-size: 1.45rem;
  }

  .footer-hours {
    align-items: flex-start;

    width: 100%;
    margin-top: 1.25rem;
  }

  .footer-hours-copy {
    flex-direction: column;
    gap: .08rem;
  }

  .site-footer-legal {
    flex-wrap: wrap;
  }

}

/* ======================================================
   ORDERING LOCATION CHOOSER
====================================================== */

.ds-order-modal {
  --bs-modal-width: 680px;
  font-family: var(--font-body);
}

.ds-order-modal .modal-dialog {
  padding-inline: 1rem;
}

.ds-order-modal-content {
  position: relative;
  overflow: hidden;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background:
    radial-gradient(circle at 90% 10%, rgba(243, 190, 61, .16), transparent 15rem),
    var(--color-offwhite);
  border: 4px solid var(--color-white);
  border-radius: var(--border-radius-card);
  box-shadow: 0 28px 70px rgba(31, 20, 15, .32);
}

.ds-order-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

.ds-order-modal-body {
  padding: 0;
  text-align: center;
}

.ds-order-modal-eyebrow {
  margin: 0 0 .5rem;
  color: var(--color-primary);
  font-family: var(--font-accent);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
}

.ds-order-modal-title {
  max-width: 560px;
  margin: 0 auto;
  color: var(--color-primary-shadow);
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.8rem);
  line-height: .95;
  text-transform: uppercase;
}

.ds-order-modal-copy {
  max-width: 520px;
  margin: 1rem auto 1.75rem;
  color: rgba(31, 31, 31, .76);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.45;
}

.ds-order-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ds-order-location-choice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 72px;
  padding: .9rem 1rem;
  background: var(--color-primary);
  border: 3px solid var(--color-primary);
  border-radius: 14px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1;
  text-transform: uppercase;
  transition:
    background-color var(--transition-fast),
    border-color var(--transition-fast),
    transform var(--transition-fast);
}

.ds-order-location-choice:hover,
.ds-order-location-choice:focus-visible {
  background: var(--color-primary-dark);
  border-color: var(--color-accent);
  color: var(--color-white);
  transform: translateY(-2px);
}

.ds-order-location-choice i {
  color: var(--color-accent);
  font-size: 1.15em;
}

@media (max-width: 575.98px) {
  .ds-order-modal-content {
    padding: 2.5rem 1.25rem 1.5rem;
    border-width: 3px;
    border-radius: var(--border-radius-card-mobile);
  }

  .ds-order-location-grid {
    grid-template-columns: 1fr;
  }

  .ds-order-location-choice {
    min-height: 62px;
  }
}

