/* BrewSpark — Premium Brew Salon (light luxury editorial) */
@import url('https://fonts.googleapis.com/css2?family=Petrona:ital,wght@0,600;0,700;1,600&family=Sora:wght@400;500;600&family=Source+Code+Pro:wght@400;500&display=swap');

:root {
  --chalk: #F5F7F8;
  --mist: #E6EBEE;
  --ink: #12151A;
  --azure: #1A6B9A;
  --azure-light: #2A8BC4;
  --azure-deep: #145A82;
  --slate: #6E7580;
  --white: #FFFFFF;
  --max-w: 76rem;
  --header-h: 4.75rem;
  --radius: 1.25rem;
  --radius-lg: 1.75rem;
  --radius-xl: 2rem;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(18, 21, 26, 0.04);
  --shadow-md: 0 8px 32px rgba(18, 21, 26, 0.08);
  --shadow-lg: 0 16px 48px rgba(18, 21, 26, 0.12);
  --shadow-glow: 0 0 48px rgba(26, 107, 154, 0.18);
  --glass-bg: rgba(245, 247, 248, 0.72);
  --glass-border: rgba(255, 255, 255, 0.6);
  --gradient-chalk: linear-gradient(165deg, #F5F7F8 0%, #EEF2F4 50%, #E6EBEE 100%);
  --gradient-mist: linear-gradient(165deg, #E6EBEE 0%, #DDE4E8 50%, #E6EBEE 100%);
  --gradient-azure: linear-gradient(135deg, #1A6B9A 0%, #2A8BC4 50%, #145A82 100%);
  --gradient-hero: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(26, 107, 154, 0.08) 0%, transparent 60%),
                   radial-gradient(ellipse 60% 50% at 20% 80%, rgba(230, 235, 238, 0.9) 0%, transparent 60%),
                   var(--chalk);
  --reveal-delay: 0s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 100%; }

body {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--chalk);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--azure); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--azure-deep); }

h1, h2 {
  font-family: 'Petrona', Georgia, serif;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.875rem, 3.5vw, 2.75rem); }
h3 { font-size: 1.3125rem; }

.mono {
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}

/* Surfaces */
.surface-chalk {
  background: var(--gradient-chalk);
  color: var(--ink);
}

.surface-ink {
  background: var(--ink);
  color: var(--chalk);
}

.surface-mist {
  background: var(--gradient-mist);
  color: var(--ink);
}

.surface-azure {
  background: var(--gradient-azure);
  color: var(--chalk);
}

.container {
  width: min(100% - 2.5rem, var(--max-w));
  margin-inline: auto;
}

/* ── Header — glass sticky ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition),
              box-shadow var(--transition), backdrop-filter var(--transition);
}

.site-header.is-sticky {
  background: rgba(18, 21, 26, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom-color: rgba(245, 247, 248, 0.08);
  box-shadow: 0 8px 32px rgba(18, 21, 26, 0.28);
}

.site-header.is-sticky .logo-text,
.site-header.is-sticky .nav-link { color: var(--chalk); }

.site-header.is-sticky .nav-link:hover,
.site-header.is-sticky .nav-link.is-active { color: var(--azure-light); }

.site-header.is-sticky .nav-link.is-active::after {
  background: linear-gradient(90deg, var(--azure-light), var(--azure));
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-mark {
  width: 2.125rem;
  height: 2.125rem;
  filter: drop-shadow(0 2px 8px rgba(26, 107, 154, 0.2));
}

.logo-text {
  font-family: 'Petrona', serif;
  font-weight: 700;
  font-size: 1.3125rem;
  color: var(--ink);
  transition: color var(--transition);
}

.nav-centre {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.25rem);
  flex-wrap: wrap;
}

.nav-link {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink);
  padding: 0.375rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-azure);
  border-radius: 2px;
  transition: width var(--transition), left var(--transition);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
  left: 0;
}

.nav-link.is-active { color: var(--azure); }

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  cursor: pointer;
  padding: 0.625rem;
  color: inherit;
}

.nav-toggle span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: currentColor;
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

.site-header.is-sticky .nav-toggle {
  color: var(--chalk);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(245, 247, 248, 0.12);
}

@media (max-width: 768px) {
  .nav-toggle { display: block; }

  .nav-centre {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(18, 21, 26, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
    border-bottom: 1px solid rgba(245, 247, 248, 0.08);
  }

  .nav-centre.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-centre .nav-link { color: var(--chalk); font-size: 1rem; }
  .nav-centre .nav-link.is-active { color: var(--azure-light); }
}

main { padding-top: var(--header-h); min-height: 60vh; }

/* ── Hero — premium split ── */
.hero-salon {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  animation: blob-float 14s ease-in-out infinite;
}

