:root {
  --red: #ed161f;
  --deep-red: #c70f17;
  --teal: #55c3ca;
  --dark-teal: #073138;
  --charcoal: #222;
  --ink: #0e3038;
  --muted: #737373;
  --paper: #ffffff;
  --soft: #f7f7f7;
  --cream: #fff8ed;
  --yellow: #f9b51b;
  --line: rgba(0, 0, 0, .1);
  --shadow: 0 18px 42px rgba(0, 0, 0, .12);
  --condensed: "Barlow Condensed", "Arial Narrow", "HelveticaNeue-CondensedBold", "Helvetica Neue Condensed", "Helvetica Condensed", "Liberation Sans Narrow", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 116px;
}
body {
  margin: 0;
  color: var(--charcoal);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6, p { margin-top: 0; }
h1, h2, h3, h4, h5, h6,
.section-label,
.eyebrow {
  font-family: var(--condensed);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  min-height: 110px;
  /*padding: 0 clamp(18px, 10vw, 145px);*/
  padding: 0px;
  color: #fff;
  background: linear-gradient(#f71922, #db1019);
}
.brand {
  align-self: stretch;
  display: grid;
  place-items: center;
  width: 230px;
  min-height: 140px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
}
.brand img {
  width: 190px;
  height: auto;
}
.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  padding-top: 5px;
  font-family: var(--condensed);
  font-size: 19px;
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, .18);
}
.nav a:hover { color: var(--yellow); }
.header-contact {
  display: grid;
  justify-items: end;
  gap: 2px;
  font-weight: normal;
  line-height: 1.1;
  margin-right: -140px;
}
.header-contact a:first-child { font-size: 18px; }
.header-contact a:last-child { font-size: 16px; }
.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 2px solid rgba(255,255,255,.7);
  background: transparent;
}
.nav-toggle span {
  display: block;
  width: 23px;
  height: 3px;
  margin: 5px auto;
  background: #fff;
}

.home-slider {
  position: relative;
  overflow: hidden;
  background: var(--teal);
}
.home-slide {
  position: absolute;
  inset: 0;
  min-height: 451px;
  opacity: 0;
  pointer-events: none;
  background-image: var(--slide-image);
  background-position: center;
  background-size: cover;
  transition: opacity .5s ease;
}
.home-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.slide-content {
  width: min(1180px, calc(100% - 36px));
  min-height: 451px;
  margin: 0 auto;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 44px 0 44px 8px;
  color: var(--ink);
}
.slide-content p,
.slide-content h1,
.slide-content span,
.slide-content .btn {
  transform: translateX(0);
}
.home-slide.animating .slide-content p {
  animation: heroTextIn .72s cubic-bezier(.2, .72, .18, 1) forwards .08s;
}
.home-slide.animating .slide-content h1 {
  animation: heroTextIn .78s cubic-bezier(.2, .72, .18, 1) forwards .22s;
}
.home-slide.animating .slide-content span {
  animation: heroTextIn .72s cubic-bezier(.2, .72, .18, 1) forwards .38s;
}
.home-slide.animating .slide-content .btn {
  animation: heroTextIn .68s cubic-bezier(.2, .72, .18, 1) forwards .52s;
}
@keyframes heroTextIn {
  from {
    transform: translateX(-42px);
  }
  to {
    transform: translateX(0);
  }
}
.slide-content p {
  margin: 0;
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(23px, 2.3vw, 35px);
  font-stretch: condensed;
  font-weight: 600;
  line-height: .95;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0,0,0,.06);
}
.home-slide:nth-child(2) .slide-content p { color: var(--red); }
.slide-content h1 {
  max-width: 620px;
  margin: 0 0 8px;
  color: var(--ink);
/*  font-family: var(--condensed); 
font-size: clamp(64px, 8vw, 112px);
*/
  font-family: var(--condensed);
  font-size: clamp(64px, 8vw, 112px);
  font-stretch: condensed;
  font-weight: 600;
  line-height: .82;
  letter-spacing: 0;
  text-transform: uppercase;
}
.home-slide:nth-child(3) .slide-content h1 {
  max-width: 760px;
  font-size: clamp(54px, 7vw, 98px);
}
.slide-content span {
  display: block;
  max-width: 610px;
  margin-bottom: 26px;
  color: #19383d;
  font-size: clamp(18px, 1.6vw, 28px);
  line-height: 1.25;
  font-weight: 600;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 18px;
  font-stretch: condensed;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover { background: var(--deep-red); }
.btn-pill {
  border-radius: 999px;
  padding-inline: 36px;
}
.btn-square { border-radius: 0; }

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 34px);
  width: min(1100px, calc(100% - 36px));
  margin: 24px auto 34px;
  padding: 0;
}
.thumb-btn {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: .78;
  transition: transform .18s ease, opacity .18s ease, box-shadow .18s ease;
}
.thumb-btn img {
  width: 100%;
  height: 141px;
  object-fit: cover;
}
.thumb-btn.active {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .18);
  outline: 5px solid #fff;
}

.section-label {
  margin: 0 0 8px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 35px;
  font-stretch: condensed;
  font-weight: 600;
  line-height: .95;
  text-transform: uppercase;
}
.story-preview {
  scroll-margin-top: 126px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  align-items: center;
  gap: clamp(32px, 6vw, 82px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 100px;
  border-top: 1px solid #eee;
}
.story-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}
.yellow-splash {
  position: absolute;
  width: 74%;
  aspect-ratio: 1;
  border-radius: 42% 58% 50% 50%;
  background: var(--yellow);
}
.story-visual img {
  position: relative;
  z-index: 1;
  margin-top: -30px;
  width: 93%;
/*  filter: drop-shadow(0 24px 24px rgba(0,0,0,.18));*/
}
.story-visual span {
  position: absolute;
  z-index: 2;
  top: 18%;
  right: 16%;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: rgba(0,0,0,.24);
 /* font-family: Impact, "Arial Black", Arial, sans-serif; */
 font-family: var(--condensed);
  font-size: 24px;
  line-height: .9;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(-8deg);
}
.story-copy h2 {
  margin-bottom: 20px;
  color: #111;
/*  font-family: var(--condensed) !important; */
  font-size: clamp(21px, 5vw, 28px);
  font-family: var(--condensed);
  line-height: 1.12;
  font-weight: 600;
  margin-top:10px;
}
.story-copy > p:not(.section-label) {
  color: var(--muted);
  font-size: 16px;
}
.story-copy ul {
  display: grid;
  gap: 14px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  font-size: 17px;
  font-weight: 800;
}
.story-copy li:before {
  content: "✓";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-right: 12px;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-size: 13px;
}

.home-menu-preview {
  padding: 74px clamp(18px, 5vw, 76px);
  text-align: center;
  background: var(--soft);
}
.home-menu-preview h2 {
  margin: 0 0 38px;
  /* font-family: Impact, "Arial Black", Arial, sans-serif; */
  font-family: var(--condensed);
  font-size: clamp(44px, 6vw, 76px);
  line-height: .9;
  text-transform: uppercase;
}
.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: min(1050px, 100%);
  margin: 0 auto;
}
.preview-grid a {
  display: grid;
  justify-items: center;
  padding: 26px;
  background: #fff;
  box-shadow: var(--shadow);
}
.preview-grid img {
  height: 210px;
  object-fit: contain;
  margin-bottom: 20px;
}
.preview-grid strong {
 /* font-family: Impact, "Arial Black", Arial, sans-serif; */
 font-family: var(--condensed);
  font-size: 24px;
  text-transform: uppercase;
}
.preview-grid span {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}

.page-hero {
  min-height: 360px;
  display: grid;
  align-content: end;
  padding: 80px clamp(18px, 5vw, 76px);
  color: #fff;
  background: linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.18)), url("/assets/img/banners/banner-1.jpg") center/cover;
}
.page-hero h1 {
  margin: 0;
/*  font-family: Impact, "Arial Black", Arial, sans-serif; */
  font-family: var(--condensed);
  font-size: clamp(52px, 7vw, 96px);
  line-height: .9;
  text-transform: uppercase;
}
.page-hero p {
  max-width: 720px;
  font-size: 20px;
}

