/* ═══════════════════════════════════════════════════════════════
   POTTERY STUDIO — Premium Static Stylesheet
   No frameworks. No JS. Pure CSS craft.
   ═══════════════════════════════════════════════════════════════ */

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  /* Core palette */
  --clay:        #c67b4b;
  --clay-deep:   #9b4f2a;
  --clay-dark:   #5e2e1a;
  --terracotta:  #d4855e;
  --cream:       #fef9f3;
  --cream-warm:  #faf3e8;
  --sand:        #e8d5c0;
  --sand-light:  #f0e2d3;
  --sage:        #5a6b4d;
  --sage-deep:   #3f4d35;
  --ink:         #2c1810;
  --ink-soft:    #4a3630;
  --muted:       #8c7a6e;
  --muted-light: #b8a898;
  --white:       #fdf8f0;
  --gold:        #d4a574;
  --gold-light:  #e8ccaf;

  /* Surfaces */
  --surface-card:   rgba(255, 253, 248, 0.85);
  --surface-glass:  rgba(255, 250, 242, 0.65);
  --border-subtle:  rgba(44, 24, 16, 0.07);
  --border-medium:  rgba(44, 24, 16, 0.12);

  /* Shadows — warm, layered */
  --shadow-sm:  0 2px 8px rgba(44, 24, 16, 0.06);
  --shadow-md:  0 12px 40px rgba(44, 24, 16, 0.10);
  --shadow-lg:  0 28px 72px rgba(44, 24, 16, 0.14);
  --shadow-xl:  0 40px 100px rgba(44, 24, 16, 0.18);
  --shadow-glow: 0 0 0 1px rgba(198, 123, 75, 0.08), 0 18px 48px rgba(44, 24, 16, 0.10);

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --pad-x: clamp(22px, 6vw, 80px);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --radius-full: 999px;

  /* Transitions */
  --ease-out: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & base ─────────────────────────────────────────── */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%,  var(--sand-light) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 85% 20%, var(--gold-light) 0%, transparent 45%),
    radial-gradient(ellipse 40% 50% at 15% 70%, var(--cream-warm) 0%, transparent 40%),
    var(--cream);
  background-attachment: fixed;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Focus ring — visible, elegant */
:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: rgba(198, 123, 75, 0.22);
  color: var(--ink);
}

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  letter-spacing: -0.035em;
  line-height: 1.05;
  font-weight: 700;
}

h1 { font-size: clamp(50px, 7.5vw, 104px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(20px, 2.2vw, 28px); letter-spacing: -0.025em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--clay);
  margin-bottom: 14px;
}

/* ── Header ───────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px var(--pad-x);
  background: rgba(254, 249, 243, 0.82);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.03em;
  transition: opacity var(--ease-out);
}
.brand:hover { opacity: 0.78; }

.brand-mark {
  position: relative;
  width: 32px;
  height: 32px;
  display: inline-block;
  flex-shrink: 0;
  border-radius: 50% 50% 42% 42%;
  background: linear-gradient(155deg, var(--clay), var(--terracotta));
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.13), 0 4px 12px rgba(198, 123, 75, 0.25);
  transition: transform var(--ease-spring);
}
.brand:hover .brand-mark { transform: scale(1.08) rotate(-4deg); }

/* Decorative highlight on brand mark */
.brand-mark::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 6px;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 650;
  color: var(--ink-soft);
  transition: color var(--ease-out), background var(--ease-out);
}
nav a:hover { color: var(--ink); background: rgba(44, 24, 16, 0.04); }

.nav-cta {
  margin-left: 6px;
  color: var(--cream) !important;
  background: var(--clay) !important;
  box-shadow: 0 4px 16px rgba(198, 123, 75, 0.28);
  transition: background var(--ease-out), box-shadow var(--ease-out), transform var(--ease-out);
}
.nav-cta:hover {
  background: var(--clay-deep) !important;
  box-shadow: 0 6px 22px rgba(198, 123, 75, 0.38);
  transform: translateY(-1px);
}

/* ── Buttons ──────────────────────────────────────────────── */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 28px;
  border-radius: var(--radius-full);
  font-weight: 750;
  font-size: 14.5px;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--ease-out);
  white-space: nowrap;
}

.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(44, 24, 16, 0.18);
}
.primary:hover {
  background: #3d2218;
  box-shadow: 0 18px 44px rgba(44, 24, 16, 0.24);
  transform: translateY(-2px);
}

