:root {
  --red: #c91521;
  --yellow: #ffd340;
  --gold: #b78a35;
  --soft-gold: #f7efd9;
  --black: #161616;
  --ink: #242424;
  --muted: #686868;
  --line: #e7e1d2;
  --paper: #fffdf7;
  --white: #ffffff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.48) 42%, rgba(0, 0, 0, 0.82)),
    url("./brokaw-dennys-storefront.jpg") center / cover no-repeat;
  color: var(--white);
  padding: 34px 18px 28px;
  text-align: center;
  border-bottom: 8px solid var(--yellow);
}

.hero__logo {
  display: block;
  width: min(260px, 76vw);
  height: auto;
  margin: 0 auto 18px;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.5));
}

.hero__brand {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 211, 64, 0.55);
  border-radius: 6px;
  background: rgba(22, 22, 22, 0.78);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin: 0 auto 12px;
  font-size: 2.18rem;
  line-height: 1.02;
  font-weight: 900;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.75);
}

.hero p {
  display: inline-block;
  max-width: 580px;
  margin: 0 auto;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.75);
}

main {
  width: min(100%, 980px);
  margin: 0 auto;
}

.section { padding: 26px 16px; }
.section--intro { padding-top: 30px; }
.section__heading { margin-bottom: 16px; }

.eyebrow {
  margin-bottom: 4px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1.08;
  font-weight: 900;
}

.promo-grid {
  display: grid;
  gap: 16px;
}

.promo-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(22, 22, 22, 0.08);
}

.promo-card__image {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  background: var(--black);
  cursor: zoom-in;
}

.promo-card__image img {
  display: block;
  width: 100%;
  height: 132px;
  object-fit: cover;
}

.promo-card__image--free img { object-position: center 46%; }
.promo-card__image--biggest img { object-position: center 34%; }
.promo-card__image--date img { object-position: center 34%; }

.promo-card__image::after {
  content: "Tap to view flyer";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  background: rgba(22, 22, 22, 0.86);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.promo-card__body { padding: 18px; }

.promo-card__time {
  margin-bottom: 8px;
  color: var(--red);
  font-weight: 800;
}

h3 {
  margin-bottom: 8px;
  color: var(--black);
  font-size: 1.35rem;
  line-height: 1.12;
  font-weight: 900;
}

.fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.actions {
  display: grid;
  gap: 10px;
  padding: 6px 16px 28px;
}

.button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  border-radius: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.button--primary {
  background: var(--gold);
  color: var(--white);
}

.calendar-image-wrap {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(22, 22, 22, 0.08);
}

.calendar-image {
  display: block;
  width: 100%;
  height: auto;
}

.calendar-hotspot {
  position: absolute;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  cursor: zoom-in;
}

.calendar-hotspot:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: -3px;
}

.flyer-viewer {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 56px 12px 16px;
  border: 0;
  background: rgba(0, 0, 0, 0.92);
}

.flyer-viewer::backdrop { background: rgba(0, 0, 0, 0.82); }

.flyer-viewer__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.flyer-viewer__close {
  position: fixed;
  top: 12px;
  right: 12px;
  min-height: 40px;
  padding: 0 16px;
  border: 2px solid var(--white);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 800;
}

footer {
  padding: 22px 16px 28px;
  background: var(--black);
  color: var(--white);
  text-align: center;
}

footer p {
  margin: 0;
  font-weight: 800;
}

@media (min-width: 720px) {
  .hero {
    min-height: 500px;
    padding-top: 54px;
  }
  .promo-card__image img { height: 150px; }
  h1 { font-size: 3.25rem; }
  .promo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .actions { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}


.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.97);
  color: var(--black);
  border-bottom: 1px solid rgba(183, 138, 53, 0.28);
  box-shadow: 0 6px 18px rgba(22, 22, 22, 0.06);
}

.site-nav a {
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
}

.site-nav__brand {
  color: var(--black) !important;
  font-size: 1rem;
  white-space: nowrap;
}

.site-nav__links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
}

.site-nav__links a {
  opacity: 0.86;
}

.agency-hero {
  display: grid;
  min-height: 560px;
  align-items: end;
  padding: 76px 16px 42px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82) 46%, rgba(22, 22, 22, 0.34)),
    url("./brokaw-dennys-storefront.jpg") center / cover no-repeat;
  color: var(--black);
  border-bottom: 8px solid var(--gold);
}

