:root {
  --red: #c81426;
  --red-dark: #99111e;
  --black: #0c0c0d;
  --charcoal: #181819;
  --cream: #f7f2e9;
  --white: #ffffff;
  --muted: #d9d4ce;
  --gold: #d9a441;
  --max-width: 1220px;
  --radius: 14px;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--white);
  background: var(--black);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(calc(100% - 40px), var(--max-width));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 9999;
  padding: 12px 16px;
  background: var(--white);
  color: var(--black);
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 9, 0.78);
  backdrop-filter: blur(10px);
}

.nav-wrap {
  min-height: 112px;
  display: grid;
  grid-template-columns: 240px 1fr auto;
  align-items: center;
  gap: 28px;
}

.brand-logo img {
  width: 180px;
  height: auto;
  display: block;
}

.site-nav {
  justify-self: center;
}

.site-nav ul {
  display: flex;
  gap: clamp(22px, 3vw, 48px);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  position: relative;
  display: inline-block;
  padding: 44px 0 38px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--red);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  right: 0;
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 9px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 10px 25px rgba(200, 20, 38, 0.28);
  transition: transform 180ms ease, background 180ms ease;
}

.order-button:hover,
.order-button:focus-visible {
  background: #e11d32;
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: transparent;
  color: var(--white);
  font-size: 1.4rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg,
      rgba(4, 4, 5, 0.96) 0%,
      rgba(4, 4, 5, 0.88) 27%,
      rgba(4, 4, 5, 0.48) 53%,
      rgba(4, 4, 5, 0.12) 78%,
      rgba(4, 4, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 6, 7, 0.76) 0%, rgba(6, 6, 7, 0) 38%),
    url("images/hero-seafood.webp") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 210px;
  z-index: -1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92), transparent);
}