.section,
.form-wrap {
  padding: 70px clamp(18px, 5vw, 76px);
}
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.menu-tabs button {
  border: 0;
  padding: 12px 18px;
  color: #fff;
  background: var(--dark-teal);
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.menu-tabs button.active { background: var(--red); }
.menu-panel { display: none; }
.menu-panel.active { display: block; }
.menu-grid,
.location-grid,
.package-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.menu-card,
.location-card,
.package-card,
.gallery-card,
.admin-panel {
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
}
.menu-card img,
.location-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  background: var(--teal);
}
.menu-card div,
.location-card div,
.package-card {
  padding: 22px;
}
.menu-card h2,
.location-card h2,
.package-card h2 {
  /* font-family: Impact, "Arial Black", Arial, sans-serif; */
  font-family: var(--condensed);
  font-size: 30px;
  line-height: .95;
  text-transform: uppercase;
}
.menu-card strong {
  color: var(--red);
  font-size: 24px;
  font-weight: 900;
}
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 46px;
  padding: 70px clamp(18px, 5vw, 76px);
}
.story-layout img {
  width: 100%;
  min-height: 430px;
  object-fit: contain;
  background: var(--teal);
}
.location-map {
  width: 100%;
  height: 380px;
  border: 0;
}
.gallery-card {
  position: relative;
  min-height: 330px;
  color: #fff;
  background: var(--dark-teal);
}
.gallery-card img {
  width: 100%;
  height: 330px;
  object-fit: contain;
  opacity: .82;
  background: var(--teal);
}
.gallery-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
}
.photo-wall {
  columns: 4 250px;
  column-gap: 18px;
}
.photo-wall img {
  width: 100%;
  margin: 0 0 18px;
  break-inside: avoid;
  background: var(--teal);
}
.form-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 46px;
  align-items: start;
}
.form {
  display: grid;
  gap: 14px;
}
input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  font: inherit;
}
textarea { resize: vertical; }
.legal {
  width: min(980px, calc(100% - 36px));
  margin: 70px auto;
  padding: 40px;
  background: #fff;
  box-shadow: var(--shadow);
}
.legal h1 {
  /* font-family: Impact, "Arial Black", Arial, sans-serif;*/
  font-family: var(--condensed);
  font-size: clamp(24px, 3.5vw, 45px);
  line-height: .9;
  text-transform: uppercase;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  font-weight: 900;
  box-shadow: var(--shadow);
}
.footer {
  color: #fff;
  background: var(--dark-teal);
}
.footer-ribbon {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(20px, 7vw, 90px);
  padding: 16px;
  color: #fff;
  background: var(--red);
  /*font-family: Impact, "Arial Black", Arial, sans-serif; */
  font-family: var(--condensed);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr 1.2fr;
  gap: 34px;
  padding: 56px clamp(18px, 5vw, 76px);
}
.footer-logo {
  width: 190px;
  padding: 10px;
  margin-bottom: 18px;
  background: #fff;
}
.footer h4 {
  color: var(--teal);
  /* font-family: Impact, "Arial Black", Arial, sans-serif; */
  font-family: var(--condensed);
  font-size: 24px;
  text-transform: uppercase;
}
.footer a { display: block; margin: 8px 0; }
.newsletter {
  display: flex;
  gap: 8px;
}
.newsletter input { min-width: 0; border: 0; }
.newsletter button {
  border: 0;
  padding: 12px 16px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.socials a {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.2);
}
.footer-bottom {
  padding: 18px clamp(18px, 5vw, 76px);
  border-top: 1px solid rgba(255,255,255,.14);
}

.admin-body { background: #f5f5f5; }
.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}
.admin-panel {
  padding: 28px;
  margin-bottom: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 260px 1fr;
}
.admin-sidebar {
  padding: 26px;
  color: #fff;
  background: var(--dark-teal);
}
.admin-sidebar img {
  width: 190px;
  padding: 10px;
  background: #fff;
}
.admin-sidebar nav {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-main { padding: 32px; }
.table { width: 100%; border-collapse: collapse; }
.table th,
.table td {
  padding: 10px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 180px 1fr auto;
    padding-inline: 18px;
  }
  .brand {
    width: 170px;
    min-height: 105px;
  }
  .brand img { width: 145px; }
  .header-contact { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: var(--red);
  }
  .nav.open { display: flex; }
  .slide-content {
    min-height: 390px;
  }
  .slide-content h1 {
    font-size: 58px;
  }
  .story-preview,
  .story-layout,
  .form-wrap,
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .menu-grid,
  .location-grid,
  .package-grid,
  .gallery-grid,
  .preview-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .site-header {
    grid-template-columns: 128px 1fr;
    min-height: 82px;
  }
  .brand {
    width: 122px;
    min-height: 82px;
  }
  .brand img { width: 105px; }
  .home-slide {
    min-height: 430px;
    background-position: 62% center;
  }
  .slide-content {
    min-height: 430px;
    padding-block: 32px;
  }
  .slide-content p {
    font-size: 21px;
  }
  .slide-content h1,
  .home-slide:nth-child(3) .slide-content h1 {
    max-width: 330px;
    font-size: 44px;
  }
  .slide-content span {
    max-width: 310px;
    font-size: 15px;
  }
  .thumb-strip,
  .menu-grid,
  .location-grid,
  .package-grid,
  .gallery-grid,
  .preview-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }
  .thumb-btn img {
    height: auto;
  }
  .story-visual {
    order: 2;
    min-height: 330px;
  }
  .story-copy {
    order: 1;
  }
  .story-visual span {
    width: 92px;
    height: 92px;
    font-size: 18px;
  }
  .story-copy h2 {
    font-size: 34px;
  }
  .newsletter {
    flex-direction: column;
  }
}

/* Final proportion pass against the supplied mnandi-main.jpg concept */
@media (min-width: 1051px) {
  .site-header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    min-height: 108px;
    height: 108px;
    padding: 0 max(18px, calc((100vw - 1120px) / 2));
    overflow: visible;
  }

  .brand {
    position: absolute;
    top: 0;
    left: max(18px, calc((100vw - 1120px) / 2));
    z-index: 3;
    width: 230px;
    height: 140px;
    min-height: 0;
    padding: 10px 18px;
  }

  .brand img {
    width: 190px;
    height: 120px;
    object-fit: contain;
  }

  .nav {
    flex: 1;
    justify-content: flex-start;
    gap: 28px;
    margin-left: 300px;
    font-size: 17px;
  }

  .header-contact {
    margin-left: 32px;
  }

  .home-slide,
  .slide-content {
    min-height: 451px;
  }

  .slide-content {
    width: min(1110px, calc(100% - 36px));
    padding: 56px 0 44px;
  }

  .slide-content p {
    font-size: 30px;
    line-height: .95;
  }

  .slide-content h1 {
    max-width: 620px;
    font-size: 82px;
    line-height: .88;
    letter-spacing: 0;
  }

  .home-slide:nth-child(3) .slide-content h1 {
    max-width: 760px;
    font-size: 76px;
    line-height: .86;
    white-space: nowrap;
  }

  .slide-content span {
    max-width: 570px;
    font-size: 20px;
    line-height: 1.25;
  }

  .btn {
    min-height: 58px;
    padding-inline: 24px;
    font-size: 18px;
  }

  .thumb-strip {
    width: min(1088px, calc(100% - 36px));
    gap: 20px;
    margin-top: 22px;
    margin-bottom: 30px;
  }

  .thumb-btn img {
    height: 141px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .home-slide { transition: none; }
  .slide-content p,
  .slide-content h1,
  .slide-content span,
  .slide-content .btn {
    transform: none;
    animation: none !important;
  }
}

/* Premium hero pass inspired by modern restaurant campaign sliders */
.home-slider {
  isolation: isolate;
  overflow: hidden;
  background: var(--dark-teal);
}

.home-slider::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  height: 18px;
  background: var(--red);
  clip-path: polygon(0 45%, 20% 0, 43% 70%, 66% 10%, 100% 55%, 100% 100%, 0 100%);
}

.home-slide {
  min-height: 560px;
  background-position: center;
  background-size: cover;
}

.home-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 76% 47%, rgba(249, 181, 27, .30), rgba(249, 181, 27, 0) 25%),
    linear-gradient(90deg, rgba(7, 49, 56, .98) 0%, rgba(7, 49, 56, .84) 33%, rgba(85, 195, 202, .10) 58%, rgba(85, 195, 202, 0) 78%);
}

.home-slide::after {
  content: "";
  position: absolute;
  right: clamp(120px, 14vw, 240px);
  top: 50%;
  z-index: 1;
  width: clamp(260px, 28vw, 430px);
  aspect-ratio: 1;
  border: 22px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: .42;
  pointer-events: none;
}

.slide-content {
  position: relative;
  z-index: 2;
  grid-template-columns: minmax(340px, 530px) minmax(0, 1fr);
  align-items: center;
  justify-items: stretch;
  min-height: 560px;
}

.slide-copy {
  position: relative;
  width: min(100%, 540px);
  padding: 34px 34px 32px;
  color: #fff;
  background: linear-gradient(135deg, rgba(237, 22, 31, .98), rgba(184, 9, 17, .94));
  box-shadow: 0 26px 70px rgba(0, 0, 0, .28);
  clip-path: polygon(0 0, 92% 0, 100% 14%, 94% 100%, 0 100%);
}

.slide-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 10px;
  height: 100%;
  background: var(--yellow);
}

