/* RoastPoint — Premium Roast Lab */
@import url('https://fonts.googleapis.com/css2?family=Hind:wght@400;500;600&family=Inconsolata:wght@500&family=Yanone+Kaffeesatz:wght@600;700&display=swap');

:root {
  --espresso: #0F0C0A;
  --ash: #1C1917;
  --parchment: #E8E2D9;
  --verdigris: #1F6F5B;
  --steel: #8A8680;
  --verdigris-glow: linear-gradient(135deg, #1F6F5B 0%, #2a8f76 50%, #1a5c4c 100%);
  --espresso-deep: linear-gradient(180deg, #0F0C0A 0%, #050403 100%);
  --glass-bg: rgba(28, 25, 23, 0.72);
  --shadow-premium: 0 24px 64px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(0, 0, 0, 0.25);
  --font-display: 'Yanone Kaffeesatz', sans-serif;
  --font-body: 'Hind', sans-serif;
  --font-mono: 'Inconsolata', monospace;
  --header-h: 4.75rem;
  --rail-w: 3.25rem;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--parchment);
  background: var(--espresso);
  background-image: var(--espresso-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius-lg) - 4px);
}

a {
  color: var(--verdigris);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover { color: var(--parchment); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.75em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.75rem, 6vw, 4.25rem); }
h2 { font-size: clamp(1.85rem, 3.8vw, 2.75rem); font-weight: 600; }
h3 { font-size: clamp(1.35rem, 2.5vw, 1.85rem); font-weight: 600; }

p { margin: 0 0 1em; }

.mono {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

/* Surfaces */
.surface-espresso { background: var(--espresso); color: var(--parchment); }
.surface-parchment { background: var(--parchment); color: var(--espresso); }
.surface-ash { background: var(--ash); color: var(--parchment); }
.surface-verdigris { background: var(--verdigris); color: var(--parchment); }

.container {
  width: min(76rem, 92vw);
  margin: 0 auto;
}

/* ── Header (Glassmorphism) ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-transparent {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header.is-sticky {
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(138, 134, 128, 0.12), 0 8px 32px rgba(0, 0, 0, 0.2);
}

.header-inner {
  width: min(76rem, 92vw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--parchment);
  letter-spacing: 0.03em;
  transition: opacity var(--transition-fast);
}

.logo:hover { opacity: 0.85; color: var(--parchment); }
.logo span { color: var(--verdigris); }

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--parchment);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
  padding-bottom: 0.2rem;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--verdigris);
  transition: width var(--transition);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { width: 100%; }

.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--verdigris); }

.nav-toggle {
  display: none;
  background: rgba(138, 134, 128, 0.08);
  border: 1px solid rgba(138, 134, 128, 0.35);
  border-radius: 10px;
  color: var(--parchment);
  padding: 0.45rem 0.75rem;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.nav-toggle:hover {
  border-color: var(--verdigris);
  background: rgba(31, 111, 91, 0.12);
}

/* ── Hero Premium ── */
.hero,
.hero-premium {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--espresso);
  overflow: hidden;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  will-change: transform;
}

.hero-orb--1 {
  width: 28rem;
  height: 28rem;
  top: -8%;
  right: -6%;
  background: radial-gradient(circle, rgba(31, 111, 91, 0.55) 0%, transparent 70%);
}

.hero-orb--2 {
  width: 22rem;
  height: 22rem;
  bottom: 10%;
  left: -5%;
  background: radial-gradient(circle, rgba(31, 111, 91, 0.35) 0%, transparent 70%);
}

.hero-orb--3 {
  width: 16rem;
  height: 16rem;
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, rgba(138, 134, 128, 0.25) 0%, transparent 70%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  transform: scale(1.02);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 30% 40%, rgba(31, 111, 91, 0.15) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 12, 10, 0.65) 0%,
    rgba(15, 12, 10, 0.45) 40%,
    rgba(15, 12, 10, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(76rem, 92vw);
  margin: 0 auto;
  padding: calc(var(--header-h) + 4rem) 0 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verdigris);
  background: rgba(31, 111, 91, 0.12);
  border: 1px solid rgba(31, 111, 91, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--verdigris);
  box-shadow: 0 0 10px rgba(31, 111, 91, 0.8);
}

.hero-slogan {
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  max-width: 42rem;
  color: var(--steel);
  margin-bottom: 2.5rem;
  line-height: 1.55;
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(138, 134, 128, 0.2);
  max-width: 36rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-item .stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--parchment);
  line-height: 1;
}

.stat-item .stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}