.agency-hero__content {
  width: min(100%, 980px);
  margin: 0 auto;
}

.agency-hero h1 {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--black);
  font-size: 2.65rem;
  line-height: 1.02;
  text-shadow: none;
}

.agency-hero p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 22px;
  color: #343434;
  font-size: 1.08rem;
  font-weight: 700;
}

.hero-actions {
  display: grid;
  gap: 10px;
}

.button--small {
  display: inline-flex;
  min-height: 38px;
  width: auto;
  padding: 0 12px;
  font-size: 0.88rem;
}

.button--light {
  background: rgba(255, 255, 255, 0.92);
}

.service-grid {
  display: grid;
  gap: 14px;
}

.info-card,
.case-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(22, 22, 22, 0.08);
}

.info-card {
  padding: 18px;
}

.info-card p,
.case-card p,
.split-layout p,
.section--contact p {
  color: var(--muted);
}

.section--band {
  background: var(--black);
  color: var(--white);
}

.section--band h2,
.section--band p {
  color: var(--white);
}

.split-layout {
  display: grid;
  gap: 18px;
}

.why-list {
  display: grid;
  gap: 12px;
}

.why-list div {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-left: 6px solid var(--red);
  background: var(--white);
  border-radius: 8px;
}

.why-list strong {
  color: var(--black);
  font-size: 1.08rem;
}

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

.case-card {
  display: grid;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
}

.case-card img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.case-card div {
  padding: 18px;
}

.case-card span {
  display: inline-block;
  margin-top: 8px;
  color: var(--red);
  font-weight: 900;
}

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

.page-actions {
  padding: 18px 16px 0;
}

@media (min-width: 720px) {
  .site-nav {
    padding: 10px 28px;
  }

  .site-nav__brand {
    font-size: 1.15rem;
  }

  .site-nav__brand--logo img {
    width: 164px;
  }

  .site-nav__links {
    gap: 18px;
    font-size: 0.95rem;
  }

  .agency-hero h1 {
    font-size: 4.6rem;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-actions .button {
    min-width: 210px;
  }

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

  .split-layout {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
  }

  .why-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-card {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
  }

  .case-card img {
    height: 100%;
    min-height: 280px;
  }
}


.site-nav__brand--logo img {
  display: block;
  width: 132px;
  height: auto;
}

.agency-hero__logo {
  display: block;
  width: min(300px, 76vw);
  height: auto;
  margin: 0 0 22px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}


.partner-grid {
  display: grid;
  gap: 14px;
}

.partner-card {
  display: grid;
  min-height: 210px;
  align-items: end;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--white), var(--soft-gold));
  box-shadow: 0 8px 20px rgba(22, 22, 22, 0.08);
}

.partner-card p {
  color: var(--muted);
}

@media (min-width: 720px) {
  .partner-grid {
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    align-items: stretch;
  }
}


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


.case-study-page .hero {
  min-height: 330px;
  align-content: end;
  background-position: center 42%;
  padding-top: 26px;
  padding-bottom: 24px;
}

.case-study-page .hero h1 {
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.92),
    0 6px 14px rgba(0, 0, 0, 0.82),
    0 14px 30px rgba(0, 0, 0, 0.62);
}

.case-study-page .hero__logo {
  width: min(230px, 68vw);
  margin-bottom: 14px;
}

.case-study-page .hero__contact {
  display: inline-grid;
  gap: 7px;
  max-width: min(92vw, 620px);
  margin: 0 auto;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.66);
  color: var(--white);
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85);
}

.hero__map-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 10px;
}

.hero__contact a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.hero__phone {
  justify-self: center;
}

.actions--social {
  grid-template-columns: 1fr auto auto;
  align-items: center;
}

.social-button {
  width: 54px;
  min-height: 54px;
  padding: 0;
  background: var(--black);
  color: var(--white);
}

.social-button svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-button[href*="facebook"] svg {
  fill: currentColor;
  stroke: none;
}

@media (min-width: 720px) {
  .case-study-page .hero {
    min-height: 390px;
  }
}


