:root {
  --ivory: #f4f1ea;
  --ink: #171712;
  --deep-green: #102619;
  --green: #1c3526;
  --light: #f7f3ea;
  --line: rgba(26, 27, 22, 0.15);
  --serif-en: "Cormorant Garamond", "Iowan Old Style", "Times New Roman", serif;
  --serif-ko: "Noto Serif KR", "AppleMyungjo", "Nanum Myeongjo", serif;
  --sans: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  --page-padding: 7vw;
  --ease: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid #d7c28c;
  outline-offset: 4px;
}

.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;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  height: 76px;
  align-items: center;
  padding: 0 5.6vw 0 2.7vw;
  color: #fff;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  font-family: var(--serif-en);
  line-height: 0.82;
  letter-spacing: 0.055em;
}

.brand span {
  font-size: 22px;
}

.brand small {
  margin-top: 7px;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.desktop-nav {
  display: flex;
  width: min(55.2vw, 630px);
  align-items: center;
  justify-content: space-between;
  gap: 0;
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.desktop-nav a {
  transition: opacity var(--ease);
}

.desktop-nav a:hover {
  opacity: 0.62;
}

.desktop-nav .nav-visit {
  margin-left: 1px;
  padding: 14px 30px;
  border-radius: 3px;
  background: rgba(16, 38, 25, 0.92);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  height: clamp(430px, 38vw, 650px);
  min-height: 430px;
  overflow: hidden;
  color: #fff;
}

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

.hero-image {
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 7, 4, 0.6) 0%, rgba(4, 8, 5, 0.34) 42%, rgba(3, 7, 4, 0.13) 76%, rgba(3, 7, 4, 0.24) 100%),
    linear-gradient(0deg, rgba(2, 5, 3, 0.19), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(80.3vw, 1180px);
  margin: 0 auto;
  padding-top: clamp(108px, 10.4vw, 151px);
}

.hero h1 {
  max-width: 590px;
  margin: 0;
  font-family: var(--serif-en);
  font-size: clamp(49px, 4.25vw, 67px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.hero-content p {
  margin: 20px 0 0;
  font-size: 14px;
  line-height: 1.68;
}

.button {
  display: inline-flex;
  min-width: 112px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-top: 27px;
  border-radius: 2px;
  background: var(--deep-green);
  color: var(--light);
  font-size: 9px;
  letter-spacing: 0.04em;
  transition: opacity var(--ease);
}

.button:hover,
.text-link:hover {
  opacity: 0.62;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 11px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
  font-size: 18px;
  line-height: 1.15;
}

.scroll-cue small {
  margin-top: 4px;
  font-size: 9px;
}

.section-ivory {
  background: var(--ivory);
}

.eyebrow {
  margin: 0;
  font-size: 8px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.about {
  display: grid;
  height: 244px;
  grid-template-columns: minmax(0, 46.2%) minmax(0, 53.8%);
  align-items: center;
  padding: 18px var(--page-padding);
  border-bottom: 1px solid var(--line);
}

.about-copy {
  align-self: stretch;
  padding: 5px 0 0 3vw;
}

.about h2,
.section-heading h2,
.story-copy h2,
.space h2,
.journal h2,
.visit h2 {
  font-family: var(--serif-ko);
  font-weight: 400;
}

.about h2 {
  margin: 18px 0 13px;
  font-size: 25px;
  line-height: 1.28;
  letter-spacing: -0.045em;
}

.body-copy {
  margin: 0;
  font-size: 10px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  font-size: 10px;
  transition: opacity var(--ease);
}

.text-link span {
  font-size: 18px;
  font-weight: 300;
}

.about-image {
  width: 100%;
  height: 206px;
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}

.about-image img {
  height: 100%;
  object-fit: cover;
}

.signature {
  height: 226px;
  padding: 7px 9.8vw 18px;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  margin: 5px 0 10px;
  font-size: 18px;
  line-height: 1.2;
}

.coffee-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.coffee-card {
  min-width: 0;
  text-align: center;
}

.coffee-card + .coffee-card {
  position: relative;
}

.coffee-card + .coffee-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -12px;
  width: 1px;
  background: rgba(26, 27, 22, 0.08);
  content: "";
}

.coffee-card img {
  height: 102px;
  border-radius: 3px;
  object-fit: cover;
}

.coffee-card h3 {
  margin: 9px 0 4px;
  font-size: 13px;
  font-weight: 600;
}

.coffee-card p {
  margin: 0;
  color: rgba(23, 23, 18, 0.82);
  font-size: 9px;
  line-height: 1.55;
}

.roasting-story {
  display: grid;
  min-height: 224px;
  grid-template-columns: 38.2% 20.5% 41.3%;
  background: var(--deep-green);
  color: var(--light);
}

.story-image {
  height: 100%;
  min-height: 224px;
  margin: 0;
  overflow: hidden;
}

.story-image img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  padding: 34px 0 26px 30px;
}

.story-copy h2 {
  margin: 15px 0 0;
  font-size: 20px;
  line-height: 1.36;
  letter-spacing: -0.045em;
}

.story-steps {
  display: grid;
  align-items: center;
  align-self: stretch;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
  padding: 28px 7vw 24px 0;
  list-style: none;
}

.story-steps li {
  text-align: center;
}

.story-steps strong {
  display: block;
  margin-top: 10px;
  font-size: 8px;
  font-weight: 500;
}

.story-steps p {
  margin: 8px 0 0;
  color: rgba(247, 243, 234, 0.75);
  font-size: 8px;
  line-height: 1.5;
}

.step-icon {
  position: relative;
  display: block;
  width: 21px;
  height: 21px;
  margin: 0 auto;
  border: 1px solid rgba(247, 243, 234, 0.85);
}

.icon-origin {
  transform: rotate(-45deg);
  border-width: 1px 1px 0 0;
  border-radius: 50% 4px 50% 4px;
}

.icon-origin::after {
  position: absolute;
  top: 9px;
  left: -2px;
  width: 23px;
  height: 1px;
  background: rgba(247, 243, 234, 0.8);
  content: "";
}

.icon-roast {
  border: 0;
}

.icon-roast::before,
.icon-roast::after {
  position: absolute;
  bottom: 0;
  width: 9px;
  height: 18px;
  border: 1px solid rgba(247, 243, 234, 0.85);
  border-radius: 50% 50% 45% 45%;
  content: "";
}

.icon-roast::before {
  left: 2px;
  transform: rotate(24deg);
}

.icon-roast::after {
  right: 2px;
  transform: rotate(-24deg);
}

.icon-cup {
  height: 16px;
  margin-top: 5px;
  border-width: 0 1px 1px;
  border-radius: 0 0 5px 5px;
}

.icon-cup::after {
  position: absolute;
  top: 3px;
  right: -7px;
  width: 7px;
  height: 8px;
  border: 1px solid rgba(247, 243, 234, 0.85);
  border-left: 0;
  border-radius: 0 5px 5px 0;
  content: "";
}

.mobile-story-link {
  display: none;
}

.space {
  padding: 56px var(--page-padding) 70px;
}

.space-heading {
  margin-bottom: 24px;
}

.space-heading h2 {
  margin: 10px 0 0;
  font-size: 31px;
}

.space-gallery {
  display: grid;
  height: 420px;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 16px;
}

.space-gallery img {
  height: 100%;
  object-fit: cover;
}

.space-gallery img:nth-child(2) {
  margin-top: 46px;
  height: calc(100% - 46px);
}

.journal {
  padding: 90px var(--page-padding);
  background: #e9e3d9;
  text-align: center;
}

.journal h2 {
  margin: 17px 0;
  font-size: 38px;
  line-height: 1.35;
}

.journal > p:last-child {
  font-size: 13px;
  line-height: 1.8;
}

.visit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 82px var(--page-padding);
  background: var(--green);
  color: var(--light);
}

.visit h2 {
  margin: 18px 0 0;
  font-size: 38px;
  line-height: 1.3;
}

.visit dl {
  margin: 0;
}

.visit dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  padding: 17px 0;
  border-bottom: 1px solid rgba(247, 243, 234, 0.2);
}

