:root {
  --ink: #11100e;
  --ink-soft: #1c1916;
  --paper: #f7efe0;
  --paper-dim: #d8c7a4;
  --red: #c62a23;
  --red-dark: #741b18;
  --green: #1f7a57;
  --green-dark: #0b3d31;
  --gold: #d7a84a;
  --blue: #2c6d85;
  --white: #fffaf0;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 7.5rem;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 20% 0%, rgba(31, 122, 87, 0.22), transparent 32rem),
    linear-gradient(180deg, #151311 0%, #0f0d0b 48%, #15120f 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 20;
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.45rem clamp(1rem, 3vw, 2.25rem);
  background: rgba(12, 10, 8, 0.74);
  border-bottom: 1px solid rgba(247, 239, 224, 0.13);
  backdrop-filter: blur(18px);
}

.brand img {
  width: 112px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.65rem, 2vw, 1.5rem);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav a,
.call-button {
  text-decoration: none;
}

.nav a {
  color: var(--paper-dim);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.call-button,
.button {
  display: inline-flex;
  min-height: 2.55rem;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.call-button {
  padding: 0.6rem 0.9rem;
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 22px rgba(198, 42, 35, 0.26);
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 5rem clamp(1rem, 4vw, 4rem) 2rem;
  overflow: hidden;
}

.hero__media,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.55) 45%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(0deg, #11100e 0%, transparent 32%);
}

.hero__content {
  position: relative;
  max-width: 780px;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

h1,
h2 {
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  margin-bottom: 0.85rem;
  font-family: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  font-size: 5rem;
  line-height: 1.01;
  text-transform: uppercase;
  text-shadow: 0 3px 0 var(--red-dark), 0 18px 40px rgba(0, 0, 0, 0.55);
}

h2 {
  margin-bottom: 1rem;
  font-family: Impact, "Arial Black", "Segoe UI Black", sans-serif;
  font-size: clamp(2.2rem, 5.6vw, 4.9rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}

.hero__lead {
  max-width: 680px;
  color: var(--white);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.15rem;
}

.button {
  padding: 0.85rem 1.15rem;
  border: 1px solid transparent;
}

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

.button--ghost {
  background: rgba(247, 239, 224, 0.08);
  border-color: rgba(247, 239, 224, 0.34);
  color: var(--white);
}

.button--danger {
  background: #8f1f1a;
  border-color: rgba(255, 250, 240, 0.2);
  color: var(--white);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.hero__notice {
  position: absolute;
  right: clamp(1rem, 4vw, 4rem);
  bottom: 1.5rem;
  z-index: 1;
  width: min(320px, calc(100% - 2rem));
  padding: 0.85rem;
  background: rgba(15, 13, 11, 0.8);
  border: 1px solid rgba(215, 168, 74, 0.45);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero__notice span {
  display: block;
  color: var(--paper-dim);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__notice strong {
  display: block;
  color: var(--gold);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__notice p {
  margin: 0.4rem 0 0;
  color: var(--white);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section__intro {
  max-width: 760px;
}

.section__intro p:not(.eyebrow) {
  color: var(--paper-dim);
  font-size: 1.05rem;
}

.section__intro--center {
  margin: 0 auto 2rem;
  text-align: center;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.case-note,
.menu-category,
.staff-card,
.specials-board,
.visit-panel,
.facebook-shell {
  background: rgba(247, 239, 224, 0.06);
  border: 1px solid rgba(247, 239, 224, 0.13);
  border-radius: 8px;
}

.case-note {
  min-height: 220px;
  padding: 1.25rem;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.16);
}

.case-note:nth-child(2) {
  background: rgba(31, 122, 87, 0.16);
}

.case-note:nth-child(3) {
  background: rgba(44, 109, 133, 0.16);
}

.case-note__stamp {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid currentColor;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.section--daily-drop {
  width: min(1320px, calc(100% - 2rem));
  padding-top: clamp(3.5rem, 7vw, 6rem);
}

.section--daily-drop .section__intro {
  max-width: 960px;
}

.section--daily-drop h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(3rem, 7vw, 6rem);
}

.daily-drop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.75rem;
  margin-top: 2rem;
}

.daily-drop-card {
  min-height: 190px;
  padding: 0.9rem;
  background: rgba(247, 239, 224, 0.06);
  border: 1px solid rgba(247, 239, 224, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.14);
}

.daily-drop-card:nth-child(odd) {
  background: rgba(31, 122, 87, 0.13);
}

.daily-drop-card:nth-child(3n) {
  background: rgba(198, 42, 35, 0.14);
}

.daily-drop-card:nth-child(4n) {
  background: rgba(44, 109, 133, 0.14);
  border-color: rgba(215, 168, 74, 0.38);
}

.daily-drop-card span {
  display: inline-flex;
  margin-bottom: 0.7rem;
  padding: 0.25rem 0.55rem;
  color: var(--gold);
  border: 1px solid rgba(215, 168, 74, 0.7);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transform: rotate(-2deg);
}

.daily-drop-card h3 {
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
  line-height: 1;
  text-transform: uppercase;
}

.daily-drop-card p {
  margin: 0;
  color: var(--paper-dim);
}

.daily-drop-happy {
  margin: 0.85rem 0 0;
  padding: 0.95rem 1rem;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 900;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.feature-copy p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--paper-dim);
  font-size: 1.08rem;
}

.quick-facts {
  display: grid;
  gap: 0.8rem;
  margin: 1.8rem 0 0;
}

.quick-facts div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1rem;
  padding-block: 0.8rem;
  border-top: 1px solid rgba(247, 239, 224, 0.16);
}

dt {
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 1rem;
  align-items: end;
}

.photo-stack img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(247, 239, 224, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-stack img:nth-child(2) {
  aspect-ratio: 1 / 1;
  transform: translateY(2rem);
}

.section--photo-drop {
  width: min(1320px, calc(100% - 2rem));
}

.photo-drop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.photo-drop-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(247, 239, 224, 0.18);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-drop-grid img:nth-child(4) {
  object-position: center 40%;
}

.section--menu {
  width: min(1320px, calc(100% - 2rem));
}

.menu-layout {
  columns: 3 320px;
  column-gap: 1rem;
}

.menu-category {
  display: inline-block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 1rem;
  break-inside: avoid;
}

.menu-category--feature {
  background:
    linear-gradient(135deg, rgba(198, 42, 35, 0.24), rgba(31, 122, 87, 0.18)),
    rgba(247, 239, 224, 0.07);
  border-color: rgba(215, 168, 74, 0.36);
  box-shadow: inset 0 0 0 1px rgba(215, 168, 74, 0.08);
}

.menu-category h3 {
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.menu-category__desc {
  margin-bottom: 1rem;
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.menu-category--feature .menu-category__desc {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-category__note {
  margin: 1rem 0 0;
  padding-top: 0.9rem;
  color: var(--white);
  border-top: 1px solid rgba(215, 168, 74, 0.28);
  font-size: 0.95rem;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(247, 239, 224, 0.14);
}

.menu-item__name {
  margin: 0;
  color: var(--white);
  font-weight: 850;
}

.menu-item__details {
  grid-column: 1 / -1;
  margin-top: -0.65rem;
  color: var(--paper-dim);
  font-size: 0.92rem;
}

.menu-item__price {
  color: var(--gold);
  font-weight: 900;
  white-space: nowrap;
}

.section--staff {
  width: min(1320px, calc(100% - clamp(2rem, 5vw, 4rem)));
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.staff-card {
  overflow: hidden;
}

.staff-feature {
  display: grid;
  margin-top: 1.25rem;
  overflow: hidden;
  background: rgba(247, 239, 224, 0.06);
  border: 1px solid rgba(247, 239, 224, 0.13);
  border-radius: 8px;
}

.staff-feature img {
  width: 100%;
  aspect-ratio: 21 / 9;
  max-height: 430px;
  object-fit: cover;
  object-position: center 54%;
}

.staff-feature h3 {
  margin-bottom: 0.55rem;
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
}

.staff-feature .staff-card__body {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.8rem 1.2rem;
  align-items: baseline;
  padding: 1rem clamp(1rem, 2vw, 1.5rem);
}

.staff-feature .staff-card__body p {
  max-width: 760px;
  margin: 0;
}

.staff-card img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.staff-card__body {
  padding: 1rem;
}

.staff-card__role {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.staff-card p {
  color: var(--paper-dim);
  font-size: 0.95rem;
  white-space: pre-line;
}

.section--events {
  display: grid;
  grid-template-columns: minmax(22rem, 0.82fr) minmax(34rem, 1.18fr);
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.section--visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.events-copy p:not(.eyebrow) {
  color: var(--paper-dim);
}

.events-primary-action {
  display: flex;
  margin-top: 1.15rem;
}

.section--events h2 {
  font-size: clamp(3.5rem, 5.8vw, 6rem);
}

.specials-board {
  margin-top: 1.75rem;
  padding: 1rem;
  background: rgba(198, 42, 35, 0.14);
}

.specials-board ul {
  padding-left: 1.2rem;
  margin: 0;
}

.specials-board li + li {
  margin-top: 0.35rem;
}

.events-highlights {
  display: grid;
  gap: 1rem;
}

.event-feature {
  display: grid;
  grid-template-columns: minmax(13rem, 0.78fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 0.7rem;
  background: rgba(247, 239, 224, 0.06);
  border: 1px solid rgba(224, 177, 67, 0.32);
  border-radius: 6px;
}

.event-feature img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  filter: saturate(1.05) contrast(1.04);
}

.event-feature h3 {
  margin-bottom: 0.45rem;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  line-height: 1;
  text-transform: uppercase;
}

.event-feature a {
  color: var(--white);
  text-decoration-color: rgba(224, 177, 67, 0.7);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.12em;
}

.event-feature a:hover {
  color: var(--gold);
}

.event-feature p:not(.eyebrow) {
  color: var(--paper-dim);
}

.facebook-shell {
  padding: 0.7rem;
  background:
    linear-gradient(135deg, rgba(31, 122, 87, 0.28), rgba(198, 42, 35, 0.16)),
    rgba(247, 239, 224, 0.06);
}

.facebook-card {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.25rem, 4vw, 2rem);
  background:
    linear-gradient(180deg, rgba(11, 61, 49, 0.18), rgba(11, 10, 8, 0.94)),
    url("assets/img/staff-crew.jpg") center / cover;
  border: 1px solid rgba(247, 239, 224, 0.18);
  border-radius: 6px;
}

.facebook-card h3 {
  max-width: 620px;
  margin-bottom: 0.75rem;
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.15rem);
  line-height: 1;
  text-transform: uppercase;
}

.facebook-card p:not(.eyebrow) {
  max-width: 620px;
  color: var(--paper);
}

.event-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.event-actions .button {
  width: fit-content;
}

.frame-link {
  display: inline-flex;
  margin-top: 0.7rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.visit-panel {
  padding: 1.2rem;
  background: rgba(31, 122, 87, 0.15);
}

.visit-panel a {
  color: var(--gold);
  font-weight: 900;
}

.hours {
  margin-top: 2rem;
}

.hours dl {
  margin: 0;
}

.hours div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.8fr) 1fr;
  gap: 1rem;
  padding: 0.72rem 0;
  border-top: 1px solid rgba(247, 239, 224, 0.14);
}

.map-shell {
  min-height: 480px;
  padding: 0.7rem;
  border: 1px solid rgba(247, 239, 224, 0.14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.map-shell iframe {
  width: 100%;
  height: calc(100% - 2.4rem);
  min-height: 480px;
  border: 0;
  border-radius: 6px;
  filter: grayscale(0.35) contrast(1.05);
}

.section--classifieds {
  width: min(1320px, calc(100% - 2rem));
}

.classifieds-paper {
  padding: clamp(1rem, 3vw, 2.5rem);
  color: #17130f;
  background:
    linear-gradient(rgba(23, 19, 15, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 15%, rgba(215, 168, 74, 0.22), transparent 18rem),
    #efe1bf;
  background-size: 100% 1.45rem, auto, auto;
  border: 1px solid rgba(247, 239, 224, 0.24);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.classifieds-masthead {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  padding: clamp(1rem, 3vw, 2rem) 1rem 1.5rem;
  text-align: center;
  border: 3px double rgba(23, 19, 15, 0.86);
}

.classifieds-masthead .eyebrow {
  margin: 0;
  color: #5d221e;
}

.classifieds-masthead h2 {
  max-width: 900px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 8vw, 6.4rem);
  font-weight: 900;
  line-height: 0.9;
  text-transform: none;
}

.classifieds-masthead p {
  max-width: 720px;
  margin: 0;
  color: rgba(23, 19, 15, 0.78);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
}

.classifieds-rule {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.8rem 0 1rem;
  padding: 0.45rem 0;
  border-block: 2px solid rgba(23, 19, 15, 0.84);
  color: rgba(23, 19, 15, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.classifieds-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 0.8rem;
}

.classified-ad {
  min-height: 210px;
  padding: 1rem;
  background: rgba(255, 249, 232, 0.42);
  border: 1px solid rgba(23, 19, 15, 0.56);
  box-shadow: inset 0 0 0 1px rgba(255, 249, 232, 0.34);
}

.classified-ad--wide {
  grid-row: span 2;
}

.classified-ad__kicker {
  margin: 0 0 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid rgba(23, 19, 15, 0.44);
  color: #5d221e;
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.classified-ad h3 {
  margin-bottom: 0.7rem;
  color: #17130f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.6vw, 2.45rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.classified-ad p:not(.classified-ad__kicker) {
  margin: 0;
  color: rgba(23, 19, 15, 0.8);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  line-height: 1.42;
}

.classified-dialog {
  width: min(720px, calc(100% - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  color: #17130f;
  background: #efe1bf;
  border: 3px double rgba(23, 19, 15, 0.86);
  border-radius: 8px;
  overflow: auto;
  box-shadow: var(--shadow);
}

.classified-dialog::backdrop {
  background: rgba(6, 5, 4, 0.78);
  backdrop-filter: blur(4px);
}

.classified-submit-form,
.admin-login-form {
  display: grid;
  gap: 1rem;
}

.classified-submit-form {
  position: relative;
  padding: clamp(1.1rem, 4vw, 2rem);
}

.classified-submit-form h2 {
  margin: 0;
  color: #17130f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  line-height: 0.9;
  text-transform: none;
}

.classified-submit-form p,
.classified-submit-form label,
.admin-login-form label {
  color: rgba(23, 19, 15, 0.78);
}

.classified-submit-form label,
.admin-login-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.classified-submit-form input,
.classified-submit-form textarea,
.admin-login-form input {
  width: 100%;
  padding: 0.82rem 0.9rem;
  color: #17130f;
  background: rgba(255, 249, 232, 0.74);
  border: 1px solid rgba(23, 19, 15, 0.45);
  border-radius: 6px;
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.classified-submit-form textarea {
  resize: vertical;
}

.dialog-close {
  justify-self: end;
  padding: 0.35rem 0.55rem;
  color: #5d221e;
  background: transparent;
  border: 1px solid rgba(23, 19, 15, 0.42);
  border-radius: 5px;
  font-weight: 900;
  text-transform: uppercase;
}

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

.form-note,
.form-status {
  margin: 0;
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.classified-submit-form .button--ghost {
  color: #17130f;
  background: transparent;
  border-color: rgba(23, 19, 15, 0.78);
}

.classified-submit-form .button--ghost:hover,
.classified-submit-form .button--ghost:focus-visible {
  background: rgba(23, 19, 15, 0.08);
}

.admin-body {
  min-height: 100vh;
}

.admin-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(1rem, 4vw, 2rem) 0 4rem;
}

.admin-hero {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 4vw, 2rem);
  align-items: center;
  padding: 1rem 0 2rem;
}

.admin-brand img {
  width: 120px;
}

.admin-hero h1 {
  max-width: 880px;
  margin-bottom: 0.5rem;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
}

.admin-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--paper-dim);
}

.admin-card,
.admin-dashboard {
  padding: clamp(1rem, 3vw, 1.5rem);
  background: rgba(247, 239, 224, 0.07);
  border: 1px solid rgba(247, 239, 224, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.admin-card h2,
.admin-toolbar h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.admin-card code {
  color: var(--gold);
}

.admin-login-form {
  max-width: 420px;
}

.admin-login-form label {
  color: var(--paper-dim);
}

.admin-login-form input {
  color: var(--paper);
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(247, 239, 224, 0.28);
}

.admin-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.admin-toolbar__actions,
.admin-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.2rem 0;
}

.admin-tab {
  min-height: 2.5rem;
  padding: 0.6rem 0.85rem;
  color: var(--paper-dim);
  background: rgba(247, 239, 224, 0.06);
  border: 1px solid rgba(247, 239, 224, 0.15);
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-tab.is-active {
  color: var(--ink);
  background: var(--gold);
}

.admin-tab span {
  display: inline-flex;
  min-width: 1.5rem;
  justify-content: center;
  margin-left: 0.35rem;
  padding: 0.1rem 0.3rem;
  background: rgba(0, 0, 0, 0.18);
  border-radius: 999px;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-item {
  padding: 1rem;
  background: rgba(17, 16, 14, 0.54);
  border: 1px solid rgba(247, 239, 224, 0.14);
  border-radius: 8px;
}

.admin-item__meta {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.admin-item h3 {
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  text-transform: uppercase;
}

.admin-item p:not(.admin-item__meta) {
  color: var(--paper);
}

.admin-item__details {
  display: grid;
  gap: 0.4rem;
  margin: 0.75rem 0 1rem;
}

.admin-item__details div {
  display: grid;
  grid-template-columns: 6rem 1fr;
  gap: 0.75rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(247, 239, 224, 0.12);
}

.admin-empty {
  margin: 0;
  padding: 1rem;
  color: var(--paper-dim);
  background: rgba(0, 0, 0, 0.18);
  border-radius: 6px;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem clamp(1rem, 3vw, 2.5rem);
  background: #0b0a08;
  border-top: 1px solid rgba(247, 239, 224, 0.13);
}

.site-footer img {
  width: 120px;
}

.site-footer p {
  margin: 0;
  color: var(--paper-dim);
}

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

@media (max-width: 940px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    grid-column: 1 / -1;
    order: 3;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.1rem;
  }

  .call-button {
    justify-self: end;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    padding-bottom: 1.5rem;
  }

  .hero__notice {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 2rem;
  }

  .section--split,
  .section--events,
  .section--visit {
    grid-template-columns: 1fr;
  }

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

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

  .staff-feature {
    grid-template-columns: 1fr;
  }

  .event-feature {
    grid-template-columns: 1fr;
  }

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

  .classified-ad--wide {
    grid-row: auto;
  }
}

@media (max-height: 820px) and (min-width: 941px) {
  .brand img {
    width: 96px;
  }

  .site-header {
    padding-block: 0.35rem;
  }

  h1 {
    max-width: 880px;
    font-size: 4.45rem;
    line-height: 1;
  }

  .hero__lead {
    max-width: 640px;
    font-size: 0.98rem;
  }

  .hero__actions {
    margin-top: 0.9rem;
  }

  .button {
    min-height: 2.35rem;
    padding-block: 0.65rem;
  }
}

@media (max-width: 640px) {
  .site-header {
    gap: 0.45rem 0.75rem;
    padding: 0.45rem 0.8rem 0.6rem;
  }

  .brand img {
    width: 84px;
  }

  .call-button {
    min-height: 2.2rem;
    padding-inline: 0.75rem;
    font-size: 0.76rem;
  }

  .nav {
    gap: 0.85rem;
    font-size: 0.72rem;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    align-items: start;
    padding-top: 9.75rem;
    padding-bottom: 1.25rem;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__content .eyebrow {
    margin-bottom: 0.45rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
  }

  .hero__lead {
    font-size: 0.92rem;
  }

  h1 {
    font-size: 2.75rem;
    line-height: 1.06;
  }

  .section--daily-drop h2 {
    font-size: 3rem;
  }

  .daily-drop-grid {
    grid-template-columns: 1fr;
  }

  .daily-drop-card {
    min-height: auto;
  }

  .photo-drop-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .staff-grid,
  .classifieds-grid {
    grid-template-columns: 1fr;
  }

  .staff-feature img {
    aspect-ratio: 16 / 10;
  }

  .staff-feature .staff-card__body {
    grid-template-columns: 1fr;
  }

  .event-feature img {
    aspect-ratio: 16 / 9;
  }

  .classifieds-masthead h2 {
    font-size: 2.55rem;
  }

  .classifieds-rule {
    display: grid;
    font-size: 0.72rem;
  }

  .photo-stack {
    grid-template-columns: 1fr;
  }

  .photo-stack img:nth-child(2) {
    transform: none;
  }

  .section--events h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .facebook-card h3 {
    font-size: 1.95rem;
    line-height: 1.03;
  }

  .quick-facts div,
  .hours div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .event-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .event-actions .button {
    width: 100%;
  }

  .classified-dialog {
    width: min(100% - 1rem, 720px);
  }

  .form-grid,
  .admin-hero {
    grid-template-columns: 1fr;
  }

  .form-actions,
  .form-actions .button,
  .admin-toolbar,
  .admin-toolbar__actions,
  .admin-toolbar__actions .button,
  .admin-item__actions,
  .admin-item__actions .button {
    width: 100%;
  }

  .form-actions .button,
  .admin-toolbar__actions .button,
  .admin-item__actions .button {
    justify-content: center;
  }

  .admin-item__details div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

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