:root {
  color-scheme: light;
  --ink: #1f2321;
  --muted: #64635d;
  --paper: #fffaf0;
  --cream: #f2eadb;
  --olive: #5f6f3c;
  --blue: #17364d;
  --red: #b94132;
  --gold: #d1982c;
  --line: rgba(31, 35, 33, 0.14);
  --shadow: 0 18px 42px rgba(24, 21, 16, 0.16);
  --radius: 8px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::selection {
  background: rgba(209, 152, 44, 0.35);
}

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

#home,
#menu,
#catering,
#gyro-of-love,
#find-us,
#recipes {
  scroll-margin-top: 84px;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
}

h1 {
  max-width: 8ch;
  margin-bottom: 1rem;
  font-size: clamp(4.2rem, 18vw, 10.8rem);
}

h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 7vw, 5.2rem);
}

h3 {
  margin-bottom: 0.35rem;
  font-size: clamp(1.3rem, 2.2vw, 1.9rem);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 99;
  padding: 0.65rem 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 76px;
  padding: 0.8rem clamp(1rem, 3vw, 2rem);
  background: rgba(255, 250, 240, 0.9);
  border-bottom: 1px solid rgba(31, 35, 33, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  text-decoration: none;
}

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

.brand span {
  display: grid;
  gap: 0.05rem;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin-left: auto;
}

.main-nav a {
  position: relative;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.3rem;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle,
.nav-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100svh - 92px);
  padding: 8.5rem clamp(1.1rem, 5vw, 4rem) 5rem;
  overflow: clip;
  color: #fffaf0;
  background:
    linear-gradient(90deg, rgba(18, 20, 18, 0.72), rgba(18, 20, 18, 0.32) 54%, rgba(18, 20, 18, 0.12)),
    url("./assets/gyro-hero.jpg") center / cover;
}

.hero-content {
  align-self: end;
  width: min(680px, 100%);
}

.hero p {
  max-width: 56ch;
  margin-bottom: 1.25rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.eyebrow {
  margin-bottom: 0.75rem;
  color: var(--red);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffd56a;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.05rem;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  border-color: var(--red);
  background: var(--red);
  color: #fffaf0;
}

.button.primary:hover {
  border-color: #942f24;
  background: #942f24;
}

.button.secondary {
  border-color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.12);
  color: inherit;
}

.section .button.secondary,
.location-section .button.secondary {
  border-color: var(--blue);
  background: transparent;
  color: var(--blue);
}

.announcement {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid var(--line);
  background: var(--blue);
  color: #fffaf0;
}

.announcement div {
  min-height: 124px;
  padding: 1.4rem clamp(1rem, 4vw, 2.4rem);
  border-right: 1px solid rgba(255, 250, 240, 0.18);
}

.announcement div:last-child {
  border-right: 0;
}

.announcement strong,
.announcement span {
  display: block;
}

.announcement strong {
  margin-bottom: 0.4rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.announcement span {
  color: rgba(255, 250, 240, 0.78);
}

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(1rem, 5vw, 4rem);
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.3rem;
}

.section-heading p:not(.eyebrow) {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.04rem;
}

.menu-section {
  padding-bottom: clamp(3rem, 7vw, 6rem);
}

.menu-list {
  display: grid;
  gap: 0.85rem;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 1.35rem);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-left: 5px solid var(--olive);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(24, 21, 16, 0.06);
}

.menu-item.featured {
  border-left-color: var(--gold);
  background: #fff8e3;
}

.menu-item p {
  max-width: 76ch;
  margin-bottom: 0;
  color: var(--muted);
}

.menu-item strong {
  color: var(--red);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  white-space: nowrap;
}

.story-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: stretch;
  background: var(--cream);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.story-copy {
  align-self: center;
  max-width: 640px;
  padding: clamp(3rem, 7vw, 6rem) clamp(1.2rem, 6vw, 5rem);
}

.story-copy h2 {
  max-width: 12ch;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
}

.impact-section {
  text-align: left;
}

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

.impact-grid article {
  min-height: 170px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.impact-grid strong,
.impact-grid span {
  display: block;
}

.impact-grid strong {
  margin-bottom: 0.45rem;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  line-height: 1;
}

.impact-grid span {
  color: var(--muted);
  font-weight: 700;
}

.catering-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.catering-copy p:not(.eyebrow) {
  max-width: 64ch;
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.35rem;
  font-weight: 700;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--olive);
  content: "✓";
}

.inquiry-card {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.35rem);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.inquiry-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.inquiry-card dl {
  display: grid;
  gap: 0.8rem;
  margin: 0;
}

.inquiry-card div {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.inquiry-card dt {
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-card dd {
  margin: 0.2rem 0 0;
  color: var(--muted);
}

.inquiry-card .button {
  width: 100%;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
  background: var(--blue);
  color: #fffaf0;
}

.location-copy {
  max-width: 520px;
  justify-self: end;
}

.location-copy .eyebrow {
  color: #ffd56a;
}

.location-copy p {
  color: rgba(255, 250, 240, 0.82);
}

.location-copy h2 {
  max-width: 12ch;
  font-size: clamp(2.4rem, 5.5vw, 4.6rem);
}

address {
  margin: 1.4rem 0;
  color: #fffaf0;
  font-style: normal;
  font-weight: 800;
}

.location-section img {
  width: min(760px, 100%);
  aspect-ratio: 1200 / 700;
  padding: 0.35rem;
  background: #fffdf8;
  border: 1px solid rgba(255, 250, 240, 0.22);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.location-section .button.secondary {
  border-color: rgba(255, 250, 240, 0.82);
  background: rgba(255, 250, 240, 0.1);
  color: #fffaf0;
}

.location-section .button.secondary:hover {
  border-color: #fffaf0;
  background: #fffaf0;
  color: var(--blue);
}

.recipe-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.recipe-links a {
  display: flex;
  min-height: 122px;
  align-items: end;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
}

.recipe-links a:hover {
  border-color: var(--gold);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(200px, 0.8fr);
  gap: 1.5rem;
  align-items: center;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: #fffdf8;
}

.site-footer div {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.site-footer p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1rem;
}

.site-footer a {
  color: var(--blue);
  font-weight: 800;
}

@media (max-width: 920px) {
  .brand small {
    display: none;
  }

  .nav-button {
    display: grid;
    gap: 4px;
    margin-left: auto;
    padding: 0.65rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffdf8;
    cursor: pointer;
  }

  .nav-button span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 1rem;
    left: 1rem;
    display: none;
    margin-left: 0;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fffdf8;
    box-shadow: var(--shadow);
  }

  .nav-toggle:checked ~ .main-nav {
    display: grid;
  }

  .announcement,
  .section-heading,
  .story-band,
  .impact-grid,
  .catering-section,
  .location-section,
  .recipe-links,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .announcement div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 240, 0.18);
  }

  .announcement div:last-child {
    border-bottom: 0;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .story-photo img {
    min-height: 340px;
  }

  .location-copy {
    justify-self: start;
  }

  .site-footer,
  .site-footer nav {
    justify-items: start;
    justify-content: start;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: calc(100svh - 86px);
    padding-top: 7.5rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

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

  h1 {
    font-size: clamp(3.6rem, 22vw, 5.8rem);
  }
}
