:root {
  --espresso: #24150f;
  --espresso-soft: #382219;
  --cream: #f0e8d8;
  --paper: #e5dbc8;
  --caramel: #c17d45;
  --caramel-dark: #95562d;
  --gold: #c7a564;
  --charcoal: #171614;
  --line-dark: rgba(36, 21, 15, 0.2);
  --line-light: rgba(240, 232, 216, 0.18);
  --font-display: "DM Serif Display", Georgia, serif;
  --font-sans: "DM Sans", Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 5rem);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background: var(--cream);
  color: var(--espresso);
  font-family: var(--font-sans);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  color: inherit;
  font: inherit;
}

img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.noise {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.42'/%3E%3C/svg%3E");
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

.site-header {
  align-items: center;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 1.1rem var(--page-pad);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 0.4s ease, color 0.4s ease, padding 0.4s ease;
  z-index: 50;
}

.site-header.scrolled {
  backdrop-filter: blur(16px);
  background: rgba(28, 17, 12, 0.92);
  border-bottom: 1px solid var(--line-light);
  padding-block: 0.75rem;
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.7rem;
  justify-self: start;
}

.brand-mark {
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  font-family: var(--font-display);
  font-size: 1.25rem;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 0.75;
}

.brand-name span {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  margin-top: 0.55rem;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1.2rem, 2.6vw, 3rem);
}

.site-nav a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  position: relative;
  text-transform: uppercase;
}

.site-nav a::after {
  background: currentColor;
  bottom: -0.45rem;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
  width: 100%;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 600;
  justify-self: end;
  letter-spacing: 0.08em;
  padding-bottom: 0.3rem;
  text-transform: uppercase;
}

.nav-cta span {
  margin-left: 0.4rem;
}

.menu-toggle {
  background: none;
  border: 0;
  cursor: pointer;
  display: none;
  height: 2rem;
  position: relative;
  width: 2rem;
  z-index: 2;
}

.menu-toggle span {
  background: currentColor;
  height: 1px;
  left: 0.25rem;
  position: absolute;
  transition: transform 0.3s ease, top 0.3s ease;
  width: 1.5rem;
}

.menu-toggle span:first-child {
  top: 0.7rem;
}

.menu-toggle span:last-child {
  top: 1.25rem;
}

.hero {
  background: var(--espresso);
  color: var(--cream);
  display: grid;
  grid-template-columns: 59% 41%;
  min-height: 100svh;
  overflow: hidden;
  padding: 8rem var(--page-pad) 3rem;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, rgba(193, 125, 69, 0.24), transparent 64%);
  content: "";
  height: 50vw;
  left: -22vw;
  position: absolute;
  top: -20vw;
  width: 50vw;
}

.hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.65rem;
  font-weight: 700;
  gap: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow > span {
  background: var(--caramel);
  display: inline-block;
  height: 1px;
  width: 2.5rem;
}

.eyebrow.light {
  color: var(--paper);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 7.45vw, 9rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.78;
  margin: 2.4rem 0 3.5rem;
  position: relative;
  z-index: 3;
}

.title-line {
  display: block;
  padding-bottom: 0.1em;
}

.title-line > span {
  display: block;
}

.title-accent {
  color: var(--caramel);
  font-style: italic;
}

.title-indent {
  margin-left: 2.4em;
}

.hero-bottom {
  align-items: flex-end;
  display: flex;
  gap: clamp(2rem, 5vw, 6rem);
}