/* Roast dial */
.roast-dial {
  width: min(19rem, 62vw);
  margin: 2.5rem 0;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.roast-dial svg {
  width: 100%;
  height: auto;
}

.roast-dial .dial-needle {
  transform-origin: 100px 100px;
  animation: dial-sweep 4s ease-in-out infinite;
}

@keyframes dial-sweep {
  0%, 100% { transform: rotate(-45deg); }
  50% { transform: rotate(45deg); }
}

.dial-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.dial-labels span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-align: center;
  color: var(--steel);
  letter-spacing: 0.08em;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--verdigris-glow);
  color: var(--parchment);
  box-shadow: 0 4px 16px rgba(31, 111, 91, 0.3);
}

.btn-primary:hover {
  color: var(--parchment);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(31, 111, 91, 0.45), 0 0 20px rgba(31, 111, 91, 0.2);
}

.btn-outline {
  background: rgba(138, 134, 128, 0.06);
  color: var(--parchment);
  border: 1px solid rgba(138, 134, 128, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--verdigris);
  color: var(--verdigris);
  background: rgba(31, 111, 91, 0.1);
  transform: translateY(-2px);
}

/* ── Page layout with roast rail ── */
.page-wrap {
  padding-top: var(--header-h);
}

.page-layout {
  display: grid;
  grid-template-columns: var(--rail-w) 1fr;
  min-height: calc(100vh - var(--header-h));
}

.roast-rail {
  background: var(--espresso);
  border-right: 1px solid rgba(138, 134, 128, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  gap: 2.5rem;
  position: sticky;
  top: var(--header-h);
  height: calc(100vh - var(--header-h));
  overflow: hidden;
}

.rail-label {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--steel);
  letter-spacing: 0.14em;
}

.rail-tick {
  width: 1px;
  height: 1.5rem;
  background: var(--steel);
  opacity: 0.3;
}

.page-main {
  padding: 4rem 0 5rem;
}

.page-main .container {
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  border-bottom: 1px solid rgba(138, 134, 128, 0.12);
  margin-bottom: 3rem;
}

.page-hero .mono {
  color: var(--verdigris);
  margin-bottom: 0.85rem;
}

/* ── Sections ── */
.section {
  padding: clamp(5rem, 8vw, 7rem) 0;
  position: relative;
}

.section-alt {
  background: var(--ash);
  position: relative;
}

.section-alt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(31, 111, 91, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.section-divider {
  width: min(76rem, 92vw);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138, 134, 128, 0.25) 20%, rgba(31, 111, 91, 0.4) 50%, rgba(138, 134, 128, 0.25) 80%, transparent);
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verdigris);
  box-shadow: 0 0 12px rgba(31, 111, 91, 0.5);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(1.5rem, 3vw, 2rem);
}

/* ── Cards ── */
.card {
  background: rgba(28, 25, 23, 0.65);
  padding: clamp(1.75rem, 3vw, 2.25rem);
  border: 1px solid rgba(138, 134, 128, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  transform-style: preserve-3d;
  will-change: transform;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(31, 111, 91, 0.35);
  box-shadow: 0 32px 72px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(31, 111, 91, 0.1);
}

.card img {
  margin-bottom: 1.25rem;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
  border-radius: calc(var(--radius-lg) - 6px);
}

.card h3 { margin-top: 0; }

/* ── Offerings ── */
.offering {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(138, 134, 128, 0.1);
}

.offering:last-child { border-bottom: none; }

.offering-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}

.offering-grid img {
  aspect-ratio: 16/10;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

/* ── FAQ ── */
.faq-item {
  background: rgba(28, 25, 23, 0.55);
  border: 1px solid rgba(138, 134, 128, 0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover {
  border-color: rgba(31, 111, 91, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.12rem;
  margin-bottom: 0.65rem;
  color: var(--parchment);
}

.faq-item p:last-child { margin-bottom: 0; }

/* ── Forms ── */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
  color: var(--parchment);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(15, 12, 10, 0.6);
  border: 1px solid rgba(138, 134, 128, 0.3);
  border-radius: 12px;
  color: var(--parchment);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--verdigris);
  box-shadow: 0 0 0 3px rgba(31, 111, 91, 0.25), 0 0 20px rgba(31, 111, 91, 0.12);
  background: rgba(15, 12, 10, 0.85);
}

.form-group textarea { min-height: 9rem; resize: vertical; }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.form-check input { margin-top: 0.3rem; flex-shrink: 0; accent-color: var(--verdigris); }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ── Legal prose ── */
.legal-prose h2 {
  margin-top: 2.5rem;
  font-size: 1.55rem;
}

.legal-prose h3 {
  margin-top: 1.75rem;
  font-size: 1.22rem;
}

.legal-prose ul, .legal-prose ol {
  margin: 0 0 1em 1.25em;
  padding: 0;
}

.legal-prose li { margin-bottom: 0.4em; }

/* ── Disclaimer ── */
.disclaimer {
  font-size: 0.85rem;
  color: var(--steel);
  border-left: 3px solid var(--verdigris);
  padding: 1rem 1.25rem;
  margin: 2rem 0;
  background: rgba(31, 111, 91, 0.08);
  border-radius: 0 12px 12px 0;
}

/* ── Premium Footer ── */
.site-footer {
  position: relative;
  padding: 0;
  border-top: none;
  overflow: hidden;
}

.premium-footer {
  padding: clamp(4rem, 7vw, 5.5rem) 0 2rem;
}

.footer-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--verdigris) 30%, rgba(31, 111, 91, 0.6) 70%, transparent);
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
}

