:root {
  --alabaster: #F8F6F3;
  --alabaster-warm: #F5F2ED;
  --pearl: #E8D8C8;
  --graphite: #1E293B;
  --graphite-soft: #334155;
  --caramel: #A67B5B;
  --caramel-deep: #8B5E3C;
  --sage: #A3B18A;
  --cobalt: #1D4ED8;
  --terracotta: #C8553D;
  --terracotta-deep: #A4402F;
  --asphalt: #6B7280;
  --paper: #FFFFFF;
  --line: rgba(30, 41, 59, 0.08);
  --line-soft: rgba(30, 41, 59, 0.04);
  --line-strong: rgba(30, 41, 59, 0.16);
  --serif: "Playfair Display", "Times New Roman", serif;
  --sans: "Montserrat", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --dock-w: 88px;
  --dock-w-mobile: 64px;
}

* { box-sizing: border-box; }

/* Скрываем mobile-menu на десктопах */
.mobile-menu { display: none; }

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--sans);
  background: var(--alabaster);
  color: var(--graphite);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

strong, p, b, span, li {
  color: inherit;
}

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

body {
  background: radial-gradient(ellipse at 20% 10%, rgba(212, 163, 115, 0.18) 0%, transparent 55%),
              radial-gradient(ellipse at 85% 80%, rgba(163, 177, 138, 0.14) 0%, transparent 55%),
              radial-gradient(ellipse at 50% 100%, rgba(232, 216, 200, 0.22) 0%, transparent 60%),
              var(--alabaster);
  background-attachment: fixed;
  animation: meshBreath 18s ease-in-out infinite alternate;
}

@keyframes meshBreath {
  0% { background-position: 0% 0%, 100% 100%, 50% 100%, 0 0; }
  100% { background-position: 8% 6%, 92% 88%, 50% 90%, 0 0; }
}

.lens-cursor {
  position: fixed;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(166, 123, 91, 0.18) 0%, rgba(166, 123, 91, 0.06) 60%, transparent 80%);
  border: 1px solid rgba(166, 123, 91, 0.35);
  transform: translate(-50%, -50%);
  transition: width 0.35s ease, height 0.35s ease, background 0.35s ease, border-color 0.35s ease;
  z-index: 9999;
  mix-blend-mode: multiply;
  display: none;
}

.lens-cursor.is-cta {
  width: 72px;
  height: 72px;
  background: radial-gradient(circle, rgba(200, 85, 61, 0.28) 0%, rgba(200, 85, 61, 0.08) 60%, transparent 80%);
  border-color: rgba(200, 85, 61, 0.55);
}

.lens-cursor.is-zoom {
  width: 96px;
  height: 96px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, rgba(166, 123, 91, 0.15) 60%, transparent 80%);
  border-color: rgba(29, 78, 216, 0.45);
}

@media (min-width: 1025px) {
  .lens-cursor { display: block; }
}

.dock-shell {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.dock-rail {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--dock-w);
  height: 100vh;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 24px;
  z-index: 100;
}

.dock-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.dock-brand .bean-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #D4A373 0%, var(--caramel) 55%, var(--caramel-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(166, 123, 91, 0.35), inset 0 -2px 6px rgba(0,0,0,0.15);
  position: relative;
}

.dock-brand .bean-mark svg { width: 24px; height: 24px; }

.dock-brand .domain {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--graphite);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.dock-brand .cname {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 7px;
  color: rgba(30, 41, 59, 0.55);
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.35;
  max-width: 64px;
}

.dock-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  flex: 1;
  justify-content: center;
  margin: 28px 0;
}

.dock-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 6px 4px;
  transition: transform 0.3s ease;
}

.dock-link::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 2px;
  height: 0;
  background: var(--caramel);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.dock-link.is-active::before { height: 60%; }

.dock-link svg {
  width: 24px;
  height: 24px;
  stroke: var(--asphalt);
  fill: none;
  stroke-width: 1.5;
  transition: stroke 0.3s ease, transform 0.3s ease;
}

.dock-link span {
  font-family: var(--sans);
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--asphalt);
  transition: color 0.3s ease;
}

.dock-link:hover { transform: translateX(2px); }
.dock-link:hover svg { stroke: var(--caramel); transform: scale(1.1); }
.dock-link:hover span { color: var(--graphite); }
.dock-link.is-active svg { stroke: var(--caramel); }
.dock-link.is-active span { color: var(--graphite); font-weight: 600; }

.dock-cta {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.08em;
  overflow: hidden;
  white-space: nowrap;
  transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.4s ease, background 0.3s ease;
  position: relative;
}