.hero-bottom > p {
  color: rgba(240, 232, 216, 0.72);
  font-size: clamp(0.88rem, 1vw, 1rem);
  line-height: 1.7;
  max-width: 26rem;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  gap: 1.6rem;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 1.4rem;
  justify-content: center;
  letter-spacing: 0.08em;
  min-height: 3.8rem;
  padding: 0 1.5rem;
  text-transform: uppercase;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.button-primary {
  background: var(--caramel);
  color: var(--espresso);
}

.button-primary:hover {
  background: var(--cream);
  transform: translateY(-3px);
}

.text-link {
  align-items: center;
  border-bottom: 1px solid currentColor;
  display: inline-flex;
  font-size: 0.75rem;
  font-weight: 700;
  gap: 0.8rem;
  letter-spacing: 0.08em;
  padding-bottom: 0.35rem;
  text-transform: uppercase;
}

.hero-visual {
  bottom: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 43%;
}

.hero-visual::after {
  background: linear-gradient(90deg, var(--espresso) 0%, transparent 35%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-image-wrap {
  height: 100%;
  overflow: hidden;
}

.hero-coffee {
  filter: saturate(0.75) sepia(0.12);
  transform: scale(1.08);
}

.image-note {
  bottom: 2.2rem;
  font-size: 0.58rem;
  left: 34%;
  letter-spacing: 0.16em;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.vertical-type {
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  position: absolute;
  right: 1.6rem;
  text-transform: uppercase;
  top: 50%;
  transform: rotate(90deg) translateX(50%);
  transform-origin: right center;
  z-index: 2;
}

.hero-orbit {
  align-items: center;
  border: 1px solid rgba(240, 232, 216, 0.25);
  border-radius: 50%;
  display: flex;
  height: 8rem;
  justify-content: center;
  position: absolute;
  right: calc(41% - 4rem);
  top: 21%;
  width: 8rem;
  z-index: 5;
}

.hero-orbit::before {
  background: var(--caramel);
  border-radius: 50%;
  content: "";
  height: 0.45rem;
  width: 0.45rem;
}

.hero-orbit span {
  font-size: 0.48rem;
  height: 100%;
  letter-spacing: 0.13em;
  padding: 0.5rem;
  position: absolute;
  text-transform: uppercase;
  width: 100%;
  word-spacing: 0.7rem;
}

.scroll-cue {
  align-items: center;
  bottom: 2rem;
  display: flex;
  font-size: 0.52rem;
  gap: 0.8rem;
  left: var(--page-pad);
  letter-spacing: 0.18em;
  position: absolute;
  text-transform: uppercase;
}

.scroll-cue i {
  border: 1px solid rgba(240, 232, 216, 0.6);
  border-radius: 1rem;
  height: 2rem;
  position: relative;
  width: 1rem;
}

.scroll-cue i::after {
  animation: scrollDot 1.8s infinite;
  background: var(--cream);
  border-radius: 50%;
  content: "";
  height: 0.18rem;
  left: 50%;
  position: absolute;
  top: 0.35rem;
  transform: translateX(-50%);
  width: 0.18rem;
}

@keyframes scrollDot {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 0.8rem); }
}

.marquee {
  background: var(--caramel);
  color: var(--espresso);
  overflow: hidden;
  padding: 0.85rem 0;
  transform: rotate(-1deg) scale(1.01);
}

.marquee-track {
  align-items: center;
  animation: marquee 28s linear infinite;
  display: flex;
  gap: 2.3rem;
  white-space: nowrap;
  width: max-content;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.5rem);
  font-style: italic;
}

.marquee-track i {
  font-size: 0.75rem;
  font-style: normal;
}

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

.section {
  padding: clamp(6rem, 10vw, 10rem) var(--page-pad);
}

.about {
  display: grid;
  grid-template-columns: 5% 38% 1fr;
  min-height: 100vh;
  position: relative;
}

.section-number {
  font-family: var(--font-display);
  font-size: 0.75rem;
  padding-top: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7.2vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.82;
}

.section-title em {
  color: var(--caramel-dark);
  font-weight: 400;
}

.section-title.light {
  color: var(--cream);
}

.section-title.light em {
  color: var(--caramel);
}

.about-copy {
  align-self: center;
  padding-right: clamp(2rem, 6vw, 7rem);
  position: relative;
  z-index: 2;
}

.about-copy .section-title {
  margin: 2rem 0 3rem;
}

.about-lead {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.25;
  margin-bottom: 1.4rem;
  max-width: 27rem;
}

.about-body {
  color: rgba(36, 21, 15, 0.65);
  font-size: 0.88rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 25rem;
}

.about-media {
  align-self: center;
  min-height: 42rem;
  position: relative;
}

.about-image-frame {
  height: min(68vh, 46rem);
  margin-left: 8%;
  overflow: hidden;
  position: relative;
  width: 75%;
}

.about-image-frame::after {
  border: 1px solid rgba(240, 232, 216, 0.45);
  content: "";
  inset: 1rem;
  pointer-events: none;
  position: absolute;
}

.about-coffee {
  height: 120%;
  margin-top: -10%;
}

.about-stamp {
  align-items: center;
  background: var(--espresso);
  border-radius: 50%;
  bottom: 5%;
  color: var(--cream);
  display: flex;
  flex-direction: column;
  height: 10rem;
  justify-content: center;
  position: absolute;
  right: 2%;
  transform: rotate(8deg);
  width: 10rem;
}

.about-stamp strong {
  color: var(--caramel);
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
}

.about-stamp span {
  font-size: 0.55rem;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-align: center;
  text-transform: uppercase;
}

.about-note {
  left: -2%;
  position: absolute;
  top: 7%;
  transform: rotate(-7deg);
}

.about-note span,
.about-note em {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.about-note em {
  color: var(--caramel-dark);
  margin-left: 2rem;
}

.quality-list {
  border-bottom: 1px solid var(--line-dark);
  border-top: 1px solid var(--line-dark);
  bottom: 3rem;
  display: grid;
  grid-column: 2 / 4;
  grid-template-columns: repeat(4, 1fr);
  left: 9%;
  position: absolute;
  right: var(--page-pad);
}

.quality-item {
  align-items: center;
  border-right: 1px solid var(--line-dark);
  display: flex;
  gap: 1rem;
  padding: 1rem 1.3rem;
}

.quality-item:last-child {
  border-right: 0;
}

.quality-item span {
  color: var(--caramel-dark);
  font-family: var(--font-display);
  font-size: 0.7rem;
}

.quality-item p {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.menu-section {
  background: var(--charcoal);
  color: var(--cream);
}

.menu-heading {
  align-items: flex-end;
  display: flex;
  justify-content: space-between;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.menu-heading .section-title {
  margin-top: 2rem;
}

.menu-intro {
  color: rgba(240, 232, 216, 0.6);
  font-size: 0.88rem;
  line-height: 1.8;
  max-width: 24rem;
  padding-bottom: 0.7rem;
}

.menu-grid {
  border-left: 1px solid var(--line-light);
  border-top: 1px solid var(--line-light);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.menu-card {
  border-bottom: 1px solid var(--line-light);
  border-right: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  min-height: 42rem;
  overflow: hidden;
  padding: 1.5rem;
  position: relative;
  transition: background 0.45s ease;
}

.menu-card:hover {
  background: var(--espresso-soft);
}

.menu-card.featured {
  background: var(--caramel);
  color: var(--espresso);
}

.menu-card.featured:hover {
  background: #cd8b53;
}

.menu-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.menu-index {
  font-family: var(--font-display);
  font-size: 0.75rem;
}

.menu-tag {
  border: 1px solid currentColor;
  border-radius: 2rem;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  padding: 0.45rem 0.65rem;
  text-transform: uppercase;
}

.drink-art {
  align-items: center;
  display: flex;
  flex: 1;
  justify-content: center;
  min-height: 15rem;
  position: relative;
}

.drink-art > span {
  display: block;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-card:hover .drink-art > span {
  transform: translateY(-8px) rotate(2deg);
}

.latte-art > span,
.americano-art > span,
.mocha-art > span {
  background: linear-gradient(90deg, #59351e, #bc8252 40%, #7a492c);
  border-radius: 0 0 4.4rem 4.4rem;
  box-shadow: inset 0 1.4rem 0 #3b1d10, 1.3rem 1.4rem 2rem rgba(0, 0, 0, 0.25);
  height: 8rem;
  width: 10rem;
}

.latte-art > span::before,
.americano-art > span::before,
.mocha-art > span::before {
  border: 0.8rem solid #7f4b2d;
  border-left: 0;
  border-radius: 0 50% 50% 0;
  content: "";
  height: 4rem;
  position: absolute;
  right: -2.6rem;
  top: 1rem;
  width: 2.6rem;
}

.latte-art > span::after {
  background: radial-gradient(ellipse, #fff2d2 0 13%, #c69a6b 14% 24%, #f3d7aa 25% 33%, #b77d4f 34% 50%, #ead0a8 51% 62%, #9c633b 63%);
  border-radius: 50%;
  content: "";
  height: 2.2rem;
  left: 0.7rem;
  position: absolute;
  top: 0.25rem;
  width: 8.6rem;
}

.americano-art > span {
  background: linear-gradient(90deg, #1f1612, #4e3020 45%, #251914);
  box-shadow: inset 0 1.4rem 0 #100c0a, 1.3rem 1.4rem 2rem rgba(0, 0, 0, 0.35);
}

.americano-art > span::before {
  border-color: #332118;
}

.caramel-art > span,
.tonic-art > span {
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.06)), linear-gradient(to top, #6b351c 0 55%, #d4ad7c 56% 80%, #f0e3cc 81%);
  border: 1px solid rgba(240, 232, 216, 0.4);
  border-radius: 0.5rem 0.5rem 2rem 2rem;
  box-shadow: 1rem 1.5rem 2rem rgba(0, 0, 0, 0.25);
  height: 12rem;
  width: 7rem;
}

.caramel-art > span::before,
.tonic-art > span::before {
  background: repeating-linear-gradient(45deg, transparent 0 0.5rem, rgba(255,255,255,0.25) 0.55rem 0.65rem);
  content: "";
  inset: 0;
  position: absolute;
}

.v60-art > span {
  border-left: 4.8rem solid transparent;
  border-right: 4.8rem solid transparent;
  border-top: 7rem solid #b56f3b;
  filter: drop-shadow(1rem 1.2rem 0.8rem rgba(0, 0, 0, 0.3));
  height: 0;
  width: 0;
}

.v60-art > span::before {
  border: 0.25rem solid #d8a26f;
  border-radius: 50%;
  content: "";
  height: 2.7rem;
  left: 2.2rem;
  position: absolute;
  top: -6.2rem;
  width: 3rem;
}

.v60-art > span::after {
  background: #4f2d1d;
  content: "";
  height: 4.8rem;
  left: -3rem;
  position: absolute;
  top: 0.6rem;
  width: 6rem;
}

.tonic-art > span {
  background: linear-gradient(90deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)), linear-gradient(to top, #d6a94f 0 62%, #432519 63% 82%, transparent 83%);
}

.tonic-art > span::after {
  border: 0.25rem solid #d79c45;
  border-radius: 50%;
  content: "";
  height: 3rem;
  position: absolute;
  right: -1.2rem;
  top: 2.5rem;
  width: 3rem;
}

.mocha-art > span::after {
  background: radial-gradient(ellipse, #eee0c5 0 13%, #6d3d26 14% 24%, #d1b18b 25% 36%, #502b1d 37% 55%, #ab7d59 56% 70%, #392015 71%);
  border-radius: 50%;
  content: "";
  height: 2.2rem;
  left: 0.7rem;
  position: absolute;
  top: 0.25rem;
  width: 8.6rem;
}

.menu-card-copy {
  position: relative;
  z-index: 2;
}

.menu-card-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.menu-card-copy p {
  color: rgba(240, 232, 216, 0.58);
  font-size: 0.72rem;
  line-height: 1.6;
  margin: 1.5rem 0;
  max-width: 19rem;
}

.menu-card.featured .menu-card-copy p {
  color: rgba(36, 21, 15, 0.7);
}

.menu-card-copy strong {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
}

.menu-footnote {
  color: rgba(240, 232, 216, 0.45);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  margin-top: 1.2rem;
  text-align: right;
  text-transform: uppercase;
}

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

.experience-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.experience-heading .eyebrow {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mode-card {
  background: var(--cream);
  border: 1px solid var(--line-dark);
  min-height: 38rem;
  overflow: hidden;
  padding: 2rem;
  position: relative;
}

.mode-card + .mode-card {
  border-left: 0;
}

.mode-card.dark {
  background: var(--espresso);
  color: var(--cream);
}

.mode-card.caramel {
  background: var(--caramel);
}

.mode-number {
  font-family: var(--font-display);
  font-size: 0.7rem;
  position: absolute;
  right: 2rem;
  top: 2rem;
}

.mode-icon {
  align-items: center;
  display: flex;
  height: 13rem;
  justify-content: center;
}

.focus-icon {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 6rem;
  position: relative;
  width: 6rem;
}

.focus-icon::before,
.focus-icon::after {
  background: currentColor;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.focus-icon::before {
  height: 1px;
  width: 9rem;
}

.focus-icon::after {
  height: 9rem;
  width: 1px;
}

.talk-icon {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 6rem;
  position: relative;
  transform: translateX(-1rem);
  width: 6rem;
}

.talk-icon::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  height: 6rem;
  left: 2rem;
  position: absolute;
  top: 1rem;
  width: 6rem;
}

.recharge-icon {
  border: 1px solid currentColor;
  border-radius: 50%;
  height: 7rem;
  position: relative;
  width: 7rem;
}

.recharge-icon::after {
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  inset: 1.2rem;
  position: absolute;
}

.mode-card h3 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.82;
  margin-top: 2rem;
}

.mode-card p {
  color: rgba(36, 21, 15, 0.65);
  font-size: 0.8rem;
  line-height: 1.7;
  margin-top: 2rem;
  max-width: 20rem;
}

.mode-card.dark p {
  color: rgba(240, 232, 216, 0.6);
}

.mode-word {
  bottom: -0.08em;
  color: rgba(36, 21, 15, 0.045);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 700;
  left: 0.1em;
  letter-spacing: -0.08em;
  line-height: 1;
  position: absolute;
}

.mode-card.dark .mode-word {
  color: rgba(240, 232, 216, 0.04);
}

.gallery {
  background: var(--cream);
  display: grid;
  gap: 5rem 2rem;
  grid-template-columns: repeat(12, 1fr);
  padding-bottom: 12rem;
  position: relative;
}

.gallery-title {
  grid-column: 2 / 12;
  margin-bottom: 2rem;
  position: relative;
  text-align: center;
  z-index: 2;
}

.gallery-title span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.gallery-title h2 {
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 18rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.gallery-title em {
  color: var(--caramel-dark);
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.8rem);
  margin-top: 2rem;
  transform: rotate(-3deg);
}

.gallery-item {
  position: relative;
}

.gallery-mask {
  height: 100%;
  overflow: hidden;
}

.gallery-item img {
  height: 120%;
  margin-top: -10%;
}

.gallery-item figcaption {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  margin-top: 0.8rem;
  text-transform: uppercase;
}

.gallery-1 {
  grid-column: 1 / 8;
  height: 40rem;
}

.gallery-2 {
  align-self: end;
  grid-column: 9 / 13;
  height: 27rem;
  margin-bottom: -7rem;
}

.gallery-3 {
  grid-column: 3 / 7;
  height: 34rem;
  margin-top: 6rem;
}

.gallery-4 {
  grid-column: 8 / 13;
  height: 42rem;
}

.gallery-quote {
  align-items: center;
  display: flex;
  grid-column: 1 / 8;
  gap: 1.5rem;
  justify-content: center;
  padding-top: 4rem;
}

.gallery-quote span {
  color: var(--caramel-dark);
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.5;
}

.gallery-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 3.2rem);
  line-height: 1.1;
}

.visit {
  background: var(--espresso);
  color: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
  padding: 0;
}

.visit-map {
  background-color: #b66f3b;
  background-image: linear-gradient(rgba(36,21,15,.12) 1px, transparent 1px), linear-gradient(90deg, rgba(36,21,15,.12) 1px, transparent 1px);
  background-size: 4rem 4rem;
  color: var(--espresso);
  min-height: 45rem;
  overflow: hidden;
  position: relative;
}

.map-lines {
  inset: 0;
  position: absolute;
}

.map-lines span {
  border: 1px solid rgba(36, 21, 15, 0.36);
  border-radius: 50%;
  height: 55rem;
  position: absolute;
  width: 18rem;
}

.map-lines span:nth-child(1) {
  left: 4%;
  top: -12rem;
  transform: rotate(37deg);
}

.map-lines span:nth-child(2) {
  height: 60rem;
  right: 3%;
  top: -8rem;
  transform: rotate(-25deg);
  width: 15rem;
}

.map-lines span:nth-child(3) {
  bottom: -35rem;
  left: 20%;
  transform: rotate(68deg);
  width: 24rem;
}

.map-lines span:nth-child(4) {
  left: 35%;
  top: -25rem;
  transform: rotate(80deg);
  width: 25rem;
}

.map-pin {
  align-items: center;
  background: var(--espresso);
  border-radius: 50% 50% 50% 0;
  color: var(--cream);
  display: flex;
  height: 6rem;
  justify-content: center;
  left: 52%;
  position: absolute;
  top: 42%;
  transform: rotate(-45deg);
  width: 6rem;
}

.map-pin span {
  font-family: var(--font-display);
  font-size: 2rem;
  transform: rotate(45deg);
}

.map-pin i {
  border: 1px solid var(--espresso);
  border-radius: 50%;
  height: 10rem;
  left: -2rem;
  position: absolute;
  top: -2rem;
  width: 10rem;
}

.visit-map > p {
  bottom: 3rem;
  font-size: 0.65rem;
  font-weight: 700;
  left: 3rem;
  letter-spacing: 0.15em;
  line-height: 1.6;
  position: absolute;
  text-transform: uppercase;
}

.visit-copy {
  align-self: center;
  padding: clamp(5rem, 9vw, 10rem) clamp(2rem, 7vw, 8rem);
}

.visit-copy .section-title {
  margin: 2rem 0 3rem;
}

.visit-lead {
  color: rgba(240, 232, 216, 0.7);
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 2rem);
  line-height: 1.35;
  max-width: 30rem;
}

.visit-details {
  border-top: 1px solid var(--line-light);
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr;
  margin-top: 4rem;
}

.visit-details > div {
  border-bottom: 1px solid var(--line-light);
  padding: 1.5rem 1rem 1.5rem 0;
}

.visit-details > div:nth-child(2) {
  padding-left: 1rem;
}

.visit-details > div:last-child {
  grid-column: 1 / 3;
}

.visit-details span {
  color: var(--caramel);
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
}

.visit-details p,
.visit-details a {
  color: rgba(240, 232, 216, 0.75);
  font-size: 0.72rem;
  line-height: 1.8;
}

.visit-details a {
  border-bottom: 1px solid currentColor;
  display: inline-block;
  margin-top: 0.7rem;
}

.site-footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: 6rem var(--page-pad) 2rem;
}

.footer-top {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding-bottom: 6rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: clamp(4rem, 7vw, 8rem);
  letter-spacing: -0.06em;
  line-height: 0.7;
}

.footer-brand em {
  color: var(--caramel);
  font-weight: 400;
}

.footer-top > p {
  color: rgba(240, 232, 216, 0.55);
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.3;
  padding-top: 1rem;
}

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

.footer-links > div {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links span {
  color: var(--caramel);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(240, 232, 216, 0.7);
  font-size: 0.75rem;
  width: fit-content;
}

.footer-links a:hover {
  color: var(--cream);
}

.footer-bottom {
  border-top: 1px solid var(--line-light);
  color: rgba(240, 232, 216, 0.4);
  display: flex;
  font-size: 0.52rem;
  justify-content: space-between;
  letter-spacing: 0.13em;
  padding-top: 1.5rem;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 65% 35%;
  }

  .hero-visual {
    width: 40%;
  }

  .hero-orbit {
    right: calc(37% - 4rem);
  }

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

  .about {
    grid-template-columns: 4% 43% 1fr;
  }

  .menu-card {
    min-height: 38rem;
  }

  .mode-card {
    min-height: 34rem;
  }
}

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

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-cta {
    display: none;
  }

  .site-nav {
    align-items: flex-start;
    background: var(--espresso);
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: var(--page-pad);
    pointer-events: none;
    position: fixed;
    transform: translateY(-2rem);
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .site-nav a {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .menu-open .menu-toggle span:first-child {
    top: 1rem;
    transform: rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    top: 1rem;
    transform: rotate(-45deg);
  }

  .hero {
    display: block;
    min-height: 56rem;
    padding-top: 8rem;
  }

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

  .hero-title {
    font-size: clamp(4rem, 14vw, 7rem);
    margin-bottom: 2.4rem;
  }

  .title-indent {
    margin-left: 1.2em;
  }

  .hero-bottom {
    max-width: 28rem;
  }

  .hero-visual {
    bottom: 0;
    height: 44%;
    opacity: 0.58;
    top: auto;
    width: 58%;
  }

  .hero-visual::after {
    background: linear-gradient(90deg, var(--espresso), transparent 55%), linear-gradient(0deg, transparent 60%, var(--espresso));
  }

  .hero-orbit {
    bottom: 18%;
    right: 4rem;
    top: auto;
  }

  .image-note,
  .vertical-type {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    padding-bottom: 8rem;
  }

  .section-number {
    display: none;
  }

  .about-copy {
    padding: 0;
  }

  .about-media {
    margin-top: 5rem;
    min-height: 32rem;
  }

  .about-image-frame {
    height: 32rem;
  }

  .quality-list {
    bottom: auto;
    grid-column: 1;
    left: auto;
    margin-top: 3rem;
    position: relative;
    right: auto;
  }

  .menu-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 2rem;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-card {
    min-height: 37rem;
  }

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

  .mode-card {
    min-height: 32rem;
  }

  .mode-card + .mode-card {
    border-left: 1px solid var(--line-dark);
    border-top: 0;
  }

  .gallery {
    gap: 4rem 1rem;
  }

  .gallery-1 {
    grid-column: 1 / 9;
    height: 32rem;
  }

  .gallery-2 {
    grid-column: 9 / 13;
    height: 23rem;
  }

  .gallery-3 {
    grid-column: 1 / 6;
    height: 28rem;
  }

  .gallery-4 {
    grid-column: 6 / 13;
    height: 35rem;
  }

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

  .visit-map {
    min-height: 30rem;
  }

  .footer-top {
    gap: 4rem 2rem;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 1.25rem;
  }

  .site-header {
    padding-block: 0.8rem;
  }

  .brand-mark {
    height: 2.2rem;
    width: 2.2rem;
  }

  .hero {
    min-height: 50rem;
    padding-top: 7rem;
  }

  .hero-title {
    font-size: clamp(3.5rem, 15vw, 5.2rem);
    line-height: 0.8;
    margin: 1.6rem 0 2.2rem;
  }

  .hero-actions {
    gap: 1.1rem;
  }

  .button {
    min-height: 3.3rem;
    padding-inline: 1rem;
  }

  .hero-visual {
    height: 40%;
    width: 75%;
  }

  .hero-orbit {
    bottom: 13%;
    height: 6rem;
    right: 1.3rem;
    width: 6rem;
  }

  .hero-orbit span {
    display: none;
  }

  .section {
    padding-block: 6rem;
  }

  .section-title {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .about-copy .section-title {
    margin: 1.5rem 0 2rem;
  }

  .about-media {
    min-height: 28rem;
  }

  .about-image-frame {
    height: 27rem;
    margin-left: 0;
    width: 88%;
  }

  .about-stamp {
    bottom: 0;
    height: 8rem;
    right: 0;
    width: 8rem;
  }

  .about-note {
    display: none;
  }

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

  .quality-item:nth-child(2) {
    border-right: 0;
  }

  .quality-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

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

  .menu-card {
    min-height: 35rem;
  }

  .menu-card-copy h3 {
    font-size: 3.3rem;
  }

  .experience-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.5rem;
  }

  .mode-card {
    min-height: 30rem;
    padding: 1.5rem;
  }

  .mode-card h3 {
    font-size: 3.8rem;
  }

  .gallery {
    display: block;
    padding-bottom: 7rem;
  }

  .gallery-title {
    margin-bottom: 5rem;
  }

  .gallery-title h2 {
    font-size: 29vw;
  }

  .gallery-item {
    height: auto;
    margin: 0 0 4rem;
    width: 100%;
  }

  .gallery-item .gallery-mask {
    height: 27rem;
  }

  .gallery-2,
  .gallery-3 {
    margin-left: 15%;
    width: 85%;
  }

  .gallery-4 .gallery-mask {
    height: 32rem;
  }

  .gallery-quote {
    margin-top: 6rem;
    padding: 0;
  }

  .visit-map {
    min-height: 24rem;
  }

  .map-pin {
    height: 4.5rem;
    width: 4.5rem;
  }

  .map-pin i {
    height: 7.5rem;
    left: -1.5rem;
    top: -1.5rem;
    width: 7.5rem;
  }

  .visit-copy {
    padding: 5rem 1.25rem;
  }

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

  .visit-details > div:nth-child(2) {
    padding-left: 0;
  }

  .visit-details > div:last-child {
    grid-column: auto;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-links {
    gap: 2rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.8rem;
  }
}

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