/* ========== Velora — refreshed palette & layouts ========== */
:root {
  --void: #0b0d0c;
  --soil: #141816;
  --clay: #1e2421;
  --moss: #7f9a78;
  --moss-deep: #5f7a5a;
  --ember: #c56a45;
  --sand: #c8bfb0;
  --chalk: #e4ddd2;
  --fog: #a8b0a6;
  --foam: #ece7df;
  --ink: #121614;
  --muted: rgba(236, 231, 223, 0.62);
  --muted-dark: rgba(18, 22, 20, 0.68);
  --line: rgba(127, 154, 120, 0.28);
  --line-dark: rgba(18, 22, 20, 0.12);
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.5rem;
  --space: clamp(1.25rem, 4vw, 2.75rem);
  --max: 1140px;
  /* aliases used in older rules */
  --espresso: var(--void);
  --roast: var(--soil);
  --caramel: var(--moss);
  --honey: var(--sand);
  --copper: var(--ember);
  --mist: var(--fog);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--foam);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(127, 154, 120, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(197, 106, 69, 0.08), transparent 45%),
    var(--void);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--foam);
}

.logo-mark {
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  color: var(--moss);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  padding: 0 var(--space);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  background: rgba(11, 13, 12, 0.9);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.6rem);
}

.nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--fog);
  transition: color 0.25s;
  white-space: nowrap;
}

.nav a:hover {
  color: var(--moss);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  background: var(--moss);
  color: var(--void);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s, transform 0.3s;
}

.header-cta:hover {
  background: #93ad8c;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 2.5rem;
  height: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--foam);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4.25px) rotate(-45deg);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--ember);
  color: var(--foam);
  border-color: var(--ember);
}

.btn-primary:hover {
  background: #d47852;
}

.btn-ghost {
  background: transparent;
  color: var(--foam);
  border-color: rgba(236, 231, 223, 0.3);
}

.btn-ghost:hover {
  border-color: var(--moss);
  color: var(--moss);
}

/* ---------- Banner ---------- */
.banner {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) var(--space) 5rem;
  overflow: hidden;
}

.banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  will-change: transform;
  filter: saturate(0.9) contrast(1.05);
}

.banner-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 13, 12, 0.55) 0%, rgba(11, 13, 12, 0.35) 40%, rgba(11, 13, 12, 0.92) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(11, 13, 12, 0.55) 100%);
}

.banner-content {
  position: relative;
  z-index: 1;
  max-width: 40rem;
  margin: 0 auto;
}

.banner-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.1rem;
}

.banner-brand {
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--foam);
  margin-bottom: 1.35rem;
}

.banner-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  font-weight: 300;
  color: var(--sand);
  max-width: 26rem;
  margin: 0 auto 2.1rem;
}

.banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1.5rem;
  height: 2.4rem;
  border: 1px solid rgba(236, 231, 223, 0.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 0.4rem;
}

.scroll-hint span {
  width: 3px;
  height: 8px;
  background: var(--moss);
  border-radius: 2px;
  animation: drip 1.6s var(--ease) infinite;
}

@keyframes drip {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

.banner-steam {
  position: absolute;
  top: 22%;
  right: 14%;
  z-index: 1;
  display: flex;
  gap: 1.1rem;
  pointer-events: none;
}

.banner-steam span {
  display: block;
  width: 2px;
  height: 56px;
  border-radius: 2px;
  background: linear-gradient(transparent, rgba(127, 154, 120, 0.6), transparent);
  animation: steamRise 3.2s ease-in-out infinite;
}

.banner-steam span:nth-child(2) {
  height: 72px;
  animation-delay: 0.6s;
}

.banner-steam span:nth-child(3) {
  animation-delay: 1.2s;
}

@keyframes steamRise {
  0%,
  100% {
    transform: translateY(10px) scaleY(0.85);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-18px) scaleY(1.15);
    opacity: 0.85;
  }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  background: var(--moss-deep);
  padding: 1rem 0;
}

.marquee-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chalk);
  will-change: transform;
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(4.5rem, 10vw, 7.5rem) var(--space);
}

.section-head {
  max-width: 34rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.85rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.8vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--foam);
  margin-bottom: 1rem;
}

.section-text {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--muted);
  max-width: 34rem;
}

.section-text + .section-text {
  margin-top: 1rem;
}

/* ---------- About (light stone panel) ---------- */
.about {
  background: var(--chalk);
  color: var(--ink);
  padding-block: clamp(4rem, 9vw, 6.5rem);
}

.about .section-label {
  color: var(--moss-deep);
}

.about .section-title {
  color: var(--ink);
}

.about .section-text {
  color: var(--muted-dark);
}

.about-shell {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto;
}

.about-visual {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.about-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.9rem;
  background: var(--void);
  color: var(--chalk);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-dark);
}

.about-stats dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.about-stats dd {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--ink);
}