.secondary {
  border-color: var(--border-medium);
  color: var(--ink);
  background: transparent;
}
.secondary:hover {
  border-color: var(--ink);
  background: rgba(44, 24, 16, 0.03);
  transform: translateY(-1px);
}

.light {
  border-color: rgba(255, 250, 242, 0.35);
  color: var(--white);
  background: transparent;
}
.light:hover {
  border-color: rgba(255, 250, 242, 0.7);
  background: rgba(255, 250, 242, 0.08);
  transform: translateY(-1px);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  min-height: 86vh;
  padding: clamp(64px, 8vw, 120px) var(--pad-x) 56px;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow behind hero */
.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  left: -120px;
  top: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-copy .eyebrow { animation: fadeUp 0.7s var(--ease-out) both; }
.hero-copy h1         { animation: fadeUp 0.7s 0.1s var(--ease-out) both; }
.hero-copy .lead      { animation: fadeUp 0.7s 0.2s var(--ease-out) both; }
.hero-copy .hero-actions { animation: fadeUp 0.7s 0.3s var(--ease-out) both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.lead {
  max-width: 540px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
}

/* ── Hero art — CSS-only pottery illustration ─────────────── */
.hero-art {
  position: relative;
  min-height: 540px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(255, 255, 255, 0.2) 0%, transparent 60%),
    linear-gradient(150deg, #eddcc8 0%, #d9b896 30%, #c99a6e 65%, #b87a4f 100%);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Soft light orb */
.hero-art::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -30px;
  top: 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 253, 245, 0.55) 0%, transparent 65%);
  filter: blur(2px);
}

/* Shelf line */
.hero-art::after {
  content: "";
  position: absolute;
  bottom: 90px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(44, 24, 16, 0.10) 20%, rgba(44, 24, 16, 0.10) 80%, transparent);
}

/* Moon / light orb */
.moon {
  position: absolute;
  width: 170px;
  height: 170px;
  right: 14%;
  top: 10%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, rgba(255, 253, 248, 0.75) 0%, rgba(255, 247, 235, 0.35) 50%, transparent 70%);
}

/* Shared vase base */
.vase {
  position: absolute;
  bottom: 84px;
}