.slide-copy small {
  display: inline-flex;
  margin: 0 0 12px;
  padding: 7px 12px 6px;
  color: var(--dark-teal);
  background: #fff;
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.home-slide .slide-copy p {
  margin-bottom: 3px;
  color: #fff !important;
  font-size: clamp(22px, 2.1vw, 34px);
}

.home-slide .slide-copy h1 {
  max-width: 470px;
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(62px, 7.1vw, 104px);
  line-height: .82;
  text-shadow: 0 4px 0 rgba(0, 0, 0, .14);
}

.home-slide .slide-copy span {
  max-width: 455px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn-outline {
  color: #fff;
  background: transparent;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .82);
}

.btn-outline:hover {
  color: var(--red);
  background: #fff;
}

.hero-flavour {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, .28);
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
}

.hero-badge {
  position: absolute;
  right: clamp(22px, 6vw, 78px);
  top: clamp(34px, 6vw, 82px);
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(108px, 10vw, 142px);
  aspect-ratio: 1;
  color: var(--dark-teal);
  background: var(--yellow);
  border: 8px solid #fff;
  border-radius: 50%;
  box-shadow: 0 18px 45px rgba(0, 0, 0, .22);
  transform: rotate(-9deg);
  text-align: center;
  overflow: hidden;
}

.hero-badge span,
.hero-badge strong {
  display: block;
  max-width: none;
  margin: 0;
  color: inherit;
  font-family: var(--condensed);
  font-stretch: condensed;
  line-height: .9;
  text-transform: uppercase;
}

.hero-badge span {
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 800;
}

.hero-badge strong {
  font-size: clamp(26px, 2.3vw, 34px);
  font-weight: 800;
}

.home-slide.animating .slide-copy {
  animation: heroPanelIn .7s cubic-bezier(.18, .72, .18, 1) both;
}

.home-slide.animating .hero-badge {
  animation: heroBadgeIn .76s cubic-bezier(.16, .76, .22, 1.18) both .34s;
}

@keyframes heroPanelIn {
  from {
    opacity: .01;
    transform: translateX(-52px) skewX(-2deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) skewX(0);
  }
}

@keyframes heroBadgeIn {
  from {
    opacity: .01;
    transform: translateY(-28px) scale(.76) rotate(-18deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(-9deg);
  }
}

.thumb-strip {
  position: relative;
  z-index: 5;
  margin-top: -42px;
  margin-bottom: 44px;
  padding: 12px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .14);
}

.thumb-btn {
  position: relative;
  padding: 6px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(7, 49, 56, .08);
}

.thumb-btn::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  height: 5px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
}

.thumb-btn.active::after {
  animation: thumbProgress 9s linear forwards;
}

@keyframes thumbProgress {
  to { transform: scaleX(1); }
}

@media (min-width: 1051px) {
  .home-slide,
  .slide-content {
    min-height: 560px;
  }

  .slide-content {
    width: min(1120px, calc(100% - 36px));
    padding: 78px 0 88px;
  }

  .home-slide .slide-copy h1,
  .home-slide:nth-child(3) .slide-copy h1 {
    max-width: 480px;
    font-size: 88px;
    line-height: .84;
  }

  .home-slide .slide-copy p {
    font-size: 27px;
  }

  .home-slide .slide-copy span {
    font-size: 19px;
  }
}

@media (max-width: 1050px) {
  .home-slide,
  .slide-content {
    min-height: 610px;
  }

  .slide-content {
    grid-template-columns: 1fr;
    align-content: end;
    padding: 130px 0 62px;
  }

  .slide-copy {
    width: min(94vw, 520px);
  }

  .hero-badge {
    right: 22px;
    top: 26px;
  }

  .thumb-strip {
    margin-top: 18px;
  }
}

@media (max-width: 680px) {
  .home-slide {
    min-height: 620px;
    background-position: 66% top;
  }

  .home-slide::before {
    background:
      linear-gradient(180deg, rgba(85, 195, 202, .08) 0%, rgba(7, 49, 56, .18) 36%, rgba(7, 49, 56, .98) 62%),
      linear-gradient(90deg, rgba(7, 49, 56, .70), rgba(7, 49, 56, .05));
  }

  .slide-content {
    min-height: 620px;
    padding: 260px 0 40px;
  }

  .slide-copy {
    padding: 24px 22px 24px 28px;
    clip-path: none;
  }

  .home-slide .slide-copy h1,
  .home-slide:nth-child(3) .slide-copy h1 {
    max-width: 300px;
    font-size: 47px;
  }

  .home-slide .slide-copy p {
    font-size: 20px;
  }

  .home-slide .slide-copy span {
    max-width: 290px;
    font-size: 15px;
  }

  .hero-badge {
    width: 98px;
    top: 94px;
    right: 14px;
    border-width: 6px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding-inline: 18px;
    font-size: 16px;
  }

  .thumb-strip {
    margin-top: 14px;
    padding: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-slide.animating .slide-copy,
  .home-slide.animating .hero-badge,
  .thumb-btn.active::after {
    animation: none !important;
  }
}

/* Animation-only correction: restore the supplied design, improve motion only. */
.home-slider {
  isolation: auto;
  background: var(--teal);
}

.home-slider::before,
.home-slide::before,
.home-slide::after,
.thumb-btn::after {
  content: none;
}

.home-slide {
  min-height: 451px;
  background-position: center;
  background-size: cover;
  transition: opacity .72s cubic-bezier(.22, .72, .2, 1), filter .72s ease;
}

.home-slide.active {
  animation: slideImageEase .78s cubic-bezier(.22, .72, .2, 1) both;
}

.slide-content {
  display: grid;
  grid-template-columns: none;
  align-content: center;
  align-items: initial;
  justify-items: start;
  min-height: 451px;
}

.home-slide.animating .slide-content p {
  animation: heroTextSlide .72s cubic-bezier(.18, .74, .2, 1) both .08s;
}

.home-slide.animating .slide-content h1 {
  animation: heroTextSlide .82s cubic-bezier(.18, .74, .2, 1) both .20s;
}

.home-slide.animating .slide-content span {
  animation: heroTextSlide .72s cubic-bezier(.18, .74, .2, 1) both .34s;
}

.home-slide.animating .slide-content .btn {
  animation: heroTextSlide .66s cubic-bezier(.18, .74, .2, 1) both .46s;
}

@keyframes slideImageEase {
  from {
    filter: saturate(.9) brightness(.98);
    background-position: calc(50% + 22px) center;
  }
  to {
    filter: saturate(1) brightness(1);
    background-position: center;
  }
}

@keyframes heroTextSlide {
  from { transform: translateX(-46px); }
  to { transform: translateX(0); }
}

.thumb-strip {
  position: static;
  z-index: auto;
  width: min(1100px, calc(100% - 36px));
  margin: 24px auto 34px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.thumb-btn {
  padding: 0;
  background: transparent;
  box-shadow: none;
}

@media (min-width: 1051px) {
  .home-slide,
  .slide-content {
    min-height: 451px;
  }

  .slide-content {
    width: min(1110px, calc(100% - 36px));
    padding: 56px 0 44px;
  }

  .thumb-strip {
    width: min(1088px, calc(100% - 36px));
    gap: 20px;
    margin-top: 22px;
    margin-bottom: 30px;
  }
}

@media (max-width: 1050px) {
  .home-slide,
  .slide-content {
    min-height: 390px;
  }

  .slide-content {
    grid-template-columns: none;
    padding: 44px 0 44px 8px;
  }

  .thumb-strip {
    margin: 24px auto 34px;
  }
}

@media (max-width: 680px) {
  .home-slide {
    min-height: 495px;
    background-color: var(--teal);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
  }

  .home-slide.active {
    animation: mobileImageEase .72s ease both;
  }

  .slide-content {
    width: 100%;
    margin-inline: 0;
    min-height: 495px;
    align-content: end;
    padding: 270px 22px 48px;
  }

  .slide-content h1,
  .home-slide:nth-child(3) .slide-content h1,
  .slide-content span {
    max-width: none;
  }

  .home-slide:nth-child(1) {
    background-image: url("/assets/img/banners/mobile-1.jpg?v=3");
  }

  .home-slide:nth-child(2) {
    background-image: url("/assets/img/banners/mobile-2.jpg?v=3");
    background-color: #f4f0ef;
  }

  .home-slide:nth-child(3) {
    background-image: url("/assets/img/banners/mobile-3.jpg?v=3");
  }

  .thumb-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    width: calc(100% - 20px);
    margin: 12px auto 24px;
  }

  .thumb-btn img {
    width: 100%;
    height: auto;
    aspect-ratio: 2.49 / 1;
    object-fit: cover;
  }

  .thumb-btn.active {
    transform: translateY(-2px);
    outline-width: 2px;
  }

  @keyframes mobileImageEase {
    from { filter: saturate(.9) brightness(.98); }
    to { filter: saturate(1) brightness(1); }
  }
}

/* Popular picks */
.home-menu-preview {
  position: relative;
  padding: 82px clamp(18px, 5vw, 76px) 94px;
  color: #fff;
  text-align: left;
  background: var(--dark-teal);
  overflow: hidden;
}

.home-menu-preview::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--red);
}

