:root {
  --ink: #17120e;
  --black: #0e0c0a;
  --cream: #f7efe0;
  --cream-strong: #fff8ec;
  --menu-paper: #d9cdbc;
  --sand: #d5b889;
  --tan: #9f7847;
  --rust: #af4e2a;
  --sage: #7e8a6c;
  --line: rgba(23, 18, 14, 0.18);
  --white-line: rgba(255, 248, 236, 0.28);
  --shadow: 0 18px 42px rgba(23, 18, 14, 0.14);
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Avenir Next", "Inter", "SF Pro Display", "Segoe UI", Arial, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  padding: 0.55rem clamp(1rem, 4vw, 2.4rem);
  background: rgba(247, 239, 224, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
}

.nav-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(23, 18, 14, 0.12));
}

.nav-wordmark {
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo-badge {
  display: grid;
  place-items: center;
  width: 118px;
  aspect-ratio: 1;
  padding: 0;
  background: transparent;
  border: 0;
  filter: drop-shadow(0 10px 18px rgba(23, 18, 14, 0.12));
}

.brand-logo {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.75rem, 2vw, 1.45rem);
  color: rgba(23, 18, 14, 0.74);
  font-size: 0.9rem;
  font-weight: 650;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 0.3rem 0;
}

.nav-action {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0.65rem 0.9rem !important;
  color: var(--cream-strong);
  background: var(--ink);
  border: 1px solid var(--ink);
  line-height: 1;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: min(680px, calc(100svh - 72px));
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 12, 10, 0.78), rgba(14, 12, 10, 0.36) 48%, rgba(14, 12, 10, 0.06)),
    linear-gradient(0deg, rgba(14, 12, 10, 0.6), rgba(14, 12, 10, 0.04) 56%);
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 2rem), 620px);
  margin-left: clamp(1.25rem, 6vw, 4.5rem);
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 3.6rem;
  color: var(--cream-strong);
}

.hero-brand-logo {
  width: clamp(118px, 12vw, 168px);
  height: auto;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 14px 28px rgba(14, 12, 10, 0.32));
}

.hero-kicker,
.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-kicker {
  color: var(--sand);
}

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

h1,
h2,
h3 {
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 750;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.7rem, 6.1vw, 5.05rem);
}

h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.4vw, 3.35rem);
}

h3 {
  font-size: 1.42rem;
}

.hero-line {
  max-width: 30rem;
  margin-bottom: 1.7rem;
  color: rgba(255, 248, 236, 0.9);
  font-size: clamp(1.12rem, 1.7vw, 1.46rem);
  font-weight: 600;
}

.hero-actions,
.order-section {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.button,
.inquiry-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1.08rem;
  border: 1.5px solid currentColor;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.button-primary,
.inquiry-form button {
  color: var(--ink);
  background: var(--cream-strong);
}

.button-secondary {
  color: var(--cream-strong);
  background: rgba(255, 248, 236, 0.08);
}

.hero .button-secondary {
  backdrop-filter: blur(10px);
}

.ticker {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  justify-content: center;
  padding: 0.85rem 1rem;
  color: rgba(23, 18, 14, 0.72);
  background: #fff6e7;
  border-bottom: 1px solid var(--line);
}

.ticker span {
  flex: 0 0 auto;
  min-width: auto;
  padding: 0;
  border-right: 0;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 650;
}

.ticker span + span::before {
  content: "/";
  margin-right: 0.55rem;
  color: var(--tan);
}

.social-strip {
  width: min(calc(100% - 2rem), var(--container));
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  margin: 1rem auto 0;
  padding: 1rem 1.15rem;
  background: var(--ink);
  color: var(--cream-strong);
  box-shadow: 0 14px 32px rgba(23, 18, 14, 0.12);
}

.social-strip div {
  display: grid;
  gap: 0.12rem;
}

.social-strip span,
.social-strip a {
  color: var(--sand);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.social-strip strong {
  font-size: 1.08rem;
}

.social-strip p {
  margin: 0;
  color: rgba(255, 248, 236, 0.78);
}

.social-strip a {
  padding: 0.68rem 0.8rem;
  border: 1px solid rgba(255, 248, 236, 0.28);
  color: var(--cream-strong);
  text-align: center;
}

.insta-feed {
  width: min(calc(100% - 2rem), var(--container));
  margin: clamp(2rem, 5vw, 3.5rem) auto 0;
}

.insta-feed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.insta-feed-heading h2 {
  max-width: 12ch;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.insta-feed-heading a {
  padding: 0.72rem 0.86rem;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--cream-strong);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.insta-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
}

.insta-card {
  position: relative;
  min-height: 285px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream-strong);
  background: var(--ink);
  border: 1px solid var(--line);
  scroll-snap-align: start;
}

.insta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.insta-logo-card img {
  width: 85%;
  height: 85%;
  inset: 7.5%;
  object-fit: contain;
  background: #fff;
}

.insta-card-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14, 12, 10, 0.7), transparent 58%);
}

