:root {
  --ink: #111111;
  --white: #ffffff;
  --cloud: #f5f5f5;
  --warm: #e7ddd2;
  --muted: #707072;
  --hairline: #d7d7d7;
  --max-width: 1440px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-gap: clamp(88px, 10vw, 160px);
  --pill: 999px;
  color: var(--ink);
  background: var(--white);
  font-family:
    "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei",
    Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  background: var(--ink);
  color: var(--white);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 1000;
  padding: 12px 18px;
  border-radius: var(--pill);
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 12px var(--gutter);
  border-bottom: 1px solid transparent;
  color: var(--white);
  transition:
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgb(255 255 255 / 96%);
  border-color: var(--hairline);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.brand-copy small {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav a {
  position: relative;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.nav-cta {
  justify-self: end;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: var(--pill);
  font-size: 13px;
  font-weight: 650;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.site-header.is-scrolled .nav-cta:hover,
.site-header.is-scrolled .nav-cta:focus-visible,
.site-header.is-open .nav-cta:hover,
.site-header.is-open .nav-cta:focus-visible {
  background: var(--ink);
  color: var(--white);
}

.menu-button,
.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 44%;
  filter: saturate(0.88) contrast(1.04);
  scale: 1.01;
}

.hero-shade {
  background:
    linear-gradient(180deg, rgb(0 0 0 / 52%) 0%, rgb(0 0 0 / 4%) 38%, rgb(0 0 0 / 76%) 100%),
    linear-gradient(90deg, rgb(0 0 0 / 30%), transparent 66%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, var(--max-width));
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(142px, 18vh, 210px) var(--gutter) clamp(90px, 10vh, 126px);
  flex-direction: column;
  justify-content: flex-end;
}

.hero-eyebrow {
  margin-bottom: clamp(18px, 2.5vw, 30px);
}

.hero h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(68px, 9.4vw, 144px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.9;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: clamp(32px, 5vw, 68px);
}

.hero-bottom p {
  max-width: 480px;
  margin: 0;
  font-size: clamp(16px, 1.55vw, 22px);
  line-height: 1.6;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 26px;
  border-radius: var(--pill);
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

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

.button:active {
  transform: translateY(0) scale(0.97);
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--cloud);
}

.scroll-cue {
  position: absolute;
  right: var(--gutter);
  bottom: 28px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.scroll-cue span:last-child {
  font-size: 18px;
  animation: cue 1.5s ease-in-out infinite;
}

@keyframes cue {
  0%,
  100% {
    transform: translateY(-2px);
  }
  50% {
    transform: translateY(4px);
  }
}

.intro {
  display: grid;
  grid-template-columns: minmax(80px, 0.23fr) 1fr;
  gap: clamp(30px, 6vw, 100px);
  padding-block: var(--section-gap);
}

.section-index {
  padding-top: 10px;
  border-top: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.intro-content h2,
.craft-copy h2,
.space-heading h2,
.visit-top h2 {
  margin: 22px 0 0;
  font-size: clamp(54px, 7.5vw, 112px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.intro-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 82px);
  margin-top: clamp(52px, 7vw, 96px);
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.intro-copy p {
  margin: 0;
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.85;
}

.coffee-section {
  padding-block: var(--section-gap);
  background: var(--cloud);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.48fr);
  align-items: end;
  gap: 40px;
  margin-bottom: clamp(46px, 6vw, 84px);
}

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(46px, 5.8vw, 86px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.75;
}

.coffee-grid {
  display: grid;
  width: min(100%, calc(var(--max-width) + 2 * var(--gutter)));
  margin-inline: auto;
  padding-inline: var(--gutter);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.coffee-card {
  min-width: 0;
}

.coffee-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}

.coffee-visual-black {
  background: var(--ink);
  color: var(--white);
}

.coffee-visual-cream {
  background: var(--warm);
  color: var(--ink);
}

.coffee-visual-photo {
  color: var(--white);
}

.coffee-visual-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 20%), transparent 48%, rgb(0 0 0 / 55%));
  content: "";
}

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

.coffee-card:hover .coffee-visual-photo img {
  transform: scale(1.035);
}

.coffee-number,
.coffee-label {
  position: absolute;
  z-index: 2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.coffee-number {
  top: 22px;
  left: 22px;
}

.coffee-label {
  right: 22px;
  bottom: 22px;
}

.cup {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(56%, 240px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cup::before {
  position: absolute;
  top: 50%;
  right: -14%;
  width: 28%;
  height: 36%;
  border: 12px solid currentColor;
  border-left: 0;
  border-radius: 0 70% 70% 0;
  content: "";
  transform: translateY(-50%);
}

.cup-espresso {
  border: 24px solid var(--white);
  background:
    radial-gradient(circle at 38% 34%, #d2a16b 0 8%, #8a4f24 20%, #35180b 64%, #170b06 100%);
  color: var(--white);
  box-shadow: 0 38px 70px rgb(0 0 0 / 32%);
}

.cup-milk {
  border: 24px solid var(--white);
  background: #c69361;
  color: var(--white);
  box-shadow: 0 38px 70px rgb(98 72 50 / 22%);
}

.cup-milk span,
.cup-milk span::before,
.cup-milk span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56%;
  height: 70%;
  border-radius: 50% 50% 48% 48%;
  background: #f6eadb;
  content: "";
  transform: translate(-50%, -52%);
}

.cup-milk span::before {
  width: 66%;
  height: 68%;
  background: #c69361;
  transform: translate(-50%, -40%);
}

.cup-milk span::after {
  width: 35%;
  height: 48%;
  background: #f6eadb;
  transform: translate(-50%, -62%);
}

.coffee-card-copy {
  padding: 24px 4px 12px;
}

.coffee-card-copy h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.coffee-card-copy p {
  max-width: 360px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.craft-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 130px);
  padding-block: var(--section-gap);
}

.craft-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.craft-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}

.image-note {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 14px;
  border-radius: var(--pill);
  background: var(--white);
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.craft-copy h2 {
  font-size: clamp(54px, 6vw, 88px);
}

.craft-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 44px 0 0;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.8;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 15px;
  font-weight: 650;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(5px);
}

.space-section {
  padding-block: var(--section-gap);
  background: var(--ink);
  color: var(--white);
}

.space-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) 1fr;
  gap: clamp(30px, 6vw, 100px);
  align-items: start;
}

.space-heading h2 {
  max-width: 1080px;
  margin-top: 0;
}

.space-collage {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  grid-template-rows: auto auto;
  gap: 8px;
  margin-top: clamp(58px, 8vw, 110px);
}

.space-photo {
  margin: 0;
  overflow: hidden;
}

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

.space-photo:hover img {
  transform: scale(1.025);
}

.space-photo-large {
  grid-row: 1 / span 2;
  min-height: 900px;
}

.space-photo-large img {
  object-position: 50% 42%;
}

.space-photo-small {
  min-height: 440px;
}

.space-quote {
  display: flex;
  min-height: 280px;
  margin: 0;
  padding: clamp(30px, 4vw, 58px);
  background: var(--white);
  color: var(--ink);
  flex-direction: column;
  justify-content: space-between;
}

.space-quote p {
  max-width: 480px;
  margin: 0;
  font-size: clamp(30px, 3.6vw, 54px);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.space-quote span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.visit-section {
  padding-block: var(--section-gap) 56px;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgb(255 255 255 / 20%);
}

.visit-top {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) 1fr;
  gap: clamp(30px, 6vw, 100px);
}

.visit-top h2 {
  margin-top: 0;
  font-size: clamp(76px, 11vw, 166px);
}

.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(64px, 9vw, 120px);
  border-top: 1px solid rgb(255 255 255 / 28%);
  border-bottom: 1px solid rgb(255 255 255 / 28%);
}

