:root {
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --ink: #241e1b;
  --muted: #6d625a;
  --red: #c92206;
  --line: #ded7cc;
  --sand: #e9dfcf;
  --dark: #251d19;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  flex-shrink: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  font-weight: 750;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(3.3rem, 6.8vw, 6.6rem);
}
h2 {
  font-size: clamp(2.25rem, 4vw, 3.7rem);
}
h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}
em {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: normal;
}
p {
  color: var(--muted);
}
address {
  font-style: normal;
}
button {
  border: 0;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 5px;
}
.wrap {
  width: min(1320px, calc(100% - 112px));
  margin-inline: auto;
}
.eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--red);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 23px;
}
.small-line {
  display: inline-block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  background: var(--red);
  color: white;
  padding: 16px 23px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  min-height: 54px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button svg {
  width: 20px;
  height: 20px;
}
.button:hover {
  background: #a61d00;
  transform: translateY(-2px);
}
.button.light {
  background: var(--paper);
  color: var(--red);
}
.button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  padding-block: 12px;
}
.text-link svg {
  width: 19px;
  height: 19px;
  transition: transform 0.2s;
}
.text-link:hover svg {
  transform: translateX(4px);
}
.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 15px;
  background: var(--paper);
  z-index: 200;
}
.skip-link:focus {
  top: 12px;
}
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  width: min(1440px, calc(100% - 80px));
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: auto;
}
.brand img {
  width: 154px;
  height: 64px;
  object-fit: contain;
}
.desktop-nav {
  display: flex;
  gap: 27px;
}
.desktop-nav a {
  font-size: 0.77rem;
  font-weight: 600;
  padding-block: 14px;
  position: relative;
}
.desktop-nav a[aria-current="page"] {
  color: var(--red);
}
.desktop-nav a[aria-current="page"]:after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 15px;
  height: 2px;
  background: var(--red);
}
.header-cta {
  min-height: 46px;
  padding: 11px 20px;
}
.menu-toggle {
  display: none;
  background: transparent;
  padding: 12px;
  color: var(--ink);
}
.mobile-dialog {
  border: 0;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100dvh;
  margin: 0;
  padding: 24px;
  background: var(--cream);
  color: var(--ink);
}
.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}
.mobile-dialog nav a {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: clamp(1.5rem, 5vh, 2.5rem);
  font-weight: 700;
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.mobile-dialog nav a span {
  font-size: 0.7rem;
  color: var(--red);
}
.mobile-dialog nav a svg {
  margin-left: auto;
}
.mobile-dialog nav {
  margin-bottom: 24px;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.06fr;
  min-height: 690px;
  align-items: center;
  padding-block: 58px 48px;
  gap: 12px;
}
.hero-copy {
  position: relative;
  z-index: 2;
}
.hero h1 {
  line-height: 0.98;
  letter-spacing: -0.062em;
  margin-bottom: 26px;
}
.hero h1 em {
  color: var(--red);
  letter-spacing: -0.06em;
  font-size: 1.05em;
}
.hero-copy > p:not(.eyebrow) {
  max-width: 420px;
  font-size: 0.91rem;
  line-height: 1.85;
  margin-bottom: 28px;
}
.hero-footnote {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 43px;
  font-size: 0.68rem;
  line-height: 1.6;
  color: var(--muted);
}
.hero-footnote strong {
  font-weight: 500;
  color: var(--ink);
}
.tiny-star {
  color: var(--red);
  font-size: 37px;
  line-height: 1;
}
.hero-vertical {
  position: absolute;
  top: 15%;
  right: -22px;
  writing-mode: vertical-rl;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.21em;
  z-index: 3;
}
.round-stamp {
  position: absolute;
  top: 3%;
  right: 8%;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transform: rotate(12deg);
  z-index: 3;
  outline: 1px solid var(--red);
  outline-offset: 5px;
}
.round-stamp span {
  font-size: 0.55rem;
  font-weight: bold;
  letter-spacing: 0.12em;
}
.round-stamp svg {
  width: 32px;
  height: 32px;
}
.brand-strip {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 38px;
  white-space: nowrap;
  overflow: hidden;
  background: var(--red);
  color: white;
  padding: 18px 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.story-intro {
  padding-block: 110px;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
}
.story-intro > .eyebrow {
  padding-top: 12px;
  align-self: start;
}
.story-intro h2 {
  font-size: clamp(2.5rem, 4.5vw, 4.3rem);
}
.story-intro h2 em {
  color: var(--red);
}
.story-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 52px;
  margin-top: 33px;
}
.story-columns p {
  font-size: 0.9rem;
}
.story-columns .text-link {
  margin-top: 15px;
}
.featured {
  padding-block: 10px 65px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 38px;
}
.section-head .eyebrow {
  margin-bottom: 17px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px 28px;
}
.product-photo {
  position: relative;
  background: #eee8dd;
  overflow: hidden;
}
.product-photo img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform 0.4s;
}
.product:hover img {
  transform: scale(1.04);
}
.product-number {
  position: absolute;
  top: 16px;
  left: 18px;
  font-size: 0.63rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.product-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}
