:root {
  --ink: oklch(17% 0.035 22);
  --wine: oklch(24% 0.085 22);
  --wine-2: oklch(30% 0.115 25);
  --tomato: oklch(58% 0.17 34);
  --mustard: oklch(75% 0.145 80);
  --paper: oklch(97% 0.004 80);
  --paper-2: oklch(91% 0.011 54);
  --sage: oklch(56% 0.08 145);
  --muted: oklch(72% 0.018 52);
  --white: #fff;
  --shadow: 0 14px 34px rgba(42, 12, 14, .22);
  --radius: 14px;
  --max: 1160px;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--paper);
  background:
    linear-gradient(180deg, rgba(32, 7, 12, .92), rgba(32, 7, 12, .98)),
    var(--wine);
  font-family: "Libre Franklin", "Aptos", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  opacity: .06;
  background-image: url("assets/wrap-pattern.jpg");
  background-size: 420px;
  mix-blend-mode: screen;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--mustard);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(37, 8, 15, .9);
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 28px));
  min-height: 58px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: .01em;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: var(--paper);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

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

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--paper);
  text-decoration: none;
  font-weight: 750;
}

.nav-links a[aria-current="page"],
.nav-links a:hover {
  background: var(--mustard);
  color: var(--ink);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--tomato);
  color: white;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s var(--ease), background .22s var(--ease);
}

.button:hover {
  transform: translateY(-2px);
  background: oklch(64% 0.18 34);
}

.button.alt {
  background: var(--mustard);
  color: var(--ink);
}

.button.ghost {
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .08);
  color: var(--paper);
}

.hero {
  position: relative;
  min-height: calc(100dvh - 72px);
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--hero-image) center / cover no-repeat;
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(30, 6, 12, .16) 0%, rgba(30, 6, 12, .84) 72%, rgba(30, 6, 12, .98) 100%),
    linear-gradient(90deg, rgba(30, 6, 12, .86), rgba(30, 6, 12, .12));
}

.hero-inner,
.section,
.footer-inner {
  width: min(var(--max), calc(100% - 28px));
  margin-inline: auto;
}

.hero-inner {
  padding: clamp(56px, 10vw, 108px) 0 116px;
}

.crumb {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(0, 0, 0, .22);
  color: var(--paper);
  font-size: .86rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: .96;
  text-wrap: balance;
}

h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 13vw, 6rem);
  letter-spacing: -.035em;
}

h2 {
  max-width: 760px;
  color: var(--paper);
  font-size: clamp(2.2rem, 8vw, 4.5rem);
  letter-spacing: -.03em;
}

h3 {
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.lead {
  max-width: 660px;
  margin: 22px 0 0;
  color: oklch(92% 0.012 68);
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  line-height: 1.45;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.quick-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(var(--max), calc(100% - 28px));
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.quick-item {
  padding: 18px;
  border-right: 1px solid oklch(82% 0.02 60);
}

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

.quick-item strong {
  display: block;
  font-size: 1rem;
}

.quick-item span {
  color: oklch(38% 0.035 34);
  font-size: .95rem;
}

.section {
  padding: clamp(72px, 13vw, 126px) 0;
}

.section.light {
  width: 100%;
  max-width: none;
  padding-inline: max(14px, calc((100% - var(--max)) / 2));
  background: var(--paper);
  color: var(--ink);
}

.section.light h2,
.section.light h3 {
  color: var(--ink);
}

.section.light .lead {
  color: oklch(33% 0.032 35);
}

.section.light .button.ghost {
  border-color: oklch(32% 0.04 34 / .28);
  background: transparent;
  color: var(--ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .86fr);
  gap: clamp(28px, 7vw, 72px);
  align-items: center;
}

.photo-stack {
  display: grid;
  gap: 12px;
}

.photo-stack img,
.feature-photo,
.tile img,
.story-photo img,
.contact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-stack img:first-child {
  aspect-ratio: 4 / 5;
}

.photo-stack img:last-child {
  width: 78%;
  aspect-ratio: 1;
  margin-left: auto;
  margin-top: -30%;
  border: 8px solid var(--paper);
  box-shadow: var(--shadow);
}

.stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--mustard);
  font-weight: 900;
}