.popular-heading {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  width: min(1180px, 100%);
  margin: 0 auto 42px;
}

.home-menu-preview .section-label {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 25px;
  letter-spacing: 0;
}

.home-menu-preview h2 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(54px, 6vw, 82px);
  line-height: .84;
}

.popular-intro {
  max-width: 850px;
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  white-space: nowrap;
}

.popular-menu-link {
  flex: 0 0 auto;
  color: var(--dark-teal);
  background: #fff;
}

.popular-menu-link:hover {
  color: #fff;
  background: var(--red);
}

.home-menu-preview .preview-grid {
  position: relative;
  width: min(1180px, 100%);
  gap: 22px;
}

.home-menu-preview .popular-card {
  display: grid;
  grid-template-rows: auto 1fr;
  justify-items: stretch;
  min-width: 0;
  padding: 0;
  color: var(--charcoal);
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.home-menu-preview .popular-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 58px rgba(0, 0, 0, .30);
}

.popular-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.35 / 1;
}

.home-menu-preview .preview-grid .popular-image img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform .45s ease;
}

.popular-card:hover .popular-image img {
  transform: scale(1.035);
}

.home-menu-preview .preview-grid .popular-price {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 76px;
  padding: 11px 15px 9px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.popular-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 24px 24px;
}

.popular-copy small {
  margin-bottom: 5px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-menu-preview .preview-grid .popular-copy strong {
  color: var(--dark-teal);
  font-size: 31px;
  line-height: .95;
}

.popular-copy p {
  margin: 11px 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.home-menu-preview .preview-grid .popular-arrow {
  margin-top: auto;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.popular-arrow::after {
  content: " \2192";
  color: var(--red);
}

@media (max-width: 680px) {
  .home-menu-preview {
    padding: 58px 14px 68px;
  }

  .popular-heading {
    display: block;
    margin-bottom: 28px;
  }

  .home-menu-preview .section-label {
    font-size: 21px;
  }

  .home-menu-preview h2 {
    max-width: 340px;
    font-size: 52px;
  }

  .popular-intro {
    max-width: 350px;
    font-size: 15px;
    white-space: normal;
  }

  .popular-menu-link {
    margin-top: 22px;
    min-height: 48px;
  }

  .home-menu-preview .preview-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-menu-preview .popular-card {
    grid-template-columns: 42% 58%;
    grid-template-rows: 1fr;
    min-height: 158px;
  }

  .popular-image {
    height: 100%;
    min-height: 158px;
    aspect-ratio: auto;
  }

  .home-menu-preview .preview-grid .popular-price {
    min-width: 62px;
    padding: 8px 10px 7px;
    font-size: 20px;
  }

  .popular-copy {
    padding: 16px 15px;
  }

  .home-menu-preview .preview-grid .popular-copy strong {
    font-size: 25px;
  }

  .popular-copy p {
    margin: 7px 0 11px;
    font-size: 12px;
    line-height: 1.35;
  }

  .home-menu-preview .preview-grid .popular-arrow {
    font-size: 14px;
  }
}

/* Footer */
.footer {
  color: #fff;
  background: var(--dark-teal);
}

.footer-cta {
  color: var(--dark-teal);
  background: #fff;
}

.footer-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 80px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 58px;
}

.footer-cta .footer-kicker {
  color: var(--red);
}

.footer-cta h2 {
  margin: 0;
  color: var(--red);
  font-family: var(--condensed);
  font-size: clamp(54px, 6vw, 78px);
  font-weight: 700;
  line-height: .82;
  text-transform: uppercase;
}

.footer-cta h2 span,
.footer-cta-copy p {
  color: var(--dark-teal);
}

.footer-cta-copy {
  padding-bottom: 3px;
}

.footer-cta-copy p {
  max-width: 440px;
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.5;
}

.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-width: 210px;
  min-height: 54px;
  margin: 0;
  padding: 13px 18px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  transition: background .2s ease;
}

.footer-cta-button:hover {
  color: #fff;
  background: var(--dark-teal);
}

.footer-kicker {
  margin: 0 0 9px;
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 19px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.05fr .85fr 1.1fr;
  gap: clamp(42px, 6vw, 88px);
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 58px;
}

.footer-logo {
  display: block;
  width: 155px;
  padding: 8px;
  margin: 0 0 20px;
  background: #fff;
}

.footer-brand-copy {
  max-width: 350px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.6;
}

.footer-contact-links {
  display: grid;
  gap: 13px;
  margin-top: 25px;
}

.footer-contact-links a {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: baseline;
  gap: 10px;
  margin: 0;
}

.footer-contact-links span {
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.footer-contact-links strong {
  font-size: 14px;
  font-weight: 600;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
}

.footer h4 {
  margin: 1px 0 20px;
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.footer-nav-grid a {
  width: fit-content;
  margin: 0 0 11px;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.footer-nav-grid a:hover {
  color: #fff;
  transform: translateX(3px);
}

.footer-newsletter {
  padding-left: clamp(28px, 4vw, 54px);
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.footer-newsletter h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--condensed);
  font-size: 39px;
  font-weight: 700;
  line-height: .92;
  text-transform: uppercase;
}

.footer-newsletter > p:not(.footer-kicker) {
  max-width: 400px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, .68);
  font-size: 14px;
  line-height: 1.55;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  width: 100%;
}

.newsletter input {
  min-width: 0;
  min-height: 54px;
  border: 0;
  padding-inline: 16px;
  color: var(--dark-teal);
  background: #fff;
  font-size: 14px;
}

.newsletter button {
  min-width: 104px;
  border: 0;
  padding: 12px 15px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease;
}

.newsletter button:hover {
  background: var(--deep-red);
}

.newsletter button span {
  margin-left: 6px;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 20px;
  margin-top: 21px;
}

.socials a {
  margin: 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(85, 195, 202, .55);
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.socials a:hover {
  color: #fff;
  border-color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 18px 0 21px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  text-align: center;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 980px) {
  .footer-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-newsletter {
    padding-left: 32px;
  }
}

@media (max-width: 680px) {
  .footer-cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: calc(100% - 40px);
    padding: 42px 0 46px;
  }

  .footer-cta h2 {
    font-size: 46px;
    line-height: .86;
  }

  .footer-cta-copy p {
    max-width: 340px;
    margin-bottom: 20px;
    font-size: 14px;
  }

  .footer-cta-button {
    min-width: 200px;
    min-height: 50px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 38px;
    width: calc(100% - 40px);
    padding: 48px 0 42px;
  }

  .footer-brand-block {
    grid-column: auto;
  }

  .footer-logo {
    width: 138px;
  }

  .footer-brand-copy {
    max-width: 330px;
  }

  .footer-contact-links a {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .footer-nav-grid {
    gap: 24px;
    padding-block: 31px;
    border-top: 1px solid rgba(255, 255, 255, .14);
    border-bottom: 1px solid rgba(255, 255, 255, .14);
  }

  .footer-newsletter {
    padding-left: 0;
    border-left: 0;
  }

  .footer-newsletter h3 {
    font-size: 36px;
  }

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

  .newsletter button {
    min-width: 88px;
  }

  .footer-bottom {
    flex-direction: column;
    width: calc(100% - 40px);
    padding: 18px 0 24px;
  }
}

/* Locations */
.locations-hero {
  position: relative;
  color: #fff;
  background: var(--dark-teal);
  overflow: hidden;
}

.locations-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -230px;
  width: 570px;
  height: 570px;
  border: 90px solid var(--red);
  border-radius: 50%;
  opacity: .92;
}

.locations-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 70px;
  width: min(1180px, calc(100% - 36px));
  min-height: 420px;
  margin: 0 auto;
  padding: 74px 0 70px;
}

.locations-hero .section-label,
.location-detail-hero .section-label {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 24px;
}

.locations-hero h1,
.location-detail-hero h1,
.location-not-found h1 {
  margin: 0;
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(68px, 8vw, 108px);
  font-weight: 700;
  line-height: .79;
  text-transform: uppercase;
}

.locations-hero h1 span {
  color: var(--red);
}

.locations-hero-inner > div:first-child > p:last-child {
  max-width: 580px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
}

.locations-count {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 255px;
  padding: 22px 25px;
  margin-right: 80px;
  color: var(--dark-teal);
  background: #fff;
}

.locations-count strong {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 70px;
  font-weight: 700;
  line-height: .75;
}

.locations-count span {
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}

.locations-list {
  padding: 76px clamp(18px, 5vw, 76px) 92px;
  background: #fff;
}

.locations-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  width: min(1180px, 100%);
  margin: 0 auto 38px;
}

