@layer theme {
  :root,
  :host {
    --font-sans:
      ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji",
      "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --font-mono:
      ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
      "Courier New", monospace;
    --spacing: 0.25rem;
    --default-font-family: var(--font-sans);
    --default-mono-font-family: var(--font-mono);
  }
}
@layer base {
  *,
  :after,
  :before,
  ::backdrop {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  ::file-selector-button {
    box-sizing: border-box;
    border: 0 solid;
    margin: 0;
    padding: 0;
  }
  html,
  :host {
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    line-height: 1.5;
    font-family: var(
      --default-font-family,
      ui-sans-serif,
      system-ui,
      sans-serif,
      "Apple Color Emoji",
      "Segoe UI Emoji",
      "Segoe UI Symbol",
      "Noto Color Emoji"
    );
    font-feature-settings: var(--default-font-feature-settings, normal);
    font-variation-settings: var(--default-font-variation-settings, normal);
    -webkit-tap-highlight-color: transparent;
  }
  hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
  }
  abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: inherit;
    font-weight: inherit;
  }
  a {
    color: inherit;
    -webkit-text-decoration: inherit;
    text-decoration: inherit;
  }
  b,
  strong {
    font-weight: bolder;
  }
  code,
  kbd,
  samp,
  pre {
    font-family: var(
      --default-mono-font-family,
      ui-monospace,
      SFMono-Regular,
      Menlo,
      Monaco,
      Consolas,
      "Liberation Mono",
      "Courier New",
      monospace
    );
    font-feature-settings: var(--default-mono-font-feature-settings, normal);
    font-variation-settings: var(
      --default-mono-font-variation-settings,
      normal
    );
    font-size: 1em;
  }
  small {
    font-size: 80%;
  }
  sub,
  sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  sub {
    bottom: -0.25em;
  }
  sup {
    top: -0.5em;
  }
  table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse;
  }
  :-moz-focusring {
    outline: auto;
  }
  progress {
    vertical-align: baseline;
  }
  summary {
    display: list-item;
  }
  ol,
  ul,
  menu {
    list-style: none;
  }
  img,
  svg,
  video,
  canvas,
  audio,
  iframe,
  embed,
  object {
    vertical-align: middle;
    display: block;
  }
  img,
  video {
    max-width: 100%;
    height: auto;
  }
  button,
  input,
  select,
  optgroup,
  textarea {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  ::file-selector-button {
    font: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    letter-spacing: inherit;
    color: inherit;
    opacity: 1;
    background-color: #0000;
    border-radius: 0;
  }
  :where(select:is([multiple], [size])) optgroup {
    font-weight: bolder;
  }
  :where(select:is([multiple], [size])) optgroup option {
    padding-inline-start: 20px;
  }
  ::file-selector-button {
    margin-inline-end: 4px;
  }
  ::placeholder {
    opacity: 1;
  }
  @supports (not ((-webkit-appearance: -apple-pay-button))) or
    (contain-intrinsic-size: 1px) {
    ::placeholder {
      color: currentColor;
    }
    @supports (color: color-mix(in lab, red, red)) {
      ::placeholder {
        color: color-mix(in oklab, currentcolor 50%, transparent);
      }
    }
  }
  textarea {
    resize: vertical;
  }
  ::-webkit-search-decoration {
    -webkit-appearance: none;
  }
  ::-webkit-date-and-time-value {
    min-height: 1lh;
    text-align: inherit;
  }
  ::-webkit-datetime-edit {
    display: inline-flex;
  }
  ::-webkit-datetime-edit-fields-wrapper {
    padding: 0;
  }
  ::-webkit-datetime-edit {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-year-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-month-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-day-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-hour-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-minute-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-second-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-millisecond-field {
    padding-block: 0;
  }
  ::-webkit-datetime-edit-meridiem-field {
    padding-block: 0;
  }
  ::-webkit-calendar-picker-indicator {
    line-height: 1;
  }
  :-moz-ui-invalid {
    box-shadow: none;
  }
  button,
  input:where([type="button"], [type="reset"], [type="submit"]) {
    appearance: button;
  }
  ::file-selector-button {
    appearance: button;
  }
  ::-webkit-inner-spin-button {
    height: auto;
  }
  ::-webkit-outer-spin-button {
    height: auto;
  }
  [hidden]:where(:not([hidden="until-found"])) {
    display: none !important;
  }
}
@layer components;
@layer utilities {
  .static {
    position: static;
  }
  .end {
    inset-inline-end: var(--spacing);
  }
  .flex {
    display: flex;
  }
  .inline {
    display: inline;
  }
  .table {
    display: table;
  }
}
:root {
  --green-deep: #141f18;
  --green-mid: #1e3226;
  --green-light: #2a4a35;
  --brass: #c8922a;
  --brass-light: #e0ab4a;
  --cream: #f4ead5;
  --cream-dim: #c9bfa8;
  --charcoal: #1a1a1a;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;
}
*,
:before,
:after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--green-deep);
  color: var(--cream);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  margin: 0;
  font-weight: 300;
}
body:before {
  content: "";
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 128px;
  position: fixed;
  inset: 0;
}
.nav {
  z-index: 100;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  background: linear-gradient(#141f18f2, #0000);
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2.5rem;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
.nav-logo {
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: 0.02em;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
}
.nav-logo span {
  color: var(--brass);
}
.logo-img {
  height: 96px;
  width: auto;
  border-radius: 4px;
  object-fit: contain;
}
.nav-links {
  align-items: center;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.nav-links a {
  font-family: var(--font-body);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--brass-light);
}
.hero {
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  display: grid;
  position: relative;
  overflow: hidden;
}
.hero-left {
  background: var(--green-deep);
  z-index: 2;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 4rem 4rem;
  display: flex;
  position: relative;
}
.hero-eyebrow {
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  display: flex;
}
.hero-eyebrow:before {
  content: "";
  background: var(--brass);
  width: 2rem;
  height: 1px;
  display: block;
}
.hero-title {
  font-family: var(--font-display);
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0 0 0.25rem;
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 1;
}
.hero-title em {
  color: var(--brass-light);
  font-style: italic;
  font-weight: 300;
}
.hero-subtitle {
  font-family: var(--font-display);
  color: var(--cream-dim);
  margin: 1rem 0 2.5rem;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 300;
}
.hero-desc {
  color: var(--cream-dim);
  max-width: 30ch;
  margin-bottom: 3rem;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
}
.hero-cta {
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--brass);
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  padding: 1rem 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s,
    transform 0.2s;
  display: inline-flex;
}
.hero-cta:hover {
  background: var(--brass-light);
  transform: translateY(-1px);
}
.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.hero-right:after {
  content: "";
  background: linear-gradient(to right, var(--green-deep) 0%, transparent 30%);
  z-index: 1;
  position: absolute;
  inset: 0;
}
.hero-badge {
  z-index: 10;
  background: var(--brass);
  color: var(--green-deep);
  text-align: center;
  font-family: var(--font-display);
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  animation: 3s ease-in-out infinite pulse-slow;
  position: absolute;
  bottom: 3rem;
  right: 2rem;
}
@keyframes pulse-slow {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}
.hero-badge .badge-big {
  font-size: 1.6rem;
  line-height: 1;
  display: block;
}
.hero-badge .badge-small {
  font-size: 0.65rem;
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.25rem;
  font-weight: 500;
  display: block;
}
.divider {
  align-items: center;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
}
.divider-line {
  background: var(--green-light);
  flex: 1;
  height: 1px;
}
.divider-icon {
  color: var(--brass);
  font-size: 1.2rem;
}
.hero-train {
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translate(-50%, -50%);
  width: 42%;
  max-width: 620px;
  height: auto;
  z-index: 3;
  pointer-events: none;
}
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.section-label {
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 1rem;
  font-size: 0.7rem;
  font-weight: 500;
}
.section-title {
  font-family: var(--font-display);
  color: var(--cream);
  margin: 0 0 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
}
.about-grid {
  grid-template-columns: 1fr 1.2fr;
  align-items: start;
  gap: 4rem;
  display: grid;
}
.about-text p {
  color: var(--cream-dim);
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.9;
}
.about-images {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  display: grid;
}
.about-img-main {
  aspect-ratio: 16/9;
  grid-column: 1/-1;
  overflow: hidden;
}
.about-img-sub {
  aspect-ratio: 4/5;
  overflow: hidden;
}
.about-images img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
}
.about-images img:hover {
  transform: scale(1.03);
}
.hours-table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 2rem;
}
.hours-table tr {
  border-bottom: 1px solid var(--green-light);
}
.hours-table td {
  color: var(--cream-dim);
  font-size: 0.85rem;
  font-family: var(--font-body);
  padding: 0.6rem 0;
}
.hours-table td:first-child {
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 50%;
  font-size: 0.75rem;
  font-weight: 500;
}
.hours-table .closed {
  color: var(--brass);
  opacity: 0.6;
}
.events-section {
  background: var(--green-mid);
  padding: 5rem 0;
}
.events-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2.5rem;
}
.events-note {
  font-family: var(--font-body);
  color: var(--cream-dim);
  margin: 1.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
}
.events-note a {
  color: var(--brass);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 146, 42, 0.4);
  transition: color 0.2s, border-color 0.2s;
}
.events-note a:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}
.timetable {
  border: 1px solid var(--green-light);
  margin-top: 3rem;
  overflow: hidden;
}
.timetable-header {
  background: var(--charcoal);
  border-bottom: 2px solid var(--brass);
  grid-template-columns: 100px 1fr 1fr 140px;
  gap: 1rem;
  padding: 1rem 2rem;
  display: grid;
}
.timetable-header span {
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  font-size: 0.65rem;
  font-weight: 600;
}
.timetable-row {
  background: var(--green-deep);
  border-bottom: 1px solid var(--green-light);
  grid-template-columns: 100px 1fr 1fr 140px;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  transition: background 0.2s;
  display: grid;
}
.timetable-row:hover {
  background: #c8922a0d;
}
.timetable-row:last-child {
  border-bottom: none;
}
.event-time {
  font-family: var(--font-display);
  color: var(--brass-light);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
}
.event-time small {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-top: 0.2rem;
  font-size: 0.65rem;
  font-weight: 400;
  display: block;
}
.event-name {
  font-family: var(--font-display);
  color: var(--cream);
  font-size: 1.4rem;
  font-weight: 600;
}
.event-name small {
  font-family: var(--font-body);
  color: var(--cream-dim);
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 300;
  display: block;
}
.event-when {
  color: var(--cream-dim);
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.6;
}
.event-badge {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  display: inline-block;
}
.badge-entry {
  background: var(--brass);
  color: var(--green-deep);
}
.badge-free {
  background: var(--green-light);
  color: var(--cream);
  border: 1px solid #c8922a4d;
}
.badge-popup {
  border: 1px solid var(--brass);
  color: var(--brass);
  background: 0 0;
}
.pizza-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.pizza-grid {
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 4rem;
  margin-top: 3rem;
  display: grid;
}
.pizza-img {
  aspect-ratio: 4/5;
  position: relative;
  overflow: hidden;
}
.pizza-img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.pizza-img:before {
  content: "EVERY FRIDAY";
  z-index: 2;
  background: var(--brass);
  color: var(--green-deep);
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  padding: 0.5rem 1.25rem;
  font-size: 0.7rem;
  font-weight: 600;
  position: absolute;
  top: 1.5rem;
  left: -0.5rem;
}
.pizza-text .pizza-lead {
  font-family: var(--font-display);
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
}
.pizza-text p {
  color: var(--cream-dim);
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.9;
}
.pizza-detail {
  border: 1px solid var(--green-light);
  border-left: 3px solid var(--brass);
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  display: flex;
}
.pizza-detail-row {
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 300;
  display: flex;
}
.pizza-detail-row strong {
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
}
.instagram-link {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  display: inline-flex;
}
.instagram-link:hover {
  color: var(--brass-light);
}
.instagram-link svg {
  width: 1rem;
  height: 1rem;
}
.wifi-banner {
  background: var(--green-mid);
  border-top: 1px solid var(--green-light);
  border-bottom: 1px solid var(--green-light);
  text-align: center;
  padding: 3.5rem 2.5rem;
}
.wifi-banner-inner {
  max-width: 640px;
  margin: 0 auto;
}
.wifi-icon {
  width: 3rem;
  height: 3rem;
  color: var(--brass);
  margin: 0 auto 1.5rem;
}
.wifi-banner h2 {
  font-family: var(--font-display);
  color: var(--cream);
  margin: 0 0 0.75rem;
  font-size: 2rem;
  font-weight: 600;
}
.wifi-banner p {
  color: var(--cream-dim);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.7;
}
.wifi-ticket-img {
  max-width: 320px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem auto 0;
  display: block;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.findus-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2.5rem;
}
.findus-grid {
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 4rem;
  margin-top: 3rem;
  display: grid;
}
.contact-block {
  flex-direction: column;
  gap: 2rem;
  display: flex;
}
.contact-item {
  align-items: flex-start;
  gap: 1.25rem;
  display: flex;
}
.contact-item-icon {
  background: var(--green-light);
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brass);
  border: 1px solid #c8922a33;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}