.hero-grid {
  width: min(calc(100% - 40px), 1420px);
  margin-inline: auto;
  padding-top: 150px;
  padding-bottom: 150px;
  display: grid;
  grid-template-columns: minmax(0, 660px) minmax(260px, 1fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(4.2rem, 7vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.45);
}

.hero h1 .hero-period {
  display: inline;
  position: relative;
  left: 0.06em;
}

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


.hero-subtitle {
  max-width: 600px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid transparent;
  border-radius: 9px;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #e11d32;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(0, 0, 0, 0.18);
  color: var(--white);
  backdrop-filter: blur(6px);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

/* Build your boil card */
.boil-card {
  justify-self: end;
  width: min(100%, 360px);
  padding: 30px 28px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 18px;
  background: linear-gradient(150deg, rgba(22, 10, 8, 0.92), rgba(8, 8, 9, 0.96));
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}


.boil-card h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Arial, sans-serif;
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.boil-card h2 span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.boil-steps {
  display: grid;
  gap: 18px;
  margin: 28px 0;
}

.boil-step {
  display: flex;
  gap: 14px;
  align-items: center;
}

.boil-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #c81426;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.boil-step .icon {
  color: var(--red);
  font-size: 1.3rem;
}

.boil-step strong {
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* Information strip */
.hero-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4;
  min-height: 108px;
  display: grid;
  align-items: center;
  background: var(--charcoal);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.info-grid {
  width: min(calc(100% - 40px), 1320px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-item {
  display: block;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 70px;
  padding: 10px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.info-item:last-child {
  border-right: 0;
}


.info-item strong {
  display: block;
  margin-bottom: 3px;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.info-item span,
.info-item a {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

/* Small preview section below hero */
.preview-section {
  padding: 50px 0;
  color: var(--charcoal);
  background: var(--cream);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.preview-card {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.preview-card h2 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.preview-card p {
  margin: 0 0 20px;
  color: #615d58;
  line-height: 1.65;
}

.preview-card a {
  color: var(--red);
  font-weight: 800;
}

/* =============================
   Social Links
============================= */

.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 44px;
  height: 44px;

  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  transition:
    color 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-links a:hover,
.social-links a:focus-visible {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1050px) {
  .nav-wrap {
    grid-template-columns: 200px 1fr auto;
  }

  .brand-logo img {
    width: 185px;
  }

  .site-nav ul {
    gap: 22px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 620px) 280px;
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .site-header {
    position: fixed;
  }

  .nav-wrap {
    min-height: 82px;
    grid-template-columns: 1fr auto auto;
  }

  .brand-logo img {
    width: 170px;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    display: none;
    padding: 16px 20px 24px;
    background: rgba(8, 8, 9, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .site-nav a::after {
    bottom: 8px;
  }

  .order-button {
    min-height: 46px;
    padding: 0 16px;
    font-size: 0.8rem;
  }

  .hero {
    min-height: auto;
    background-position: 62% center;
  }

  .hero-grid {
    min-height: 950px;
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 140px;
    padding-bottom: 250px;
  }

  .boil-card {
    justify-self: start;
    width: min(100%, 420px);
  }

  .hero-info {
    min-height: auto;
  }

  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .info-item:nth-child(2) {
    border-right: 0;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 580px) {

  .container,
  .hero-grid,
  .info-grid {
    width: min(calc(100% - 28px), var(--max-width));
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-logo img {
    width: 142px;
  }

  .order-button {
    display: none;
  }

  .site-nav {
    top: 72px;
  }

  .hero {
    background:
      linear-gradient(90deg,
        rgba(4, 4, 5, .92) 0%,
        rgba(4, 4, 5, .68) 50%,
        rgba(4, 4, 5, .18) 100%),
      linear-gradient(0deg,
        #0c0c0d 0%,
        rgba(12, 12, 13, .15) 55%,
        rgba(12, 12, 13, 0) 100%),
      url("images/hero-seafood.webp") 65% top / auto 75% no-repeat;

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

  .hero-grid {
    min-height: 980px;
    padding-top: 115px;
    padding-bottom: 400px;
  }

  .hero-actions .btn {
    width: fit-content;
    min-width: 220px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.5rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

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

  .btn {
    width: 100%;
  }

  .boil-card {
    padding: 24px 22px;
    justify-self: center;
    width: min(100%, 420px);
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-item {
    border-right: 0;
    padding: 12px 8px;
  }

  .hero-info {
    padding: 12px 0;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}




/* First-timer seafood bag guide */
.first-timer-section {
  padding: 60px 0 60px;
  color: #171719;
  background: #f7f2e9;
}

.first-timer-heading {
  max-width: 760px;
  margin: 0 auto 52px;
  text-align: center;
}

.first-timer-heading .section-kicker {
  margin: 0 0 10px;
  color: #c81426;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.first-timer-heading h2 {
  margin: 24px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.first-timer-heading>p:last-child {
  margin: 22px auto 0;
  color: #625e59;
  font-size: 1.08rem;
  line-height: 1.75;
}

.first-timer-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.45fr);
  gap: 34px;
  align-items: start;
}

.first-timer-visual {
  position: sticky;
  top: 110px;
}

.first-timer-image-wrap {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border-radius: 22px;
  background: #111;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.18);
}

.first-timer-image-wrap img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: 90% center;
  transform: scale(1.15);
}

.first-timer-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0, 0, 0, 0.88), transparent 50%),
    linear-gradient(to right, rgba(0, 0, 0, 0.2), transparent 48%);
}

.image-badge {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(8, 8, 9, 0.72);
  color: #fff;
  backdrop-filter: blur(10px);
}

.image-badge span {
  display: block;
  margin-bottom: 5px;
  color: #d9a441;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-badge strong {
  font-size: 1.12rem;
}

.first-timer-tips {
  margin-top: 20px;
  padding: 26px;
  border-radius: 18px;
  background: #181819;
  color: #fff;
}

.first-timer-tips h3 {
  margin: 0 0 16px;
  font-size: 1.05rem;
  text-transform: uppercase;
}

.first-timer-tips ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.first-timer-tips li {
  position: relative;
  padding-left: 22px;
  color: #d9d4ce;
  line-height: 1.55;
}

.first-timer-tips li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #c81426;
  font-weight: 900;
}

.first-timer-builder {
  display: grid;
  gap: 22px;
}

.builder-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #ded8cf;
  border-radius: 16px;
  background: #fff;
}

.progress-step {
  min-height: 76px;
  padding: 12px 10px;
  border: 0;
  border-right: 1px solid #e5dfd7;
  background: transparent;
  color: #6c6761;
  font-weight: 800;
  cursor: pointer;
}

.progress-step:last-child {
  border-right: 0;
}

.progress-step span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: 0 auto 6px;
  border-radius: 50%;
  background: #ece7df;
  color: #5e5953;
  font-size: 0.8rem;
}

.progress-step.is-active {
  background: #181819;
  color: #fff;
}

.progress-step.is-active span,
.progress-step.is-complete span {
  background: #c81426;
  color: #fff;
}

.builder-form,
.bag-summary {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid #ded8cf;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

#bag-summary-title {
  text-transform: uppercase;
}

.builder-panel {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.builder-panel legend {
  padding: 0;
  color: #171719;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
}

.step-label {
  display: block;
  margin-bottom: 8px;
  color: #c81426;
  font-size: 0.75rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.builder-help {
  margin: 12px 0 24px;
  color: #6b6660;
  line-height: 1.65;
}

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

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

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

.choice-card--simple {
  position: relative;
  min-height: 108px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 48px 20px 20px;
  border: 2px solid #e1dcd4;
  border-radius: 14px;
  background: #fbf9f5;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.choice-card--simple:hover,
.choice-card--simple:focus-within {
  transform: translateY(-2px);
  border-color: rgba(200, 20, 38, 0.55);
}

.choice-card--simple input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card--simple::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  border: 2px solid #c9c2b9;
  border-radius: 50%;
  background: #fff;
}

.choice-card--simple:has(input:checked) {
  border-color: #c81426;
  background: #fff2f3;
  box-shadow: 0 0 0 3px rgba(200, 20, 38, 0.1);
}

.choice-card--simple:has(input:checked)::after {
  content: "✓";
  display: grid;
  place-items: center;
  border-color: #c81426;
  background: #c81426;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
}

.choice-name {
  color: #171719;
  font-weight: 900;
  line-height: 1.25;
}

.choice-note {
  margin-top: 6px;
  color: #77716a;
  font-size: 0.84rem;
  line-height: 1.4;
}

.choice-card-featured {
  background: #fff8e8;
  border-color: rgba(217, 164, 65, 0.6);
}

.heat-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.heat-option {
  position: relative;
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 2px solid #e1dcd4;
  border-radius: 14px;
  background: #fbf9f5;
  text-align: center;
  cursor: pointer;
  font-weight: 850;
}

.heat-option input {
  position: absolute;
  opacity: 0;
}

.heat-option:has(input:checked) {
  border-color: #c81426;
  background: #fff2f3;
  box-shadow: 0 0 0 3px rgba(200, 20, 38, 0.1);
}

.heat-option--none {
  border-top-color: #d7cda9;
}

.heat-option--mild {
  border-top-color: #e8b752;
}

.heat-option--medium {
  border-top-color: #e88a3b;
}

.heat-option--spicy {
  border-top-color: #d84a2f;
}

.heat-option--fire {
  border-top-color: #a5141f;
}

.builder-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #e4ded6;
}

.builder-back,
.builder-next,
.reset-guide {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 9px;
  font-weight: 850;
  cursor: pointer;
}

.builder-back,
.reset-guide {
  border: 1px solid #d0c9c0;
  background: #fff;
  color: #292729;
}

.builder-next {
  border: 0;
  background: #181819;
  color: #fff;
}

.builder-back:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.builder-message {
  margin: 0;
  color: #a5141f;
  font-size: 0.88rem;
  text-align: center;
}

.bag-summary {
  background: #181819;
  color: #fff;
  border-color: #181819;
}

.summary-heading p {
  margin: 0 0 6px;
  color: #d9a441;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.summary-heading h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.summary-list {
  display: grid;
  gap: 0;
  margin: 28px 0;
}

.summary-list>div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.summary-list dt {
  color: #a9a39b;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  color: #fff;
  line-height: 1.5;
}

.summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reset-guide {
  border-color: rgba(255, 255, 255, 0.26);
  background: transparent;
  color: #fff;
}

.summary-note {
  margin: 18px 0 0;
  color: #aaa49c;
  font-size: 0.8rem;
  line-height: 1.55;
}

@media (max-width: 1050px) {
  .first-timer-layout {
    grid-template-columns: 1fr;
  }

  .first-timer-visual {
    position: static;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 20px;
  }

  .first-timer-tips {
    margin-top: 0;
  }

  .first-timer-image-wrap,
  .first-timer-image-wrap img {
    min-height: 440px;
    height: 440px;
  }
}

@media (max-width: 760px) {
  .first-timer-section {
    padding: 74px 0;
  }

  .first-timer-visual {
    grid-template-columns: 1fr;
  }

  .builder-progress {
    grid-template-columns: repeat(2, 1fr);
  }

  .progress-step:nth-child(2) {
    border-right: 0;
  }

  .progress-step:nth-child(-n+2) {
    border-bottom: 1px solid #e5dfd7;
  }

  .choice-grid--text,
  .choice-grid--two {
    grid-template-columns: 1fr;
  }

  .heat-options {
    grid-template-columns: 1fr;
  }

  .heat-option {
    min-height: 66px;
  }

  .builder-controls {
    grid-template-columns: 1fr 1fr;
  }

  .builder-message {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .summary-list>div {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 520px) {

  .first-timer-image-wrap,
  .first-timer-image-wrap img {
    min-height: 350px;
    height: 350px;
  }

  .builder-form,
  .bag-summary {
    padding: 22px;
  }

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

  .summary-actions .btn,
  .reset-guide {
    width: 100%;
  }
}


/* Closing CTA */
.closing-cta {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(200, 20, 38, 0.22), transparent 34%),
    linear-gradient(145deg, #171719, #080809);
  color: #fff;
  text-align: center;
}

.closing-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.closing-mark {
  margin-bottom: 16px;
  font-size: 2.4rem;
}

.closing-cta .section-kicker {
  margin: 0 0 12px;
  color: #d9a441;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.closing-cta h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.closing-signoff {
  margin: 18px 0 0;
  color: #c81426;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  font-weight: 900;
  text-transform: uppercase;
}

.closing-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}


/* =========================================================
   HOME ATMOSPHERE
   ========================================================= */

.home-atmosphere {
  padding: 60px 0 36px;
  background: var(--cream);
}

.home-atmosphere-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.home-atmosphere-images img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}

.home-atmosphere .section-kicker {
  margin-bottom: 18px;
  color: var(--red);
  text-align: center;
}


/* =========================================================
   HOME PROMOTION
   ========================================================= */

.home-promo {
  padding: 56px 0 96px;
  background: var(--cream);
  color: var(--charcoal);
}

.home-promo-grid {
  display: grid;
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.home-promo-image {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .14);
}

.home-promo-image img {
  display: block;
  width: 100%;
  height: auto;
}

.home-promo-copy {
  max-width: 620px;
}

.home-promo-copy .section-kicker {
  margin-bottom: 14px;
  color: var(--red);
}

.home-promo-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3.2rem, 5vw, 5.4rem);
  line-height: .95;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.home-promo-lead {
  max-width: 560px;
  margin: 26px 0 0;
  color: #5a5651;
  font-size: 1.08rem;
  line-height: 1.7;
}

.home-promo-flavors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.home-promo-flavors span {
  padding: 9px 14px;
  border: 1px solid rgba(12, 12, 13, .16);
  border-radius: 999px;
  background: #fff;
  color: var(--charcoal);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.home-promo-availability {
  margin: 28px 0 0;
  color: var(--red);
  font-weight: 800;
  line-height: 1.6;
}


/* Footer */
.site-footer {
  color: #fff;
  background: #09090a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(34px, 5vw, 72px);
  padding-top: 76px;
  padding-bottom: 68px;
}

.footer-logo {
  width: min(230px, 100%);
  height: auto;
  display: block;
}

.footer-description {
  max-width: 330px;
  margin: 24px 0 0;
  color: #aaa49d;
  line-height: 1.7;
}

.footer-column h2 {
  margin: 0 0 20px;
  color: #d9a441;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column address {
  margin: 0 0 14px;
  color: #d7d2cc;
  font-style: normal;
  line-height: 1.65;
}

.footer-phone {
  display: block;
  color: #fff;
  font-weight: 800;
}

.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: #fff;
  font-weight: 850;
  transition: color 160ms ease, transform 160ms ease;
}

.directions-link:hover,
.directions-link:focus-visible {
  color: #c81426;
  transform: translateX(3px);
}

.footer-hours {
  display: grid;
  gap: 10px;
  margin: 0;
}


.footer-hours>div {
  display: grid;
  grid-template-columns: minmax(86px, 1fr) auto;
  gap: 12px;
  padding-bottom: 9px;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.footer-hours dt {
  color: #d7d2cc;
  font-weight: 650;
}

.footer-hours dd {
  margin: 0;
  color: #aaa49d;
  text-align: right;
  white-space: nowrap;
}

.footer-links {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #d7d2cc;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #c81426;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: #070708;
}

.footer-bottom-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-bottom p {
  margin: 0;
  color: #85807a;
  font-size: 0.82rem;
}

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

@media (max-width: 620px) {

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 24px 28px;
    background: #0c0c0d;
  }

  .site-nav ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }

  .closing-cta {
    padding: 60px 0 35px;
  }

  .footer-grid {
    padding-top: 58px;
    padding-bottom: 52px;
  }

  .footer-hours-column {
    grid-column: 1 / -1;
  }

  .footer-bottom-inner {
    min-height: 92px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    text-align: center;
  }
}

.closing-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.closing-actions .btn {
  width: auto;
  min-width: 220px;
}

/* =============================
   Menu page
============================= */

.menu-page {
  background: #f7f2e9;
  color: #171719;
}

.menu-header {
  position: absolute;
}

.menu-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(6, 6, 7, .92) 0%, rgba(6, 6, 7, .76) 34%, rgba(6, 6, 7, .34) 66%, rgba(6, 6, 7, .12) 100%),
    linear-gradient(0deg, rgba(6, 6, 7, .78) 0%, rgba(6, 6, 7, 0) 55%),
    url("images/hero-seafood.webp") center 58% / cover no-repeat;
}


.menu-hero .eyebrow {
  color: #d9a441;
}

.menu-hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.menu-hero p:last-child {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.65;
  color: #eee9e3;
}

.menu-card-section,
.new-to-claws {
  padding: 96px 0;
  background: #f7f2e9;
}

.new-to-claws-lead strong {
  display: block;
  margin-bottom: 6px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading .section-kicker,
.new-to-claws .section-kicker,
.happy-hour-feature .section-kicker {
  margin: 0 0 10px;
  color: #c81426;
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-heading h2,
.new-to-claws h2,
.happy-hour-feature h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.7rem, 5vw, 4.8rem);
  line-height: .96;
  text-transform: uppercase;
}

.section-heading>p:last-child,
.new-to-claws-copy>p,
.happy-hour-feature p {
  color: #66615b;
  line-height: 1.75;
}

.menu-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.menu-document-card {
  min-height: 340px;
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 36px 34px 32px;
  border: 1px solid #dfd9d1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .07);
}

.menu-document-card--featured {
  background:
    radial-gradient(circle at 88% 8%, rgba(200, 20, 38, .12), transparent 26%),
    #fff;
  border-color: rgba(200, 20, 38, .32);
}

.menu-document-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: #181819;
  color: #fff;
  font-size: .92rem;
  font-weight: 900;
}

.menu-document-card--featured .menu-document-icon {
  background: #c81426;
}

.menu-document-card h3 {
  margin: 0;
  font-size: 1.7rem;

}

.menu-document-card p {
  margin: 16px 0 28px;
  text-align: center;
  color: #6b6660;
  line-height: 1.7;
}

.menu-document-card .btn {
  margin-top: auto;
  text-align: center;
}

.btn-dark {
  background: #181819;
  color: #fff;
}

.btn-dark:hover,
.btn-dark:focus-visible {
  background: #2a2a2c;
}

.new-to-claws {
  padding-top: 28px;
}

.new-to-claws-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  overflow: hidden;
  border-radius: 24px;
  background: #181819;
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .16);
}

.new-to-claws-copy {
  padding: clamp(38px, 6vw, 72px);
}

.new-to-claws-copy p {
  color: #c9c4bd;
  margin: 22px 0 30px;
}

.new-to-claws-image {
  min-height: 460px;
}

.new-to-claws-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.happy-hour-feature {
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 20, 38, .18), transparent 30%),
    linear-gradient(145deg, #161617, #09090a);
}

.happy-hour-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.happy-hour-feature p {
  max-width: 650px;
  color: #c5c0b9;
  margin: 20px 0 30px;
}

.happy-hour-details {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 18px;
  background: rgba(255, 255, 255, .04);
}

.happy-hour-details span {
  display: block;
  color: #d9a441;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.happy-hour-details strong {
  display: block;
  margin: 10px 0 8px;
  font-size: 1.65rem;
}

.happy-hour-details p {
  margin: 0;
  font-size: .95rem;
}

.happy-hour-image {
  overflow: hidden;
}

.happy-hour-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.happy-hour-copy {
  padding: clamp(50px, 6vw, 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.happy-hour-bar-copy {
  max-width: 520px;
  margin: 18px 0 28px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.happy-hour-bar-copy strong {
  color: var(--gold);
}


/* Menu page refinement: aligned to homepage typography and spacing */
/* Menu page refinement: aligned to Home hero */

.menu-page .menu-hero {
  min-height: 490px;
  display: grid;
  align-items: stretch;
  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .82) 0%,
      rgba(0, 0, 0, .58) 38%,
      rgba(0, 0, 0, .15) 70%,
      rgba(0, 0, 0, .05) 100%),
    url("images/seafood_4.jpg") center center / cover no-repeat;
}

.menu-page .menu-hero-inner {
  position: relative;
  z-index: 1;

  /* Same horizontal behavior as Home .hero-grid */
  width: min(calc(100% - 40px), 1420px);
  margin-inline: auto;

  padding-top: 150px;
  padding-bottom: 90px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.menu-page .menu-hero .eyebrow {
  margin-bottom: 16px;
}

.menu-page .menu-hero h1 {
  margin: 0;
  max-width: 660px;

  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(4.2rem, 7vw, 7.5rem);
  line-height: 0.88;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  text-shadow: 0 5px 25px rgba(0, 0, 0, 0.45);
}

.menu-page .menu-hero-copy {
  max-width: 560px;
  margin: 28px 0 0;

  font-family: Inter, Arial, Helvetica, sans-serif;
  color: #eee9e3;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.menu-page .menu-hero-cta {
  margin-top: 32px;
}

.menu-page .menu-card-section {
  padding-top: 74px;
}

.menu-page .section-heading--center {
  max-width: 820px;
  margin-bottom: 36px;
}

.menu-page .section-heading h2,
.menu-page .new-to-claws h2,
.menu-page .happy-hour-feature h2 {
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  letter-spacing: -0.02em;
}

.menu-page .section-heading>p:last-child,
.menu-page .new-to-claws-copy>p,
.menu-page .happy-hour-feature p,
.menu-page .menu-document-card p {
  font-family: Inter, Arial, Helvetica, sans-serif;
}

.menu-page .menu-document-card h3 {
  margin: 0 0 16px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

@media (max-width: 980px) {

  .new-to-claws-grid {
    grid-template-columns: 1fr;
  }

  .new-to-claws-copy {
    padding: 48px 40px;
  }

  .new-to-claws-image {
    min-height: 360px;
  }

  .happy-hour-layout {
    gap: 36px;
  }
}

@media (max-width: 860px) {
  .menu-page .menu-hero {
    min-height: 520px;
    background-position: 62% center;
  }

  .menu-page .menu-hero-inner {
    padding-top: 140px;
    padding-bottom: 58px;
  }

  .menu-page .menu-hero h1 {
    max-width: 560px;
  }
}

@media (max-width: 580px) {

  .menu-page .menu-hero-cta,
  .new-to-claws-copy .btn,
  .happy-hour-feature .btn {
    width: fit-content;
    min-width: 240px;
  }

  .menu-document-card .btn {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .menu-page .menu-hero {
    min-height: 470px;
    background-position: 68% center;
  }

  .menu-page .menu-hero-copy {
    font-size: 1rem;
  }

  .menu-page .menu-hero-cta {
    width: min(100%, 300px);
  }

  .menu-page .menu-card-section {
    padding-top: 58px;
  }

  .menu-document-card {
    min-height: auto;
    padding: 28px 24px;
  }

  .new-to-claws {
    padding: 58px 0;
  }

  .new-to-claws-copy {
    padding: 34px 24px;
  }

  .new-to-claws-image {
    min-height: 280px;
  }

  .happy-hour-feature {
    padding: 58px 0;
  }

  .happy-hour-layout {
    gap: 32px;
  }

  .happy-hour-details {
    padding: 26px 22px;
  }

  .happy-hour-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .happy-hour-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: center 55%;
  }

  .happy-hour-copy {
    padding: 28px 24px 32px;
    justify-content: flex-start;
  }
}

/* =============================
   Careers page
============================= */

.careers-page {
  background: var(--cream);
  color: var(--charcoal);
}

.careers-header {
  position: absolute;
}

/* =============================
   Careers Hero
============================= */

.careers-hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);

  background:
    linear-gradient(90deg,
      rgba(0, 0, 0, .82) 0%,
      rgba(0, 0, 0, .58) 38%,
      rgba(0, 0, 0, .18) 62%,
      rgba(0, 0, 0, .08) 100%),
    url("images/Employee.jpg");

  background-size: cover;
  background-position: 55% center;
  background-repeat: no-repeat;
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px,
      transparent 1px);

  background-size: 42px 42px;

  mask-image: linear-gradient(to right,
      transparent 5%,
      rgba(0, 0, 0, 0.65),
      transparent 92%);
}

.careers-hero-inner {
  position: relative;
  z-index: 1;

  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;

  padding-top: 180px;
  padding-bottom: 76px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.careers-hero h1 {
  margin: 0;
  max-width: 720px;

  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 0.88;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.careers-hero-copy>p {
  max-width: 480px;
}

.careers-hero-copy {
  max-width: 560px;
  margin: 24px 0 0;

  color: #eee9e3;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65;
}

.careers-hero-cta {
  margin-top: 30px;
}


/* =============================
   Why CLAWS
============================= */

.careers-intro {
  padding: 96px 0;
  background: var(--cream);
  text-align: center;
}

.careers-intro .section-kicker {
  color: var(--red);
}

.careers-intro h2 {
  margin: 10px 0 20px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  line-height: .95;
  text-transform: uppercase;
}

.careers-intro>p {
  max-width: 720px;
  margin-inline: auto;
}

.careers-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.careers-heading p {
  font-size: 22px;
  line-height: 1.6;
  max-width: 760px;
}

.careers-heading .section-kicker,
.positions-section .section-kicker,
.application-section .section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.careers-heading h2,
.positions-copy h2,
.application-copy h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.careers-heading>p:last-child,
.positions-copy>p,
.application-copy>p {
  color: #66615b;
  line-height: 1.75;
}

.careers-heading>p:last-child {
  margin: 20px auto 0;
}


/* =============================
   Career Cards
============================= */

.career-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.career-card {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 34px 30px;
  border: 1px solid #dfd9d1;
  border-radius: 20px;
  background: #fff;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.07);
}

.career-card--featured {
  border-color: rgba(200, 20, 38, 0.35);

  background:
    radial-gradient(circle at 88% 8%,
      rgba(200, 20, 38, 0.12),
      transparent 28%),
    #fff;
}

.career-card-number {
  width: 48px;
  height: 48px;

  display: grid;
  place-items: center;

  margin-bottom: 28px;

  border-radius: 50%;

  background: var(--charcoal);
  color: #fff;

  font-size: 0.85rem;
  font-weight: 900;
}

.career-card--featured .career-card-number {
  background: var(--red);
}

.career-card h3 {
  margin: 0 0 14px;

  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.career-card p {
  margin: 0;

  color: #6b6660;
  line-height: 1.75;
}


/* =============================
   Positions
============================= */

.positions-section {
  padding: 96px 0;

  color: #fff;

  background:
    radial-gradient(circle at 18% 15%,
      rgba(200, 20, 38, 0.15),
      transparent 28%),
    linear-gradient(145deg,
      #181819,
      #0b0b0c);
}

.positions-layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.8fr) minmax(0, 1.2fr);

  gap: 72px;
  align-items: center;
}

.positions-copy>p {
  margin-top: 22px;
  color: #c8c2bb;
}

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

.position-item {
  min-height: 82px;

  display: flex;
  align-items: center;

  padding: 20px 22px;

  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;

  background: rgba(255, 255, 255, 0.045);

  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}


/* =============================
   Application
============================= */

.application-section {
  padding: 96px 0;
  background: var(--cream);
}

.application-card {
  display: grid;
  grid-template-columns:
    minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 40px;
  overflow: hidden;
  padding: 0;
  border: 1px solid #ded8cf;
  border-radius: 24px;
  background: #fff;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.08);
}

.application-copy {
  padding: clamp(38px, 6vw, 72px);
}

.application-copy>p {
  margin: 22px 0 0;
}

.walk-in-note {
  color: var(--charcoal) !important;
}

.application-actions {
  display: flex;
  flex-wrap: wrap;

  gap: 14px;
  margin-top: 30px;
}

.btn-dark-outline {
  border: 2px solid var(--charcoal);

  background: transparent;
  color: var(--charcoal);
}

.btn-dark-outline:hover,
.btn-dark-outline:focus-visible {
  background: var(--charcoal);
  color: #fff;
}


/* Application Details */

.application-details {
  padding: clamp(38px, 5vw, 60px);
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%,
      rgba(200, 20, 38, 0.2),
      transparent 30%),
    var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.application-label {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.application-details h3 {
  margin: 0 0 18px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.application-details address {
  margin: 0 0 12px;
  color: #d7d2cc;
  font-style: normal;
  line-height: 1.7;
}

.application-details>a {
  color: #fff;
  font-weight: 850;
}

.application-tip {
  margin-top: 34px;
  padding-top: 24px;
  border-top:
    1px solid rgba(255, 255, 255, 0.14);
}

.application-tip span {
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.application-tip p {
  margin: 8px 0 0;
  color: #bdb7b0;
  line-height: 1.65;
}

.application-details .application-label {
  margin: 0 0 10px;
}

.application-details h3 {
  margin: 0 0 18px;
}

.application-details address {
  margin: 0 0 16px;
  font-style: normal;
  line-height: 1.6;
}

.application-details>a:not(.btn) {
  display: block;
  margin-bottom: 22px;
}

.application-details .btn {
  width: fit-content;
  padding-left: 0;
  padding-right: 0;
}


/* =============================
   Careers Responsive
============================= */

@media (max-width: 980px) {

  .career-card-grid,
  .positions-layout,
  .application-card {
    grid-template-columns: 1fr;
  }

  .positions-layout {
    gap: 42px;
  }
}


@media (max-width: 680px) {

  .careers-hero {
    min-height: 500px;
  }

  .careers-hero-inner {
    padding-top: 145px;
    padding-bottom: 58px;
  }

  .careers-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .careers-intro,
  .positions-section,
  .application-section {
    padding: 72px 0;
  }

  .positions-grid {
    grid-template-columns: 1fr;
  }

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

  .application-actions .btn {
    width: 100%;
  }
}

/* =============================
   Contact page
============================= */
.contact-page {
  background: var(--cream);
  color: var(--charcoal)
}

.contact-header {
  position: absolute
}

.contact-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background-image:
    linear-gradient(90deg,
      rgba(0, 0, 0, .92) 0%,
      rgba(0, 0, 0, .82) 35%,
      rgba(0, 0, 0, .58) 55%,
      rgba(0, 0, 0, .25) 75%,
      rgba(0, 0, 0, .08) 100%),
    url("images/dining_room.jpg");

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}



.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, .65), transparent 92%)
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-top: 180px;
  padding-bottom: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start
}

.contact-hero h1,
.contact-section-heading h2,
.contact-form-copy h2,
.contact-location-details h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  line-height: .9;
  letter-spacing: -.03em;
  text-transform: uppercase
}

.contact-hero h1 {
  font-size: clamp(4rem, 7vw, 7rem)
}

.contact-hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  color: #eee9e3;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.65
}

.contact-hero-cta {
  margin-top: 30px
}

.contact-quick-info,
.contact-location-section {
  padding: 92px 0;
  background: var(--cream)
}

.contact-section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center
}

