:root {
  --green-950: #0d2d20;
  --green-900: #143e2b;
  --green-800: #1c4c35;
  --green-600: #397053;
  --green-200: #d8e7db;
  --green-100: #eef5ef;
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --white: #ffffff;
  --ink: #17211b;
  --coffee: #684630;
  --caramel: #c98952;
  --line: rgba(20, 62, 43, 0.16);
  --shadow: 0 24px 70px rgba(13, 45, 32, 0.12);
  --radius: 28px;
  --container: min(1240px, calc(100vw - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.modal-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  color: var(--green-900);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: none;
}

.top-note {
  position: relative;
  z-index: 30;
  background: var(--green-950);
  color: #e9f4eb;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.top-note__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.top-note__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--caramel);
}

.top-note a {
  margin-left: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(20, 62, 43, 0.09);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 86px;
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  align-items: center;
}

.brand {
  width: 154px;
  height: 64px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.desktop-nav a,
.nav-instagram {
  position: relative;
}

.desktop-nav a::after,
.nav-instagram::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--green-800);
  transform: scaleX(0);
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.nav-instagram:hover::after,
.nav-instagram:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
}

.nav-instagram {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0 12px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--white);
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] > span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 24;
  top: 86px;
  right: 0;
  left: 0;
  height: calc(100dvh - 86px);
  padding: 52px 24px;
  overflow-y: auto;
  background: var(--green-950);
  color: var(--cream);
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 8vw, 52px);
  font-weight: 900;
  letter-spacing: -0.05em;
}

.hero {
  position: relative;
  min-height: 790px;
  padding: 80px 0 96px;
  overflow: hidden;
  background:
    linear-gradient(rgba(20, 62, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 62, 43, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 62px 62px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 2%;
  left: -85px;
  width: 190px;
  height: 420px;
  border-radius: 0 100% 100% 0;
  background: var(--green-200);
  transform: rotate(-13deg);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, 0.96fr);
  gap: 7vw;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--coffee);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: currentColor;
}

.eyebrow--green {
  color: var(--green-600);
}

.eyebrow--light {
  color: #c9dfce;
}