.product-title h3 {
  font-size: 1.07rem;
  line-height: 1.3;
}
.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--red);
  white-space: nowrap;
}
.product > p {
  font-size: 0.78rem;
  line-height: 1.7;
  margin-top: 11px;
  max-width: 95%;
}
.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding-block: 44px 65px;
  border-top: 1px solid var(--line);
}
.values article {
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.values article:last-child {
  border-right: 0;
}
.values svg {
  color: var(--red);
  width: 29px;
  height: 29px;
  margin-bottom: 19px;
}
.values h3 {
  font-size: 1.02rem;
  margin-bottom: 9px;
}
.values p {
  font-size: 0.78rem;
  max-width: 200px;
}
.editorial {
  background: var(--dark);
  color: var(--cream);
  padding-block: 70px;
}
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 90px;
}
.editorial-photo {
  background: var(--cream);
  position: relative;
}
.editorial-photo img {
  mix-blend-mode: multiply;
  aspect-ratio: 1.04;
  object-fit: cover;
}
.editorial-photo > span {
  position: absolute;
  bottom: 20px;
  left: 24px;
  font-size: 0.58rem;
  color: var(--ink);
  letter-spacing: 0.17em;
}
.editorial-copy .eyebrow {
  color: #ef9d7c;
}
.editorial-copy h2 {
  font-size: clamp(2.5rem, 4.4vw, 4.1rem);
  margin-bottom: 30px;
}
.editorial-copy h2 em {
  color: #f1b492;
}
.editorial-copy > p:not(.eyebrow) {
  color: #c6bfb7;
  font-size: 0.86rem;
  margin-bottom: 20px;
  max-width: 390px;
}
.editorial-copy .text-link {
  margin-top: 8px;
}
.branch-section {
  padding-block: 100px;
}
.branch-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.branch-card h2 {
  font-size: 2.65rem;
  margin-bottom: 23px;
}
.branch-card > div > p:not(.eyebrow) {
  font-size: 0.85rem;
  margin-bottom: 25px;
}
.branch-card address {
  font-size: 0.86rem;
  max-width: 330px;
  margin-bottom: 21px;
}
.branch-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.8rem;
  margin-bottom: 30px;
}
.branch-info > a,
.branch-info > span {
  display: flex;
  gap: 10px;
  align-items: center;
}
.branch-info svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}
.location-art {
  min-height: 350px;
  background: #e9e1d4;
  position: relative;
  overflow: hidden;
}
.location-art:before,
.location-art:after {
  content: "";
  position: absolute;
  background: var(--cream);
  width: 150%;
  height: 35px;
  transform: rotate(-28deg);
  left: -20%;
  top: 40%;
}
.location-art:after {
  transform: rotate(63deg);
  top: 20%;
  height: 20px;
}
.street {
  position: absolute;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: #716451;
  z-index: 1;
}
.street-a {
  bottom: 37%;
  left: 3%;
  transform: rotate(-28deg);
}
.street-b {
  top: 20%;
  right: 15%;
}
.location-marker {
  position: absolute;
  z-index: 3;
  top: 31%;
  left: 40%;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.location-marker svg {
  width: 52px;
  height: 52px;
  color: var(--red);
  fill: var(--cream);
}
.location-marker span {
  background: var(--dark);
  color: white;
  font-size: 0.7rem;
  line-height: 1.4;
  text-align: center;
  padding: 12px 18px;
  margin-top: 7px;
}
.map-caption {
  position: absolute;
  bottom: 20px;
  left: 25px;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}
.franchise-band {
  background: var(--red);
  color: white;
  padding-block: 54px;
}
.franchise-band > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}
.franchise-band .eyebrow {
  color: white;
  opacity: 0.85;
  margin-bottom: 16px;
}
.franchise-band h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}
.franchise-band p:not(.eyebrow) {
  color: #ffe5d9;
  font-size: 0.84rem;
  margin-top: 12px;
}
footer {
  background: var(--dark);
  color: var(--cream);
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.8fr 1.3fr;
  gap: 45px;
  padding-bottom: 60px;
}
.footer-grid h2 {
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.footer-grid > div > a {
  display: block;
  font-size: 0.75rem;
  color: #d0c6bc;
  margin-bottom: 12px;
}
.footer-brand > a {
  display: inline-block !important;
}
.footer-brand p {
  color: #c7bfb5;
  font-size: 0.75rem;
  margin-top: 13px;
  margin-bottom: 20px;
}
.footer-brand > span {
  font-size: 0.71rem;
  color: #d0c6bc;
}
.footer-contact address {
  font-size: 0.72rem;
  color: #c7bfb5;
  line-height: 1.8;
  margin-top: 18px;
}
.footer-contact a {
  overflow-wrap: anywhere;
}
.footer-bottom {
  border-top: 1px solid #4a3b32;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.62rem;
  color: #b9ada3;
  padding-block: 24px;
}
.footer-bottom a {
  color: white;
}
.mobile-actions {
  display: none;
}
.page-hero {
  padding-block: 32px 65px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb {
  display: flex;
  gap: 12px;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 50px;
}
.page-hero h1 {
  max-width: 950px;
  margin-bottom: 27px;
  font-size: clamp(3rem, 6.5vw, 5.7rem);
}
.page-hero .intro {
  max-width: 630px;
  font-size: 1rem;
}
.menu-content {
  padding-block: 35px 90px;
}
.category-nav {
  position: sticky;
  top: 100px;
  background: var(--cream);
  z-index: 5;
  display: flex;
  gap: 12px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 43px;
}
.category-nav a {
  padding: 8px 25px;
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 700;
}
.category-nav a[aria-current="location"] {
  color: var(--red);
  border-color: var(--red);
}
.menu-content h2 {
  font-size: 2.3rem;
  margin-bottom: 30px;
}
.menu-content #icecekler {
  margin-top: 70px;
}
.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}
.drink-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-block: 23px;
}
.drink-row h3 {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
}
.menu-note {
  font-size: 0.72rem;
  margin-top: 32px;
}
.about-story {
  padding-block: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story .photo {
  background: var(--sand);
}
.about-story img {
  mix-blend-mode: multiply;
}
.about-story h2 {
  margin-bottom: 25px;
}
.about-story p {
  margin-top: 18px;
  font-size: 0.92rem;
}
.process {
  padding-block: 65px;
  background: #eee6da;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin-top: 40px;
}
.process-grid article {
  border-top: 1px solid #cbbcac;
  padding-top: 24px;
}
.process-grid span {
  color: var(--red);
  font-size: 0.78rem;
}
.process-grid h3 {
  margin-block: 17px;
}
.process-grid p {
  font-size: 0.85rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-block: 65px 90px;
}
.contact-details h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.contact-details article {
  padding-block: 23px;
  border-bottom: 1px solid var(--line);
}
.contact-details article h3 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 13px;
}
.contact-details article > a {
  display: block;
  overflow-wrap: anywhere;
}
.contact-details .actions {
  margin-top: 30px;
}
.map-panel {
  background: var(--sand);
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}
.map-panel > svg {
  color: var(--red);
  width: 45px;
  height: 45px;
  margin-bottom: 22px;
}
.map-panel h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
.map-panel p {
  font-size: 0.8rem;
  max-width: 310px;
  margin-bottom: 24px;
}
.map-panel iframe {
  width: 100%;
  height: 440px;
  border: 0;
}
.map-panel.loaded {
  padding: 0;
}
.franchise-intro {
  padding-block: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.franchise-intro h2 {
  margin-bottom: 25px;
}
.franchise-intro p {
  font-size: 0.92rem;
}
.franchise-notes {
  border-top: 1px solid var(--line);
}
.franchise-notes article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.franchise-notes h3 {
  margin-bottom: 9px;
}
.franchise-notes p {
  font-size: 0.84rem;
}
.application {
  padding-block: 80px;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.application h2 {
  margin-bottom: 25px;
}
.application-aside > p {
  font-size: 0.87rem;
  margin-bottom: 25px;
}
.application-aside > a {
  display: block;
  margin-block: 10px;
  font-size: 0.9rem;
}
.application-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field label {
  font-size: 0.75rem;
  font-weight: 600;
}
.field input,
.field textarea {
  width: 100%;
  background: var(--paper);
  border: 1px solid #bcb0a2;
  padding: 13px 15px;
  border-radius: 0;
  color: var(--ink);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}
.full {
  grid-column: 1/-1;
}
.form-help {
  font-size: 0.75rem;
}
.form-status {
  padding: 14px;
  border-left: 3px solid var(--red);
  font-size: 0.85rem;
  background: #eee3d8;
  color: var(--ink);
}
.trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
.faq {
  padding-block: 20px 80px;
  max-width: 900px;
}
.faq h2 {
  margin-bottom: 30px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding-block: 21px;
}
.faq summary {
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  padding-right: 20px;
}
.faq details p {
  font-size: 0.9rem;
  padding-top: 17px;
  max-width: 750px;
}
.not-found {
  padding-block: 100px;
  min-height: 60vh;
}
.not-found h1 {
  margin-bottom: 30px;
}
.not-found .actions {
  margin-top: 30px;
}
@media (min-width: 1600px) {
  .hero {
    min-height: 790px;
  }
  .hero h1 {
    font-size: 7.3rem;
  }
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .header-inner {
    width: calc(100% - 48px);
    gap: 16px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .desktop-nav a {
    font-size: 0.7rem;
  }
  .brand img {
    width: 135px;
  }
  .header-cta {
    gap: 12px;
    padding: 11px 14px;
  }
  .hero {
    min-height: 610px;
  }
  .hero h1 {
    font-size: 5rem;
  }
  .round-stamp {
    width: 90px;
    height: 90px;
    right: 7%;
    top: 8%;
  }
  .round-stamp span {
    font-size: 0.47rem;
  }
  .story-intro {
    grid-template-columns: 1fr 3fr;
    gap: 20px;
  }
  .story-columns {
    gap: 30px;
  }
  .editorial-inner {
    gap: 50px;
  }
  .branch-card {
    gap: 40px;
  }
  .branch-card h2 {
    font-size: 2.1rem;
  }
  .footer-grid {
    gap: 25px;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.3fr;
  }
  .product-title {
    align-items: start;
  }
  .product-title h3 {
    font-size: 0.95rem;
  }
  .price {
    font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .header-inner {
    height: 83px;
  }
  .hero {
    min-height: 580px;
    padding-top: 45px;
  }
  .hero h1 {
    font-size: 4.4rem;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 0.83rem;
  }
  .hero .actions {
    gap: 12px;
  }
  .hero .button {
    padding-inline: 16px;
    gap: 14px;
  }
  .round-stamp {
    top: 14%;
  }
  .hero-vertical {
    right: -15px;
  }
  .hero-footnote {
    margin-top: 25px;
  }
  .story-intro {
    padding-block: 70px;
    grid-template-columns: 1fr;
  }
  .story-intro > .eyebrow {
    margin-bottom: 8px;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .values {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .values article:nth-child(2) {
    border: 0;
  }
  .editorial-inner {
    gap: 35px;
  }
  .editorial-copy h2 {
    font-size: 2.8rem;
  }
  .branch-card {
    gap: 30px;
  }
  .branch-card .actions {
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: 1.2fr 1fr;
    gap: 45px;
  }
  .category-nav {
    top: 83px;
  }
  .application {
    gap: 35px;
    grid-template-columns: 1fr 1.2fr;
  }
  .about-story,
  .contact-layout,
  .franchise-intro {
    gap: 35px;
  }
  .process-grid {
    gap: 25px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 145px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .header-inner {
    width: calc(100% - 32px);
    height: 77px;
  }
  .brand img {
    width: 130px;
    height: 54px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 28px;
    gap: 0;
    min-height: 0;
  }
  .hero h1 {
    font-size: clamp(3.45rem, 14vw, 5rem);
    margin-bottom: 22px;
  }
  .hero .eyebrow {
    font-size: 0.6rem;
    margin-bottom: 23px;
  }
  .hero-copy > p:not(.eyebrow) {
    font-size: 0.83rem;
    max-width: 350px;
    margin-bottom: 24px;
  }
  .hero h1 br:nth-of-type(2) {
    display: none;
  }
  .hero h1 em:last-child:before {
    content: " ";
  }
  .hero .actions {
    gap: 22px;
  }
  .hero .button {
    font-size: 0.72rem;
    padding: 14px 18px;
  }
  .hero-footnote {
    display: none;
  }
  .round-stamp {
    width: 78px;
    height: 78px;
    top: 8px;
    right: 5%;
    outline-offset: 4px;
  }
  .round-stamp span {
    font-size: 0.4rem;
  }
  .round-stamp svg {
    width: 25px;
    height: 25px;
  }
  .hero-vertical {
    top: 20%;
    right: -5px;
    font-size: 0.45rem;
  }
  .brand-strip {
    justify-content: flex-start;
    gap: 25px;
    padding-block: 15px;
    font-size: 0.57rem;
    margin-top: 10px;
  }
  .story-intro {
    padding-block: 55px;
    gap: 15px;
  }
  .story-intro h2 {
    font-size: 2.5rem;
  }
  .story-columns {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 25px;
  }
  .story-columns p {
    font-size: 0.85rem;
  }
  .story-columns .text-link {
    margin-top: 7px;
  }
  .section-head {
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 23px;
  }
  .section-head h2 {
    font-size: 2.3rem;
  }
  .section-head .eyebrow {
    font-size: 0.62rem;
    margin-bottom: 14px;
  }
  .product-grid {
    gap: 30px 16px;
  }
  .product-photo img {
    aspect-ratio: 0.95;
    object-fit: cover;
  }
  .product-title {
    flex-direction: column;
    gap: 7px;
    margin-top: 14px;
  }
  .product-title h3 {
    font-size: 0.96rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }
  .product > p {
    font-size: 0.7rem;
    margin-top: 7px;
    line-height: 1.6;
  }
  .product-number {
    top: 8px;
    left: 10px;
    font-size: 0.53rem;
  }
  .featured {
    padding-bottom: 38px;
  }
  .values {
    padding-block: 30px 40px;
    gap: 26px 20px;
  }
  .values article {
    padding-right: 10px;
  }
  .values svg {
    margin-bottom: 13px;
  }
  .values h3 {
    font-size: 0.95rem;
  }
  .values p {
    font-size: 0.73rem;
  }
  .editorial {
    padding-block: 40px;
  }
  .editorial-inner {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .editorial-photo img {
    aspect-ratio: 1.25;
  }
  .editorial-copy h2 {
    font-size: 3.1rem;
  }
  .editorial-copy > p:not(.eyebrow) {
    font-size: 0.84rem;
  }
  .branch-section {
    padding-block: 55px;
  }
  .branch-card {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .branch-card h2 {
    font-size: 2.3rem;
  }
  .location-art {
    min-height: 280px;
  }
  .franchise-band {
    padding-block: 40px;
  }
  .franchise-band > .wrap {
    align-items: start;
    flex-direction: column;
    gap: 23px;
  }
  .franchise-band h2 {
    font-size: 2.3rem;
  }
  .franchise-band .eyebrow {
    font-size: 0.62rem;
  }
  footer {
    padding-top: 45px;
    padding-bottom: 65px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px 20px;
    padding-bottom: 35px;
  }
  .footer-brand,
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-brand img {
    width: 170px;
  }
  .footer-brand p {
    margin-top: 7px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    padding-block: 22px;
  }
  .mobile-actions {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--paper);
    z-index: 40;
    border-top: 1px solid var(--line);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-actions a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 17px 5px;
    font-size: 0.72rem;
    font-weight: 700;
  }
  .mobile-actions a + a {
    border-left: 1px solid var(--line);
  }
  .mobile-actions a:nth-child(2) {
    color: var(--red);
  }
  .mobile-actions svg {
    width: 18px;
    height: 18px;
  }
  .page-hero {
    padding-block: 22px 40px;
  }
  .breadcrumb {
    margin-bottom: 35px;
    font-size: 0.65rem;
  }
  .page-hero h1 {
    font-size: 3rem;
  }
  .page-hero .eyebrow {
    font-size: 0.61rem;
  }
  .page-hero .intro {
    font-size: 0.88rem;
  }
  .category-nav {
    top: 77px;
    padding-block: 12px;
    margin-bottom: 30px;
  }
  .menu-content {
    padding-top: 8px;
    padding-bottom: 55px;
  }
  .drinks-grid {
    grid-template-columns: 1fr;
  }
  .drink-row {
    padding-block: 18px;
  }
  .drink-row h3 {
    font-size: 0.9rem;
  }
  .about-story,
  .contact-layout,
  .franchise-intro,
  .application {
    grid-template-columns: 1fr;
    gap: 35px;
    padding-block: 40px;
  }
  .about-story h2 {
    font-size: 2.4rem;
  }
  .about-story p {
    font-size: 0.87rem;
  }
  .process {
    padding-block: 40px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .process-grid article {
    padding-top: 17px;
  }
  .process-grid h3 {
    margin-block: 12px;
  }
  .application-form {
    gap: 18px;
  }
  .application-form .field {
    grid-column: 1/-1;
  }
  .application h2 {
    font-size: 2.6rem;
  }
  .faq {
    padding-bottom: 50px;
  }
  .faq h2 {
    font-size: 2.2rem;
  }
  .faq summary {
    font-size: 0.9rem;
  }
  .map-panel {
    min-height: 340px;
  }
  .contact-details h2 {
    font-size: 2.3rem;
  }
  .not-found {
    padding-block: 60px;
  }
  .not-found h1 {
    font-size: 3rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}
.franchise-band .eyebrow {
  opacity: 1;
}
.footer-bottom a,
.form-help a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 1100px) and (min-width: 901px) {
  .header-inner {
    gap: 12px;
  }
  .desktop-nav {
    gap: 14px;
  }
  .header-cta {
    font-size: 0.7rem;
  }
  .brand {
    flex-shrink: 0;
  }
}
@media (max-width: 600px) {
  .product > p {
    font-size: 0.8rem;
  }
  .values p {
    font-size: 0.8rem;
  }
  .menu-note,
  .footer-contact address,
  .footer-brand > span,
  .footer-bottom {
    font-size: 0.75rem;
  }
}

.food-picture {
  display: contents;
}
.map-panel p {
  color: #53473d;
}

/* Dedicated pages and local visit guides */
.home-paths,
.region-directory {
  padding-block: 70px;
}
.home-paths .section-head > p,
.region-directory .section-head > p {
  max-width: 330px;
  font-size: 0.87rem;
}
.home-path-grid,
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.home-path-grid > a,
.region-link {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: block;
}
.home-path-grid h3,
.region-link h3 {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.35rem;
  line-height: 1.3;
}
.home-path-grid p,
.region-link p {
  font-size: 0.87rem;
  margin-top: 15px;
}
.home-path-grid a:hover h3,
.region-link:hover h3 {
  color: var(--red);
}
.home-path-grid .eyebrow,
.region-link .eyebrow {
  margin-bottom: 15px;
}
.home-visit {
  background: var(--sand);
  padding-block: 45px;
}
.home-visit > .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.home-visit .eyebrow {
  margin-bottom: 10px;
}
.home-visit p:not(.eyebrow) {
  margin-top: 16px;
}
.region-hero {
  padding-block: 30px 55px;
  border-bottom: 1px solid var(--line);
}
.region-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}
.region-hero h1 {
  font-size: clamp(2.75rem, 4.6vw, 4.6rem);
  margin-bottom: 24px;
}
.region-hero .intro {
  max-width: 600px;
  font-size: 1rem;
  margin-bottom: 25px;
}
.region-hero-photo {
  background: var(--sand);
  position: relative;
  min-width: 0;
}
.region-hero-photo img {
  aspect-ratio: 1.1;
  object-fit: cover;
  mix-blend-mode: multiply;
  width: 100%;
}
.region-hero-photo > span {
  position: absolute;
  bottom: 16px;
  left: 20px;
  color: var(--ink);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}
.region-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 90px;
  padding-block: 65px;
}
.region-article {
  min-width: 0;
  max-width: 780px;
}
.region-article > section {
  margin-bottom: 48px;
  scroll-margin-top: 120px;
}
.region-article h2 {
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
}
.region-article p {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.article-contents {
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}
.article-contents > a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-block: 13px;
  font-size: 0.88rem;
  border-top: 1px solid var(--line);
}
.article-contents > a > span {
  color: var(--red);
  font-size: 0.75rem;
}
.article-contents svg {
  margin-left: auto;
  width: 18px;
}
.visit-card {
  align-self: start;
  position: sticky;
  top: 125px;
  background: var(--sand);
  padding: 28px;
}
.visit-card h2 {
  font-size: 2.35rem;
  margin-bottom: 20px;
}
.visit-card > p {
  font-size: 0.83rem;
  color: #53473d;
}
.visit-card address {
  margin-top: 22px;
  font-size: 0.88rem;
  line-height: 1.7;
}
.visit-card dl {
  margin-block: 24px;
}
.visit-card dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #53473d;
}
.visit-card dd {
  margin: 5px 0 19px;
  font-size: 0.9rem;
}
.visit-card dd a {
  display: block;
}
.visit-card .button {
  width: 100%;
  gap: 18px;
}
.visit-card > .text-link {
  margin-top: 10px;
}
.region-menu > a {
  display: flex;
  align-items: center;
  gap: 20px;
  border-block-start: 1px solid var(--line);
  padding-block: 20px;
}
.region-menu h3 {
  font-size: 1.08rem;
  line-height: 1.3;
}
.region-menu p {
  font-size: 0.84rem;
  margin: 9px 0 0;
}
.region-menu strong {
  white-space: nowrap;
  color: var(--red);
  margin-left: auto;
}
.region-menu svg {
  width: 18px;
}
.region-faq details {
  border-top: 1px solid var(--line);
  padding-block: 20px;
}
.region-faq summary {
  cursor: pointer;
  font-weight: 600;
}
.region-faq details p {
  font-size: 0.9rem;
  margin: 18px 0 0;
}
.region-more {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.region-more a {
  display: flex;
  gap: 12px;
  font-size: 0.84rem;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.related-regions {
  padding-block: 30px 70px;
}
.related-regions h2 {
  font-size: 2rem;
}
.related-regions .region-grid {
  grid-template-columns: repeat(2, 1fr);
}
.region-hero .breadcrumb {
  flex-wrap: wrap;
  row-gap: 6px;
}
@media (max-width: 1200px) {
  .desktop-nav {
    gap: 15px;
  }
  .desktop-nav a {
    font-size: 0.72rem;
  }
  .header-inner {
    gap: 15px;
  }
  .region-body {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 300px;
  }
}
@media (max-width: 1050px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
  }
  .home-path-grid,
  .region-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .region-hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .region-hero-photo {
    max-width: 520px;
  }
  .region-body {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .visit-card {
    position: static;
    grid-row: 1;
    margin-bottom: 25px;
  }
  .region-directory {
    padding-block: 45px;
  }
  .region-article {
    max-width: none;
  }
  .region-hero .intro {
    font-size: 0.92rem;
  }
}
@media (max-width: 600px) {
  .home-paths {
    padding-block: 45px;
  }
  .home-path-grid {
    gap: 12px 20px;
  }
  .home-path-grid h3 {
    font-size: 1.1rem;
  }
  .home-path-grid p {
    font-size: 0.81rem;
  }
  .home-path-grid svg {
    width: 17px;
  }
  .home-visit > .wrap {
    align-items: start;
    flex-direction: column;
  }
  .region-grid,
  .related-regions .region-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .region-hero {
    padding-block: 24px 35px;
  }
  .region-hero h1 {
    font-size: 2.8rem;
  }
  .region-hero .breadcrumb {
    margin-bottom: 32px;
  }
  .region-hero-grid .actions {
    gap: 12px;
  }
  .region-hero-photo img {
    aspect-ratio: 1.3;
  }
  .region-body {
    padding-block: 35px;
  }
  .region-article p {
    font-size: 0.93rem;
  }
  .region-menu > a {
    gap: 12px;
    flex-wrap: wrap;
  }
  .region-menu > a > div {
    width: 100%;
  }
  .region-menu strong {
    margin-left: 0;
  }
  .visit-card {
    padding: 25px;
  }
  .mobile-dialog {
    overflow-y: auto;
  }
  .mobile-dialog nav a {
    font-size: clamp(1.3rem, 4vh, 2rem);
  }
}
.home-visit .eyebrow {
  color: #a11f08;
}
.home-visit p:not(.eyebrow) {
  color: #53473d;
}
.visit-card dd a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

/* Keep the image and its caption in separate rows at every viewport size. */
.hero-visual {
  min-width: 0;
  align-self: center;
  width: 100%;
}
.hero-image-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1.1;
  isolation: isolate;
  background: var(--cream);
}
.hero-image-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  z-index: 1;
}
.hero-circle {
  position: absolute;
  width: 85%;
  aspect-ratio: 1;
  top: 3%;
  right: 5%;
  border-radius: 50%;
  background: #eee5d7;
}
.hero-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 5%;
  padding: 18px 0 0;
  border-top: 1px solid #c7bbac;
}
.hero-caption-copy {
  min-width: 0;
}
.hero-caption span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 7px;
}
.hero-caption strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}
.hero-caption a {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 1px solid #c7bbac;
  border-radius: 50%;
}
.hero-caption a:hover {
  color: var(--red);
  border-color: var(--red);
}
.hero-caption svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 600px) {
  .hero-visual {
    margin-top: 25px;
  }
  .hero-caption {
    margin-inline: 0;
    padding-top: 14px;
    gap: 14px;
  }
  .hero-caption span {
    font-size: 0.58rem;
  }
  .hero-caption strong {
    font-size: 0.88rem;
  }
  .hero-caption a {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }
}