.contact-section-heading .section-kicker,
.contact-form-copy .section-kicker,
.contact-location-details .section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase
}

.contact-section-heading h2,
.contact-form-copy h2,
.contact-location-details h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: .95
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px
}

.contact-info-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid #dfd9d1;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .07)
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.35rem
}

.contact-info-card h3 {
  margin: 0 0 14px;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  text-transform: uppercase
}

.contact-info-card p {
  margin: 0 0 24px;
  color: #6b6660;
  line-height: 1.7
}

.contact-info-card a {
  margin-top: auto;
  color: var(--red);
  font-weight: 850
}

.contact-form-section {
  padding: 96px 0;
  color: var(--charcoal);
  background: var(--cream);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 72px;
  align-items: start
}

.contact-form-copy .section-kicker {
  color: var(--red);
}

.contact-form-copy h2 {
  color: var(--charcoal);
}

.contact-form-copy>p {
  color: #494642;
}

.contact-form-note {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14)
}

.contact-form-note p,
.contact-form-note a {
  margin: 8px 0 0;
  color: #494642;
  line-height: 1.65
}

.contact-form {
  padding: clamp(28px, 4vw, 44px);
  border-radius: 22px;
  border: 1px solid #ded8cf;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px
}

.form-field {
  display: grid;
  gap: 9px;
  margin-bottom: 18px
}