.locations-intro .section-label,
.location-detail-info .section-label,
.location-map-heading .section-label,
.locations-catering .section-label,
.location-not-found .section-label {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 22px;
}

.locations-intro h2,
.location-detail-info h2,
.location-map-heading h2,
.locations-catering h2 {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 700;
  line-height: .84;
  text-transform: uppercase;
}

.locations-intro > p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.locations-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.location-feature-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  min-width: 0;
  background: var(--soft);
  border-bottom: 5px solid var(--dark-teal);
}

.location-card-image {
  position: relative;
  display: block;
  margin: 0;
  overflow: hidden;
  background: var(--teal);
}

.location-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.location-card-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 11px 15px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-card-image:hover img {
  transform: scale(1.025);
}

.location-card-copy {
  display: flex;
  flex-direction: column;
  padding: 27px 28px 29px;
}

.location-region {
  margin: 0 0 7px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-card-copy h2 {
  margin: 0 0 23px;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 38px;
  font-weight: 700;
  line-height: .9;
  text-transform: uppercase;
}

.location-card-facts {
  display: grid;
  gap: 13px;
  margin-bottom: 26px;
}

.location-card-facts div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 13px;
  padding-top: 12px;
  border-top: 1px solid #ddd;
}

.location-card-facts span,
.location-facts span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-card-facts p {
  margin: 0;
  color: #555;
  font-size: 13px;
  line-height: 1.45;
}

.location-card-actions,
.location-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: auto;
}

.location-card-actions .btn,
.location-actions .btn {
  min-height: 48px;
  margin: 0;
  font-size: 16px;
}

.location-card-actions > a:last-child,
.location-call-link,
.location-map-heading > a {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-card-actions > a:last-child:hover,
.location-call-link:hover,
.location-map-heading > a:hover {
  color: var(--red);
}

.locations-catering {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  padding: 58px max(18px, calc((100vw - 1180px) / 2));
  color: var(--dark-teal);
  background: var(--teal);
}

.locations-catering .section-label {
  color: #fff;
}

.locations-catering .btn {
  flex: 0 0 auto;
  margin: 0;
  color: var(--dark-teal);
  background: #fff;
}

.locations-catering .btn:hover {
  color: #fff;
  background: var(--red);
}

.location-detail-hero {
  color: #fff;
  background: var(--dark-teal);
}

.location-detail-heading {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 65px 0 70px;
}

.location-back-link {
  display: inline-block;
  margin: 0 0 42px;
  color: rgba(255, 255, 255, .7);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-back-link:hover {
  color: var(--teal);
}

.location-detail-hero h1 {
  max-width: 900px;
  font-size: clamp(64px, 8vw, 105px);
}

.location-detail-hero h1 + p {
  max-width: 600px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.location-detail {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 590px;
}

.location-detail-image {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background: var(--teal);
}

.location-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-detail-image span {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 14px 20px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-detail-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px clamp(28px, 6vw, 92px);
  background: #fff;
}

.location-facts {
  display: grid;
  gap: 17px;
  margin: 35px 0 34px;
}

.location-facts div {
  display: grid;
  grid-template-columns: 105px 1fr;
  gap: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.location-facts p {
  margin: 0;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.location-facts a:hover {
  color: var(--red);
}

.location-map-section {
  padding: 70px max(18px, calc((100vw - 1180px) / 2)) 86px;
  background: var(--soft);
}

.location-map-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.location-map-section .location-map {
  display: block;
  height: 460px;
  border: 8px solid #fff;
  box-shadow: 0 20px 50px rgba(7, 49, 56, .13);
}

.location-not-found {
  min-height: 60vh;
  padding: 100px clamp(18px, 5vw, 76px);
  color: #fff;
  background: var(--dark-teal);
}

.location-not-found p:not(.section-label) {
  margin-bottom: 25px;
}

@media (max-width: 900px) {
  .locations-hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .locations-count {
    width: fit-content;
    margin-right: 0;
  }

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

  .location-detail-image {
    min-height: 440px;
  }
}

@media (max-width: 680px) {
  .locations-hero::after {
    right: -155px;
    bottom: -205px;
    width: 390px;
    height: 390px;
    border-width: 60px;
  }

  .locations-hero-inner {
    width: calc(100% - 40px);
    min-height: 0;
    padding: 54px 0 60px;
  }

  .locations-hero .section-label,
  .location-detail-hero .section-label {
    font-size: 20px;
  }

  .locations-hero h1 {
    font-size: 63px;
  }

  .locations-hero-inner > div:first-child > p:last-child {
    max-width: 340px;
    margin-top: 20px;
    font-size: 14px;
  }

  .locations-count {
    min-width: 0;
    padding: 18px 20px;
  }

  .locations-count strong {
    font-size: 58px;
  }

  .locations-list {
    padding: 55px 14px 65px;
  }

  .locations-intro {
    display: block;
    margin-bottom: 27px;
  }

  .locations-intro h2,
  .location-detail-info h2,
  .location-map-heading h2,
  .locations-catering h2 {
    font-size: 48px;
  }

  .locations-intro > p {
    margin-top: 15px;
    font-size: 13px;
  }

  .locations-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .location-feature-card {
    grid-template-rows: 220px 1fr;
  }

  .location-card-copy {
    padding: 22px 20px 24px;
  }

  .location-card-copy h2 {
    font-size: 34px;
  }

  .location-card-actions,
  .location-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .locations-catering {
    align-items: flex-start;
    flex-direction: column;
    padding: 48px 20px 52px;
  }

  .location-detail-heading {
    width: calc(100% - 40px);
    padding: 43px 0 52px;
  }

  .location-back-link {
    margin-bottom: 34px;
  }

  .location-detail-hero h1 {
    font-size: 60px;
  }

  .location-detail-hero h1 + p {
    font-size: 14px;
  }

  .location-detail-image {
    min-height: 340px;
  }

  .location-detail-info {
    padding: 54px 20px 60px;
  }

  .location-facts {
    margin-top: 28px;
  }

  .location-facts div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .location-map-section {
    padding: 52px 14px 64px;
  }

  .location-map-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 17px;
  }

  .location-map-section .location-map {
    height: 360px;
    border-width: 5px;
  }
}

/* Locations directory */
.locations-directory {
  padding: 72px clamp(18px, 5vw, 76px) 96px;
  background: var(--soft);
}

.locations-directory-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 70px;
  width: min(1180px, 100%);
  margin: 0 auto 40px;
}

.locations-directory-head .section-label {
  margin-bottom: 13px;
  color: var(--red);
  font-size: 23px;
}

.locations-directory-head h1 {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(66px, 7vw, 96px);
  font-weight: 700;
  line-height: .8;
  text-transform: uppercase;
}

.locations-directory-head h1 span {
  color: var(--red);
}

.locations-directory-head > p {
  max-width: 410px;
  margin: 0;
  padding-bottom: 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.locations-store-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.location-store-card {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 325px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(7, 49, 56, .09);
  transition: transform .25s ease, box-shadow .25s ease;
}

.location-store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(7, 49, 56, .15);
}

.location-store-heading {
  min-height: 135px;
  padding: 25px 28px 27px;
  color: #fff;
  background: var(--red);
}

.location-store-heading p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.location-store-heading h2 {
  max-width: 470px;
  margin: 0;
  color: #fff;
  font-family: var(--condensed);
  font-size: 37px;
  font-weight: 700;
  line-height: .9;
  text-transform: uppercase;
}

.location-store-body {
  display: flex;
  flex-direction: column;
  padding: 24px 28px 27px;
}

.location-store-address span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-store-address strong {
  display: block;
  margin-bottom: 3px;
  color: var(--dark-teal);
  font-size: 13px;
}

.location-store-address p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.location-store-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: auto;
  padding-top: 23px;
}

.location-store-actions a {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-store-actions .location-details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: #fff;
  background: var(--dark-teal);
}

.location-store-actions .location-details-link:hover {
  background: var(--red);
}

.location-store-actions .location-directions-link {
  color: var(--red);
}

.location-store-actions .location-directions-link:hover {
  color: var(--dark-teal);
}

.location-visit-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  min-height: 560px;
  background: #fff;
}

.location-visit-grid .location-detail-info {
  min-width: 0;
}

.location-detail-map {
  position: relative;
  min-width: 0;
  min-height: 560px;
  background: var(--teal);
}

.location-detail-map .location-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 0;
  filter: saturate(.82);
}

.location-map-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  max-width: 260px;
  padding: 15px 18px;
  color: #fff;
  background: var(--dark-teal);
}