.insta-card span,
.insta-card strong {
  position: relative;
  z-index: 1;
}

.insta-card-photo span {
  padding: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insta-card-type {
  align-content: end;
  align-items: end;
  display: grid;
  gap: 0.4rem;
  padding: 1.15rem;
  background:
    linear-gradient(rgba(255, 248, 236, 0.08) 1px, transparent 1px),
    var(--ink);
  background-size: 100% 2rem;
}

.insta-card-type strong {
  max-width: 7ch;
  font-size: 2.35rem;
  line-height: 0.92;
}

.insta-card-type span {
  color: rgba(255, 248, 236, 0.76);
  font-weight: 700;
}

.tan-card {
  color: var(--ink);
  background:
    linear-gradient(rgba(23, 18, 14, 0.05) 1px, transparent 1px),
    var(--menu-paper);
  background-size: 100% 2rem;
}

.tan-card span {
  color: rgba(23, 18, 14, 0.68);
}

.insta-card:hover img {
  transform: scale(1.04);
}

.section,
.split-section,
.story-section,
.inquiry-section,
.visit-section,
.order-section,
.site-footer {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section,
.split-section,
.story-section,
.inquiry-section,
.visit-section,
.order-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-note {
  max-width: 28rem;
  margin-bottom: 0;
  color: rgba(23, 18, 14, 0.66);
  font-size: 1.02rem;
}

.section-heading .eyebrow,
.split-copy .eyebrow,
.story-copy .eyebrow,
.visit-panel .eyebrow,
.order-section .eyebrow {
  color: var(--rust);
}

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

.menu-panel {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: clamp(1.15rem, 3vw, 1.7rem);
  background:
    linear-gradient(rgba(23, 18, 14, 0.035) 1px, transparent 1px),
    var(--menu-paper);
  background-size: 100% 2.15rem;
  border: 1px solid var(--line);
  box-shadow: 0 12px 28px rgba(23, 18, 14, 0.08);
}

.menu-panel-wide {
  grid-column: 1 / -1;
}

.feature-menu {
  position: relative;
  overflow: hidden;
}

.feature-menu::after {
  content: "Dirty Soda";
  position: absolute;
  right: -1.8rem;
  bottom: 1.5rem;
  color: rgba(23, 18, 14, 0.06);
  font-size: clamp(3rem, 10vw, 7rem);
  font-weight: 900;
  line-height: 0.8;
  text-transform: uppercase;
  transform: rotate(-8deg);
  pointer-events: none;
}

.menu-panel h3 {
  margin-bottom: 0.15rem;
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-head,
.price-list div {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) repeat(3, minmax(54px, auto));
  gap: 0.75rem;
  align-items: baseline;
}

.price-head {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(23, 18, 14, 0.26);
  color: rgba(23, 18, 14, 0.64);
  font-family: "Courier New", Courier, monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.price-list {
  display: grid;
  gap: 0.44rem;
  margin: 0;
}

.price-list div {
  font-family: "Courier New", Courier, monospace;
  font-size: clamp(0.95rem, 1.8vw, 1.16rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.price-list dd {
  text-align: right;
}

.dirty-soda {
  position: relative;
  z-index: 1;
  padding: 0.36rem 0.45rem;
  background: rgba(255, 248, 236, 0.38);
  border: 1px solid rgba(23, 18, 14, 0.14);
}

.menu-note {
  margin: 0.45rem 0 0;
  color: rgba(23, 18, 14, 0.66);
  font-size: 0.95rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  border-top: 1px solid var(--line);
}

.split-copy {
  position: sticky;
  top: 120px;
}

.split-copy p:last-child,
.story-copy p,
.order-section p {
  max-width: 40rem;
  color: rgba(23, 18, 14, 0.72);
  font-size: 1.13rem;
}

.service-list {
  display: grid;
  gap: 0.9rem;
  border: 0;
}

.service-item {
  display: grid;
  gap: 0.75rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--cream-strong);
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(23, 18, 14, 0.07);
}

.service-item:last-child {
  border-bottom: 1px solid var(--line);
}

.service-item span {
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-item strong {
  max-width: 30rem;
  font-size: clamp(1.25rem, 2.45vw, 2.05rem);
  line-height: 1.08;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  min-height: 560px;
  border: 1px solid var(--line);
  padding: 0;
  background: var(--cream-strong);
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 5vw, 4rem);
  border-left: 1px solid var(--line);
}

.inquiry-section {
  border-bottom: 1px solid var(--line);
}

.inquiry-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  background: var(--cream-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.inquiry-form p {
  max-width: 32rem;
  margin-bottom: 0;
  color: rgba(23, 18, 14, 0.68);
}

.inquiry-form h3 {
  margin-bottom: 0.25rem;
}

.inquiry-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.85rem;
  color: var(--ink);
  background: var(--cream);
}

.compact-fields {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(180px, 1fr) auto;
  gap: 0.8rem;
  align-items: end;
  width: min(100%, 620px);
}

.inquiry-form button {
  justify-self: start;
  border-radius: 0;
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 1.25rem;
}

.visit-panel,
.map-panel {
  min-height: 430px;
  border: 1px solid var(--line);
}

.visit-panel {
  padding: clamp(1.25rem, 4vw, 2.5rem);
  background: var(--cream-strong);
}

.visit-panel h2 {
  max-width: 8ch;
}

.visit-details {
  display: grid;
  gap: 1rem;
  margin: 2rem 0 0;
}

.visit-details div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.visit-details dt {
  font-weight: 800;
}

.visit-details dd {
  margin: 0.2rem 0 0;
  color: rgba(23, 18, 14, 0.72);
}

.map-panel {
  position: relative;
  overflow: hidden;
  background: #d7c5a4;
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
  filter: saturate(0.9) contrast(0.96);
}

.map-link {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.72rem 0.86rem;
  color: var(--cream-strong);
  background: var(--ink);
  border: 1px solid rgba(255, 248, 236, 0.28);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-section {
  justify-content: space-between;
  padding-top: 1rem;
}

.order-section h2 {
  max-width: 10ch;
}

.order-section .button-primary {
  color: var(--cream-strong);
  background: var(--ink);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
}

.footer-info {
  display: grid;
  justify-items: end;
  gap: 0.8rem;
  margin-left: auto;
}

.site-footer p {
  max-width: 24rem;
  margin-bottom: 0;
  color: rgba(23, 18, 14, 0.72);
  text-align: right;
}

.site-footer p span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(23, 18, 14, 0.5);
  font-size: 0.88rem;
}

.footer-social {
  display: flex;
  gap: 0.55rem;
  justify-content: flex-end;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  border: 1px solid rgba(23, 18, 14, 0.24);
  background: transparent;
}

.footer-social svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.footer-social a:last-child svg {
  fill: currentColor;
  stroke: none;
}

@media (prefers-reduced-motion: reduce) {
  .insta-card img {
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .social-strip {
    grid-template-columns: 1fr;
  }

  .social-strip a {
    justify-self: start;
  }

  .insta-feed-heading {
    align-items: start;
    flex-direction: column;
  }

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

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

  .split-copy {
    position: static;
  }

  .story-copy {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .inquiry-form {
    align-items: stretch;
    flex-direction: column;
  }

  .compact-fields {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .story-media {
    min-height: 360px;
  }
}

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

  .site-nav {
    gap: 0.8rem;
    font-size: 0.86rem;
  }

  .nav-action {
    width: 100%;
    text-align: center;
  }

  .hero {
    min-height: min(590px, calc(100svh - 112px));
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(14, 12, 10, 0.86), rgba(14, 12, 10, 0.22)),
      linear-gradient(90deg, rgba(14, 12, 10, 0.58), rgba(14, 12, 10, 0.22));
  }

  h1 {
    max-width: 9.5ch;
    font-size: clamp(2.35rem, 10vw, 3.45rem);
  }

  .hero-line {
    max-width: 22rem;
  }

  h2 {
    max-width: 11ch;
  }

  .section-heading {
    display: block;
  }

  .insta-scroll {
    grid-auto-columns: minmax(210px, 78vw);
  }

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

  .menu-panel-wide {
    grid-column: auto;
  }

  .price-head,
  .price-list div {
    grid-template-columns: minmax(120px, 1fr) repeat(3, minmax(42px, auto));
    gap: 0.45rem;
  }

  .visit-panel,
  .map-panel {
    min-height: 340px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer p {
    text-align: left;
  }

  .footer-info {
    justify-items: start;
    margin-left: 0;
  }

  .footer-social {
    justify-content: flex-start;
  }
}