.form-field label {
  color: #312f2c;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .03em
}

.form-field label span {
  color: var(--red)
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cfc8bf;
  border-radius: 11px;
  background: #fff;
  color: var(--charcoal);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease
}

.form-field input {
  min-height: 52px;
  padding: 0 15px
}

.form-field textarea {
  min-height: 170px;
  padding: 15px;
  resize: vertical
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200, 20, 38, .12);
}

.contact-submit {
  margin-top: 6px
}

.contact-location-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, .8fr);
  overflow: hidden;
  border: 1px solid #ded8cf;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08)
}

.contact-map-wrap,
.contact-map-wrap iframe {
  min-height: 560px
}

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

.contact-location-details {
  padding: clamp(38px, 5vw, 60px)
}

.contact-location-details address {
  margin: 22px 0 12px;
  color: #615d58;
  font-style: normal;
  font-size: 1.05rem;
  line-height: 1.7
}

.contact-location-phone {
  display: inline-block;
  margin-bottom: 30px;
  color: var(--charcoal);
  font-weight: 850
}

.contact-hours {
  display: grid;
  gap: 10px;
  margin: 0 0 30px
}

.contact-hours>div {
  display: grid;
  grid-template-columns: minmax(90px, 1fr) auto;
  gap: 18px;
  padding-bottom: 9px;
  border-bottom: 1px solid #e7e1d9
}