.location-map-label span {
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-map-label a {
  margin: 0;
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.location-map-label a:hover {
  color: var(--teal);
}

@media (max-width: 1000px) {
  .locations-directory-head {
    display: block;
    gap: 30px;
  }

  .locations-directory-head > p {
    max-width: 560px;
    margin-top: 24px;
    padding-bottom: 0;
  }

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

  .location-detail-map,
  .location-detail-map .location-map {
    min-height: 460px;
  }
}

@media (max-width: 680px) {
  .locations-directory {
    padding: 52px 14px 66px;
  }

  .locations-directory-head {
    margin-bottom: 26px;
  }

  .locations-directory-head .section-label {
    font-size: 20px;
  }

  .locations-directory-head h1 {
    font-size: 58px;
    line-height: .84;
  }

  .locations-directory-head > p {
    margin-top: 18px;
    font-size: 13px;
  }

  .locations-store-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .location-store-card {
    min-height: 0;
  }

  .location-store-heading {
    min-height: 0;
    padding: 21px 20px 22px;
  }

  .location-store-heading h2 {
    font-size: 32px;
  }

  .location-store-body {
    padding: 20px;
  }

  .location-store-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 20px;
  }

  .location-detail-map,
  .location-detail-map .location-map {
    min-height: 380px;
  }

  .location-map-label {
    right: 10px;
    bottom: 10px;
    left: 10px;
    max-width: none;
  }
}

/* Split-view store locator */
.store-locator {
  padding: 58px clamp(18px, 5vw, 76px) 86px;
  background: var(--soft);
}

.store-locator-heading {
  width: min(1240px, 100%);
  margin: 0 auto 32px;
}

.store-locator-heading .section-label {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 22px;
}

.store-locator-heading h1 {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 700;
  line-height: .88;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-locator-shell {
  display: grid;
  grid-template-columns: minmax(370px, .82fr) minmax(500px, 1.18fr);
  width: min(1240px, 100%);
  min-height: 650px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 49, 56, .28);
}

.store-mobile-selector {
  display: none;
}

.store-locator-panel {
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  overflow: visible;
  border-right: 1px solid #ddd;
}

.store-search {
  padding: 22px 24px 18px;
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.store-search label {
  display: block;
  margin-bottom: 10px;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.store-search-field {
  position: relative;
}

.store-search-field span {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 13px;
  height: 13px;
  border: 2px solid var(--red);
  border-radius: 50%;
  transform: translateY(-58%);
  pointer-events: none;
}

.store-search-field span::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -4px;
  width: 6px;
  height: 2px;
  background: var(--red);
  transform: rotate(45deg);
}

.store-search input {
  min-height: 50px;
  padding: 12px 14px 12px 45px;
  border: 1px solid #d7d7d7;
  color: var(--dark-teal);
  background: var(--soft);
  font-size: 13px;
}

.store-search input:focus {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.store-search > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.store-search > p strong {
  color: var(--red);
}

.store-results {
  min-height: 0;
  overflow: visible;
}

.store-result {
  position: relative;
  padding: 22px 24px 21px;
  border-bottom: 1px solid #ddd;
  background: #fff;
  transition: background .2s ease;
}

.store-result::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: transparent;
}

.store-result:hover,
.store-result.active {
  background: #f7f7f7;
}

.store-result.active::before {
  background: var(--red);
}

.store-result-heading p {
  margin: 0 0 4px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.store-result-heading h2 {
  margin: 0 0 13px;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 28px;
  font-weight: 700;
  line-height: .94;
  text-transform: uppercase;
}

.store-result-address strong {
  display: block;
  margin-bottom: 3px;
  color: #444;
  font-size: 14px;
}

.store-result-address p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.store-result-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px 16px;
  margin-top: 16px;
}

.store-result-actions button,
.store-result-actions a {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--dark-teal);
  background: transparent;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.store-result-actions button {
  padding: 9px 11px;
  color: #fff;
  background: var(--red);
}

.store-result-actions button:hover {
  background: var(--dark-teal);
}

.store-result.active .store-result-actions button {
  color: #fff;
  background: var(--teal);
}

.store-result.active .store-result-actions button:hover {
  background: var(--teal);
}

.store-result-actions a:hover,
.store-result-actions a:last-child {
  color: var(--red);
}

.store-result-actions a:last-child:hover {
  color: var(--dark-teal);
}

.store-no-results {
  padding: 35px 24px;
  color: var(--muted);
  font-size: 14px;
}

.store-no-results[hidden],
.store-result[hidden] {
  display: none;
}

.store-map {
  position: relative;
  min-width: 0;
  min-height: 650px;
  background: #ddd;
}

.store-map .location-map {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 650px;
  border: 0;
}

.store-map-bar {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 17px;
  color: #fff;
  background: var(--dark-teal);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}

.store-map-bar div {
  min-width: 0;
}

.store-map-bar span {
  display: block;
  margin-bottom: 2px;
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.store-map-bar strong {
  display: block;
  overflow: hidden;
  font-family: var(--condensed);
  font-size: 20px;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.store-map-bar a {
  flex: 0 0 auto;
  margin: 0;
  color: #fff;
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.store-map-bar a:hover {
  color: var(--teal);
}

@media (max-width: 980px) {
  .store-locator-shell {
    grid-template-columns: 1fr;
    min-height: 0;
    max-height: none;
  }

  .store-locator-panel {
    max-height: none;
    border-right: 0;
  }

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

  .store-result {
    border-right: 1px solid #ddd;
  }

  .store-map,
  .store-map .location-map {
    min-height: 520px;
  }
}

@media (max-width: 680px) {
  .store-locator {
    padding: 38px 0 0;
  }

  .store-locator-heading {
    width: calc(100% - 40px);
    margin-bottom: 22px;
  }

  .store-locator-heading .section-label {
    margin-bottom: 7px;
    font-size: 19px;
  }

  .store-locator-heading h1 {
    max-width: none;
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: .9;
    white-space: nowrap;
  }

  .store-locator-shell {
    display: block;
    box-shadow: none;
  }

  .store-mobile-selector {
    display: block;
    padding: 0 14px 14px;
    background: var(--soft);
  }

  .store-mobile-selector select {
    min-height: 54px;
    border: 2px solid var(--dark-teal);
    padding: 10px 42px 10px 14px;
    color: var(--dark-teal);
    background: #fff;
    font-family: var(--condensed);
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .store-locator-panel {
    display: block;
    max-height: none;
    overflow: visible;
    border-right: 0;
  }

  .store-search {
    padding: 20px;
  }

  .store-results {
    display: block;
    max-height: none;
    overflow: visible;
  }

  .store-result {
    padding: 22px 20px 23px;
    border-right: 0;
  }

  .store-result:not(.active) {
    display: none;
  }

  .store-result::before {
    width: 4px;
  }

  .store-result-heading h2 {
    max-width: 350px;
    margin-bottom: 14px;
    font-size: 28px;
  }

  .store-result-address strong,
  .store-result-address p {
    font-size: 14px;
  }

  .store-result-actions {
    display: flex;
    gap: 16px 20px;
    margin-top: 18px;
  }

  .store-result-actions button {
    display: none;
  }

  .store-result-actions a {
    align-self: center;
  }

  .store-result-actions a:last-child {
    margin-left: auto;
  }

  .store-map,
  .store-map .location-map {
    min-height: 500px;
  }

  .store-map {
    display: block;
  }

  .store-map-bar {
    top: 10px;
    right: 10px;
    left: 10px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px;
  }

  .store-map-bar strong {
    max-width: calc(100vw - 48px);
    font-size: 18px;
  }
}

/* Gallery */
.gallery-landing {
  padding: 72px clamp(18px, 5vw, 76px) 96px;
  background: #fff;
}

.gallery-simple-heading {
  width: min(1180px, 100%);
  margin: 0 auto 28px;
}

.gallery-simple-heading h1 {
  margin: 0;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.gallery-landing-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  width: min(1180px, 100%);
  margin: 0 auto 42px;
}

.gallery-landing-heading .section-label,
.gallery-detail-heading .section-label,
.gallery-not-found .section-label {
  margin-bottom: 11px;
  color: var(--red);
  font-size: 23px;
}

.gallery-landing-heading h1,
.gallery-detail-heading h1,
.gallery-not-found h1 {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(68px, 7.5vw, 104px);
  font-weight: 700;
  line-height: .79;
  text-transform: uppercase;
}

.gallery-landing-heading h1 span {
  color: var(--red);
}

.gallery-landing-heading > p {
  max-width: 410px;
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.gallery-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.gallery-category-card {
  position: relative;
  display: block;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  color: #fff;
  background: var(--teal);
}

.gallery-category-card img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  transition: transform .45s ease;
}

.gallery-category-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(to bottom, transparent, rgba(7, 49, 56, .94));
}

.gallery-category-card:hover img {
  transform: scale(1.035);
}

.gallery-category-copy {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 25px 28px 27px;
}

.gallery-category-copy span {
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-category-copy h2 {
  margin: 4px 0 12px;
  color: #fff;
  font-family: var(--condensed);
  font-size: 48px;
  font-weight: 700;
  line-height: .88;
  text-transform: uppercase;
}

.gallery-category-copy p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-category-card:hover .gallery-category-copy p {
  color: var(--teal);
}

.gallery-detail-heading {
  padding: 58px max(18px, calc((100vw - 1180px) / 2)) 56px;
  background: var(--soft);
}

.gallery-detail-heading > a {
  display: inline-block;
  margin: 0 0 36px;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.gallery-detail-heading > a:hover {
  color: var(--red);
}

.gallery-detail-heading h1 {
  color: var(--red);
}

.gallery-detail-heading > p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.gallery-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px;
  background: var(--dark-teal);
}

.gallery-photo {
  position: relative;
  min-width: 0;
  height: 360px;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--teal);
  cursor: pointer;
}

.gallery-photo:nth-child(5n + 1) {
  grid-column: span 2;
}

.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
}

.gallery-photo span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 8px 11px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity .2s ease, transform .2s ease;
}

.gallery-photo:hover img {
  transform: scale(1.025);
  filter: saturate(1.08);
}

.gallery-photo:hover span {
  opacity: 1;
  transform: translateY(0);
}

.gallery-lightbox {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px 24px 24px;
  background: rgba(7, 49, 56, .96);
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox img {
  display: block;
  max-width: min(1200px, 94vw);
  max-height: 86vh;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .4);
}

.gallery-lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  color: #fff;
  background: var(--red);
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.gallery-open {
  overflow: hidden;
}

.gallery-not-found {
  min-height: 60vh;
  padding: 90px clamp(18px, 5vw, 76px);
  background: var(--soft);
}

.gallery-not-found .btn {
  margin-top: 25px;
}

@media (max-width: 900px) {
  .gallery-photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-photo:nth-child(5n + 1) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .gallery-landing {
    padding: 50px 14px 66px;
  }

  .gallery-simple-heading {
    margin-bottom: 20px;
  }

  .gallery-simple-heading h1 {
    font-size: 34px;
  }

  .gallery-landing-heading {
    display: block;
    margin-bottom: 27px;
  }

  .gallery-landing-heading .section-label,
  .gallery-detail-heading .section-label {
    font-size: 20px;
  }

  .gallery-landing-heading h1 {
    font-size: 59px;
  }

  .gallery-landing-heading > p {
    margin-top: 17px;
    font-size: 13px;
  }

  .gallery-category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gallery-category-card,
  .gallery-category-card img {
    min-height: 255px;
  }

  .gallery-category-copy {
    padding: 19px 20px 20px;
  }

  .gallery-category-copy h2 {
    font-size: 38px;
  }

  .gallery-detail-heading {
    padding: 42px 20px 43px;
  }

  .gallery-detail-heading > a {
    margin-bottom: 30px;
  }

  .gallery-detail-heading h1 {
    font-size: 58px;
  }

  .gallery-photo-grid {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 7px;
  }

  .gallery-photo {
    height: 280px;
  }

  .gallery-photo span {
    display: none;
  }

  .gallery-lightbox {
    padding: 70px 10px 15px;
  }
}

/* Catering */
.catering-hero {
  min-height: 500px;
  display: grid;
  align-items: center;
  padding: 70px max(18px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(7, 49, 56, .98) 0%, rgba(7, 49, 56, .9) 40%, rgba(7, 49, 56, .08) 72%),
    url("/assets/img/client/client-07.jpg") center 64% / cover no-repeat;
}

.catering-hero-content {
  max-width: 760px;
  color: #fff;
}

.catering-hero .section-label {
  margin-bottom: 15px;
  color: var(--teal);
  font-size: 25px;
}

.catering-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--condensed);
  font-size: clamp(66px, 7.5vw, 104px);
  font-weight: 700;
  line-height: .78;
  text-transform: uppercase;
}

.catering-hero h1 span {
  color: var(--red);
}

.catering-hero-content > p:not(.section-label) {
  max-width: 610px;
  margin: 25px 0 27px;
  color: rgba(255, 255, 255, .75);
  font-size: 16px;
  line-height: 1.55;
}

.catering-hero .btn {
  margin: 0;
}

.catering-packages,
.catering-events {
  padding: 78px clamp(18px, 5vw, 76px) 92px;
  background: #fff;
}

.catering-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 45px;
  width: min(1180px, 100%);
  margin: 0 auto 38px;
}