.visit-item {
  min-height: 260px;
  padding: 28px clamp(20px, 3vw, 44px) 32px 0;
}

.visit-item + .visit-item {
  padding-left: clamp(20px, 3vw, 44px);
  border-left: 1px solid rgb(255 255 255 / 28%);
}

.visit-item span {
  color: rgb(255 255 255 / 64%);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.visit-item strong {
  display: block;
  margin-top: 48px;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  letter-spacing: -0.04em;
}

.visit-item p {
  max-width: 280px;
  margin: 18px 0 0;
  color: rgb(255 255 255 / 60%);
  font-size: 13px;
  line-height: 1.7;
}

.visit-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
}

.visit-note p {
  margin: 0;
  color: rgb(255 255 255 / 62%);
  font-size: 13px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 50px;
  padding: 54px var(--gutter);
  background: var(--white);
  color: var(--ink);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-mark {
  width: 50px;
  height: 50px;
}

.footer-brand strong {
  font-size: 18px;
}

.footer-brand p,
.footer-meta p,
.copyright {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.footer-meta {
  text-align: right;
}

.footer-meta a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.copyright {
  margin: 0;
  white-space: nowrap;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 22px;
  }

  .coffee-visual {
    min-height: 480px;
  }

  .space-photo-large {
    min-height: 760px;
  }

  .space-photo-small {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 70px;
  }

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

  .menu-button {
    position: relative;
    z-index: 102;
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    place-content: center;
    gap: 6px;
  }

  .menu-button span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.is-open .menu-button span:first-child {
    transform: translateY(3.75px) rotate(45deg);
  }

  .site-header.is-open .menu-button span:last-child {
    transform: translateY(-3.75px) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    padding: 130px var(--gutter) 48px;
    background: var(--white);
    color: var(--ink);
    flex-direction: column;
    gap: 0;
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu a {
    padding: 20px 0;
    border-bottom: 1px solid var(--hairline);
    font-size: clamp(34px, 9vw, 54px);
    font-weight: 750;
    letter-spacing: -0.05em;
  }

  .hero h1 {
    font-size: clamp(62px, 13.5vw, 108px);
  }

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

  .scroll-cue {
    display: none;
  }

  .intro,
  .space-heading,
  .visit-top {
    grid-template-columns: 1fr;
  }

  .section-index {
    width: 80px;
  }

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

  .coffee-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .coffee-visual {
    min-height: min(720px, 105vw);
  }

  .craft-section {
    grid-template-columns: 1fr;
  }

  .craft-image {
    min-height: min(880px, 120vw);
  }

  .space-collage {
    grid-template-columns: 1fr;
  }

  .space-photo-large {
    grid-row: auto;
    min-height: min(900px, 120vw);
  }

  .space-photo-small {
    min-height: min(560px, 72vw);
  }

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

  .visit-item {
    min-height: 190px;
    padding: 28px 0;
  }

  .visit-item + .visit-item {
    padding-left: 0;
    border-top: 1px solid rgb(255 255 255 / 28%);
    border-left: 0;
  }

  .visit-item strong {
    margin-top: 32px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  :root {
    --gutter: 20px;
    --section-gap: 86px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-copy small {
    font-size: 7px;
  }

  .hero-image {
    object-position: 52% 45%;
  }

  .hero-content {
    padding-top: 132px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(48px, 15.3vw, 62px);
    line-height: 0.92;
  }

  .hero-bottom {
    margin-top: 30px;
    gap: 26px;
  }

  .hero-bottom p {
    max-width: 310px;
    font-size: 15px;
  }

  .button {
    min-height: 50px;
    width: 100%;
    justify-content: space-between;
  }

  .intro-content h2,
  .craft-copy h2,
  .space-heading h2 {
    font-size: clamp(48px, 14.4vw, 68px);
  }

  .intro-copy {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 46px;
  }

  .intro-copy p {
    font-size: 16px;
  }

  .section-heading h2 {
    font-size: 44px;
  }

  .section-heading > p {
    font-size: 15px;
  }

  .coffee-grid {
    padding-inline: 0;
  }

  .coffee-card-copy {
    padding-inline: var(--gutter);
  }

  .coffee-visual {
    min-height: 125vw;
  }

  .coffee-visual-photo img {
    object-position: 50% 46%;
  }

  .craft-image {
    min-height: 128vw;
    margin-inline: calc(var(--gutter) * -1);
  }

  .craft-copy > p:not(.eyebrow) {
    margin-top: 32px;
    font-size: 16px;
  }

  .space-heading h2 {
    margin-top: 20px;
  }

  .space-collage {
    padding-inline: 0;
  }

  .space-photo-large {
    min-height: 128vw;
  }

  .space-photo-small {
    min-height: 72vw;
  }

  .space-quote {
    min-height: 240px;
    margin-inline: var(--gutter);
  }

  .visit-top h2 {
    margin-top: 18px;
    font-size: clamp(72px, 22vw, 104px);
  }

  .visit-note {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 34px;
    padding-block: 44px;
  }

  .footer-meta {
    text-align: left;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
