/* Base */
:root {
  --bg: #050505;
  --surface: rgba(14, 14, 14, 0.88);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --accent: #b45309;
  --accent-dark: #f59e0b;
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(180, 83, 9, 0.06), transparent 26%),
    linear-gradient(180deg, #050505 0%, #040404 45%, #030303 100%);
}

html,
body {
  overflow-x: hidden;
}

/* Layout */
.page-shell {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.navbar-wrap {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 6px 39px;
  background: rgba(10, 10, 10, 0.82);
  backdrop-filter: blur(10px);
}

.navbar {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 25px;
  flex-wrap: wrap;
  min-height: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 17px;
}

.hero {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  flex: 1 1 auto;
  display: grid;
  align-items: flex-start;
  gap: 28px;
  padding: 8px 28px 32px;
}

.hero-left {
  width: 100%;
  display: grid;
  grid-template-columns: 47px minmax(0, 1fr);
  grid-template-rows: 40px auto;
  align-content: start;
}

.hero-left-content {
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 10px;
}

.hero-points {
  width: 100%;
  max-width: none;
  padding-top: 10px;
}

.hero-points ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 24px 34px;
}

/* Typography */
.brand-text .brand-name {
  font-family: "Pacifico", cursive;
  font-size: 1.96rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
}

.brand-text p {
  font-family: "Roboto", sans-serif;
  line-height: 1.3;
}

.brand-tagline {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #ffffff;
  font-size: 1.2rem;
  margin-top: 4px;
  font-weight: 500;
}

.brand-address {
  color: #ffffff;
  font-size: 0.83rem;
  margin-top: 6px;
}

.hero-left h1 {
  max-width: none;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 2.7vw, 2.05rem);
  line-height: 1.42;
}

.hero-support {
  max-width: 720px;
  font-family: "Montserrat", sans-serif;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
  line-height: 1.55;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  font-size: 1.37rem;
  line-height: 1.45;
}

.hero-caption strong {
  font-size: 1.2rem;
  color: #ffffff;
}

.hero-caption span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.5;
}

/* Components */
.logo {
  width: 133px;
  height: 133px;
  overflow: hidden;
  border-radius: 20px;
  background: #050505;
  box-shadow: 0 8px 17px rgba(124, 45, 18, 0.22);
  flex: 0 0 auto;
}

.logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-wrap: wrap;
}

.nav-button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 21px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
  font-size: 0.92rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-button:hover,
.nav-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(245, 158, 11, 0.45);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.nav-button.is-active {
  color: #111111;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  border-color: rgba(251, 191, 36, 0.95);
  box-shadow: 0 10px 24px rgba(245, 158, 11, 0.28);
}

.language-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  padding-inline: 17px;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.28);
}

/* Menu Page */
.menu-main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  flex: 1 1 auto;
  padding: 24px 28px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-padding-top: 88px;
}

.home-menu {
  max-width: none;
  padding: 0 0 16px;
  overflow: visible;
}

.menu-section,
.contact-strip-card,
.contact-strip-copy {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(10, 10, 10, 0.88);
  box-shadow: var(--shadow);
}

.menu-section-kicker {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fbbf24;
}

.contact-strip-copy h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 4.3rem);
  line-height: 1.02;
  margin-top: 16px;
  max-width: 11ch;
}

.menu-section-head p,
.contact-strip-copy p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.06rem;
  line-height: 1.7;
}

.menu-section-note {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.1;
}

.menu-sections {
  display: grid;
  gap: 24px;
}

.menu-section {
  border-radius: 30px;
  padding: 30px 30px 26px;
}

.menu-section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.menu-section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.06;
}

.menu-items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
}

#wings-house-sauces .menu-items {
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
}

#burgers-sandwiches .menu-items {
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
}

#american-comfort-food .menu-items {
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
}

#desserts-shakes .menu-items {
  grid-template-rows: repeat(3, auto);
  grid-auto-flow: column;
}

#sides-snacks .menu-items {
  grid-template-rows: repeat(6, auto);
  grid-auto-flow: column;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: flex-start;
  gap: 10px 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.menu-item-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.menu-item-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
}

.menu-item-subtitle {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.23rem;
  line-height: 1.45;
}

.menu-item-note {
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.43rem;
  text-align: right;
  white-space: nowrap;
}

.contact-section .menu-section-head h2,
.contact-section .menu-section-head p {
  overflow-wrap: anywhere;
}

.contact-section .menu-section-head h2 {
  line-height: 1.14;
}

.contact-section .menu-items {
  grid-template-columns: 1fr;
}

.contact-section .menu-item {
  grid-template-columns: minmax(170px, 0.45fr) minmax(0, 1fr);
}

.contact-section .menu-item-note {
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
}