.contact-hours dt {
  color: #494642;
  font-weight: 750
}

.contact-hours dd {
  margin: 0;
  color: #77716a;
  text-align: right
}

.contact-status {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-radius: 12px;
}

.contact-status--success {
  background: #edf8ef;
  border: 1px solid #b8dfbf;
  color: #245c2e;
}

.contact-status strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.contact-status p {
  margin: 0;
}

@media(max-width:980px) {

  .contact-info-grid,
  .contact-form-layout,
  .contact-location-grid {
    grid-template-columns: 1fr
  }

  .contact-form-layout {
    gap: 42px
  }

  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 420px
  }
}

@media(max-width:680px) {
  .contact-hero {
    min-height: 500px
  }

  .contact-hero-inner {
    padding-top: 145px;
    padding-bottom: 58px
  }

  .contact-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem)
  }

  .contact-quick-info,
  .contact-form-section,
  .contact-location-section {
    padding: 72px 0
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0
  }

  .contact-submit {
    width: 100%
  }

  .contact-map-wrap,
  .contact-map-wrap iframe {
    min-height: 340px
  }
}

/* ==========================================================
   Online Job Application
   Append this section to the canonical CLAWS styles.css
========================================================== */

.job-application-page {
  background: var(--cream);
  color: var(--charcoal);
}