.dock-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
.dock-cta .dock-cta-label { display: none; margin-left: 6px; }

.dock-cta:hover {
  width: 130px;
  border-radius: 100px;
  background: var(--terracotta-deep);
  padding: 0 14px;
  justify-content: flex-start;
}

.dock-cta:hover .dock-cta-label { display: inline; }

.dock-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.dock-socials a {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dock-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--asphalt);
  stroke: var(--asphalt);
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.dock-socials a:hover svg { fill: var(--caramel); stroke: var(--caramel); }

.mobile-bar {
  display: none;
}

.main-canvas {
  flex: 1;
  margin-left: var(--dock-w);
  min-width: 0;
  position: relative;
}

.section-wrap {
  width: 100%;
  position: relative;
}

.hero-stage {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 96px 80px 96px;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(212, 163, 115, 0.28) 0%, transparent 55%),
              radial-gradient(ellipse at 30% 80%, rgba(163, 177, 138, 0.22) 0%, transparent 50%);
  z-index: 0;
  animation: heroBreath 12s ease-in-out infinite alternate;
}

@keyframes heroBreath {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(1.08); opacity: 1; }
}

.hero-stage > * { position: relative; z-index: 1; }

.hero-copy {
  flex: 1;
  max-width: 560px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--caramel);
  text-transform: uppercase;
  margin: 0 0 22px 0;
}

.headline-display {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0 0 26px 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--graphite);
}

.headline-display .line-italic {
  display: block;
  font-style: italic;
  font-size: clamp(46px, 7.5vw, 96px);
  color: var(--graphite);
}

.headline-display .line-bold {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(46px, 7.5vw, 96px);
  letter-spacing: 0.04em;
  margin-top: 4px;
  position: relative;
  color: var(--graphite);
}

.headline-display .line-bold::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  background: var(--caramel);
  border-radius: 2px;
  margin-top: 18px;
}

.hero-blurb {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--asphalt);
  margin: 0 0 36px 0;
  max-width: 480px;
  line-height: 1.65;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
  white-space: nowrap;
  min-height: 52px;
  text-align: center;
  justify-content: center;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
  box-shadow: 0 6px 18px rgba(200, 85, 61, 0.25);
}

.btn-primary:hover {
  background: var(--terracotta-deep);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(200, 85, 61, 0.32);
}

.btn-primary:active { transform: scale(0.96); }

.btn-ghost {
  background: transparent;
  color: var(--graphite);
  border: 2px solid var(--graphite);
}

.btn-ghost:hover {
  background: var(--graphite);
  color: #fff;
  transform: translateY(-3px);
}

.btn-cobalt {
  background: var(--cobalt);
  color: #fff;
}

.btn-cobalt:hover {
  background: #163FA8;
  transform: translateY(-3px);
}

.hero-orb {
  flex: 0 0 480px;
  width: 480px;
  height: 480px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bean-orb {
  width: 360px;
  height: 360px;
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  background: radial-gradient(circle at 30% 25%, #FFE0BD 0%, #C28E5B 35%, #5C3520 100%);
  box-shadow: 0 30px 60px rgba(92, 53, 32, 0.35), inset 8px -10px 30px rgba(0,0,0,0.3), inset -6px 6px 20px rgba(255, 224, 189, 0.25);
  position: relative;
  animation: orbSpin 18s linear infinite, orbFloat 6s ease-in-out infinite alternate;
  transform-style: preserve-3d;
}

.bean-orb::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 22%;
  width: 38%;
  height: 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 240, 220, 0.55) 0%, transparent 70%);
  filter: blur(6px);
}

.bean-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 230, 200, 0.15) 50%, transparent 65%);
  pointer-events: none;
}

@keyframes orbSpin {
  0% { transform: rotateY(0deg) rotateX(-5deg); }
  50% { transform: rotateY(180deg) rotateX(5deg); }
  100% { transform: rotateY(360deg) rotateX(-5deg); }
}

@keyframes orbFloat {
  0% { translate: 0 0; }
  100% { translate: 0 -18px; }
}

.orb-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(166, 123, 91, 0.35);
  animation: orbitSpin 28s linear infinite reverse;
}

.orb-orbit.is-2 { inset: 14%; border-color: rgba(29, 78, 216, 0.25); animation-duration: 36s; }
.orb-orbit.is-3 { inset: 28%; border-color: rgba(163, 177, 138, 0.3); animation-duration: 22s; animation-direction: normal; }

@keyframes orbitSpin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.orb-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--caramel);
  box-shadow: 0 0 12px rgba(166, 123, 91, 0.6);
  transform-origin: 0 0;
}

