:root {
  --ink: #1f160f;
  --muted: #71685f;
  --line: #eadcc8;
  --paper: #f5ecdd;
  --cream: #fffaf0;
  --flour: #fff8ea;
  --green: #127a58;
  --gold: #f7c948;
  --amber: #d9922e;
  --red: #a7472d;
  --navy: #12100e;
  --charcoal: #18130f;
  --corrugated: rgba(70, 50, 32, 0.06);
  --shadow: 0 24px 70px rgba(58, 36, 16, 0.16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 0%, rgba(242, 183, 5, 0.12), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 18px, var(--corrugated) 18px 20px),
    linear-gradient(135deg, #fff8ea 0%, var(--paper) 42%, #eadbc3 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.5), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(247, 201, 72, 0.12), transparent 24%);
}

body > * {
  position: relative;
  z-index: 1;
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(18px, 4vw, 52px);
  background: rgba(18, 16, 14, 0.88);
  border-bottom: 1px solid rgba(247, 201, 72, 0.26);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(18, 16, 14, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.08);
  border: 1px solid rgba(247, 201, 72, 0.22);
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
}

.brand img { width: 100%; height: 100%; display: block; object-fit: contain; }
.brand strong, .brand small { display: block; }
.brand strong { color: #fffaf0; font-size: 1.05rem; }
.brand small { color: #d8c7ad; margin-top: 2px; }

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  flex-wrap: wrap;
  justify-content: flex-end;
}

nav a {
  text-decoration: none;
  color: #e7d9c6;
  font-weight: 750;
  font-size: 0.94rem;
  padding: 9px 13px;
  border: 1px solid rgba(255, 250, 240, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

nav a:hover {
  color: #1d160f;
  background: var(--gold);
  border-color: var(--gold);
}

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #11100e;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 14, 0.94), rgba(18, 16, 14, 0.52), rgba(18, 16, 14, 0.14)),
    linear-gradient(0deg, rgba(18, 16, 14, 0.58), transparent 34%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 34px),
    linear-gradient(180deg, transparent 0%, rgba(247, 201, 72, 0.09) 100%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(32px, 6vw, 76px);
  color: #fff;
  margin-bottom: clamp(42px, 8vh, 92px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.hero .eyebrow {
  color: #ffe39b;
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 201, 72, 0.36);
  background: rgba(18, 16, 14, 0.44);
}

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

h1 {
  font-size: clamp(3.1rem, 7vw, 6.8rem);
  line-height: 0.9;
  margin-bottom: 22px;
  max-width: 760px;
  letter-spacing: -0.02em;
  text-shadow: 0 16px 46px rgba(0, 0, 0, 0.45);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  margin-bottom: 16px;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.62;
}

.hero p {
  color: #e7eef8;
  font-size: clamp(1.06rem, 2vw, 1.3rem);
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffecc0;
  border: 1px solid rgba(247, 201, 72, 0.28);
  background: rgba(18, 16, 14, 0.46);
  font-size: 0.88rem;
  font-weight: 850;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
}

.button, .order-form button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 850;
  border: 1px solid transparent;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(139, 74, 25, 0.12);
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.button.primary, .order-form button {
  background: linear-gradient(135deg, #fff0b8, var(--gold) 42%, #d98b1e);
  color: #1e1600;
  border-color: rgba(255, 227, 155, 0.85);
}

.button:hover, .order-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(139, 74, 25, 0.16);
}

.button.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.contact-actions .button.light {
  color: var(--ink);
  border-color: rgba(16, 24, 40, 0.2);
  background: #fff;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(18px, 4vw, 52px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

.band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.94), rgba(255, 248, 234, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(139, 74, 25, 0.045) 18px 20px);
  border-bottom: 1px solid var(--line);
}

.intro p:last-child {
  font-size: 1.12rem;
}

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

.store-feature {
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 0;
  border-radius: 8px;
  color: var(--ink);
  position: relative;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(36, 22, 12, 0.24);
  border: 1px solid rgba(247, 201, 72, 0.22);
  background:
    linear-gradient(180deg, #fffdf8, #fff8ea);
}

.store-feature::before {
  display: none;
}

.counter-store::before {
  display: none;
}

.store-feature > * {
  position: static;
}

.store-image {
  position: static;
  width: 100%;
  height: clamp(260px, 34vw, 420px);
  object-fit: cover;
  transform: none;
  border-bottom: 1px solid rgba(139, 74, 25, 0.16);
}

.store-feature > div,
.store-feature > ul {
  padding-inline: clamp(20px, 3vw, 34px);
}

.store-feature > div {
  padding-top: 24px;
}

.store-feature > ul {
  padding-bottom: 28px;
}

.store-logo {
  display: block;
  width: min(150px, 52vw);
  height: auto;
  margin: 12px 0;
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.42);
  border: 1px solid rgba(247, 201, 72, 0.28);
}

.store-logo.wide-logo {
  width: min(230px, 64vw);
}

.main-store .store-image {
  object-position: center;
}

.counter-store .store-image {
  object-position: center;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(247, 201, 72, 0.92);
  color: #24160b;
  font-weight: 850;
  margin-bottom: 14px;
}

.store-feature p, .store-feature li {
  color: var(--muted);
}

.store-feature ul {
  margin: 8px 0 0;
  padding-left: calc(clamp(20px, 3vw, 34px) + 18px);
  line-height: 1.6;
}

.menu-section {
  background:
    radial-gradient(circle at 86% 12%, rgba(247, 201, 72, 0.12), transparent 26%),
    var(--cream);
  border-block: 1px solid var(--line);
}

.menu-grid, .article-grid, .promise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.menu-grid article, .article-grid article, .promise-grid p, .order-form {
  background:
    linear-gradient(180deg, #fffdf8 0%, #fff8ea 100%);
  border: 1px solid rgba(139, 74, 25, 0.15);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(87, 53, 22, 0.09);
}

.menu-grid article,
.article-grid article {
  position: relative;
  overflow: hidden;
}

.menu-grid article::before,
.article-grid article::before {
  content: "";
  width: 42px;
  height: 42px;
  display: block;
  margin-bottom: 16px;
  border-radius: 8px;
  background-color: #f8e5c4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238b4a19' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13c0-5 4-9 9-9 4 0 7 3 7 7 0 5-6 8-13 8-2 0-3-2-3-6Z'/%3E%3Cpath d='M8 13c3 1 6 1 9 0'/%3E%3Cpath d='M10 7c1 2 0 4-2 5M14 6c1 3 0 5-3 6'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 25px;
  border: 1px solid rgba(139, 74, 25, 0.14);
}

.menu-grid article:hover,
.article-grid article:hover {
  border-color: rgba(210, 139, 24, 0.55);
  box-shadow: 0 16px 42px rgba(139, 74, 25, 0.12);
}

.menu-grid span, .article-grid span {
  color: var(--red);
  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.story-section {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 240, 0.86)),
    repeating-linear-gradient(90deg, transparent 0 20px, rgba(18, 16, 14, 0.035) 20px 22px);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.story-copy {
  position: sticky;
  top: 104px;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.timeline li {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--gold);
  border-radius: 8px;
  background: var(--flour);
}

.timeline time {
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.timeline p { margin-bottom: 0; }

.outlet-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(247, 201, 72, 0.18), transparent 28%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.045) 18px 20px),
    linear-gradient(135deg, #12100e, #2d1d12);
  color: #fff;
}

.outlet-section .eyebrow {
  color: var(--gold);
}

.outlet-section h2,
.outlet-section h3 {
  color: #fff;
}

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

.outlet-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
}

.outlet-grid p,
.outlet-grid li {
  color: #dce6f3;
}

.outlet-grid ul {
  margin: 12px 0 0;
  padding-left: 18px;
  line-height: 1.62;
}

.articles-section {
  background: var(--paper);
}

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

.article-grid article {
  min-height: 290px;
  display: grid;
  align-content: start;
}

.article-grid a {
  color: var(--green);
  font-weight: 900;
  text-decoration: none;
  margin-top: 8px;
}

.promise-section {
  padding-top: 0;
}

.promise {
  background:
    radial-gradient(circle at 12% 16%, rgba(247, 201, 72, 0.16), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 18px, rgba(255, 255, 255, 0.05) 18px 20px),
    linear-gradient(135deg, #12100e, #3d2414);
  color: #fff;
  border-radius: 8px;
  padding: clamp(26px, 5vw, 56px);
  box-shadow: var(--shadow);
}

.promise h2 {
  max-width: 700px;
}

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

.promise-grid p {
  margin: 0;
  color: #dce6f3;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.promise-grid strong {
  color: var(--gold);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: start;
  background: #fff;
  border-top: 1px solid var(--line);
}

.contact-copy {
  max-width: 720px;
}

.branch-directory {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.branch-directory div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--flour);
}

.branch-directory img {
  width: min(280px, 100%);
  max-height: 110px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
  border-radius: 6px;
  background: #101828;
}

.branch-directory strong,
.branch-directory span {
  display: block;
}

.branch-directory span {
  color: var(--muted);
  line-height: 1.45;
  margin-top: 5px;
}

.order-form {
  display: grid;
  gap: 16px;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 850;
}

.order-form input, .order-form select, .order-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 46px;
  padding: 0 12px;
  font: inherit;
  color: var(--ink);
  background: #fffdf8;
}

.order-form textarea {
  min-height: 128px;
  padding-top: 12px;
  resize: vertical;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 28px clamp(18px, 4vw, 52px);
  background: var(--navy);
  color: #fff;
}

footer span {
  color: #cbd5e1;
}

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

@media (max-width: 1050px) {
  .site-header {
    align-items: flex-start;
    display: grid;
  }

  nav { justify-content: flex-start; }

  .band, .store-grid, .story-layout, .contact-section {
    grid-template-columns: 1fr;
  }

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

  .article-grid, .outlet-grid, .promise-grid {
    grid-template-columns: 1fr;
  }

  .story-copy {
    position: static;
  }
}

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

  nav {
    gap: 10px;
  }

  nav a {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 10px;
    background: #fff;
  }

  .hero {
    min-height: 86vh;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(16, 24, 40, 0.9), rgba(16, 24, 40, 0.25));
  }

  .hero-copy {
    padding: 24px 18px 56px;
  }

  h1 {
    font-size: clamp(2.6rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }

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

  .store-feature {
    min-height: 360px;
  }
}