.stamp::before {
  content: "";
  width: 34px;
  height: 2px;
  background: currentColor;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.tile {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
}

.tile img {
  position: absolute;
  inset: 0;
  transition: transform .6s var(--ease);
}

.tile:hover img {
  transform: scale(1.05);
}

.tile div {
  position: absolute;
  inset: auto 0 0;
  padding: 88px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .84));
}

.tile p {
  margin: 8px 0 0;
  color: oklch(91% 0.01 70);
}

.route-band {
  background: var(--tomato);
  color: white;
}

.route-band .section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding-block: 42px;
}

.route-band h2 {
  max-width: 860px;
  color: white;
  font-size: clamp(2rem, 8vw, 4.7rem);
}

.page-hero {
  min-height: 58dvh;
  position: relative;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.page-hero .hero-inner {
  padding-bottom: 72px;
}

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(24px, 7vw, 70px);
  align-items: start;
}

.story-copy p {
  max-width: 68ch;
  color: oklch(35% 0.028 35);
  font-size: 1.08rem;
}

.story-photo {
  position: sticky;
  top: 98px;
}

.story-photo img {
  aspect-ratio: 4 / 5;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.fact {
  padding: 18px;
  border-radius: 12px;
  background: oklch(93% 0.012 62);
}

.fact strong {
  display: block;
  font-size: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: clamp(26px, 7vw, 70px);
  align-items: start;
}

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

.contact-card {
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .08);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-size: .93rem;
}

.contact-card a {
  display: inline-block;
  margin-top: 3px;
  color: var(--paper);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-weight: 850;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid oklch(75% 0.025 44);
  border-radius: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

.field textarea {
  min-height: 126px;
  resize: vertical;
}

.map-link {
  min-height: 240px;
  display: grid;
  place-items: center;
  margin-top: 18px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(rgba(42, 9, 15, .32), rgba(42, 9, 15, .32)),
    url("assets/store-angle.webp") center / cover;
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  text-decoration: none;
}

.site-footer {
  padding: 44px 0 96px;
  background: oklch(14% 0.04 22);
  color: var(--paper);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-inner p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: var(--paper);
  text-decoration-color: rgba(255, 255, 255, .35);
  text-underline-offset: 4px;
}

.mobile-actions {
  display: none;
}

@media (max-width: 820px) {
  .nav-shell {
    min-height: 52px;
  }

  .brand {
    font-size: 1rem;
  }

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

  .nav-toggle {
    display: block;
    width: 38px;
    height: 38px;
  }

  .nav-links {
    position: fixed;
    top: 58px;
    right: 14px;
    left: 14px;
    display: grid;
    padding: 10px;
    border-radius: var(--radius);
    background: var(--paper);
    color: var(--ink);
    box-shadow: var(--shadow);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s var(--ease), transform .22s var(--ease);
  }

  .nav-links a {
    color: var(--ink);
    min-height: 42px;
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero-inner {
    padding-bottom: 104px;
  }

  .quick-strip,
  .split,
  .menu-grid,
  .route-band .section,
  .story-grid,
  .facts,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .quick-strip {
    margin-top: -34px;
  }

  .quick-item {
    border-right: 0;
    border-bottom: 1px solid oklch(82% 0.02 60);
  }

  .quick-item:last-child {
    border-bottom: 0;
  }

  .tile {
    min-height: 360px;
  }

  .story-photo {
    position: static;
  }

  .mobile-actions {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 40;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(26, 6, 10, .9);
    backdrop-filter: blur(14px);
  }

  .mobile-actions .button {
    min-height: 46px;
    padding: 10px 12px;
  }
}

@media (max-width: 460px) {
  h1 {
    font-size: clamp(3rem, 17vw, 4.8rem);
  }

  .brand span {
    max-width: 128px;
    line-height: 1.05;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