/* ---------- Menu (list rows) ---------- */
.menu {
  background:
    linear-gradient(180deg, var(--soil) 0%, var(--void) 100%);
}

.menu .section-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.filter-btn {
  padding: 0.55rem 1.15rem;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--fog);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--moss);
  border-color: var(--moss);
  color: var(--void);
}

.menu-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.menu-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.35rem;
  align-items: center;
  text-align: left;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  color: inherit;
  padding: 1.15rem 0;
  opacity: 0;
  transform: translateY(28px);
  transition: background 0.3s;
}

.menu-item.is-hidden {
  display: none;
}

.menu-item:hover {
  background: rgba(127, 154, 120, 0.06);
}

.menu-item-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  width: 100%;
}

.menu-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.menu-item:hover .menu-item-media img {
  transform: scale(1.08);
}

.menu-item-media::after {
  display: none;
}

.menu-item-body {
  padding: 0;
  border: none;
}

.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.3rem;
}

.menu-item-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 650;
}

.menu-item-price {
  color: var(--ember);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.menu-item-cat {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.menu-item-blurb {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
}

.menu-item-action {
  display: inline-block;
  margin-top: 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 600;
  opacity: 0.7;
  transition: opacity 0.25s, color 0.25s;
}

.menu-item:hover .menu-item-action {
  opacity: 1;
  color: var(--moss);
}

/* ---------- Ritual ---------- */
.ritual {
  background: var(--clay);
}

.ritual-head {
  max-width: var(--max);
  margin: 0 auto 2.5rem;
}

.ritual-stage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: var(--max);
  margin: 0 auto;
  align-items: center;
}

.ritual-visual {
  overflow: hidden;
  clip-path: polygon(0 0, 100% 4%, 100% 100%, 0 96%);
}

.ritual-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.ritual-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 0.25rem;
}

.ritual-steps::before {
  content: "";
  position: absolute;
  left: 1.35rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(var(--moss), transparent);
}

.ritual-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.35rem 0;
}

.ritual-num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--void);
  background: var(--moss);
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}

.ritual-steps h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.ritual-steps p {
  font-weight: 300;
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Roastery ---------- */
.roastery {
  background: var(--void);
  padding-top: clamp(3rem, 7vw, 5rem);
}

.roastery-banner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto 2rem;
  overflow: hidden;
  min-height: 340px;
}

.roastery-banner img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  filter: brightness(0.55);
}

.roastery-banner-copy {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.5rem, 4vw, 2.75rem);
  background: linear-gradient(transparent, rgba(11, 13, 12, 0.92));
}

.roastery-banner-copy .section-text {
  color: var(--sand);
}

.bean-list {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.bean-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.bean-list li:first-child {
  border-top: 1px solid var(--line);
}

.bean-list h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.bean-list p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--muted);
}

.bean-list > li > span {
  color: var(--ember);
  font-size: 0.95rem;
  font-weight: 600;
  white-space: nowrap;
}

.roastery-cta {
  max-width: var(--max);
  margin: 2rem auto 0;
}

/* ---------- Gallery ---------- */
.gallery {
  background: var(--soil);
  overflow: hidden;
}

.gallery .section-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  grid-auto-rows: 220px;
  gap: 0.85rem;
  max-width: none;
  width: min(1400px, 100%);
  margin: 0 auto;
}

.gallery-item {
  overflow: hidden;
  margin: 0;
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(3) {
  grid-column: 2 / 4;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: grayscale(0.15);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0);
}

/* ---------- Workshops ---------- */
.workshops {
  background: var(--chalk);
  color: var(--ink);
}

.workshops .section-label {
  color: var(--moss-deep);
}

.workshops .section-title {
  color: var(--ink);
}

.workshops .section-text {
  color: var(--muted-dark);
}

.workshops-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.workshop-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: var(--max);
  margin: 0 auto 2rem;
}

.workshop-item {
  padding: 1.75rem 1.4rem;
  background: rgba(255, 255, 255, 0.45);
  border-top: 3px solid var(--moss);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 100%;
}

.workshop-index {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--moss-deep);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.workshop-date {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 700;
}

.workshop-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.workshop-item p {
  font-weight: 400;
  color: var(--muted-dark);
  font-size: 0.95rem;
  flex: 1;
}

.workshop-price {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.75rem;
}

.workshops-visual {
  max-width: var(--max);
  margin: 0 auto;
  overflow: hidden;
}

.workshops-visual img {
  width: 100%;
  aspect-ratio: 21 / 9;
  object-fit: cover;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(127, 154, 120, 0.12), transparent 55%),
    var(--void);
}

.testimonials .section-head {
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.testimonial-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max);
  margin: 0 auto;
}

.testimonial {
  padding: 1.75rem 1.5rem;
  background: var(--clay);
  border-left: 3px solid var(--ember);
}