.case-study-page .hero {
  min-height: 300px;
  padding: 28px 18px 26px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42) 44%, rgba(0, 0, 0, 0.86)),
    url("./brokaw-dennys-storefront.jpg") center 43% / cover no-repeat;
}

.case-study-page .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 7px;
  background: var(--yellow);
}

.case-study-page .hero__logo {
  width: min(210px, 62vw);
  margin-bottom: 12px;
}

.case-study-page .hero h1 {
  max-width: 680px;
  font-size: clamp(2rem, 9vw, 3.35rem);
  letter-spacing: 0;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.94),
    0 7px 16px rgba(0, 0, 0, 0.78),
    0 18px 36px rgba(0, 0, 0, 0.62);
}

.case-study-page .hero__contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  max-width: min(92vw, 680px);
  margin: 0 auto;
  padding: 0;
  background: transparent;
  text-shadow: none;
}

.hero__address,
.hero__phone {
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.68);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hero__address {
  display: grid;
  gap: 1px;
  padding: 8px 12px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.hero__address span {
  font-size: 0.9rem;
}

.hero__address strong {
  color: var(--yellow);
  font-size: 0.82rem;
}

.hero__phone {
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  font-weight: 900;
  text-decoration: none;
}

.directions-dialog {
  width: min(92vw, 380px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
}

.directions-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.directions-dialog__panel {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: var(--white);
  border-radius: 8px;
}

.directions-dialog__panel h2 {
  margin: 0;
}

.directions-dialog__panel p {
  margin: 0 0 4px;
  color: var(--muted);
}

.actions--social {
  padding-top: 22px;
  padding-bottom: 8px;
}


/* Final Denny's case-study header polish */
.site-nav__brand--logo img {
  width: 104px;
}

.storefront-strip {
  height: clamp(120px, 28vw, 230px);
  background: url("./brokaw-dennys-storefront.jpg") center 42% / cover no-repeat;
  border-bottom: 6px solid var(--yellow);
}

.case-study-page .storefront-strip {
  background-image: url("../../brokaw-dennys-storefront.jpg");
}

.case-study-page .hero {
  min-height: auto;
  padding: 26px 18px 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 64, 0.9), rgba(255, 211, 64, 0.28) 34%, transparent 54%),
    linear-gradient(135deg, #c91521 0%, #a90f18 52%, #161616 100%);
  border-bottom: 8px solid var(--yellow);
}

.case-study-page .hero::after {
  display: none;
}

.case-study-page .hero__logo {
  width: min(220px, 64vw);
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.case-study-page .hero h1 {
  color: var(--white);
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.92),
    0 8px 18px rgba(0, 0, 0, 0.75),
    0 18px 36px rgba(0, 0, 0, 0.55);
}

@media (min-width: 720px) {
  .site-nav__brand--logo img {
    width: 128px;
  }
}


/* Final Denny's header and social-section refinement */
.case-study-page .storefront-strip {
  display: none;
}

.case-study-page .hero {
  min-height: auto;
  padding: 28px 18px 30px;
  background:
    linear-gradient(180deg, rgba(255, 217, 64, 0.16), rgba(255, 217, 64, 0) 42%),
    linear-gradient(135deg, #d71920 0%, #c91521 58%, #101010 100%);
  border-bottom: 9px solid var(--yellow);
}

.case-study-page .hero__logo {
  width: min(218px, 62vw);
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
}

.case-study-page .hero h1 {
  display: grid;
  gap: 3px;
  max-width: 720px;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.82),
    0 9px 22px rgba(0, 0, 0, 0.62);
}

.case-study-page .hero h1 strong {
  display: block;
  font-size: clamp(2.35rem, 10vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
}

.case-study-page .hero h1 span {
  display: block;
  color: var(--yellow);
  font-size: clamp(1.18rem, 5vw, 1.75rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.15;
}

.case-study-page .actions--social {
  position: relative;
  overflow: hidden;
  margin: 18px 16px 0;
  padding: 22px 14px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.5)),
    url("../../brokaw-dennys-storefront.jpg") center 45% / cover no-repeat;
  box-shadow: 0 10px 26px rgba(22, 22, 22, 0.16);
}

.case-study-page .actions--social .button:not(.social-button) {
  background: rgba(255, 211, 64, 0.94);
  border-color: var(--yellow);
  color: var(--black);
}

.case-study-page .actions--social .social-button {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(0, 0, 0, 0.78);
}


/* Denny's sign image and centered header contact refinement */
.case-study-page .hero__logo {
  width: min(150px, 42vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  margin-bottom: 14px;
  padding: 0;
  border: 4px solid rgba(255, 211, 64, 0.95);
  border-radius: 999px;
  background: transparent;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.38);
}

.case-study-page .hero h1 {
  font-family: Impact, "Arial Narrow", "Helvetica Neue Condensed", "Franklin Gothic Condensed", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow:
    3px 3px 0 rgba(0, 0, 0, 0.92),
    0 10px 24px rgba(0, 0, 0, 0.72);
}

.case-study-page .hero h1 strong {
  letter-spacing: 0.02em;
}

.case-study-page .hero h1 span {
  text-transform: none;
  letter-spacing: 0.03em;
  color: var(--yellow);
  font-family: Impact, "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.88),
    0 8px 18px rgba(0, 0, 0, 0.62);
}

.case-study-page .hero__contact {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin-top: 8px;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.case-study-page .hero__address,
.case-study-page .hero__phone {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  box-shadow: none;
  text-align: center;
  text-shadow:
    2px 2px 0 rgba(0, 0, 0, 0.82),
    0 7px 16px rgba(0, 0, 0, 0.65);
}

.case-study-page .hero__address strong,
.case-study-page .hero__phone {
  color: var(--white);
}

.case-study-page .hero__address span {
  font-size: 0.96rem;
}

.case-study-page .hero__address strong {
  font-size: 0.9rem;
}

.case-study-page .hero__phone {
  font-size: 1rem;
}


/* Bebas Neue applies to Denny's header text, not the logo image */
.case-study-page .hero h1,
.case-study-page .hero h1 span,
.case-study-page .hero__address,
.case-study-page .hero__phone {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  letter-spacing: 0.03em;
}

.case-study-page .hero h1 strong {
  font-weight: 400;
}

.case-study-page .hero h1 span {
  font-weight: 400;
  font-style: italic;
  text-transform: none;
}

.case-study-page .hero__address,
.case-study-page .hero__phone {
  font-size: 1.18rem;
}


/* Premium agency navigation final layer */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 10px clamp(16px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(183, 138, 53, 0.22);
  box-shadow: 0 10px 30px rgba(22, 22, 22, 0.08);
  backdrop-filter: blur(12px);
}

.site-nav__brand--logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-nav__brand--logo img {
  display: block;
  width: clamp(150px, 18vw, 210px);
  height: auto;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2vw, 26px);
  font-size: 0.94rem;
}

.site-nav__links a {
  position: relative;
  color: var(--black);
  font-weight: 900;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-nav__links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav__links a:not(.nav-cta):hover,
.site-nav__links a:not(.nav-cta):focus-visible {
  color: var(--gold);
  transform: translateY(-1px);
}

.site-nav__links a:not(.nav-cta):hover::after,
.site-nav__links a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(183, 138, 53, 0.85);
  border-radius: 8px;
  background: linear-gradient(135deg, #c99a3c, #9e762b);
  color: var(--white) !important;
  box-shadow: 0 8px 18px rgba(183, 138, 53, 0.24);
  white-space: nowrap;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(183, 138, 53, 0.34);
}

.site-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(183, 138, 53, 0.34);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.site-nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  transition: transform 180ms ease, opacity 180ms ease;
}

@media (max-width: 760px) {
  .site-nav {
    min-height: 74px;
    padding: 9px 14px;
  }

  .site-nav__brand--logo img {
    width: 148px;
  }

  .site-nav__toggle {
    display: inline-flex;
  }

  .site-nav__links {
    position: absolute;
    top: calc(100% + 1px);
    left: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(183, 138, 53, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 34px rgba(22, 22, 22, 0.14);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav--open .site-nav__links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__links a {
    padding: 10px 8px;
  }

  .site-nav__links a:not(.nav-cta)::after {
    display: none;
  }

  .nav-cta {
    margin-top: 4px;
  }

  .site-nav--open .site-nav__toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-nav--open .site-nav__toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-nav--open .site-nav__toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