.hero h1,
.section h2,
.pause-banner h2,
.visit h2 {
  margin: 0;
  font-family: "Montserrat", "Arial Black", sans-serif;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.hero h1 {
  max-width: 720px;
  color: var(--green-950);
  font-size: clamp(62px, 7.3vw, 112px);
}

.hero h1 span {
  display: block;
  color: var(--green-600);
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
}

.hero__lede {
  max-width: 570px;
  margin: 34px 0 0;
  color: #4b5950;
  font-size: 16px;
  line-height: 1.78;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 23px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  transition: transform 200ms ease, background 200ms ease;
}

.button span {
  margin-left: 26px;
  font-size: 18px;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button--primary {
  background: var(--green-900);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(20, 62, 43, 0.24);
}

.button--primary:hover {
  background: var(--green-600);
}

.button--cream {
  background: var(--cream);
  color: var(--green-950);
}

.text-link {
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  margin-left: 14px;
}

.text-link--dark {
  color: var(--ink);
}

.hero__meta {
  display: flex;
  gap: 34px;
  margin-top: 54px;
}

.hero__meta > div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hero__meta strong {
  color: var(--caramel);
  font-size: 10px;
}

.hero__meta span {
  color: #56625a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero__visual {
  position: relative;
  padding: 24px 38px 58px 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0 0 14px 40px;
  border-radius: 44% 44% 48% 48% / 30% 30% 52% 52%;
  background: var(--green-200);
  transform: rotate(4deg);
}

.hero__image-wrap {
  position: relative;
  z-index: 1;
  aspect-ratio: 0.79;
  overflow: hidden;
  border-radius: 210px 210px 32px 32px;
  box-shadow: var(--shadow);
}

.hero__image-wrap > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% center;
  transition: transform 700ms ease;
}

.hero__visual:hover .hero__image-wrap > img {
  transform: scale(1.025);
}

.hero__badge {
  position: absolute;
  top: 24px;
  left: 24px;
  width: 112px;
  height: 112px;
  display: grid;
  place-content: center;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  background: rgba(20, 62, 43, 0.82);
  color: var(--white);
  text-align: center;
  backdrop-filter: blur(8px);
}

.hero__badge span,
.hero__badge small {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__badge strong {
  margin: 2px 0;
  font-size: 16px;
}

.hero__flavor {
  position: absolute;
  z-index: 2;
  right: -18px;
  bottom: 6px;
  width: 238px;
  padding: 20px 22px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero__flavor p,
.hero__flavor span {
  margin: 0;
  color: #6e776f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__flavor strong {
  display: block;
  margin: 9px 0 14px;
  color: var(--green-950);
  font-size: 16px;
  line-height: 1.35;
}

.hero__stamp {
  position: absolute;
  right: -54px;
  bottom: 28px;
  color: rgba(20, 62, 43, 0.08);
  font-family: "Montserrat", sans-serif;
  font-size: 74px;
  font-weight: 900;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: var(--green-900);
  color: var(--cream);
}

.ticker__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 18px 0;
  animation: ticker 24s linear infinite;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.ticker__track i {
  color: var(--caramel);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.section {
  padding: 128px 0;
}

.story__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 9vw;
  align-items: center;
}

.story__photo {
  position: relative;
  max-width: 520px;
  padding-left: 54px;
}

.story__photo::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 42px;
  bottom: 42px;
  left: 0;
  width: 68%;
  border-radius: 180px 0 0 180px;
  background: var(--green-200);
}

.story__photo img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  border-radius: 230px 230px 24px 24px;
}

.photo-tag {
  position: absolute;
  right: -42px;
  bottom: 48px;
  padding: 13px 17px;
  border-radius: 999px;
  background: var(--green-900);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(-3deg);
}

.story h2,
.section-heading h2 {
  color: var(--green-950);
  font-size: clamp(46px, 5.2vw, 76px);
}

.story h2 em,
.visit h2 em {
  color: var(--green-600);
  font-family: Georgia, serif;
  font-weight: 400;
}

.story__lead {
  max-width: 620px;
  margin: 32px 0 38px;
  color: #536158;
  font-size: 16px;
  line-height: 1.8;
}

.story__facts {
  margin-bottom: 34px;
  border-top: 1px solid var(--line);
}

.story__facts article {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.story__facts article > span {
  color: var(--caramel);
  font-size: 11px;
  font-weight: 800;
}

.story__facts h3 {
  margin: 0 0 6px;
  color: var(--green-950);
  font-size: 16px;
}

.story__facts p {
  margin: 0;
  color: #667168;
  font-size: 13px;
  line-height: 1.7;
}

.section--green {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.section--green::after {
  content: "BOTANICA";
  position: absolute;
  right: -32px;
  bottom: -32px;
  color: rgba(255, 255, 255, 0.035);
  font-family: "Montserrat", sans-serif;
  font-size: 14vw;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.craft__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 8vw;
  align-items: center;
}

.craft h2 {
  font-size: clamp(48px, 5.8vw, 82px);
}

.craft__copy > p:not(.eyebrow) {
  max-width: 470px;
  margin: 32px 0;
  color: #bcd0c1;
  font-size: 15px;
  line-height: 1.8;
}

.craft__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.craft__steps span {
  padding: 10px 13px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #d8e7db;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.craft__photos {
  position: relative;
  min-height: 650px;
}

.craft__photo {
  position: absolute;
  margin: 0;
}

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

.craft__photo--large {
  inset: 0 0 40px 13%;
  overflow: hidden;
  border-radius: 220px 220px 22px 22px;
}

.craft__photo--small {
  left: 0;
  bottom: 0;
  width: 43%;
  height: 320px;
  border: 10px solid var(--green-950);
  background: var(--green-950);
}

.craft__photo--small figcaption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  padding: 8px 10px;
  background: var(--cream);
  color: var(--green-950);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 9vw;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading > p {
  max-width: 460px;
  margin: 0 0 6px;
  color: #627067;
  font-size: 14px;
  line-height: 1.75;
}

.menu-section {
  background: var(--green-100);
}

.menu-shell {
  padding: 18px 18px 0;
  border: 1px solid rgba(20, 62, 43, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 60px rgba(20, 62, 43, 0.08);
}

.menu-tabs {
  display: flex;
  gap: 8px;
  padding: 4px 4px 18px;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  flex: 0 0 auto;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: #5d6b62;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: 180ms ease;
}

.menu-tab:hover,
.menu-tab:focus-visible {
  border-color: var(--green-600);
  color: var(--green-900);
}

.menu-tab[aria-selected="true"] {
  border-color: var(--green-900);
  background: var(--green-900);
  color: var(--white);
}

.menu-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  min-height: 580px;
  border-top: 1px solid var(--line);
}

.menu-panel {
  padding: 44px 48px 44px 22px;
}

.menu-panel__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.menu-panel__heading h3 {
  margin: 0;
  color: var(--green-950);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.menu-panel__heading span {
  color: #879188;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 42px;
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr auto;
  gap: 10px;
  align-items: end;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.menu-item__name {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.menu-item__description {
  display: block;
  margin-top: 4px;
  color: #818a83;
  font-size: 9px;
  font-weight: 500;
}

.menu-item__dots {
  min-width: 16px;
  border-bottom: 1px dotted rgba(20, 62, 43, 0.3);
}

.menu-item__price {
  color: var(--green-800);
  font-size: 13px;
  font-weight: 800;
}

.menu-feature {
  position: relative;
  margin: 18px 0 18px 18px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--green-900);
}

.menu-feature img {
  width: 100%;
  height: 100%;
  min-height: 544px;
  object-fit: cover;
  opacity: 0.88;
}

.menu-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(13, 45, 32, 0.9));
}

.menu-feature__card {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
  color: var(--white);
}

.menu-feature__card span {
  display: block;
  margin-bottom: 9px;
  color: #c9dfce;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.menu-feature__card strong {
  font-size: 17px;
  line-height: 1.5;
}

.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 6px 18px 22px;
  border-top: 1px solid var(--line);
}

.menu-footer p {
  margin: 0;
  color: #7a867d;
  font-size: 10px;
}

.menu-originals {
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--green-800);
  background: none;
  color: var(--green-900);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.menu-originals span {
  margin-left: 8px;
}

.pause-banner {
  position: relative;
  min-height: 610px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--green-950);
  color: var(--white);
}

.pause-banner__image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(13, 45, 32, 0.94) 0%, rgba(13, 45, 32, 0.68) 48%, rgba(13, 45, 32, 0.12) 100%),
    url("assets/instagram/cold-tea.jpg") center 43% / cover;
  transform: scale(1.02);
}