.testimonial p {
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  font-weight: 500;
  line-height: 1.45;
  color: var(--foam);
  margin-bottom: 1.5rem;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.testimonial-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--moss);
}

.testimonial-meta {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ---------- Hours ---------- */
.hours {
  padding-block: clamp(3.5rem, 8vw, 5rem);
  background: var(--moss-deep);
}

.hours-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.hours .section-label {
  color: var(--sand);
}

.hours .section-title {
  max-width: 16ch;
  margin-inline: auto;
  color: var(--chalk);
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 231, 223, 0.25);
}

.hours-grid span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.hours-grid p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--chalk);
}

/* ---------- Contact ---------- */
.contact {
  background: var(--soil);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--chalk);
  color: var(--ink);
}

.contact-panel .section-label {
  color: var(--moss-deep);
}

.contact-panel .section-title {
  color: var(--ink);
}

.contact-panel .section-text {
  color: var(--muted-dark);
}

.contact-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-details li span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss-deep);
  margin-bottom: 0.4rem;
  font-weight: 700;
}

.contact-details a {
  transition: color 0.25s;
}

.contact-details a:hover {
  color: var(--ember);
}

.contact-details p,
.contact-details a {
  font-weight: 400;
  color: var(--ink);
  line-height: 1.55;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss-deep);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line-dark);
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--moss-deep);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(18, 22, 20, 0.4);
}

.contact-form .btn {
  margin-top: 0.5rem;
  align-self: flex-start;
}

.form-note {
  font-size: 0.9rem;
  color: var(--ember);
  font-weight: 600;
}

/* ---------- Footer ---------- */
.footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  padding: 3.5rem var(--space) 2rem;
  border-top: 1px solid var(--line);
  background: #070908;
}

.footer-brand p {
  margin-top: 0.85rem;
  font-weight: 300;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 16rem;
}

.footer-links,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a,
.footer-social a {
  color: var(--fog);
  font-size: 0.95rem;
  transition: color 0.25s;
}

.footer-links a:hover,
.footer-social a:hover {
  color: var(--moss);
}

.footer-copy {
  grid-column: 1 / -1;
  padding-top: 2rem;
  margin-top: 1rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- Modal ---------- */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 9, 8, 0.82);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: min(880px, 100%);
  max-height: min(90vh, 640px);
  background: var(--clay);
  border: 1px solid var(--line);
  overflow: hidden;
  transform: scale(0.94) translateY(16px);
  opacity: 0;
}

.modal.is-open .modal-panel {
  transform: none;
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.85rem;
  z-index: 2;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid var(--line);
  background: rgba(11, 13, 12, 0.7);
  color: var(--foam);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
}

.modal-close:hover {
  background: var(--ember);
}

.modal-media {
  min-height: 280px;
  overflow: hidden;
}

.modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-body {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  overflow-y: auto;
}

.modal-category {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.modal-price {
  color: var(--ember);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.modal-desc {
  font-weight: 300;
  color: var(--mist);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.modal-meta {
  display: grid;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.modal-meta span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.modal-meta p {
  font-weight: 300;
  color: var(--foam);
  font-size: 0.95rem;
}

body.modal-open {
  overflow: hidden;
}

/* ---------- Reveal helpers ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
}

.reveal-img {
  opacity: 0;
}

.hero-anim {
  opacity: 0;
  transform: translateY(28px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .nav-toggle {
    display: flex;
  }

  .header-cta {
    margin-left: auto;
    margin-right: 0.5rem;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem var(--space) 1.5rem;
    background: rgba(11, 13, 12, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.35s;
    max-height: calc(100svh - var(--header-h));
    overflow-y: auto;
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
}

@media (max-width: 960px) {
  .about-shell,
  .ritual-stage,
  .contact-panel,
  .workshop-board,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1),
  .gallery-item:nth-child(3) {
    grid-row: auto;
    grid-column: auto;
  }

  .hours-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .workshops-visual img {
    aspect-ratio: 16 / 9;
  }

  .footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-cta {
    display: none;
  }

  .banner {
    align-items: flex-end;
    text-align: left;
    padding-bottom: 5rem;
  }

  .banner-content {
    margin: 0;
  }

  .banner-actions {
    justify-content: flex-start;
  }

  .banner-lead {
    margin-left: 0;
  }

  .banner-steam {
    display: none;
  }

  .menu-item {
    grid-template-columns: 96px 1fr;
    gap: 1rem;
  }

  .modal-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }

  .modal-media {
    aspect-ratio: 16 / 10;
    min-height: 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats dd {
    font-size: 1.7rem;
  }

  .footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .banner-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-item {
    grid-template-columns: 1fr;
  }

  .menu-item-media {
    max-width: 180px;
  }

  .bean-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scroll-hint span,
  .banner-steam span {
    animation: none;
  }

  .reveal,
  .reveal-img,
  .hero-anim,
  .menu-item {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
  }
}