.orb-particle.cobalt { background: var(--cobalt); box-shadow: 0 0 12px rgba(29, 78, 216, 0.55); }
.orb-particle.sage { background: var(--sage); box-shadow: 0 0 12px rgba(163, 177, 138, 0.6); }

.aroma-track {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.aroma-node {
  display: flex;
  align-items: center;
  gap: 12px;
}

.aroma-node .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--caramel);
}

.aroma-node .dot.cobalt { background: var(--cobalt); }
.aroma-node .dot.sage { background: var(--sage); }

.aroma-node .label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--asphalt);
  text-transform: uppercase;
}

.trust-bar {
  text-align: center;
  padding: 22px 32px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  color: var(--asphalt);
  text-transform: uppercase;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.section-pad {
  padding: 100px 96px;
  position: relative;
}

.section-pad.compact { padding: 70px 96px; }

.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}

.section-head .eyebrow { margin-bottom: 16px; }

.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--graphite);
  line-height: 1.1;
}

.section-head h2 .it { font-style: italic; }

.section-head p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--asphalt);
  margin: 0;
  line-height: 1.7;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.bento-cell {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  padding: 28px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.8s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
  color: var(--graphite);
}

.bento-cell:hover {
  transform: translateY(-8px);
  border-radius: 40% 60% 30% 70% / 50% 50% 60% 40%;
  box-shadow: 0 18px 36px rgba(30, 41, 59, 0.1);
  z-index: 5;
}

.bento-cell.size-2x2 { grid-column: span 2; grid-row: span 2; min-height: 240px; }
.bento-cell.size-2x1 { grid-column: span 2; }
.bento-cell.size-1x1 { grid-column: span 1; grid-row: span 1; }
.bento-cell.size-3x1 { grid-column: span 3; }

.bento-cell .cell-title {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  margin: 0;
  color: var(--graphite);
  line-height: 1.2;
}

.bento-cell .cell-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--caramel);
  text-transform: uppercase;
}

.bento-cell .cell-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--asphalt);
  margin: 8px 0 0 0;
  line-height: 1.55;
}

.bento-cell .cell-link {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--caramel);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bento-cell.size-2x2.has-photo {
  color: #fff;
  padding: 32px;
}

.bento-cell.size-2x2.has-photo .cell-title { color: #fff; }
.bento-cell.size-2x2.has-photo .cell-meta { color: #FFE0BD; }

.bento-cell.size-2x2.has-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,41,59,0.1) 0%, rgba(30,41,59,0.7) 100%), url("../media/roastery-fresh-batch.webp") center/cover;
  z-index: 0;
}

.bento-cell.size-2x2.has-photo > * { position: relative; z-index: 1; }

.bento-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(166, 123, 91, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.bento-icon svg { width: 28px; height: 28px; stroke: var(--caramel); fill: none; stroke-width: 1.5; }

.tag-chip {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(166, 123, 91, 0.15);
  color: var(--caramel);
}

.story-split {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 60px;
  align-items: start;
}

.sticky-side {
  position: sticky;
  top: 96px;
  align-self: start;
}

.sticky-side h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  font-style: italic;
  line-height: 1.05;
  margin: 16px 0 22px;
  color: var(--graphite);
}

.sticky-side p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--asphalt);
  margin: 0 0 24px 0;
}

.sticky-side .story-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  background: url("../media/roastery-workshop-warm.webp") center/cover;
  margin-top: 18px;
  position: relative;
  overflow: hidden;
}

.sticky-side .story-photo::after {
  content: "シェリーコーヒー焙煎所 — 自家焙煎室";
  position: absolute;
  bottom: 14px;
  left: 18px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #fff;
  text-transform: uppercase;
  background: rgba(30, 41, 59, 0.55);
  padding: 6px 12px;
  border-radius: 100px;
  backdrop-filter: blur(6px);
}

.marquee-rail {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 38s linear infinite;
}

.marquee-rail:hover .marquee-track { animation-play-state: paused; }

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

.milestone-card {
  flex: 0 0 340px;
  height: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--graphite);
}

.milestone-card .year {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--caramel);
  line-height: 1;
  margin: 0;
}

.milestone-card .ms-desc {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--asphalt);
  margin: 0;
  line-height: 1.6;
}

.stack-rail {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}

.stack-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  padding: 56px 60px;
  min-height: 360px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(30, 41, 59, 0.05);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  color: var(--graphite);
}

.stack-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(30, 41, 59, 0.12);
}