.pause-banner__content {
  position: relative;
  z-index: 1;
}

.pause-banner h2 {
  max-width: 680px;
  margin-bottom: 34px;
  font-size: clamp(60px, 7.8vw, 112px);
}

.gallery {
  background: var(--paper);
}

.section-heading--gallery {
  grid-template-columns: 1fr auto;
}

.gallery__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.9fr 0.9fr;
  grid-template-rows: 350px 300px;
  gap: 18px;
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--green-200);
}

.gallery__item--tall {
  grid-row: 1 / 3;
}

.gallery__item--wide {
  grid-column: 2 / 4;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.gallery__item:nth-child(3) img {
  object-position: center 75%;
}

.gallery__item--wide img {
  object-position: center 54%;
}

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

.gallery__item::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(13, 45, 32, 0.72));
}

.gallery__item figcaption {
  position: absolute;
  z-index: 1;
  right: 18px;
  bottom: 16px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.gallery__item figcaption small {
  color: #c9dfce;
}

.visit {
  background: var(--coffee);
  color: var(--white);
}

.visit__grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10vw;
}

.visit h2 {
  font-size: clamp(58px, 7vw, 102px);
}

.visit h2 em {
  color: #dcb58f;
}

.visit__intro > p:not(.eyebrow) {
  max-width: 450px;
  margin: 30px 0;
  color: #ead9c8;
  line-height: 1.75;
}

.open-pill {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.open-pill > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #92ca9b;
  box-shadow: 0 0 0 5px rgba(146, 202, 155, 0.12);
}

.open-pill.is-closed > span {
  background: #d7a078;
  box-shadow: 0 0 0 5px rgba(215, 160, 120, 0.12);
}