.footer-glow--1 {
  width: 24rem;
  height: 24rem;
  top: -8rem;
  left: 10%;
  background: rgba(31, 111, 91, 0.4);
}

.footer-glow--2 {
  width: 20rem;
  height: 20rem;
  bottom: -6rem;
  right: 5%;
  background: rgba(31, 111, 91, 0.25);
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, var(--parchment) 1px, transparent 0);
  background-size: 32px 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.footer-brand-col { max-width: 22rem; }

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--parchment);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo:hover { color: var(--parchment); opacity: 0.9; }
.footer-logo span { color: var(--verdigris); }

.footer-desc {
  font-size: 0.92rem;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(138, 134, 128, 0.25);
  color: var(--steel);
  background: rgba(15, 12, 10, 0.4);
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.social-link:hover {
  color: var(--verdigris);
  border-color: rgba(31, 111, 91, 0.5);
  background: rgba(31, 111, 91, 0.12);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 2rem);
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verdigris);
  margin: 0 0 1rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: var(--steel);
}

.footer-col a {
  color: var(--steel);
  transition: color var(--transition-fast);
}

.footer-col a:hover { color: var(--parchment); }

.footer-contact-list li { line-height: 1.5; }

.footer-disclaimer {
  position: relative;
  z-index: 1;
  margin-bottom: 2rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(138, 134, 128, 0.12);
  font-size: 0.82rem;
  color: var(--steel);
  position: relative;
  z-index: 1;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0;
}

.footer-bottom-links a {
  color: var(--steel);
}

.footer-bottom-links a:hover { color: var(--parchment); }

.footer-bottom-links span { opacity: 0.4; }

/* Legacy footer grid (fallback) */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verdigris);
  margin: 0 0 0.75rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li { margin-bottom: 0.35rem; }
.footer-grid a { color: var(--steel); }
.footer-grid a:hover { color: var(--parchment); }

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--glass-bg);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border-top: 1px solid rgba(138, 134, 128, 0.2);
  padding: 1.5rem;
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-inner {
  width: min(76rem, 92vw);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.cookie-text {
  flex: 1 1 20rem;
  font-size: 0.9rem;
  color: var(--steel);
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 0.55rem 1.15rem;
  font-size: 0.85rem;
}

.cookie-panel {
  display: none;
  width: 100%;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(138, 134, 128, 0.12);
}

.cookie-panel.is-open { display: block; }

.cookie-panel label {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

/* ── Scroll reveal ── */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 404 & Thanks ── */
.error-page,
.thanks-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1.5rem;
}

.error-page .roast-dial {
  margin: 2.5rem auto;
}

/* ── Work board ── */
.roast-board {
  display: grid;
  gap: 0.5rem;
}

.board-row {
  display: grid;
  grid-template-columns: 6rem 1fr 1fr 1fr;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  border-bottom: 1px solid rgba(138, 134, 128, 0.1);
  font-size: 0.95rem;
  border-radius: 12px;
  transition: background var(--transition-fast);
}

.board-row:not(.header):hover {
  background: rgba(31, 111, 91, 0.06);
}

.board-row.header {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verdigris);
  background: rgba(31, 111, 91, 0.08);
  border-bottom: none;
}

/* ── Contact ── */
.contact-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  margin-bottom: 0.85rem;
  padding-left: 0;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .roast-rail {
    display: none;
  }

  .offering-grid {
    grid-template-columns: 1fr;
  }

  .board-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .board-row.header { display: none; }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  .nav-toggle { display: block; }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: 1px solid rgba(138, 134, 128, 0.15);
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0.85rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .roast-dial .dial-needle { animation: none; }

  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card:hover,
  .btn-primary:hover,
  .btn-outline:hover,
  .social-link:hover {
    transform: none;
  }

  .hero-orb { filter: blur(60px); }
}