.application-header {
  position: absolute;
}

.application-hero {
  position: relative;
  min-height: 470px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  color: var(--white);
  background: radial-gradient(circle at 78% 24%, rgba(200, 20, 38, .24), transparent 29%),
    radial-gradient(circle at 92% 82%, rgba(217, 164, 65, .09), transparent 26%),
    linear-gradient(135deg, #181819 0%, #0b0b0c 58%, #070708 100%);
}

.application-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to right, transparent 5%, rgba(0, 0, 0, .65), transparent 92%);
}

.application-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-top: 180px;
  padding-bottom: 68px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.application-hero h1,
.online-application-heading h2,
.online-application-sidebar h2 {
  margin: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
}

.application-hero h1 {
  font-size: clamp(4rem, 7vw, 6.7rem);
}

.application-hero p:last-child {
  max-width: 620px;
  margin: 22px 0 0;
  color: #eee9e3;
  font-size: clamp(1.02rem, 1.8vw, 1.24rem);
  line-height: 1.65;
}

.online-application-section {
  padding: 96px 0;
  background: var(--cream);
}

.online-application-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(290px, .55fr);
  gap: 34px;
  align-items: start;
}

.online-application-main {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid #ded8cf;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, .08);
}

.online-application-heading {
  margin-bottom: 36px;
}