.contact-item-content h4 {
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
}
.contact-item-content p,
.contact-item-content a {
  color: var(--cream-dim);
  margin: 0;
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  text-decoration: none;
}
.contact-item-content a:hover {
  color: var(--cream);
}
.map-frame {
  aspect-ratio: 4/3;
  border: 1px solid var(--green-light);
  background: var(--green-mid);
  width: 100%;
  position: relative;
  overflow: hidden;
}
.map-frame iframe {
  filter: grayscale(30%) contrast(1.1);
  border: none;
  width: 100%;
  height: 100%;
}
.map-frame-label {
  text-align: center;
  background: linear-gradient(#0000, #141f18e6);
  padding: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.footer {
  background: var(--charcoal);
  border-top: 1px solid #2a2a2a;
  padding: 3rem 2.5rem;
}
.footer-inner {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 2.5rem;
  display: grid;
}
.footer-brand h3 {
  font-family: var(--font-display);
  color: var(--cream);
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}
.footer-brand p {
  color: var(--cream-dim);
  margin: 0;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.7;
}
.footer-brand p a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-brand p a:hover {
  color: var(--brass-light);
}
.footer-col h4 {
  font-family: var(--font-body);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 1rem;
  font-size: 0.65rem;
  font-weight: 600;
}
.footer-col ul {
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.footer-col li {
  color: var(--cream-dim);
  font-size: 0.8rem;
  font-weight: 300;
}
.footer-col a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--brass-light);
}
.footer-bottom {
  border-top: 1px solid #2a2a2a;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  display: flex;
}
.footer-bottom p {
  color: #555;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 300;
}
.nav-mobile-toggle {
  cursor: pointer;
  background: 0 0;
  border: none;
  flex-direction: column;
  gap: 4px;
  padding: 4px;
  display: none;
}
.nav-mobile-toggle span {
  background: var(--cream);
  width: 22px;
  height: 1.5px;
  transition: all 0.3s ease;
  display: block;
}
.nav-mobile-toggle.toggle-active span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}
.nav-mobile-toggle.toggle-active span:nth-child(2) {
  opacity: 0;
}
.nav-mobile-toggle.toggle-active span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}
@keyframes fade-up {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-eyebrow {
  animation: 0.6s 0.1s both fade-up;
}
.hero-title {
  animation: 0.6s 0.2s both fade-up;
}
.hero-subtitle {
  animation: 0.6s 0.3s both fade-up;
}
.hero-desc {
  animation: 0.6s 0.4s both fade-up;
}
.hero-cta {
  animation: 0.6s 0.5s both fade-up;
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #141f18fc;
    padding: 2rem;
    gap: 1.5rem;
    text-align: center;
    border-bottom: 1px solid var(--green-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
  .nav-links.nav-active {
    display: flex;
  }
  .nav-mobile-toggle {
    display: flex;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-left {
    padding: 6rem 1.5rem 3rem;
  }
  .hero-right {
    height: 55vw;
    min-height: 280px;
  }
  .hero-right:after {
    background: linear-gradient(
      to bottom,
      var(--green-deep) 0%,
      transparent 30%
    );
  }
  .hero-badge {
    bottom: 1.5rem;
    right: 1rem;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-images {
    order: -1;
  }
  .pizza-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .findus-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-bottom {
    text-align: center;
    flex-direction: column;
    gap: 0.75rem;
  }
  .timetable-header,
  .timetable-row {
    grid-template-rows: auto;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem 1rem;
  }
  .timetable-header span:nth-child(3),
  .timetable-header span:nth-child(4) {
    display: none;
  }
  .timetable-row .event-time {
    grid-row: 1 / span 2;
  }
  .timetable-row .event-name {
    grid-column: 2;
  }
  .timetable-row .event-name small {
    display: block;
  }
  .timetable-row .event-when {
    grid-column: 2;
    margin-top: 0.4rem;
  }
  .timetable-row > div:last-child {
    grid-column: 2;
  }
  .timetable-row .event-badge {
    margin-top: 0.6rem;
  }
  .section {
    padding: 3.5rem 1.5rem;
  }
  .nav {
    padding: 1.25rem 1.5rem;
  }
  .logo-img {
    height: 48px;
  }
  .hero-train {
    display: none;
  }
}
@media (max-width: 600px) {
  .divider,
  .events-inner {
    padding: 0 1.5rem;
  }
  .hero-train {
    width: 60%;
    max-width: 280px;
    top: auto;
    bottom: 1rem;
    left: 50%;
  }
  .pizza-section,
  .findus-section,
  .wifi-banner {
    padding: 3rem 1.5rem;
  }
}
.pizza-media {
  flex-direction: column;
  gap: 0.75rem;
  display: flex;
}
.pizza-logo-img {
  border: 1px solid var(--green-light);
  object-fit: cover;
  width: 100%;
  height: auto;
}
.spud-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9rem 2.5rem 2rem;
}
.spud-grid {
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 4rem;
  margin-top: 2rem;
  display: grid;
}
.spud-poster {
  border: 1px solid var(--green-light);
  box-shadow: 0 8px 24px #0006;
  overflow: hidden;
}
.spud-poster img {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
}
.spud-text .pizza-lead {
  font-family: var(--font-display);
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.6;
}
.spud-text p {
  color: var(--cream-dim);
  margin: 0 0 1rem;
  font-size: 0.95rem;
  line-height: 1.9;
}
.spud-highlight {
  background: var(--brass);
  color: var(--green-deep);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
}
.spud-menu {
  border: 1px solid var(--green-light);
  border-left: 3px solid var(--brass);
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 1.5rem;
  display: flex;
}
.spud-menu-row {
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  font-weight: 300;
  display: flex;
}
.spud-menu-row strong {
  color: var(--cream);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 500;
}
.back-link {
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brass);
  align-items: center;
  gap: 0.6rem;
  margin-top: 2rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
}
.back-link:hover {
  color: var(--brass-light);
}
@media (max-width: 900px) {
  .spud-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .spud-hero {
    padding: 7rem 1.5rem 2rem;
  }
}