.hero-blob--1 {
  width: clamp(280px, 40vw, 480px);
  height: clamp(280px, 40vw, 480px);
  top: -10%;
  right: -5%;
  background: radial-gradient(circle, rgba(26, 107, 154, 0.22) 0%, transparent 70%);
  animation-delay: 0s;
}

.hero-blob--2 {
  width: clamp(200px, 30vw, 360px);
  height: clamp(200px, 30vw, 360px);
  bottom: 5%;
  left: -8%;
  background: radial-gradient(circle, rgba(230, 235, 238, 0.95) 0%, transparent 70%);
  animation-delay: -4s;
}

.hero-blob--3 {
  width: clamp(160px, 22vw, 280px);
  height: clamp(160px, 22vw, 280px);
  top: 40%;
  left: 35%;
  background: radial-gradient(circle, rgba(26, 107, 154, 0.1) 0%, transparent 70%);
  animation-delay: -8s;
}

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.97); }
}

.hero-premium {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-premium-content {
  text-align: left;
}

.hero-salon .hero-eyebrow {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--azure);
  margin-bottom: 1.25rem;
  display: inline-block;
  padding: 0.375rem 1rem;
  background: rgba(26, 107, 154, 0.08);
  border-radius: 2rem;
  border: 1px solid rgba(26, 107, 154, 0.12);
}

.hero-salon h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--ink) 0%, var(--azure-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-salon .hero-slogan {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  color: var(--slate);
  max-width: 38rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(110, 117, 128, 0.15);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-value {
  font-family: 'Petrona', serif;
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  color: var(--ink);
  line-height: 1.2;
}

.hero-stat-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
}

.hero-premium .photo-plate {
  margin-inline: 0;
  max-width: none;
}

@media (max-width: 900px) {
  .hero-premium {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-premium-content { text-align: center; }

  .hero-salon h1 { margin-inline: auto; }

  .hero-salon .hero-slogan { margin-inline: auto; }

  .hero-ctas { justify-content: center; }

  .hero-stats {
    max-width: 28rem;
    margin-inline: auto;
  }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr; text-align: center; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9375rem 2rem;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition),
              background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--gradient-azure);
  color: var(--chalk);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(26, 107, 154, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 8px 32px rgba(26, 107, 154, 0.45);
  color: var(--chalk);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-color: rgba(18, 21, 26, 0.15);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--ink);
  color: var(--chalk);
  border-color: var(--ink);
}

.surface-azure .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(245, 247, 248, 0.35);
  color: var(--chalk);
  backdrop-filter: blur(8px);
}

.surface-azure .btn-secondary:hover {
  background: var(--chalk);
  color: var(--azure-deep);
  border-color: var(--chalk);
}

/* ── Photo plate — premium frame ── */
.photo-plate {
  position: relative;
  max-width: 56rem;
  margin-inline: auto;
  padding: 0.875rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.photo-plate::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(26, 107, 154, 0.3), transparent 40%, rgba(26, 107, 154, 0.15));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.photo-plate:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), 0 0 64px rgba(26, 107, 154, 0.22);
}

.photo-plate img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: calc(var(--radius-xl) - 0.5rem);
}

.photo-plate figcaption {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.75rem;
  color: var(--slate);
  padding: 0.875rem 0.375rem 0.25rem;
  text-align: left;
}

/* ── Brew arc — enhanced glow ── */
.brew-arc {
  padding: clamp(4rem, 8vw, 6rem) 0;
  overflow: hidden;
  position: relative;
}

.brew-arc::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(90%, 36rem);
  height: 12rem;
  background: radial-gradient(ellipse, rgba(26, 107, 154, 0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: arc-glow-pulse 4s ease-in-out infinite;
}

@keyframes arc-glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.brew-arc-inner {
  position: relative;
  max-width: 44rem;
  margin-inline: auto;
  height: 13rem;
}

.brew-arc-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 12px rgba(26, 107, 154, 0.35));
}

.brew-arc-path {
  fill: none;
  stroke: var(--azure);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: arc-draw 2.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  filter: drop-shadow(0 0 8px rgba(26, 107, 154, 0.5));
}

@keyframes arc-draw {
  to { stroke-dashoffset: 0; }
}

.brew-node {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  opacity: 0;
  animation: node-bloom 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.brew-node:nth-child(2) { animation-delay: 0.55s; }
.brew-node:nth-child(3) { animation-delay: 1.1s; }
.brew-node:nth-child(4) { animation-delay: 1.65s; }
.brew-node:nth-child(5) { animation-delay: 2.2s; }

@keyframes node-bloom {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.7); }
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