/* Tall vase — left */
.tall {
  width: 140px;
  height: 310px;
  left: 12%;
  border-radius: 48% 48% 22% 22% / 16% 16% 8% 8%;
  background: linear-gradient(170deg, #c9885a 0%, #a85e3a 50%, #8a4026 100%);
  box-shadow:
    inset -20px -30px 0 rgba(0, 0, 0, 0.10),
    inset 14px 0 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(44, 24, 16, 0.25);
}

/* Tall vase neck */
.tall::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 48px;
  left: 41px;
  top: -18px;
  border-radius: 45% 45% 18% 18%;
  background: linear-gradient(170deg, #d4956a, #b0653f);
  box-shadow: inset -4px -6px 0 rgba(0, 0, 0, 0.08);
}

/* Small highlight on tall vase */
.tall::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 60px;
  left: 22px;
  top: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

/* Wide bowl — right */
.bowl {
  width: 210px;
  height: 108px;
  right: 8%;
  bottom: 88px;
  border-radius: 20px 20px 110px 110px;
  background: linear-gradient(175deg, #7a8a65 0%, #5e7048 50%, #4a5a38 100%);
  box-shadow:
    inset 0 -16px 0 rgba(0, 0, 0, 0.10),
    inset 0 8px 0 rgba(255, 255, 255, 0.06),
    0 16px 36px rgba(44, 24, 16, 0.22);
}

/* Bowl rim highlight */
.bowl::before {
  content: "";
  position: absolute;
  width: 160px;
  height: 30px;
  left: 25px;
  top: -8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

/* Cup — center-right */
.cup {
  width: 100px;
  height: 130px;
  right: 28%;
  bottom: 196px;
  border-radius: 24px 24px 40px 40px;
  background: linear-gradient(165deg, #ecd4b0 0%, #d9b88c 100%);
  box-shadow:
    inset -10px -16px 0 rgba(0, 0, 0, 0.08),
    inset 6px 0 0 rgba(255, 255, 255, 0.08),
    0 14px 32px rgba(44, 24, 16, 0.18);
}

/* Cup handle */
.cup::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 38px;
  right: -16px;
  top: 32px;
  border: 7px solid #d9b88c;
  border-left: none;
  border-radius: 0 60% 60% 0;
}

/* Small accent pot — far left */
.accent-pot {
  position: absolute;
  width: 56px;
  height: 64px;
  left: 6%;
  bottom: 92px;
  border-radius: 42% 42% 34% 34%;
  background: linear-gradient(160deg, #e8cdaa, #c4956a);
  box-shadow: 0 8px 20px rgba(44, 24, 16, 0.18);
}

/* ── Stats bar ────────────────────────────────────────────── */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 var(--pad-x) 64px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.stats > div {
  padding: 30px 28px;
  background: var(--surface-card);
  text-align: center;
  transition: background var(--ease-out);
}
.stats > div:hover {
  background: rgba(255, 253, 248, 0.95);
}

.stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--clay-deep);
  margin-bottom: 4px;
}

.stats span {
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
}

/* ── Section shared ───────────────────────────────────────── */
.section {
  padding: 100px var(--pad-x);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-heading .eyebrow { margin-bottom: 10px; }

/* ── Collection ───────────────────────────────────────────── */
#collection {
  background:
    linear-gradient(180deg, transparent 0%, rgba(232, 213, 192, 0.15) 40%, transparent 100%);
}

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

.card {
  position: relative;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-glow);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* CSS pottery illustrations per card */
.piece {
  height: 260px;
  margin-bottom: 22px;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

/* Ambient glow inside piece containers */
.piece::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 242, 0.30) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

/* ── Piece 1: Breakfast bowl ─────────────────────────────── */
.piece-1 {
  background:
    radial-gradient(circle at 52% 46%, #f0ddbc 0 16%, transparent 17%),
    linear-gradient(150deg, #c9885a 0%, #e0c099 50%, #c27a4a 100%);
}
.piece-1::after {
  content: "";
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 90px;
  border-radius: 16px 16px 120px 120px;
  background: linear-gradient(180deg, #e8cba4 0%, #d4a77c 60%, #b87a50 100%);
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.08), 0 8px 24px rgba(44, 24, 16, 0.18);
  z-index: 2;
}

/* ── Piece 2: Stoneware mug ───────────────────────────────── */
.piece-2 {
  background:
    radial-gradient(circle at 66% 44%, transparent 0 17%, rgba(44, 24, 16, 0.18) 18% 22%, transparent 23%),
    linear-gradient(150deg, #6f8060 0%, #8a9a78 40%, #dfc7a3 100%);
}
.piece-2::after {
  content: "";
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 140px;
  border-radius: 28px 28px 46px 46px;
  background: linear-gradient(175deg, #8a9a78 0%, #697a58 100%);
  box-shadow: inset -12px -18px 0 rgba(0, 0, 0, 0.09), inset 8px 0 0 rgba(255, 255, 255, 0.05), 0 12px 28px rgba(44, 24, 16, 0.16);
  z-index: 2;
}

/* Mug handle */
.piece-2 .mug-handle {
  position: absolute;
  right: 48px;
  top: 98px;
  width: 28px;
  height: 42px;
  border: 7px solid #7a8a68;
  border-left: none;
  border-radius: 0 55% 55% 0;
  z-index: 3;
}

/* ── Piece 3: Island vase ─────────────────────────────────── */
.piece-3 {
  background: linear-gradient(155deg, #e9c59a 0%, #c98a58 50%, #8b3a24 100%);
}
.piece-3::after {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 190px;
  border-radius: 44% 44% 26% 26% / 18% 18% 10% 10%;
  background: linear-gradient(170deg, #d49565 0%, #b0653f 50%, #8a4026 100%);
  box-shadow: inset -16px -24px 0 rgba(0, 0, 0, 0.09), inset 10px 0 0 rgba(255, 255, 255, 0.05), 0 16px 32px rgba(44, 24, 16, 0.2);
  z-index: 2;
}
.piece-3 .vase-neck {
  position: absolute;
  bottom: 188px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 36px;
  border-radius: 42% 42% 16% 16%;
  background: linear-gradient(170deg, #dba078, #b8704a);
  box-shadow: inset -4px -5px 0 rgba(0, 0, 0, 0.07);
  z-index: 3;
}

/* Card text */
.card h3 {
  margin-bottom: 8px;
  font-weight: 700;
}
.card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}
.card .price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 750;
  font-size: 15px;
  color: var(--clay-deep);
}

/* ── Workshops — split layout ─────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: center;
  margin: 48px var(--pad-x);
  padding: clamp(38px, 7vw, 80px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(80, 95, 65, 0.5) 0%, transparent 60%),
    linear-gradient(140deg, var(--sage-deep), var(--sage));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative circles in background */
.split::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -80px;
  bottom: -100px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 242, 0.06);
  pointer-events: none;
}
.split::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: 60px;
  top: -40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 242, 0.05);
  pointer-events: none;
}

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

.split .eyebrow { color: rgba(255, 250, 242, 0.65); }
.split h2 { margin-bottom: 18px; }
.split > div > p {
  color: rgba(255, 250, 242, 0.73);
  font-size: 17px;
  line-height: 1.7;
  max-width: 520px;
}

.workshop-box {
  padding: 34px 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}

.workshop-box h3 {
  font-size: 22px;
  margin-bottom: 18px;
}

.workshop-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 26px;
}

.workshop-box li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: rgba(255, 250, 242, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.workshop-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255, 250, 242, 0.4);
}
.workshop-box li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 250, 242, 0.5);
}