.visit__details {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-row {
  display: grid;
  grid-template-columns: 130px 1fr 32px;
  gap: 20px;
  align-items: center;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: padding-left 220ms ease, color 220ms ease;
}

.contact-row:hover,
.contact-row:focus-visible {
  padding-left: 12px;
  color: #f6d4b2;
}

.contact-row__label {
  color: #d6bdab;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row strong {
  font-size: 16px;
  line-height: 1.55;
}

.contact-row__arrow {
  font-size: 20px;
  text-align: right;
}

.site-footer {
  padding: 78px 0 28px;
  background: var(--green-950);
  color: var(--white);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding-bottom: 64px;
}

.footer__brand img {
  width: 190px;
  height: 105px;
  padding: 8px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
}

.footer__brand p {
  margin: 22px 0 0;
  color: #bcd0c1;
  font-size: 13px;
  line-height: 1.6;
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.footer__links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links span {
  margin-bottom: 8px;
  color: #769480;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer__links a {
  width: max-content;
  color: #e8f0e9;
  font-size: 13px;
}

.footer__links a:hover {
  color: #dcb58f;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #789181;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-modal {
  width: min(1100px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
}

.menu-modal::backdrop {
  background: rgba(9, 29, 21, 0.82);
  backdrop-filter: blur(8px);
}

.menu-modal__header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.92);
  backdrop-filter: blur(10px);
}

.menu-modal__header span {
  color: var(--green-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.menu-modal__header h2 {
  margin: 3px 0 0;
  color: var(--green-950);
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  letter-spacing: -0.04em;
}

.modal-close {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--green-900);
  color: var(--white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.menu-modal__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 18px;
}

.menu-modal__images img {
  width: 100%;
  border: 1px solid var(--line);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal--delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1050px) {
  .nav-wrap {
    grid-template-columns: 180px 1fr 170px;
  }

  .hero__grid {
    grid-template-columns: 1fr 0.84fr;
    gap: 5vw;
  }

  .hero__meta {
    gap: 18px;
  }

  .story__grid {
    gap: 6vw;
  }

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

  .menu-panel {
    padding-right: 28px;
  }

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

@media (max-width: 820px) {
  :root {
    --container: min(100% - 32px, 680px);
  }

  .top-note__inner > span:first-child,
  .top-note__dot {
    display: none;
  }

  .nav-wrap {
    min-height: 74px;
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 132px;
    height: 56px;
  }

  .desktop-nav,
  .nav-instagram {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    top: 74px;
    height: calc(100dvh - 74px);
  }

  .hero {
    min-height: 0;
    padding: 62px 0 74px;
  }

  .hero__grid,
  .story__grid,
  .craft__grid,
  .section-heading,
  .visit__grid {
    grid-template-columns: 1fr;
  }

  .hero__copy {
    position: relative;
    z-index: 2;
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(58px, 14vw, 92px);
  }

  .hero__visual {
    max-width: 570px;
    margin: 14px auto 0;
  }

  .hero__image-wrap {
    max-height: 670px;
  }

  .hero__flavor {
    right: 0;
  }

  .hero__stamp {
    display: none;
  }

  .section {
    padding: 92px 0;
  }

  .story__grid {
    gap: 70px;
  }

  .story__photo {
    max-width: 520px;
    margin: 0 auto;
  }

  .craft__grid {
    gap: 58px;
  }

  .craft__photos {
    min-height: 600px;
  }

  .section-heading {
    gap: 22px;
  }

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

  .menu-feature {
    height: 400px;
    margin: 0 0 18px;
  }

  .menu-feature img {
    min-height: 0;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 420px 260px 310px;
  }

  .gallery__item--tall {
    grid-row: 1 / 3;
  }

  .gallery__item--wide {
    grid-column: 1 / 3;
  }

  .visit__grid {
    gap: 64px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .top-note {
    font-size: 9px;
  }

  .hero {
    padding-top: 48px;
    background-size: 44px 44px;
  }

  .hero__lede {
    font-size: 14px;
  }

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

  .hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .hero__meta > div {
    display: block;
  }

  .hero__meta strong {
    display: block;
    margin-bottom: 5px;
  }

  .hero__visual {
    padding: 8px 14px 66px 0;
  }

  .hero__image-wrap {
    border-radius: 150px 150px 24px 24px;
  }

  .hero__badge {
    width: 92px;
    height: 92px;
  }

  .hero__flavor {
    width: 210px;
  }

  .story__photo {
    padding-left: 26px;
  }

  .photo-tag {
    right: -4px;
  }

  .craft__photos {
    min-height: 480px;
  }

  .craft__photo--large {
    left: 8%;
  }

  .craft__photo--small {
    width: 48%;
    height: 235px;
  }

  .menu-shell {
    padding: 12px 12px 0;
  }

  .menu-panel {
    padding: 32px 6px;
  }

  .menu-panel__heading {
    display: block;
  }

  .menu-panel__heading span {
    display: block;
    margin-top: 10px;
  }

  .menu-item__name,
  .menu-item__price {
    font-size: 12px;
  }

  .menu-footer {
    align-items: flex-start;
    flex-direction: column;
    padding-left: 6px;
  }

  .pause-banner {
    min-height: 560px;
  }

  .pause-banner__image {
    background:
      linear-gradient(90deg, rgba(13, 45, 32, 0.9), rgba(13, 45, 32, 0.48)),
      url("assets/instagram/cold-tea.jpg") center / cover;
  }

  .gallery__grid {
    display: block;
  }

  .gallery__item {
    height: 340px;
    margin-bottom: 14px;
  }

  .gallery__item--wide {
    height: 280px;
  }

  .contact-row {
    grid-template-columns: 1fr 24px;
    gap: 7px 12px;
  }

  .contact-row__label,
  .contact-row strong {
    grid-column: 1;
  }

  .contact-row strong {
    font-size: 13px;
  }

  .contact-row__arrow {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__bottom {
    gap: 18px;
    align-items: flex-start;
    flex-direction: column;
  }

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

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