:root {
  --cream: #f6efe4;
  --cream-2: #eadbc8;
  --paper: rgba(255, 250, 241, 0.82);
  --coffee: #6f442b;
  --coffee-dark: #26130d;
  --chocolate: #1a0f0a;
  --gold: #c89242;
  --green: #577660;
  --rose: #b66a55;
  --muted: #745f52;
  --line: rgba(61, 37, 24, 0.14);
  --shadow: 0 28px 80px rgba(63, 39, 24, 0.16);
  --font-base: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-base);
  color: var(--chocolate);
  background:
    radial-gradient(circle at 12% 8%, rgba(200, 146, 66, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(87, 118, 96, 0.16), transparent 25rem),
    linear-gradient(180deg, #fff8ef 0%, var(--cream) 44%, #efe0cf 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(111, 68, 43, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111, 68, 43, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 88%, transparent);
  z-index: -2;
}

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

.scene-shell {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.scene-shell canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.coffee-fallback {
  position: fixed;
  right: min(8vw, 110px);
  top: 18vh;
  width: clamp(160px, 26vw, 360px);
  aspect-ratio: 0.72;
  opacity: 0.9;
  filter: drop-shadow(0 26px 40px rgba(87, 52, 30, 0.26));
  transition: opacity 0.3s ease;
}

.webgl-ready .coffee-fallback {
  opacity: 0;
}

.fallback-cup {
  position: absolute;
  inset: 20% 12% 0;
  border-radius: 22% 22% 36% 36% / 12% 12% 55% 55%;
  background: linear-gradient(115deg, #f8efe4 0%, #dfc7ad 42%, #8b5133 43%, #6f3c26 100%);
  transform: rotate(-8deg);
}

.fallback-lid {
  position: absolute;
  left: 9%;
  right: 9%;
  top: -12%;
  height: 18%;
  border-radius: 999px;
  background: linear-gradient(180deg, #fffaf0, #ccb59f);
}

.fallback-sleeve {
  position: absolute;
  left: 16%;
  right: 16%;
  top: 42%;
  padding: 9% 0;
  border-radius: 14px;
  text-align: center;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff8eb;
  background: linear-gradient(135deg, var(--green), #243f2e);
}

.fallback-steam {
  position: absolute;
  width: 18%;
  height: 34%;
  border-radius: 999px;
  border-left: 7px solid rgba(111, 68, 43, 0.22);
  top: 0;
  animation: steamFloat 3.2s ease-in-out infinite;
}

.fallback-steam--one {
  left: 34%;
}

.fallback-steam--two {
  left: 52%;
  animation-delay: 0.6s;
}

@keyframes steamFloat {
  0%,
  100% {
    transform: translateY(0) rotate(12deg);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-20px) rotate(-8deg);
    opacity: 0.9;
  }
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  width: min(1120px, calc(100vw - 32px));
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 20px;
  border: 1px solid rgba(61, 37, 24, 0.12);
  border-radius: 999px;
  background: rgba(255, 248, 238, 0.78);
  box-shadow: 0 18px 50px rgba(72, 42, 24, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--coffee-dark);
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a:hover {
  color: var(--coffee-dark);
}

.header-action {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff7ec;
  font-weight: 800;
  background: var(--coffee-dark);
}

.section-panel {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 112px 0;
}

.section-inner {
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(240px, 0.55fr);
  gap: 40px;
  align-items: end;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--coffee-dark);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 760px;
  font-size: clamp(54px, 9vw, 118px);
}

h2 {
  font-size: clamp(38px, 6vw, 76px);
}

.lead,
.copy-block p {
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.7;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff7ec;
  background: linear-gradient(135deg, var(--coffee-dark), var(--coffee));
  box-shadow: 0 18px 40px rgba(55, 28, 16, 0.22);
}

.btn-secondary {
  border: 1px solid var(--line);
  color: var(--coffee-dark);
  background: rgba(255, 248, 238, 0.7);
}

.hero-note {
  justify-self: end;
  width: min(290px, 100%);
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-note span {
  display: block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 28px;
}

.two-col,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.copy-block {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 248, 238, 0.7);
  box-shadow: var(--shadow);
}

.floating-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.floating-row span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--coffee-dark);
  font-size: 13px;
  font-weight: 800;
  background: rgba(200, 146, 66, 0.16);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 46px;
}

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

.menu-card,
.review-card,
.advantage-grid article,
.contact-card {
  border: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.menu-card {
  min-height: 230px;
  padding: 24px;
  border-radius: 28px;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(200, 146, 66, 0.45);
}

.menu-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 16px;
  color: #fff8ee;
  font-weight: 900;
  background: linear-gradient(135deg, var(--coffee), var(--green));
}

.menu-card h3,
.advantage-grid h3 {
  margin: 0 0 10px;
  color: var(--coffee-dark);
  font-size: 22px;
}

.menu-card p,
.advantage-grid p,
.review-card p {
  color: var(--muted);
  line-height: 1.6;
}

.menu-card strong {
  display: block;
  margin-top: 22px;
  color: var(--coffee-dark);
  font-size: 20px;
}

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

.advantage-grid article {
  padding: 32px;
  border-radius: 30px;
}

.advantage-grid span {
  display: inline-flex;
  margin-bottom: 30px;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 800;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  position: relative;
  min-height: 240px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background-color: #d5b08d;
  box-shadow: var(--shadow);
  transition: transform 0.28s ease;
}

.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.6), transparent 9rem),
    linear-gradient(135deg, transparent 0%, rgba(36, 18, 9, 0.25) 100%);
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.gallery-card:hover {
  transform: scale(1.025);
}