.catering-section-heading .section-label,
.catering-enquiry-intro .section-label {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 22px;
}

.catering-section-heading h2,
.catering-enquiry-intro h2 {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 700;
  line-height: .84;
  text-transform: uppercase;
}

.catering-section-heading > p {
  max-width: 430px;
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.catering-package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.catering-package {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 29px 28px 28px;
  border-top: 6px solid var(--teal);
  background: var(--soft);
}

.catering-package.featured {
  color: #fff;
  border-color: var(--red);
  background: var(--dark-teal);
}

.catering-package-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 29px;
}

.catering-package-top span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 27px;
  font-weight: 700;
}

.catering-package-top p {
  margin: 0;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  text-transform: uppercase;
}

.catering-package.featured .catering-package-top p {
  color: var(--teal);
}

.catering-package h3 {
  margin: 0 0 15px;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 45px;
  font-weight: 700;
  line-height: .88;
  text-transform: uppercase;
}

.catering-package.featured h3 {
  color: #fff;
}

.catering-package > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.catering-package.featured > p {
  color: rgba(255, 255, 255, .7);
}

.catering-package ul {
  display: grid;
  gap: 9px;
  margin: 0 0 29px;
  padding: 0;
  list-style: none;
}

.catering-package li {
  position: relative;
  padding-left: 17px;
  color: var(--dark-teal);
  font-size: 13px;
  font-weight: 700;
}

.catering-package li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--red);
}

.catering-package.featured li {
  color: #fff;
}

.catering-package button {
  width: fit-content;
  margin-top: auto;
  padding: 0 0 3px;
  border: 0;
  border-bottom: 2px solid var(--red);
  color: var(--red);
  background: transparent;
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.catering-package button:hover {
  color: var(--dark-teal);
}

.catering-package.featured button:hover {
  color: #fff;
}

.catering-events {
  color: #fff;
  background: var(--dark-teal);
}

.catering-events .catering-section-heading h2 {
  color: #fff;
}

.catering-events .catering-section-heading > p {
  color: rgba(255, 255, 255, .68);
}

.catering-event-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 14px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.catering-event-grid figure {
  position: relative;
  min-width: 0;
  height: 390px;
  margin: 0;
  overflow: hidden;
  background: var(--teal);
}

.catering-event-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.catering-event-grid figure:hover img {
  transform: scale(1.025);
}

.catering-event-grid figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.catering-enquiry {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(45px, 7vw, 100px);
  padding: 84px max(18px, calc((100vw - 1180px) / 2)) 96px;
  background: var(--soft);
}

.catering-enquiry-intro {
  align-self: start;
  position: sticky;
  top: 145px;
}

.catering-enquiry-intro > p:not(.section-label) {
  max-width: 390px;
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.catering-contact-note {
  display: grid;
  gap: 3px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.catering-contact-note span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.catering-contact-note a {
  width: fit-content;
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 27px;
  font-weight: 700;
}

.catering-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  min-width: 0;
  padding: 33px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 49, 56, .1);
}

.form-field {
  min-width: 0;
}

.form-field label {
  display: block;
  margin-bottom: 7px;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.catering-form input,
.catering-form select,
.catering-form textarea {
  border: 1px solid #d5d5d5;
  color: var(--dark-teal);
  background: var(--soft);
  font-size: 14px;
}

.catering-form input:focus,
.catering-form select:focus,
.catering-form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.form-field-wide,
.form-success {
  grid-column: 1 / -1;
}

.catering-form .btn {
  width: fit-content;
  margin: 3px 0 0;
  cursor: pointer;
}

.form-success {
  margin: 0;
  padding: 13px 15px;
  color: #fff;
  background: var(--teal);
  font-weight: 700;
}

@media (max-width: 980px) {
  .catering-package-grid {
    grid-template-columns: 1fr;
  }

  .catering-package {
    min-height: 0;
  }

  .catering-enquiry {
    grid-template-columns: 1fr;
  }

  .catering-enquiry-intro {
    position: static;
  }
}

@media (max-width: 680px) {
  .catering-hero {
    min-height: 520px;
    align-items: end;
    padding: 55px 20px 58px;
    background:
      linear-gradient(0deg, rgba(7, 49, 56, .98) 0%, rgba(7, 49, 56, .82) 55%, rgba(7, 49, 56, .2) 100%),
      url("/assets/img/client/client-07.jpg") 52% center / cover no-repeat;
  }

  .catering-hero .section-label {
    font-size: 20px;
  }

  .catering-hero h1 {
    font-size: 54px;
    line-height: .82;
  }

  .catering-hero-content > p:not(.section-label) {
    max-width: 350px;
    margin: 19px 0 23px;
    font-size: 13px;
  }

  .catering-packages,
  .catering-events {
    padding: 55px 14px 65px;
  }

  .catering-section-heading {
    display: block;
    margin-bottom: 27px;
  }

  .catering-section-heading h2,
  .catering-enquiry-intro h2 {
    font-size: 49px;
  }

  .catering-section-heading > p {
    margin-top: 15px;
    font-size: 13px;
  }

  .catering-package-grid {
    gap: 13px;
  }

  .catering-package {
    padding: 24px 20px 25px;
  }

  .catering-package-top {
    margin-bottom: 22px;
  }

  .catering-package h3 {
    font-size: 39px;
  }

  .catering-event-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catering-event-grid figure {
    height: 285px;
  }

  .catering-enquiry {
    gap: 30px;
    padding: 57px 14px 68px;
  }

  .catering-enquiry-intro {
    padding-inline: 6px;
  }

  .catering-form {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px 18px 24px;
  }

  .form-field-wide,
  .form-success {
    grid-column: auto;
  }

  .catering-form .btn {
    width: 100%;
  }
}

/* Contact */
.contact-heading {
  padding: 70px max(18px, calc((100vw - 1180px) / 2)) 72px;
  color: #fff;
  background: var(--dark-teal);
}

.contact-heading .section-label {
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 24px;
}

.contact-heading h1 {
  margin: 0;
  color: var(--red);
  font-family: var(--condensed);
  font-size: clamp(72px, 9vw, 122px);
  font-weight: 700;
  line-height: .78;
  text-transform: uppercase;
}

.contact-heading > p:last-child {
  max-width: 650px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
  line-height: 1.55;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1180px, calc(100% - 36px));
  margin: -1px auto 0;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 49, 56, .13);
}

