:root {
  --cream: #f4eadc;
  --paper: #fbf5ec;
  --brown: #2a160f;
  --brown-soft: #4a2b1f;
  --gold: #d5a166;
  --muted: #806c60;
  --line: rgba(66, 39, 27, 0.17);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--brown);
}
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--brown);
  font-family:
    Golos,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.55;
}
body.menu-open {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
button {
  color: inherit;
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
section[id] {
  scroll-margin-top: 80px;
}
:focus-visible {
  outline: 3px solid #e5ad6c;
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  transform: translateY(-160%);
  background: #fff;
  color: #24130d;
  padding: 10px 14px;
}
.skip-link:focus {
  transform: none;
}
.coffee-container {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.coffee-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 84px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0 max(4vw, 24px);
  color: #fff;
}
.coffee-header.is-scrolled {
  position: fixed;
  height: 72px;
  background: rgba(36, 19, 13, 0.94);
  backdrop-filter: blur(16px);
}
.coffee-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  font-size: 13px;
  letter-spacing: 0.2em;
}
.coffee-brand > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font:
    20px Georgia,
    serif;
  letter-spacing: 0;
}
.coffee-brand b {
  font-size: 12px;
}
.coffee-nav {
  display: flex;
  gap: 30px;
  margin-left: auto;
  color: #f8eadbc9;
  font-size: 12px;
}
.coffee-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
}
.coffee-nav a:hover {
  color: #fff;
}
.open-note {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  margin-left: 32px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 15px;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.open-note i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #b9d989;
  box-shadow: 0 0 0 4px rgba(185, 217, 137, 0.15);
}
.coffee-menu {
  display: none;
}
.coffee-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  overflow: hidden;
  background: #27160f;
  color: #fff;
}
.coffee-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 48%;
}
.coffee-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(25, 12, 7, 0.88),
      rgba(25, 12, 7, 0.5) 48%,
      rgba(25, 12, 7, 0.14)
    ),
    linear-gradient(0deg, rgba(25, 12, 7, 0.78), transparent 46%);
}
.coffee-hero-copy {
  position: relative;
  z-index: 2;
  width: min(900px, 88vw);
  padding: 150px 0 86px max(7vw, 28px);
}
.coffee-eyebrow {
  color: #e0b582;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.coffee-hero h1,
.coffee-about h2,
.menu-heading h2,
.atmosphere h2,
.values-heading h2,
.visit h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.95;
}
.coffee-hero h1 {
  margin: 20px 0 25px;
  font-size: clamp(58px, 8vw, 112px);
}
em {
  color: var(--gold);
  font-style: italic;
  font-weight: 400;
}
.coffee-hero-copy > p:not(.coffee-eyebrow) {
  max-width: 510px;
  margin-bottom: 0;
  color: #f8eadbc7;
  font-size: 17px;
  line-height: 1.7;
}
.coffee-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.coffee-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  min-height: 54px;
  padding: 0 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    background 0.2s;
}
.coffee-button:hover {
  transform: translateY(-3px);
}
.coffee-button-light {
  background: var(--cream);
  color: var(--brown);
}
.coffee-text-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 12px;
}
.coffee-side-note {
  position: absolute;
  z-index: 2;
  right: 3vw;
  bottom: 45px;
  margin: 0;
  color: #ffffff8c;
  font-size: 8px;
  letter-spacing: 0.22em;
  writing-mode: vertical-rl;
}
.coffee-section {
  padding: 115px 0;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 42px;
  color: #8b5c40;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.section-kicker span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--brown);
  font:
    12px Georgia,
    serif;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
}
.coffee-about h2,
.menu-heading h2,
.values-heading h2 {
  margin: 0;
  font-size: clamp(46px, 5.7vw, 78px);
}
.about-copy > p:first-child {
  font:
    23px/1.55 Georgia,
    serif;
}
.about-copy > p:nth-child(2) {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.about-copy ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 38px 0 0;
  border-top: 1px solid var(--line);
  padding: 25px 0 0;
  list-style: none;
}
.about-copy li {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.about-copy b {
  font:
    26px Georgia,
    serif;
}
.about-copy li span {
  color: #8b7568;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.coffee-menu-section {
  background: var(--brown);
  color: var(--cream);
}
.section-kicker-light {
  color: #c39770;
}
.section-kicker-light span {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--cream);
}
.menu-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.55fr;
  align-items: end;
  gap: 5vw;
}
.menu-heading .section-kicker {
  margin-bottom: 0;
}
.menu-heading > p:last-child {
  margin-bottom: 4px;
  color: #a79385;
  font-size: 13px;
  line-height: 1.7;
}
.drink-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 62px;
}
.drink-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #21120d;
}
.drink-photo {
  position: relative;
  height: 360px;
  overflow: hidden;
}
.drink-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.03);
  transition: transform 0.5s;
}
.drink-card:hover .drink-photo img {
  transform: scale(1.035);
}
.drink-photo > span {
  position: absolute;
  top: 16px;
  left: 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(31, 16, 11, 0.45);
  padding: 7px 9px;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.drink-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 23px;
}
.drink-info h3 {
  margin-bottom: 5px;
  font:
    24px Georgia,
    serif;
}
.drink-info p {
  margin-bottom: 0;
  color: #9f8b7d;
  font-size: 11px;
}
.drink-info > b {
  white-space: nowrap;
  color: #ddb27c;
  font:
    18px Georgia,
    serif;
}
.compact-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 45px;
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 25px;
}
.compact-menu > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px 0;
  font:
    18px Georgia,
    serif;
}
.compact-menu i {
  flex: 1;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.25);
}
.compact-menu b {
  color: #ddb27c;
  font-size: 15px;
}
.atmosphere {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 78vh;
  overflow: hidden;
  color: #fff;
}
.atmosphere > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.atmosphere-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(29, 14, 8, 0.34), rgba(29, 14, 8, 0.65));
}
.atmosphere-copy {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 900px);
  text-align: center;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.atmosphere h2 {
  margin: 18px 0 0;
  font-size: clamp(46px, 6.5vw, 84px);
}
.coffee-values {
  background: #f8efe3;
}
.values-heading {
  display: grid;
  grid-template-columns: 1fr 0.55fr;
  align-items: end;
  gap: 8vw;
}
.values-heading > p {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-block: 1px solid var(--line);
}
.values-grid article {
  min-height: 260px;
  border-right: 1px solid var(--line);
  padding: 28px;
}
.values-grid article:last-child {
  border: 0;
}
.values-grid article > span {
  color: #9d6d4b;
  font-size: 10px;
}
.values-grid h3 {
  margin: 58px 0 10px;
  font:
    24px Georgia,
    serif;
}
.values-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}
.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
  background: var(--cream);
}
.visit-copy {
  background: #bc7e49;
  color: #fff8ee;
  padding: 100px max(7vw, 32px);
}
.visit h2 {
  margin: 22px 0 0;
  font-size: clamp(54px, 6.4vw, 88px);
}
.visit-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin: 42px 0 34px;
}
.visit-details div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.visit-details span {
  color: #5c321f;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.visit-details b {
  font:
    15px/1.6 Georgia,
    serif;
}
.coffee-button-dark {
  background: var(--brown);
  color: #fff;
}
.visit-map {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #e4d5c2;
}
.map-grid {
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(#b7a791 1px, transparent 1px),
    linear-gradient(90deg, #b7a791 1px, transparent 1px);
  background-size: 44px 44px;
}
.road {
  position: absolute;
  display: block;
  background: #f8f1e7;
  box-shadow: 0 0 0 1px #cdbda9;
}
.road-one {
  top: 30%;
  left: -10%;
  width: 125%;
  height: 66px;
  transform: rotate(-12deg);
}
.road-two {
  top: -10%;
  left: 60%;
  width: 62px;
  height: 125%;
  transform: rotate(9deg);
}
.road-three {
  top: 72%;
  left: -10%;
  width: 120%;
  height: 38px;
  transform: rotate(6deg);
}
.map-pin {
  position: absolute;
  z-index: 2;
  top: 46%;
  left: 47%;
  display: flex;
  align-items: center;
  gap: 12px;
}
.map-pin > span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 8px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  background: var(--brown);
  color: #fff;
  font:
    20px Georgia,
    serif;
}
.map-pin > b {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 10px 13px;
  font:
    14px Georgia,
    serif;
  box-shadow: 0 7px 25px rgba(66, 39, 27, 0.18);
}
.map-pin small {
  color: #917967;
  font: 7px sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.coffee-footer {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  align-items: center;
  gap: 28px;
  background: #1e100b;
  color: #eee1d4;
  padding: 50px max(4vw, 24px);
}
.coffee-footer p {
  margin: 0;
  color: #927e71;
  font-size: 11px;
}
.coffee-footer > a:not(.coffee-brand) {
  font-size: 10px;
  letter-spacing: 0.07em;
}
.coffee-footer > a:last-child {
  color: #d6ad80;
}
.has-reveal .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s,
    transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.has-reveal .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 900px) {
  .coffee-header {
    height: 72px;
  }
  .coffee-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    visibility: hidden;
    gap: 0;
    margin: 0;
    background: rgba(34, 18, 12, 0.98);
    padding: 18px 24px;
    opacity: 0;
    transform: translateY(-12px);
    transition: 0.2s;
  }
  .coffee-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }
  .coffee-nav a {
    min-height: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 16px;
  }
  .open-note {
    margin-left: auto;
  }
  .coffee-menu {
    display: grid;
    place-content: center;
    gap: 7px;
    width: 44px;
    height: 44px;
    margin-left: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
  }
  .coffee-menu span {
    display: block;
    width: 20px;
    height: 1px;
    background: #fff;
    transition: 0.2s;
  }
  .coffee-menu[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .coffee-menu[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .menu-heading {
    grid-template-columns: 1fr;
  }
  .menu-heading .section-kicker {
    margin-bottom: 15px;
  }
  .menu-heading > p:last-child {
    max-width: 520px;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .drink-grid {
    grid-template-columns: 1fr 1fr;
  }
  .drink-card:last-child {
    grid-column: 1/-1;
  }
  .drink-card:last-child .drink-photo {
    height: 430px;
  }
  .values-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .values-heading > p {
    max-width: 600px;
  }
  .visit {
    grid-template-columns: 1fr;
  }
  .coffee-footer {
    grid-template-columns: 1fr 1fr;
  }
  .coffee-footer .coffee-brand {
    grid-column: 1/-1;
  }
}
@media (max-width: 620px) {
  .coffee-container {
    width: calc(100% - 28px);
  }
  .open-note {
    display: none;
  }
  .coffee-section {
    padding: 82px 0;
  }
  .coffee-hero {
    min-height: 760px;
  }
  .coffee-hero-image {
    object-position: 62% center;
  }
  .coffee-hero-shade {
    background:
      linear-gradient(90deg, rgba(25, 12, 7, 0.86), rgba(25, 12, 7, 0.18)),
      linear-gradient(0deg, rgba(25, 12, 7, 0.86), transparent 50%);
  }
  .coffee-hero-copy {
    width: calc(100% - 28px);
    padding: 132px 0 76px;
    margin: auto;
  }
  .coffee-hero h1 {
    font-size: clamp(54px, 16.7vw, 78px);
  }
  .coffee-hero-copy > p:not(.coffee-eyebrow) {
    font-size: 15px;
  }
  .coffee-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .coffee-button {
    width: 100%;
  }
  .coffee-text-link {
    width: max-content;
  }
  .coffee-side-note {
    display: none;
  }
  .coffee-about h2,
  .menu-heading h2,
  .values-heading h2 {
    font-size: 44px;
  }
  .about-copy > p:first-child {
    font-size: 20px;
  }
  .about-copy ul {
    grid-template-columns: 1fr;
  }
  .drink-grid {
    grid-template-columns: 1fr;
  }
  .drink-card:last-child {
    grid-column: auto;
  }
  .drink-photo,
  .drink-card:last-child .drink-photo {
    height: 330px;
  }
  .compact-menu {
    grid-template-columns: 1fr;
  }
  .atmosphere {
    min-height: 580px;
  }
  .atmosphere h2 {
    font-size: 44px;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
  }
  .values-grid article:last-child {
    border-bottom: 0;
  }
  .values-grid h3 {
    margin-top: 36px;
  }
  .visit-copy {
    padding: 80px 24px;
  }
  .visit h2 {
    font-size: 55px;
  }
  .visit-details {
    grid-template-columns: 1fr;
  }
  .visit-map {
    min-height: 420px;
  }
  .map-pin {
    left: 28%;
  }
  .coffee-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .coffee-footer .coffee-brand {
    grid-column: auto;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms;
    transition-duration: 0.01ms;
  }
  .has-reveal .reveal {
    opacity: 1;
    transform: none;
  }
}