.online-application-heading .section-kicker {
  margin: 0 0 10px;
  color: var(--red);
  font-size: .8rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.online-application-heading h2 {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
}

.online-application-heading>p:last-child {
  margin: 18px 0 0;
  color: #66615b;
  line-height: 1.7;
}

.application-status {
  margin-bottom: 30px;
  padding: 18px 20px;
  border-radius: 12px;
}

.application-status--success {
  border: 1px solid rgba(34, 112, 57, .28);
  background: #eef8f1;
  color: #1e5d32;
}

.application-status strong,
.application-status span {
  display: block;
}

.application-status span {
  margin-top: 5px;
  line-height: 1.55;
}

.job-application-form {
  display: grid;
  gap: 32px;
}

.application-form-section {
  min-width: 0;
  margin: 0;
  padding: 0 0 30px;
  border: 0;
  border-bottom: 1px solid #e5dfd7;
}

.application-form-section legend {
  margin-bottom: 20px;
  padding: 0;
  font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.application-form-grid {
  display: grid;
  gap: 20px;
}

.application-form-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.application-field--full {
  grid-column: 1 / -1;
}

.application-field label {
  display: block;
  margin-bottom: 8px;
  color: #312f2c;
  font-size: .88rem;
  font-weight: 850;
}

.application-field label span {
  color: var(--red);
}

.application-field input,
.application-field select,
.application-field textarea {
  width: 100%;
  border: 1px solid #cfc8bf;
  border-radius: 10px;
  background: #fff;
  color: var(--charcoal);
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.application-field input,
.application-field select {
  min-height: 52px;
  padding: 0 14px;
}

.application-field textarea {
  min-height: 120px;
  padding: 13px 14px;
  line-height: 1.55;
  resize: vertical;
}

.application-field input:focus,
.application-field select:focus,
.application-field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200, 20, 38, .12);
}

.application-acknowledgment {
  padding: 18px;
  border-radius: 12px;
  background: #f5f1ea;
}

.application-acknowledgment label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #4d4944;
  line-height: 1.55;
}

.application-acknowledgment input {
  margin-top: 4px;
}