/* ── Process ──────────────────────────────────────────────── */
.process {
  padding-top: 100px;
  padding-bottom: 100px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}

.steps > div {
  position: relative;
  padding: 32px 24px 24px;
  border-radius: var(--radius-md);
  background: var(--surface-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease-out), box-shadow var(--ease-out);
}
.steps > div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* Connecting line across steps */
.steps > div::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: rgba(198, 123, 75, 0.15);
  letter-spacing: -0.04em;
  margin-bottom: 12px;
  transition: color var(--ease-out);
}
.steps > div:hover::before { color: rgba(198, 123, 75, 0.28); }

.steps h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.steps p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 14.5px;
}

/* ── Visit / Contact ──────────────────────────────────────── */
.visit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin: 20px var(--pad-x) 80px;
  padding: clamp(40px, 7vw, 80px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(ellipse 70% 50% at 30% 80%, rgba(155, 79, 42, 0.4) 0%, transparent 55%),
    linear-gradient(145deg, var(--clay-dark), var(--clay-deep), var(--clay));
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

/* Decorative ring */
.visit::before {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  left: -60px;
  top: -60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 250, 242, 0.07);
  pointer-events: none;
}

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

.visit .eyebrow { color: rgba(255, 250, 242, 0.6); }
.visit h2 { margin-bottom: 14px; max-width: 520px; }
.visit > div > p {
  color: rgba(255, 250, 242, 0.74);
  font-size: 17px;
}

.visit .button.light {
  flex-shrink: 0;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px var(--pad-x);
  border-top: 1px solid var(--border-subtle);
  color: var(--muted);
  font-weight: 600;
  font-size: 13.5px;
}

footer span:last-child {
  color: var(--muted-light);
}

/* ── Responsive — Tablet ──────────────────────────────────── */
@media (max-width: 960px) {
  nav {
    gap: 2px;
  }
  nav a {
    padding: 6px 12px;
    font-size: 12.5px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 40px;
    padding-top: 48px;
  }
  .hero-art {
    min-height: 380px;
    order: -1;
  }

  .cards {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .visit {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Responsive — Mobile ──────────────────────────────────── */
@media (max-width: 600px) {
  nav {
    display: none;
  }

  .site-header {
    justify-content: center;
  }

  .hero {
    padding-top: 36px;
  }
  .hero-art {
    min-height: 300px;
    border-radius: var(--radius-lg);
  }

  .tall {
    width: 100px;
    height: 230px;
    left: 8%;
  }
  .tall::before {
    width: 42px;
    height: 36px;
    left: 29px;
    top: -12px;
  }

  .bowl {
    width: 150px;
    height: 80px;
    right: 4%;
    bottom: 80px;
  }

  .cup {
    width: 72px;
    height: 96px;
    right: 24%;
    bottom: 170px;
  }
  .cup::after {
    width: 20px;
    height: 28px;
    right: -12px;
    top: 24px;
    border-width: 5px;
  }

  .accent-pot {
    width: 40px;
    height: 48px;
    left: 4%;
    bottom: 82px;
  }

  .moon {
    width: 120px;
    height: 120px;
    right: 10%;
    top: 8%;
  }

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

  .section {
    padding: 64px var(--pad-x);
  }

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

  .visit {
    margin-bottom: 48px;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ── 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;
  }
}

/* ── Print ────────────────────────────────────────────────── */
@media print {
  .site-header { position: static; }
  .hero-art { break-inside: avoid; }
  .button { border: 1px solid #000; }
}