.visit dt {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.visit dd {
  margin: 0;
  font-size: 12px;
}

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 48px var(--page-padding);
  background: #0a1710;
  color: var(--light);
}

.site-footer p {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.08em;
}

@media (max-width: 1023px) {
  .site-header {
    padding-right: 4vw;
  }

  .desktop-nav {
    width: auto;
    justify-content: flex-start;
    gap: 22px;
  }

  .desktop-nav .nav-visit {
    padding-right: 20px;
    padding-left: 20px;
  }

  .about-copy {
    padding-left: 1vw;
  }

  .roasting-story {
    grid-template-columns: 35% 25% 40%;
  }
}

@media (max-width: 767px) {
  :root {
    --page-padding: 20px;
  }

  .site-header {
    position: absolute;
    height: 64px;
    padding: 18px 20px 0;
    align-items: flex-start;
  }

  .brand span {
    font-size: 19px;
  }

  .brand small {
    margin-top: 6px;
    font-size: 8px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 22;
    display: flex;
    width: 26px;
    height: 24px;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    margin: 0 0 0 auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform var(--ease);
  }

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

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

  .mobile-nav {
    position: fixed;
    z-index: 21;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    gap: 23px;
    padding: 70px 34px;
    background: rgba(10, 23, 16, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), visibility var(--ease);
  }

  .mobile-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .mobile-nav a {
    width: fit-content;
    font-family: var(--serif-en);
    font-size: 28px;
  }

  .hero {
    height: clamp(330px, 94.5vw, 420px);
    min-height: 330px;
  }

  .hero-image {
    object-position: 59% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(3, 7, 4, 0.66), rgba(3, 7, 4, 0.25) 72%),
      linear-gradient(0deg, rgba(2, 5, 3, 0.23), transparent 55%);
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 99px 24px 0;
  }

  .hero h1 {
    max-width: 310px;
    font-size: clamp(31px, 9.2vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.02em;
  }

  .hero-content p {
    margin-top: 15px;
    font-size: 10px;
    line-height: 1.65;
  }

  .button {
    min-width: 88px;
    height: 31px;
    margin-top: 17px;
    font-size: 7px;
  }

  .scroll-cue {
    display: none;
  }

  .eyebrow {
    font-size: 7px;
  }

  .about {
    height: 207px;
    grid-template-columns: minmax(0, 60%) minmax(0, 40%);
    align-items: start;
    padding: 19px 12px 16px 20px;
    border-bottom: 0;
  }

  .about-copy {
    padding: 0;
  }

  .about h2 {
    margin: 15px 0 12px;
    font-size: 18px;
    line-height: 1.27;
  }

  .body-copy {
    font-size: 7.8px;
    line-height: 1.65;
    letter-spacing: -0.025em;
  }

  .text-link {
    gap: 10px;
    margin-top: 10px;
    font-size: 8px;
  }

  .text-link span {
    font-size: 14px;
  }

  .about-image {
    height: 130px;
    margin-top: 41px;
  }

  .about-image img {
    object-position: 55% center;
  }

  .signature {
    height: 286px;
    padding: 7px 20px 13px;
    border-bottom: 0;
  }

  .section-heading h2 {
    margin: 5px 0 19px;
    font-size: 15px;
  }

  .coffee-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .coffee-card {
    display: grid;
    min-height: 66px;
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    text-align: left;
  }

  .coffee-card + .coffee-card::before {
    display: none;
  }

  .coffee-card img {
    height: 66px;
    border-radius: 3px;
  }

  .coffee-card h3 {
    margin: 0 0 7px;
    font-size: 11px;
  }

  .coffee-card p {
    font-size: 8px;
    line-height: 1.55;
  }

  .coffee-card p br {
    display: initial;
  }

  .roasting-story {
    display: grid;
    height: 114px;
    min-height: 114px;
    grid-template-columns: 47% 53%;
    grid-template-areas: "copy image";
  }

  .story-image {
    grid-area: image;
    height: 114px;
    min-height: 114px;
  }

  .story-image img {
    object-position: center;
  }

  .story-copy {
    grid-area: copy;
    overflow: hidden;
    padding: 15px 5px 7px 20px;
  }

  .story-copy h2 {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 1.35;
    letter-spacing: -0.07em;
  }

  .story-steps {
    display: none;
  }

  .mobile-story-link {
    display: inline-flex;
    margin-top: 5px;
    color: var(--light);
    font-size: 7px;
  }

  .space {
    padding: 13px 12px 28px 20px;
  }

  .space-heading {
    margin-bottom: 11px;
  }

  .space-heading h2 {
    margin-top: 7px;
    font-size: 16px;
  }

  .space-gallery {
    height: 215px;
    grid-template-columns: 1fr 0.8fr;
    gap: 7px;
  }

  .space-gallery img {
    min-width: 0;
  }

  .space-gallery img:nth-child(1) {
    grid-row: 1 / span 2;
  }

  .space-gallery img:nth-child(2),
  .space-gallery img:nth-child(3) {
    height: 104px;
    margin: 0;
  }

  .journal {
    padding: 55px 20px;
  }

  .journal h2 {
    margin: 14px 0;
    font-size: 26px;
  }

  .journal > p:last-child {
    font-size: 10px;
  }

  .visit {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 20px;
  }

  .visit h2 {
    margin-top: 14px;
    font-size: 28px;
  }

  .visit dl > div {
    grid-template-columns: 120px 1fr;
  }

  .visit dd {
    font-size: 10px;
  }

  .site-footer {
    padding: 38px 20px;
  }
}

@media (max-width: 374px) {
  .body-copy {
    font-size: 7.5px;
  }

  .coffee-card {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