.contact-map {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 50%;
  min-height: 90px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.contact-map-label {
  position: absolute;
  left: 50%;
  top: 20%;
  z-index: 1;
  transform: translateX(-50%);
  padding: 6px 10px;
  border-radius: 999px;
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  background: rgba(251, 191, 36, 0.95);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

.contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 22px;
  margin-top: 28px;
  scroll-margin-top: 112px;
}

.contact-strip-copy {
  border-radius: 30px;
  padding: 30px 32px;
}

.contact-strip-copy h2 {
  max-width: none;
}

.contact-strip-card {
  border-radius: 30px;
  padding: 28px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.contact-strip-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15rem;
}

.contact-strip-card span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.contact-link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

@media (max-width: 1040px) {
  .menu-hero,
  .contact-strip {
    grid-template-columns: 1fr;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }
}

/* Responsive */
@media (max-width: 720px) {
  .page-shell {
    min-height: 100vh;
  }

  .navbar-wrap {
    padding: 6px 13px;
  }

  .navbar {
    align-items: flex-start;
    min-height: auto;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .nav-button {
    flex: 1 1 0;
    text-align: center;
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.74rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .language-button {
    flex: 0 0 auto;
    min-width: 45px;
    padding-inline: 13px;
  }

  .logo {
    width: 90px;
    height: 90px;
    border-radius: 15px;
  }

  .brand-text .brand-name {
    font-size: 1.26rem;
  }

  .brand-tagline {
    font-size: 0.87rem;
  }

  .brand-address {
    font-size: 0.67rem;
  }

  .hero {
    padding: 20px 14px 22px;
    gap: 18px;
  }

  .hero-left h1 {
    max-width: none;
    font-size: clamp(1.1rem, 5vw, 1.72rem);
    line-height: 1.34;
  }

  .hero-left {
    grid-template-columns: 12px minmax(0, 1fr);
    grid-template-rows: 34px auto;
  }

  .hero-points {
    padding-top: 6px;
  }

  .hero-points ul {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-points li {
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .menu-main {
    width: 100%;
    padding: 14px 12px 26px;
  }

  .home-menu {
    padding: 0 0 4px;
  }

  .menu-sections {
    gap: 18px;
  }

  .menu-section,
  .contact-strip-copy,
  .contact-strip-card {
    border-radius: 24px;
  }

  .menu-section,
  .contact-strip-copy,
  .contact-strip-card {
    padding: 20px 16px;
  }

  .menu-section-head {
    gap: 10px;
    margin-bottom: 16px;
  }

  .menu-section-head h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
    line-height: 1.14;
  }

  .menu-section-note {
    font-size: clamp(1.15rem, 5.6vw, 1.55rem);
    line-height: 1.18;
  }

  .menu-items {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  #wings-house-sauces .menu-items,
  #burgers-sandwiches .menu-items,
  #american-comfort-food .menu-items,
  #desserts-shakes .menu-items,
  #sides-snacks .menu-items {
    grid-template-rows: none;
    grid-auto-flow: row;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 14px;
    border-radius: 18px;
  }

  .menu-item-copy {
    gap: 5px;
  }

  .menu-item-name {
    font-size: 1.15rem;
    line-height: 1.22;
  }

  .menu-item-subtitle {
    font-size: 0.98rem;
    line-height: 1.42;
  }

  .menu-item-note {
    font-size: 1.1rem;
    line-height: 1.22;
  }

  .contact-strip-copy h2 {
    max-width: none;
    font-size: clamp(1.8rem, 9vw, 2.8rem);
  }

  .contact-strip {
    scroll-margin-top: 132px;
  }

  .contact-section .menu-item {
    grid-template-columns: 1fr;
  }

  .contact-section .menu-item-note {
    font-size: 1.12rem;
  }

  .contact-map {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 70px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .navbar-wrap {
    padding: 6px 10px;
  }

  .navbar {
    gap: 10px;
  }

  .brand {
    width: 100%;
    gap: 11px;
    align-items: center;
  }

  .logo {
    width: 68px;
    height: 68px;
    border-radius: 12px;
  }

  .brand-text {
    min-width: 0;
  }

  .brand-text .brand-name {
    font-size: 1.12rem;
    line-height: 1.12;
  }

  .brand-tagline {
    font-size: 0.78rem;
    margin-top: 3px;
  }

  .brand-address {
    font-size: 0.62rem;
    margin-top: 4px;
  }

  .nav-links {
    gap: 6px;
  }

  .nav-button {
    min-height: 42px;
    padding: 9px 6px;
    font-size: 0.7rem;
  }

  .language-button {
    min-width: 40px;
    padding-inline: 9px;
  }

  .hero {
    padding: 16px 10px 20px;
  }

  .hero-left {
    grid-template-columns: 8px minmax(0, 1fr);
    grid-template-rows: 24px auto;
  }

  .hero-left-content {
    gap: 8px;
  }

  .hero-left h1 {
    font-size: clamp(1rem, 6vw, 1.45rem);
    line-height: 1.3;
  }

  .hero-points {
    padding-top: 4px;
  }

  .hero-points ul {
    gap: 10px;
  }

  .hero-points li {
    padding-left: 18px;
    font-size: 1rem;
    line-height: 1.32;
  }

  .menu-main {
    padding: 12px 10px 24px;
  }

  .menu-sections {
    gap: 14px;
  }

  .menu-section,
  .contact-strip-copy,
  .contact-strip-card {
    border-radius: 18px;
    padding: 16px 12px;
  }

  .menu-section-head {
    gap: 8px;
    margin-bottom: 14px;
  }

  .menu-section-head h2 {
    font-size: clamp(1.25rem, 7vw, 1.65rem);
    line-height: 1.16;
  }

  .menu-section-note {
    font-size: 1rem;
    line-height: 1.28;
  }

  .menu-items {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
  }

  .menu-item {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 12px;
    border-radius: 16px;
  }

  .menu-item-name {
    font-size: 1rem;
    line-height: 1.22;
  }

  .menu-item-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .menu-item-note {
    font-size: 1rem;
    line-height: 1.22;
  }

  .contact-section .menu-item {
    grid-template-columns: 1fr;
  }

  .contact-section .menu-item-note {
    font-size: 1rem;
  }

  .contact-map {
    width: 100%;
    max-width: none;
    min-height: 120px;
    aspect-ratio: 16 / 9;
  }

  .contact-map-label {
    max-width: calc(100% - 20px);
    white-space: normal;
    font-size: 0.72rem;
  }
}

/* Promotional splash screen */
.promo-splash {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(4px);
  z-index: 1000;
}

.promo-splash[hidden] {
  display: none;
}

.promo-splash-panel {
  width: min(560px, 100%);
  border-radius: 28px;
  background: rgba(12, 12, 12, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  padding: 36px 32px;
  position: relative;
}

.promo-splash-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}

.promo-splash-close:hover,
.promo-splash-close:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  transform: scale(1.05);
  outline: none;
}

.promo-splash-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.promo-splash-description {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.promo-splash-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.promo-splash-cta:hover,
.promo-splash-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(245, 158, 11, 0.22);
  outline: none;
}

body.promo-splash-open {
  overflow: hidden;
}

@media (max-width: 520px) {
  .promo-splash {
    padding: 16px;
  }

  .promo-splash-panel {
    padding: 24px 20px;
  }

  .promo-splash-title {
    font-size: 2rem;
    margin-bottom: 16px;
  }

  .promo-splash-description {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  .promo-splash-close {
    top: 14px;
    right: 14px;
    width: 42px;
    height: 42px;
  }
}

/* Action page styles */
.action-page-shell {
  min-height: 100vh;
}

.action-main {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 28px 40px;
  display: grid;
  gap: 32px;
}

.action-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  align-items: center;
  gap: 28px;
}

.action-hero-copy .subheadline {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 14px;
}

.action-hero-copy h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  line-height: 1.02;
  margin-bottom: 18px;
}

.action-intro {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.action-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.action-cta,
.action-cta-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 14px 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: #ffffff;
  text-decoration: none;
  background: rgba(255,255,255,0.05);
}

.action-cta:hover,
.action-cta:focus-visible,
.action-cta-large:hover,
.action-cta-large:focus-visible,
.action-secondary:hover,
.action-secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(245, 158, 11, 0.22);
  outline: none;
}

.action-hero-image {
  width: 100%;
}

.action-hero-image-placeholder {
  min-height: 320px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  text-align: center;
  padding: 24px;
}

.action-details,
.action-cta-block,
.action-contact {
  display: grid;
  gap: 24px;
}

.action-detail-copy h2,
.action-cta-panel h2,
.action-contact-copy h3 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 14px;
}

.detail-label,
.contact-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fbbf24;
  margin-bottom: 10px;
}

.action-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.action-promo-card,
.action-cta-panel,
.action-contact-card {
  padding: 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.action-promo-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.action-promo-card p,
.action-cta-panel p,
.action-contact-copy p,
.action-contact-card ul {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.75;
}

.action-contact {
  grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
}

.action-contact-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.action-footer {
  padding: 22px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
  display: grid;
  gap: 8px;
}

@media (max-width: 1040px) {
  .action-hero {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .action-main {
    padding: 20px 16px 30px;
  }

  .action-hero-copy h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .action-hero-image-placeholder {
    min-height: 260px;
  }

  .action-hero-image,
  .action-hero-copy {
    width: 100%;
  }

  .action-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .action-cta,
  .action-secondary,
  .action-cta-large {
    width: 100%;
  }
}