.stack-card .step-num {
  position: absolute;
  top: -20px;
  right: 30px;
  font-family: var(--serif);
  font-size: 180px;
  font-weight: 700;
  color: rgba(30, 41, 59, 0.06);
  line-height: 1;
  pointer-events: none;
}

.stack-card .step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(166, 123, 91, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.stack-card .step-icon svg { width: 28px; height: 28px; stroke: var(--caramel); fill: none; stroke-width: 1.5; }

.stack-card .step-meta {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--caramel);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.stack-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--graphite);
}

.stack-card p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--asphalt);
  margin: 0;
  line-height: 1.7;
}

.stack-card .step-photo {
  border-radius: 40% 60% 30% 70% / 50% 50% 60% 40%;
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
}

.node-canvas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.node-graph {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  width: 100%;
  max-width: 880px;
  position: relative;
}

.node-graph::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, transparent 28%, transparent 29%, rgba(166, 123, 91, 0.18) 30%, transparent 31%) center/100% 100% no-repeat;
  pointer-events: none;
}

.node-hub {
  grid-column: 2;
  grid-row: 1;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--caramel);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 14px 30px rgba(166, 123, 91, 0.4);
  position: relative;
  z-index: 2;
}

.node-hub svg { width: 36px; height: 36px; stroke: #fff; fill: none; stroke-width: 1.5; margin-bottom: 6px; }
.node-hub span { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }

.node-sat {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
  padding: 14px;
  color: var(--graphite);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.node-sat:hover {
  transform: scale(1.08);
  box-shadow: 0 0 28px rgba(166, 123, 91, 0.35);
  border-color: var(--caramel);
}

.node-sat svg { width: 26px; height: 26px; stroke: var(--caramel); fill: none; stroke-width: 1.5; margin-bottom: 6px; }
.node-sat span { font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--graphite); }

.node-extra {
  display: flex;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  padding: 8px 4px;
}

.node-extra-card {
  flex: 0 0 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--graphite);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.node-extra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(30, 41, 59, 0.08);
}

.team-row {
  display: flex;
  gap: 14px;
  width: 100%;
}

.team-card {
  flex: 1;
  background: #fff;
  border-radius: 32px 36px 40px 28px;
  overflow: hidden;
  height: 460px;
  position: relative;
  transition: flex-grow 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
  color: var(--graphite);
}

.team-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--caramel);
}

.team-card.tone-sage::before { background: var(--sage); }
.team-card.tone-terra::before { background: var(--terracotta); }
.team-card.tone-cobalt::before { background: var(--cobalt); }

.team-card .team-photo {
  width: 100%;
  height: 60%;
  background-size: cover;
  background-position: center top;
  transition: transform 0.6s ease;
}

.team-card:hover .team-photo { transform: scale(1.08); }

.team-card .team-info {
  padding: 22px 22px 26px;
}

.team-card h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--graphite);
}

.team-card .role {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--asphalt);
  margin: 0 0 12px 0;
}

.team-card .team-bio {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--asphalt);
  line-height: 1.6;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.team-card:hover { flex-grow: 2.5; }
.team-card:hover .team-bio { max-height: 200px; }

.accordion-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  color: var(--graphite);
}

.accordion-item.is-open {
  box-shadow: 0 10px 28px rgba(30, 41, 59, 0.08);
}

.accordion-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 24px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
  color: var(--graphite);
  text-align: left;
}

.accordion-q .chev {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(166, 123, 91, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.accordion-q .chev svg { width: 14px; height: 14px; stroke: var(--caramel); fill: none; stroke-width: 2; }
.accordion-item.is-open .accordion-q .chev { transform: rotate(180deg); background: var(--caramel); }
.accordion-item.is-open .accordion-q .chev svg { stroke: #fff; }

.accordion-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 32px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--asphalt);
  line-height: 1.75;
}

.accordion-item.is-open .accordion-a {
  max-height: 320px;
  padding: 0 32px 28px;
}

.feedback-split {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 48px;
  align-items: start;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  padding: 28px;
  margin-bottom: 16px;
  color: var(--graphite);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 28px rgba(30, 41, 59, 0.08);
}

.testimonial-card p {
  font-family: var(--sans);
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 18px 0;
  color: var(--graphite);
}

.testimonial-card .who {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .who img,
.testimonial-card .who .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.testimonial-card .who .name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: var(--graphite);
}

.testimonial-card .who .ctx {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--asphalt);
  text-transform: uppercase;
  margin: 2px 0 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.counter-cell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  padding: 36px 28px;
  text-align: center;
  color: var(--graphite);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(30, 41, 59, 0.08);
}