.gallery-card:hover::before {
  transform: scale(1.08);
  opacity: 0.82;
}

.gallery-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  padding: 8px 12px;
  border-radius: 999px;
  color: #fff9ee;
  font-size: 13px;
  font-weight: 900;
  background: rgba(26, 15, 10, 0.58);
  backdrop-filter: blur(10px);
}

.gallery-card--one {
  grid-column: span 3;
  background-image: linear-gradient(135deg, #c4976d, #6f442b);
}

.gallery-card--two {
  grid-column: span 3;
  background-image: radial-gradient(circle at 50% 50%, #f5e5d0 0 18%, #5b3320 19% 38%, #26130d 39% 100%);
}

.gallery-card--three {
  grid-column: span 2;
  background-image: linear-gradient(135deg, #efcfa8, #b66a55);
}

.gallery-card--four {
  grid-column: span 2;
  background-image: linear-gradient(135deg, #577660, #d9bd93);
}

.gallery-card--five {
  grid-column: span 1;
  background-image: linear-gradient(135deg, #8a6a4f, #f0dec8);
}

.gallery-card--six {
  grid-column: span 1;
  background-image: linear-gradient(135deg, #fff3df, #6f442b);
}

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

.review-card {
  padding: 28px;
  border-radius: 28px;
}

.review-card strong {
  display: block;
  margin-top: 20px;
  color: var(--coffee-dark);
}

.contact {
  min-height: 96vh;
}

.contact-card {
  padding: 30px;
  border-radius: 30px;
}

.contact-card p {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card p:first-child {
  padding-top: 0;
}

.contact-card strong {
  color: var(--green);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card span {
  color: var(--coffee-dark);
  font-size: 18px;
  font-weight: 800;
}

.map-link {
  display: inline-flex;
  margin-top: 22px;
  color: var(--coffee-dark);
  font-weight: 900;
}

.site-footer {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1120px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 30px 0 46px;
  color: var(--muted);
  font-size: 14px;
}

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

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .site-header {
    top: 12px;
    width: min(520px, calc(100vw - 24px));
  }

  .header-action {
    padding: 9px 12px;
    font-size: 13px;
  }

  .section-panel {
    min-height: auto;
    padding: 96px 0;
  }

  .hero {
    min-height: 92vh;
    padding-top: 132px;
  }

  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-note {
    justify-self: start;
  }

  .scene-shell {
    opacity: 0.42;
  }

  .coffee-fallback {
    right: 0;
    top: 18vh;
    width: 190px;
  }

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

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

  .gallery-card,
  .gallery-card--one,
  .gallery-card--two,
  .gallery-card--three,
  .gallery-card--four,
  .gallery-card--five,
  .gallery-card--six {
    grid-column: span 1;
    min-height: 210px;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 22px;
  }

  .section-inner {
    width: min(100vw - 28px, 520px);
  }

  h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .lead,
  .copy-block p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .copy-block,
  .menu-card,
  .review-card,
  .advantage-grid article,
  .contact-card {
    border-radius: 22px;
  }

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

  .site-footer {
    flex-direction: column;
  }
}