.application-submit-row {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.application-submit-row p {
  max-width: 420px;
  margin: 0;
  color: #77716a;
  font-size: .86rem;
  line-height: 1.55;
}

.online-application-sidebar {
  position: sticky;
  top: 110px;
  padding: 34px;
  border-radius: 20px;
  color: #fff;
  background: radial-gradient(circle at 82% 18%, rgba(200, 20, 38, .20), transparent 30%),
    var(--charcoal);
}

.online-application-sidebar .application-label {
  color: var(--gold);
}

.online-application-sidebar h2 {
  margin-bottom: 18px;
  font-size: 2.3rem;
}

.online-application-sidebar>p:not(.application-label) {
  margin: 0 0 24px;
  color: #cbc5be;
  line-height: 1.7;
}

.online-application-sidebar .btn {
  width: 100%;
}

.application-sidebar-divider {
  height: 1px;
  margin: 30px 0;
  background: rgba(255, 255, 255, .14);
}

.online-application-sidebar address {
  margin: 0 0 12px;
  color: #d7d2cc;
  font-style: normal;
  line-height: 1.7;
}

.application-sidebar-phone {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 850;
  color: #fff;
}

.application-sidebar-back {
  display: block;
  color: var(--gold);
  font-weight: 800;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

@media (max-width: 980px) {
  .online-application-layout {
    grid-template-columns: 1fr;
  }

  .online-application-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .application-hero {
    min-height: 430px;
  }

  .application-hero-inner {
    padding-top: 145px;
    padding-bottom: 54px;
  }

  .application-hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .online-application-section {
    padding: 72px 0;
  }

  .online-application-main,
  .online-application-sidebar {
    padding: 26px 22px;
  }

  .application-form-grid--two {
    grid-template-columns: 1fr;
  }

  .application-field--full {
    grid-column: auto;
  }

  .application-submit-row {
    flex-direction: column;
    align-items: stretch;
  }

  .application-submit-row .btn {
    width: 100%;
  }
}

/* =========================
   SHARED RESPONSIVE HEROES
   ========================= */

@media (max-width: 1050px) {

  .menu-page .menu-hero-inner,
  .careers-hero-inner,
  .contact-hero-inner,
  .application-hero-inner {
    width: min(calc(100% - 40px), 1420px);
    margin-inline: auto;
  }

  .menu-page .menu-hero h1,
  .careers-hero h1,
  .contact-hero h1,
  .application-hero h1 {
    font-size: clamp(3.2rem, 6vw, 4.5rem);
    line-height: 0.95;
  }
}

/* =========================
   SHARED MEDIA BREAKS
   ========================= */

@media (max-width: 860px) {

  .menu-page .menu-hero {
    min-height: 520px;
    background-position: 62% center;
  }

  .menu-page .menu-hero-inner,
  .careers-hero-inner,
  .contact-hero-inner,
  .application-hero-inner {
    width: min(calc(100% - 40px), 1420px);
    margin-inline: auto;
    padding-top: 140px;
    padding-bottom: 58px;
  }

  .menu-page .menu-hero h1,
  .careers-hero h1,
  .contact-hero h1,
  .application-hero h1 {
    max-width: 560px;
    font-size: clamp(3.2rem, 8vw, 4.5rem);
    line-height: 0.95;
  }

  .home-atmosphere {
    padding: 6px 0;
  }

  .home-atmosphere-images {
    grid-template-columns: 1fr;
  }

  .home-promo {
    padding: 64px 0;
  }

  .home-promo-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .home-promo-image {
    max-width: 520px;
    margin-inline: auto;
  }

  .home-promo-copy {
    max-width: 620px;
  }

  .home-promo-copy h2 {
    font-size: clamp(3rem, 8vw, 4.2rem);
  }

  .careers-hero {
    min-height: 560px;
    background-position: 58% center;
  }

  .contact-hero {
    min-height: 520px;
    background-position: 58% center;
  }

}



@media (max-width: 580px) {

  .menu-page .menu-hero {
    min-height: 470px;
    background-position: 68% center;
  }

  .menu-page .menu-hero-inner,
  .careers-hero-inner,
  .contact-hero-inner,
  .application-hero-inner {
    width: min(calc(100% - 28px), 1420px);
    margin-inline: auto;
    padding-top: 118px;
    padding-bottom: 48px;
  }

  .menu-page .menu-hero h1,
  .careers-hero h1,
  .contact-hero h1,
  .application-hero h1 {
    max-width: 100%;
    font-size: clamp(3rem, 14vw, 4rem);
    line-height: 0.95;
  }

  .home-atmosphere {
    padding: 52px 0;
  }

  .home-atmosphere-image {
    border-radius: 14px;
  }

  .home-promo {
    padding: 58px 0;
  }

  .home-promo-grid {
    gap: 32px;
  }

  .home-promo-image {
    border-radius: 16px;
  }

  .home-promo-copy h2 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .home-promo-lead {
    font-size: 1rem;
  }

  .home-promo-flavors {
    gap: 8px;
    margin-top: 24px;
  }

  .home-promo-flavors span {
    padding: 8px 12px;
    font-size: .76rem;
  }

  .careers-hero {
    min-height: 520px;
    background-position: 62% center;
  }

  .contact-hero {
    min-height: 470px;
    background-position: 62% center;
  }
}

/* =========================================================
   SHARED MOBILE CTA BUTTONS
   ========================================================= */

@media (max-width: 580px) {

  /* Content-sized marketing / navigation buttons */
  .menu-document-card .btn,
  .menu-page .menu-hero-cta,
  .new-to-claws-copy .btn,
  .happy-hour-feature .btn,
  .careers-hero-cta,
  .contact-hero-cta {
    width: fit-content;
  }

  /* Center buttons in centered layouts */
  .menu-document-card .btn {
    margin-inline: auto;
  }

  /* Closing CTA buttons */
  .closing-actions {
    align-items: center;
  }

  .closing-actions .btn {
    width: min(100%, 300px);
  }

  /* Form submit buttons stay full width */
  .contact-form .btn,
  .application-form .btn {
    width: 100%;
  }
}