.counter-cell .num {
  font-family: var(--serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--caramel);
  line-height: 1;
  margin: 0;
}

.counter-cell .unit {
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--graphite);
  margin-left: 4px;
}

.counter-cell .lbl {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--asphalt);
  text-transform: uppercase;
  margin: 12px 0 0;
}

.contact-overlap {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 0;
  position: relative;
  align-items: stretch;
}

.contact-form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 59% 40% 50% 29% / 33% 60% 40% 43%;
  padding: 148px 48px;
  z-index: 3;
  position: relative;
  color: var(--graphite);
}

.contact-form-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--graphite);
}

.contact-form-card p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--asphalt);
  margin: 0 0 28px;
}

.field-row { margin-bottom: 18px; }
.field-row label {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--graphite);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.field-row input,
.field-row textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: var(--alabaster-warm);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--graphite);
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.field-row input::placeholder,
.field-row textarea::placeholder { color: rgba(30, 41, 59, 0.4); }

.field-row input:focus,
.field-row textarea:focus {
  border-color: var(--caramel);
  background: #fff;
}

.field-row textarea { min-height: 110px; resize: vertical; }

.contact-map {
  background: linear-gradient(135deg, rgba(166,123,91,0.18) 0%, rgba(232,216,200,0.6) 100%);
  border-radius: 59% 40% 50% 29% / 33% 60% 40% 43%;
  margin-left: -32px;
  padding: 148px 36px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  min-height: 360px;
  color: var(--graphite);
}

.contact-map::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(29, 78, 216, 0.18) 0%, transparent 30%),
    radial-gradient(circle at 70% 70%, rgba(166, 123, 91, 0.25) 0%, transparent 35%);
  pointer-events: none;
}

.contact-map > * { position: relative; z-index: 1; }

.contact-map h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--graphite);
}

.contact-map ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-map li {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--graphite);
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.ic {
  width: 20px;
  height: 20px;
  fill: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
}

.contact-map li .ic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--caramel);
  fill: none;
  stroke-width: 1.5;
  margin-top: 2px;
}

.contact-strip {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-strip .strip-cell {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  padding: 28px;
  text-align: center;
  color: var(--graphite);
}

.contact-strip .strip-cell .lbl {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  color: var(--caramel);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.contact-strip .strip-cell .val {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--graphite);
  margin: 0;
}

footer.site-footer {
  background: var(--alabaster);
  border-top: 1px solid rgba(166, 123, 91, 0.2);
  padding: 70px 96px 0;
  color: var(--graphite);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand .bean-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #D4A373 0%, var(--caramel) 55%, var(--caramel-deep) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(166, 123, 91, 0.35);
  margin-bottom: 14px;
}

.footer-brand .bean-mark svg { width: 24px; height: 24px; }

.footer-brand .ftr-domain {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.06em;
  color: var(--graphite);
  margin: 0 0 4px;
}

.footer-brand .ftr-cname {
  font-family: var(--sans);
  font-size: 12px;
  color: rgba(30, 41, 59, 0.65);
  margin: 0 0 18px;
  line-height: 1.4;
}

.footer-brand p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--asphalt);
  margin: 0;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--caramel);
  text-transform: uppercase;
  margin: 0 0 18px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li { margin-bottom: 10px; }

.footer-col a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--graphite);
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--caramel); }

.footer-col li.address {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--asphalt);
  line-height: 1.7;
}

.footer-legal {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--asphalt);
  background: rgba(255,255,255,0.55);
  margin: 0 -96px;
  padding-left: 96px;
  padding-right: 96px;
}

.footer-legal a { color: var(--asphalt); }
.footer-legal a:hover { color: var(--caramel); }
.footer-legal .legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  z-index: 9998;
  box-shadow: 0 18px 40px rgba(30, 41, 59, 0.12);
  color: var(--graphite);
}

.cookie-banner h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--graphite);
}

.cookie-banner p {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--asphalt);
  margin: 0 0 14px;
  line-height: 1.6;
}

.cookie-banner .cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-banner button {
  flex: 1;
  padding: 10px 14px;
  border-radius: 100px;
  border: none;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cookie-banner .cb-accept {
  background: var(--caramel);
  color: #fff;
}

.cookie-banner .cb-accept:hover { background: var(--caramel-deep); }

.cookie-banner .cb-decline {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--graphite);
}

.cookie-banner .cb-decline:hover { background: var(--alabaster-warm); }

.cookie-banner a {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--sans);
  font-size: 11px;
  color: var(--caramel);
  text-decoration: underline;
}