.contact-option {
  min-width: 0;
  min-height: 190px;
  margin: 0;
  padding: 30px 31px 28px;
  border-right: 1px solid #ddd;
  transition: color .2s ease, background .2s ease;
}

.contact-option:last-child {
  border-right: 0;
}

.contact-option span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-option strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(28px, 2.4vw, 38px);
  line-height: .92;
  text-transform: uppercase;
}

.contact-option p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-option:hover {
  background: var(--red);
}

.contact-option:hover span,
.contact-option:hover strong,
.contact-option:hover p {
  color: #fff;
}

.contact-enquiry {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(45px, 7vw, 100px);
  padding: 88px max(18px, calc((100vw - 1180px) / 2)) 98px;
  background: var(--soft);
}

.contact-enquiry-intro {
  align-self: start;
}

.contact-enquiry-intro .section-label,
.contact-social .section-label {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 22px;
}

.contact-enquiry-intro h2,
.contact-social h2 {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(52px, 5vw, 72px);
  font-weight: 700;
  line-height: .84;
  text-transform: uppercase;
}

.contact-enquiry-intro > p:not(.section-label) {
  max-width: 380px;
  margin: 22px 0 27px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-route {
  display: grid;
  gap: 4px;
  padding-top: 20px;
  border-top: 1px solid #ddd;
}

.contact-route span {
  color: var(--red);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-route a {
  width: fit-content;
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-route a:hover {
  color: var(--red);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
  min-width: 0;
  padding: 33px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 49, 56, .1);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid #d5d5d5;
  color: var(--dark-teal);
  background: var(--soft);
  font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: -2px;
}

.contact-form .btn {
  width: fit-content;
  margin: 3px 0 0;
  cursor: pointer;
}

.contact-social {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  padding: 59px max(18px, calc((100vw - 1180px) / 2)) 63px;
  background: var(--teal);
}

.contact-social .section-label {
  color: #fff;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.contact-social-links a {
  min-width: 130px;
  margin: 0;
  padding: 13px 15px;
  color: #fff;
  background: var(--dark-teal);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-social-links a:hover {
  background: var(--red);
}

@media (max-width: 900px) {
  .contact-options {
    grid-template-columns: 1fr;
  }

  .contact-option {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .contact-option:last-child {
    border-bottom: 0;
  }

  .contact-enquiry {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .contact-heading {
    padding: 52px 20px 54px;
  }

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

  .contact-heading h1 {
    font-size: 70px;
  }

  .contact-heading > p:last-child {
    max-width: 350px;
    margin-top: 20px;
    font-size: 13px;
  }

  .contact-options {
    width: 100%;
  }

  .contact-option {
    padding: 23px 20px 24px;
  }

  .contact-option span {
    margin-bottom: 11px;
  }

  .contact-option strong {
    font-size: 30px;
  }

  .contact-enquiry {
    gap: 29px;
    padding: 57px 14px 67px;
  }

  .contact-enquiry-intro {
    padding-inline: 6px;
  }

  .contact-enquiry-intro h2,
  .contact-social h2 {
    font-size: 49px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 22px 18px 24px;
  }

  .contact-form .form-field-wide,
  .contact-form .form-success {
    grid-column: auto;
  }

  .contact-form .btn {
    width: 100%;
  }

  .contact-social {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
    padding: 47px 20px 50px;
  }

  .contact-social-links {
    justify-content: flex-start;
    width: 100%;
  }

  .contact-social-links a {
    flex: 1 1 100%;
  }
}

/* Simplified contact page */
.contact-page {
  padding: 70px clamp(18px, 5vw, 76px) 96px;
  background: var(--soft);
}

.contact-page-heading {
  width: min(1180px, 100%);
  margin: 0 auto 38px;
  padding-bottom: 32px;
  border-bottom: 6px solid var(--red);
}

.contact-page-heading .section-label {
  margin-bottom: 9px;
  color: var(--red);
  font-size: 22px;
}

.contact-page-heading h1 {
  margin: 0;
  color: var(--dark-teal);
  font-family: var(--condensed);
  font-size: clamp(42px, 4.3vw, 60px);
  font-weight: 700;
  line-height: .88;
  text-transform: uppercase;
}

.contact-page-heading > p:last-child {
  max-width: none;
  margin: 19px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  width: min(1180px, 100%);
  margin: 0 auto;
  background: #fff;
  box-shadow: 0 18px 45px rgba(7, 49, 56, .1);
}

.contact-details-panel {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 38px 36px 36px;
  color: #fff;
  background: var(--dark-teal);
  border-top: 8px solid var(--teal);
}

.contact-details-label {
  margin: 0 0 8px;
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-details-panel h2 {
  margin: 0 0 42px;
  color: #fff;
  font-family: var(--condensed);
  font-size: 55px;
  font-weight: 700;
  line-height: .84;
  text-transform: uppercase;
}

.contact-detail {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.contact-detail span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal);
  font-family: var(--condensed);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-detail a {
  width: fit-content;
  max-width: 100%;
  margin: 0;
  color: #fff;
  font-family: var(--condensed);
  font-size: 24px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-detail a:hover {
  color: var(--teal);
}

.contact-help-links {
  display: grid;
  gap: 14px;
  margin-top: auto;
  padding-top: 40px;
}

.contact-help-links a {
  display: grid;
  gap: 3px;
  margin: 0;
  padding: 14px 15px;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-help-links span {
  color: var(--teal);
  font-size: 13px;
}

.contact-help-links a:hover {
  background: var(--red);
}

.contact-help-links a:hover span {
  color: #fff;
}

.contact-page-layout .contact-form {
  align-content: start;
  padding: 39px 38px 42px;
  box-shadow: none;
}

@media (max-width: 850px) {
  .contact-page-layout {
    grid-template-columns: 1fr;
  }

  .contact-help-links {
    margin-top: 25px;
    padding-top: 15px;
  }
}

@media (max-width: 680px) {
  .contact-page {
    padding: 49px 14px 65px;
  }

  .contact-page-heading {
    margin-bottom: 25px;
    padding: 0 6px 24px;
    border-bottom-width: 5px;
  }

  .contact-page-heading .section-label {
    font-size: 19px;
  }

  .contact-page-heading h1 {
    font-size: clamp(22px, 7.2vw, 30px);
    line-height: .9;
  }

  .contact-page-heading > p:last-child {
    max-width: none;
    margin-top: 15px;
    font-size: 13px;
  }

  .contact-details-panel {
    padding: 30px 20px 28px;
    border-top-width: 6px;
  }

  .contact-details-panel h2 {
    margin-bottom: 27px;
    font-size: 48px;
  }

  .contact-detail a {
    font-size: 22px;
  }

  .contact-page-layout .contact-form {
    padding: 24px 18px 27px;
  }
}