.brew-node-dot {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--gradient-azure);
  border-radius: 50%;
  margin: 0 auto 0.5rem;
  box-shadow: 0 0 16px rgba(26, 107, 154, 0.6), 0 0 4px rgba(26, 107, 154, 0.8);
  animation: node-pulse 2.5s ease-in-out infinite;
}

.brew-node:nth-child(2) .brew-node-dot { animation-delay: 0s; }
.brew-node:nth-child(3) .brew-node-dot { animation-delay: 0.4s; }
.brew-node:nth-child(4) .brew-node-dot { animation-delay: 0.8s; }
.brew-node:nth-child(5) .brew-node-dot { animation-delay: 1.2s; }

@keyframes node-pulse {
  0%, 100% { box-shadow: 0 0 12px rgba(26, 107, 154, 0.5); transform: scale(1); }
  50% { box-shadow: 0 0 24px rgba(26, 107, 154, 0.8); transform: scale(1.15); }
}

.brew-node-label {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.brew-node:nth-child(2) { top: 78%; left: 8%; }
.brew-node:nth-child(3) { top: 45%; left: 32%; }
.brew-node:nth-child(4) { top: 22%; left: 58%; }
.brew-node:nth-child(5) { top: 8%; left: 88%; }

/* ── Sections ── */
.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
}

.section-header {
  margin-bottom: 3rem;
  max-width: 42rem;
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p { color: var(--slate); font-size: 1.0625rem; }

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

/* ── Cards — glass premium ── */
.card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 107, 154, 0.35);
}

.card h3 { margin-bottom: 0.875rem; color: var(--ink); }

.card p { color: var(--slate); font-size: 0.9375rem; line-height: 1.65; }

.card-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--transition);
}

.card:hover .card-img img { transform: scale(1.03); }

/* ── Offerings ── */
.offering {
  padding: 2rem 2rem 2rem 2.25rem;
  border-left: 4px solid transparent;
  border-image: var(--gradient-azure) 1;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 0 var(--radius-xl) var(--radius-xl) 0;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.offering:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.offering h3 { margin-bottom: 0.75rem; }

.offering p { color: var(--slate); }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid rgba(110, 117, 128, 0.15);
  padding: 1.75rem 0;
  transition: padding var(--transition);
}

.faq-item:hover { padding-left: 0.5rem; }

.faq-item h3 {
  font-size: 1.0625rem;
  margin-bottom: 0.75rem;
}

.faq-item p { color: var(--slate); }

/* ── Forms ── */
.form-group { margin-bottom: 1.5rem; }

.form-group label:not(.form-check) {
  display: block;
  font-weight: 500;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  color: var(--ink);
}

.form-group input:not([type="checkbox"]):not([type="radio"]),
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.9375rem 1.25rem;
  font-family: 'Sora', sans-serif;
  font-size: 1rem;
  border: 1.5px solid rgba(110, 117, 128, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}

.form-group input:not([type="checkbox"]):not([type="radio"]):focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--azure);
  box-shadow: 0 0 0 4px rgba(26, 107, 154, 0.15);
  background: var(--white);
}

.form-group textarea { min-height: 9rem; resize: vertical; }

.form-check {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--slate);
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  min-width: 1.125rem;
  margin-top: 0.2rem;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--azure);
  border-radius: 0.25rem;
}

.form-check span {
  flex: 1;
  line-height: 1.55;
}

/* ── Page hero ── */
.page-hero {
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 50%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(26, 107, 154, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 1rem; }

.page-hero .lead {
  font-size: 1.125rem;
  color: var(--slate);
  max-width: 42rem;
  line-height: 1.65;
}

.page-hero .hero-eyebrow {
  color: var(--azure);
  margin-bottom: 0.875rem;
  display: inline-block;
}

/* ── Prose ── */
.prose { max-width: 44rem; }

.prose p { margin-bottom: 1.375rem; color: var(--slate); }

.prose h2 {
  font-size: 1.625rem;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}

.prose h3 {
  font-size: 1.1875rem;
  margin: 1.75rem 0 0.875rem;
}

.prose ul, .prose ol {
  margin: 0 0 1.375rem 1.5rem;
  color: var(--slate);
}

.prose li { margin-bottom: 0.5rem; }

.legal-prose { max-width: 50rem; }

.legal-prose p,
.legal-prose li { color: var(--slate); line-height: 1.8; }

.legal-prose h2 {
  font-size: 1.4375rem;
  margin: 2.75rem 0 1rem;
}

.legal-prose h3 {
  font-size: 1.0625rem;
  margin: 2rem 0 0.75rem;
}

.contact-block {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.contact-block dt {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--azure);
  margin-bottom: 0.375rem;
}

.contact-block dd {
  margin-bottom: 1.375rem;
  color: var(--ink);
}

.contact-block dd:last-child { margin-bottom: 0; }

/* ── Premium footer ── */
.site-footer {
  position: relative;
  padding: 0;
  margin-top: 0;
  overflow: hidden;
}

.premium-footer {
  padding-top: clamp(4rem, 8vw, 6rem);
  padding-bottom: 2rem;
}

.footer-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-gradient-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 107, 154, 0.5), transparent);
}