.service-hero {
  padding: 100px 96px 60px;
  position: relative;
  overflow: hidden;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(212, 163, 115, 0.2) 0%, transparent 55%);
  pointer-events: none;
}

.service-hero > * { position: relative; z-index: 1; }

.service-hero h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 700;
  margin: 16px 0 18px;
  color: var(--graphite);
  line-height: 1.05;
}

.service-hero h1 .it { font-style: italic; }

.service-hero .lede {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--asphalt);
  max-width: 640px;
  margin: 0;
}

.service-detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  padding: 56px;
  margin-bottom: 32px;
  color: var(--graphite);
}

.service-detail-card h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--graphite);
}

.service-detail-card h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--caramel);
  text-transform: uppercase;
  margin: 24px 0 12px;
}

.service-detail-card p {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--graphite);
  margin: 0 0 14px;
  line-height: 1.75;
}

.service-detail-card ul {
  margin: 0 0 14px;
  padding-left: 22px;
}

.service-detail-card li {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--graphite);
  margin-bottom: 8px;
  line-height: 1.6;
}

.price-tag {
  display: inline-block;
  padding: 10px 22px;
  background: rgba(166, 123, 91, 0.14);
  border-radius: 100px;
  font-family: var(--sans);
  font-weight: 700;
  color: var(--caramel);
  font-size: 14px;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery-tile {
  position: relative;
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.4s ease, border-radius 0.8s ease;
}

.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-tile:hover {
  border-radius: 50% 50% 50% 50%;
  transform: scale(1.03);
}

.gallery-tile:hover img { transform: scale(1.1); }

.gallery-tile .tile-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #fff;
  text-transform: uppercase;
  background: rgba(30,41,59,0.55);
  backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 100px;
  text-align: center;
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.journal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40% 60% 70% 30% / 50% 60% 27% 12%;
  overflow: hidden;
  color: var(--graphite);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(30, 41, 59, 0.1);
}

.journal-card .jc-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  background-size: cover;
  background-position: center;
}

.journal-card .jc-body { padding: 28px; }

.journal-card .jc-meta {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--caramel);
  text-transform: uppercase;
  margin: 0 0 10px;
}

.journal-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--graphite);
  line-height: 1.3;
}

.journal-card p {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--asphalt);
  margin: 0 0 18px;
  line-height: 1.7;
}

.journal-card .jc-more {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--caramel);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.thanks-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  padding: 70px 50px;
  color: var(--graphite);
}

.thanks-card .check-orb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--caramel);
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(166, 123, 91, 0.4);
}

.thanks-card .check-orb svg { width: 44px; height: 44px; stroke: #fff; fill: none; stroke-width: 2.5; }

.thanks-card h1 {
  font-family: var(--serif);
  font-size: 44px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 18px;
  color: var(--graphite);
}

.thanks-card p {
  font-family: var(--sans);
  font-size: 16px;
  color: var(--asphalt);
  margin: 0 0 28px;
  line-height: 1.7;
}

.legal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
  padding: 56px 60px;
  color: var(--graphite);
  margin-bottom: 32px;
}

.legal-card h1 {
  font-family: var(--serif);
  font-size: 40px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--graphite);
}

.legal-card .legal-meta {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--caramel);
  text-transform: uppercase;
  margin: 0 0 28px;
}

.legal-card h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--graphite);
}

.legal-card p, .legal-card li {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--graphite);
  margin: 0 0 12px;
  line-height: 1.8;
}

.legal-card ul { padding-left: 22px; }

.page-pad {
  padding: 100px 96px;
}

/* === Article Page Styles === */
.article-hero {
   position: relative;
   height: 60vh;
   min-height: 420px;
   background-size: cover;
   background-position: center;
   display: flex;
   align-items: flex-end;
   overflow: hidden;
}

.article-hero::before {
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient(180deg, rgba(30,41,59,0.15) 0%, rgba(30,41,59,0.7) 100%);
}

.article-hero .article-hero-content {
   position: relative;
   z-index: 1;
   padding: 60px 96px;
   width: 100%;
   max-width: 900px;
}

.article-hero .article-category {
   font-family: var(--sans);
   font-size: 11px;
   font-weight: 600;
   letter-spacing: 0.28em;
   color: var(--pearl);
   text-transform: uppercase;
   margin-bottom: 14px;
}

.article-hero h1 {
   font-family: var(--serif);
   font-size: clamp(32px, 4.5vw, 56px);
   font-weight: 700;
   color: #fff;
   margin: 0 0 18px;
   line-height: 1.1;
}

.article-hero .article-date {
   font-family: var(--sans);
   font-size: 12px;
   color: rgba(255,255,255,0.75);
   letter-spacing: 0.12em;
}

.article-layout {
   display: grid;
   grid-template-columns: 1fr 320px;
   gap: 60px;
   align-items: start;
}

.article-body {
   padding: 80px 0;
}

.article-content {
   font-family: var(--sans);
   font-size: 17px;
   color: var(--graphite);
   line-height: 1.85;
}

.article-content p {
   margin-bottom: 28px;
   color: var(--graphite);
}

.article-content h2 {
   font-family: var(--serif);
   font-size: 30px;
   font-style: italic;
   font-weight: 700;
   color: var(--graphite);
   margin: 48px 0 20px;
}

.article-content h3 {
   font-family: var(--sans);
   font-size: 14px;
   font-weight: 700;
   letter-spacing: 0.18em;
   color: var(--caramel);
   text-transform: uppercase;
   margin: 36px 0 14px;
}

.article-content blockquote {
   margin: 36px 0;
   padding: 28px 36px;
   border-left: 4px solid var(--caramel);
   background: rgba(166, 123, 91, 0.08);
   border-radius: 0 24px 24px 0;
   font-family: var(--serif);
   font-size: 22px;
   font-style: italic;
   color: var(--graphite);
   line-height: 1.5;
}

.article-sidebar {
   position: sticky;
   top: 96px;
}

.article-sidebar-card {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
   padding: 32px;
   margin-bottom: 24px;
}

.article-sidebar-card h4 {
   font-family: var(--serif);
   font-size: 20px;
   font-style: italic;
   font-weight: 700;
   color: var(--graphite);
   margin: 0 0 16px;
}

.article-sidebar-card p {
   font-family: var(--sans);
   font-size: 14px;
   color: var(--asphalt);
   margin: 0 0 18px;
   line-height: 1.65;
}

.article-nav {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 24px;
   margin-top: 80px;
   padding-top: 40px;
   border-top: 1px solid var(--line);
}