.footer-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.footer-glow--1 {
  width: 400px;
  height: 400px;
  top: -20%;
  left: -10%;
  background: rgba(26, 107, 154, 0.15);
}

.footer-glow--2 {
  width: 300px;
  height: 300px;
  bottom: -10%;
  right: -5%;
  background: rgba(26, 107, 154, 0.1);
}

.footer-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle at 1px 1px, var(--chalk) 1px, transparent 0);
  background-size: 32px 32px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-brand-col { max-width: 22rem; }

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Petrona', serif;
  font-weight: 700;
  font-size: 1.375rem;
  color: var(--chalk);
  margin-bottom: 1.25rem;
  transition: opacity var(--transition);
}

.footer-logo:hover { opacity: 0.85; color: var(--chalk); }

.footer-logo-mark {
  width: 2.25rem;
  height: 2.25rem;
  filter: drop-shadow(0 2px 12px rgba(26, 107, 154, 0.4));
}

.footer-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(245, 247, 248, 0.7);
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(245, 247, 248, 0.1);
  color: var(--chalk);
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.social-link:hover {
  background: rgba(26, 107, 154, 0.3);
  border-color: rgba(26, 107, 154, 0.5);
  color: var(--chalk);
  transform: translateY(-2px);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 10rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.footer-col h4 {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  color: rgba(245, 247, 248, 0.5);
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: 0.625rem; }

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(245, 247, 248, 0.75);
  transition: color var(--transition), opacity var(--transition);
}

.footer-col a:hover { color: var(--chalk); opacity: 1; }

.footer-contact-list li {
  font-size: 0.9375rem;
  color: rgba(245, 247, 248, 0.65);
  line-height: 1.6;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 247, 248, 0.08);
  font-size: 0.8125rem;
  color: rgba(245, 247, 248, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  color: rgba(245, 247, 248, 0.55);
  transition: color var(--transition);
}

.footer-bottom-links a:hover { color: var(--chalk); }

.footer-bottom-links span { opacity: 0.4; }

@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand-col { max-width: none; }
}

/* Legacy footer grid fallback */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

/* ── Cookie banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(18, 21, 26, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--chalk);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -8px 32px rgba(18, 21, 26, 0.3);
  border-top: 1px solid rgba(245, 247, 248, 0.08);
}

.cookie-banner.is-visible { transform: translateY(0); }

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  max-width: var(--max-w);
  margin-inline: auto;
}

.cookie-inner p {
  font-size: 0.875rem;
  flex: 1;
  min-width: 16rem;
  opacity: 0.9;
  line-height: 1.6;
}

.cookie-actions { display: flex; gap: 0.875rem; flex-shrink: 0; }

.cookie-actions .btn { padding: 0.6875rem 1.375rem; font-size: 0.8125rem; }

.btn-cookie-accept {
  background: var(--gradient-azure);
  color: var(--chalk);
  border-color: transparent;
}

.btn-cookie-decline {
  background: transparent;
  color: var(--chalk);
  border-color: rgba(245, 247, 248, 0.25);
}

/* ── 404 ── */
.error-page {
  text-align: center;
  padding: clamp(5rem, 12vw, 8rem) 0;
}

.error-page h1 { margin-bottom: 1.25rem; }

.error-page p { color: var(--slate); margin-bottom: 2rem; max-width: 28rem; margin-inline: auto; }

/* ── Brew board ── */
.brew-board-item {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(110, 117, 128, 0.12);
  align-items: center;
  transition: opacity var(--transition);
}

.brew-board-item:hover { opacity: 0.95; }

@media (max-width: 640px) {
  .brew-board-item { grid-template-columns: 1fr; }
}

.brew-board-item img {
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.brew-board-item:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.tag {
  display: inline-block;
  font-family: 'Source Code Pro', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  background: rgba(26, 107, 154, 0.1);
  color: var(--azure);
  border-radius: 2rem;
  border: 1px solid rgba(26, 107, 154, 0.15);
  margin-bottom: 0.875rem;
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-blob { animation: none; }

  .brew-arc-path {
    animation: none;
    stroke-dashoffset: 0;
  }

  .brew-arc::before { animation: none; }

  .brew-node {
    opacity: 1;
    animation: none;
    transform: translate(-50%, -50%);
  }

  .brew-node-dot { animation: none; }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .btn:hover,
  .card:hover,
  .photo-plate:hover,
  .offering:hover { transform: none; }
}