.article-nav-link {
   display: flex;
   flex-direction: column;
   gap: 8px;
   padding: 24px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 28px;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-nav-link:hover {
   transform: translateY(-4px);
   box-shadow: 0 12px 24px rgba(30, 41, 59, 0.08);
}

.article-nav-link.next { text-align: right; }

.article-nav-link .nav-label {
   font-family: var(--sans);
   font-size: 10px;
   font-weight: 600;
   letter-spacing: 0.22em;
   color: var(--caramel);
   text-transform: uppercase;
}

.article-nav-link .nav-title {
   font-family: var(--serif);
   font-size: 18px;
   font-weight: 700;
   color: var(--graphite);
   line-height: 1.3;
}

.article-share {
   display: flex;
   gap: 12px;
   margin-top: 24px;
}

.article-share a {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(166, 123, 91, 0.12);
   display: flex;
   align-items: center;
   justify-content: center;
   transition: background 0.3s ease, transform 0.3s ease;
}

.article-share a:hover {
   background: var(--caramel);
   transform: scale(1.1);
}

.article-share svg {
   width: 18px;
   height: 18px;
   stroke: var(--caramel);
   fill: none;
   stroke-width: 1.5;
}

.article-share a:hover svg { stroke: #fff; }

.article-author {
   display: flex;
   align-items: center;
   gap: 18px;
   padding: 24px;
   background: rgba(166, 123, 91, 0.06);
   border-radius: 24px;
   margin: 40px 0;
}

.article-author .author-avatar {
   width: 64px;
   height: 64px;
   border-radius: 50%;
   background: var(--caramel);
   display: flex;
   align-items: center;
   justify-content: center;
   flex-shrink: 0;
}

.article-author .author-avatar svg {
   width: 32px;
   height: 32px;
   stroke: #fff;
   fill: none;
   stroke-width: 1.5;
}

.article-author .author-info h4 {
   font-family: var(--serif);
   font-size: 18px;
   font-weight: 700;
   color: var(--graphite);
   margin: 0 0 4px;
}

.article-author .author-info p {
   font-family: var(--sans);
   font-size: 13px;
   color: var(--asphalt);
   margin: 0;
}

@media (max-width: 1024px) {
  :root { --dock-w: 0px; }
  .dock-rail { display: none; }
  .mobile-bar {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--dock-w-mobile);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border-bottom: 1px solid var(--line);
    z-index: 100;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
  }
  .mobile-bar .m-brand { display: flex; align-items: center; gap: 10px; }
  .mobile-bar .bean-mark {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #D4A373 0%, var(--caramel) 55%, var(--caramel-deep) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-bar .bean-mark svg { width: 18px; height: 18px; }
  .mobile-bar .m-text { display: flex; flex-direction: column; }
  .mobile-bar .m-text .d {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 15px;
    color: var(--graphite);
    letter-spacing: 0.06em;
    line-height: 1.1;
  }
  .mobile-bar .m-text .c {
    font-family: var(--sans);
    font-weight: 500;
    font-size: 9px;
    color: rgba(30, 41, 59, 0.6);
    letter-spacing: 0.1em;
    margin-top: 2px;
  }
  .burger {
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
  }
  .burger span {
    position: relative;
    width: 18px;
    height: 2px;
    background: var(--graphite);
    transition: background 0.2s ease;
  }
  .burger span::before,
  .burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--graphite);
    transition: transform 0.3s ease, top 0.3s ease;
  }
  .burger span::before { top: -6px; }
  .burger span::after { top: 6px; }
  .burger[aria-expanded="true"] span { background: transparent; }
  .burger[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
  .burger[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }
  .mobile-menu {
    position: fixed;
    inset: var(--dock-w-mobile) 0 0 0;
    background: rgba(248, 246, 243, 0.95);
    backdrop-filter: blur(40px);
    z-index: 99;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 32px;
  }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu a {
    font-family: var(--sans);
    font-weight: 700;
    font-size: 24px;
    color: var(--graphite);
    padding: 10px 0;
  }
  .mobile-menu .btn-primary {
    margin-top: 16px;
    font-size: 14px;
  }
  .main-canvas { margin-left: 0; padding-top: var(--dock-w-mobile); }
  .hero-stage, .section-pad, .service-hero, .page-pad, footer.site-footer {
    padding-left: 28px;
    padding-right: 28px;
  }
  footer.site-footer { padding-top: 56px; }
  .footer-legal {
    margin: 0 -28px;
    padding-left: 28px;
    padding-right: 28px;
  }
  .hero-stage {
    flex-direction: column;
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 32px;
  }
  .hero-orb { flex: none; width: 280px; height: 280px; }
  .bean-orb { width: 220px; height: 220px; }
  .aroma-track {
    position: static;
    transform: none;
    flex-direction: row;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
  }
  .story-split { grid-template-columns: 1fr; gap: 32px; }
  .sticky-side { position: static; }
  .feedback-split { grid-template-columns: 1fr; gap: 32px; }
  .counter-grid { grid-template-columns: 1fr 1fr; }
  .contact-overlap { grid-template-columns: 1fr; }
  .contact-map { margin-left: 0; margin-top: 24px; }
  .contact-strip { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-cell.size-2x2 { grid-column: span 2; grid-row: span 2; }
  .bento-cell.size-2x1 { grid-column: span 2; }
  .bento-cell.size-3x1 { grid-column: span 2; }
  .stack-card { grid-template-columns: 1fr; padding: 36px 28px; min-height: auto; }
  .stack-card .step-num { font-size: 100px; top: -10px; right: 14px; }
  .stack-card .step-photo { aspect-ratio: 4 / 3; }
  .node-graph { grid-template-columns: 1fr 1fr 1fr; }
  .node-hub { width: 100px; height: 100px; }
  .node-sat { width: 90px; height: 90px; }
  .team-row { flex-direction: column; }
  .team-card { height: auto; flex: 0 0 auto; }
  .team-card .team-photo { height: 280px; }
  .team-card .team-bio { max-height: 200px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cookie-banner { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .marquee-track { animation-duration: 28s; }
  .milestone-card { flex: 0 0 280px; height: 200px; }
}

@media (max-width: 640px) {
  .hero-stage, .section-pad, .service-hero, .page-pad, footer.site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .footer-legal { padding-left: 18px; padding-right: 18px; margin: 0 -18px; }
  .headline-display .line-italic, .headline-display .line-bold { font-size: 42px; }
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-cell, .bento-cell.size-2x2, .bento-cell.size-2x1, .bento-cell.size-3x1 { grid-column: 1; grid-row: auto; min-height: 160px; }
  .node-graph { grid-template-columns: 1fr 1fr; }
  .node-hub { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .counter-grid { grid-template-columns: 1fr; }
  .contact-form-card, .legal-card, .thanks-card, .service-detail-card { padding: 32px 24px; }
  .stack-card { padding: 32px 22px; }
  .footer-legal { flex-direction: column; align-items: flex-start; }
  .legal-card h1, .service-hero h1 { font-size: 32px; }
  .thanks-card h1 { font-size: 32px; }
}


