
:root {
  --ink: #1a2228;
  --mute: #5c6a73;
  --paper: #f3f1ec;
  --clay: #c47a5a;
  --clay-deep: #8f4e35;
  --slate: #2c3a44;
  --line: rgba(26,34,40,.12);
  --sans: "Space Grotesk", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--sans); color: var(--ink); background: var(--paper); line-height: 1.55; }
a { color: inherit; }
img { max-width: 100%; height: auto; display: block; object-fit: cover; }

.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 5vw; position: sticky; top: 0; z-index: 20;
  background: rgba(243,241,236,.92); backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.logo { font-weight: 700; text-decoration: none; letter-spacing: -.02em; font-size: 1.15rem; }
.top nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.top nav a { text-decoration: none; font-weight: 600; font-size: .9rem; color: var(--mute); }

.hero {
  display: grid; grid-template-columns: 1fr 1.05fr; min-height: 84vh; border-bottom: 1px solid var(--line);
}
.hero-copy {
  padding: clamp(2rem,6vw,4rem); display: flex; flex-direction: column; justify-content: center;
  background: var(--slate); color: #f3f1ec; animation: rise .8s ease both;
}
.eyebrow { color: #e0a58a; font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 1rem; }
.hero h1 { font-family: var(--serif); font-size: clamp(2.4rem,5.5vw,4rem); line-height: 1.05; margin: 0 0 1rem; }
.lede { color: rgba(243,241,236,.82); margin: 0 0 1.5rem; max-width: 30rem; font-size: 1.08rem; }
.cta { display: flex; gap: .7rem; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .85rem 1.15rem; background: var(--clay); color: #fff; text-decoration: none;
  font-weight: 700; font-size: .92rem; border: 0; cursor: pointer;
}
.btn.ghost { background: transparent; border: 1px solid rgba(243,241,236,.35); color: #f3f1ec; }
.btn:hover { filter: brightness(1.05); }
.hero img { width: 100%; height: 100%; object-fit: cover; }

.curriculum, .shop, .how { padding: clamp(2.5rem,6vw,4.5rem) 5vw; }
.sec-head { max-width: 36rem; margin-bottom: 1.5rem; }
.sec-head h2, .how h2, .studio-card h2 {
  font-family: var(--serif); font-size: clamp(1.8rem,3.2vw,2.5rem); margin: 0 0 .6rem;
}
.sec-head p, .how p { margin: 0; color: var(--mute); }

.modules { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: .9rem; }
.modules article { background: #fff; border: 1px solid var(--line); }
.modules img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.modules span, .modules h3, .modules p { display: block; padding-left: 1rem; padding-right: 1rem; }
.modules span { margin-top: .85rem; color: var(--clay-deep); font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.modules h3 { font-family: var(--serif); font-size: 1.2rem; margin: .35rem 0 .4rem; }
.modules p { margin: 0 0 1rem; color: var(--mute); font-size: .95rem; }

.shop { background: #e8e4dc; }
.products { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.products article { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--line); }
.products.wide, .products .wide { grid-column: 1 / -1; }
.products img { width: 100%; height: 100%; min-height: 220px; object-fit: cover; }
.pbody { padding: 1.1rem 1.2rem; display: flex; flex-direction: column; justify-content: center; }
.pbody h3 { font-family: var(--serif); margin: 0 0 .45rem; font-size: 1.3rem; }
.pbody p { margin: 0 0 .7rem; color: var(--mute); }
.price { font-weight: 700; color: var(--ink) !important; font-size: 1.15rem; }
.pbody .btn { width: fit-content; }

.how ol { margin: 1rem 0; padding-left: 1.2rem; color: var(--mute); }
.how a { color: var(--clay-deep); font-weight: 600; }

.studio { position: relative; min-height: 62vh; display: grid; align-items: end; }
.studio > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.studio-card {
  position: relative; z-index: 1; margin: 5vw; max-width: 26rem;
  background: rgba(243,241,236,.95); padding: 1.4rem; border: 1px solid var(--line);
}
.studio-card p { color: var(--mute); margin: 0 0 1rem; }

.foot { padding: 2rem 5vw 2.5rem; border-top: 1px solid var(--line); }
.foot strong { font-size: 1.15rem; }
.foot p { color: var(--mute); }
.footer-legal { display: flex; flex-wrap: wrap; gap: .7rem 1.1rem; margin: 1rem 0; }
.footer-legal a { text-decoration: none; color: var(--mute); font-size: .9rem; }
.fine { font-size: .85rem; }

.order-page { max-width: 40rem; margin: 0 auto; padding: 2.5rem 5vw 3rem; }
.order-page h1 { font-family: var(--serif); }
.order-product { display: grid; grid-template-columns: 160px 1fr; gap: 1rem; align-items: center; margin: 1rem 0 1.5rem; }
.order-product img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border: 1px solid var(--line); }
.order-form { display: grid; gap: .85rem; }
.order-form label { display: grid; gap: .35rem; font-weight: 600; font-size: .92rem; }
.order-form input, .order-form textarea { font: inherit; padding: .75rem .85rem; border: 1px solid var(--line); background: #fff; }
.err { color: #8b1e1e; font-weight: 600; }
.form-note { font-size: .85rem; color: var(--mute); font-weight: 400; }
.form-note a { color: var(--clay-deep); }

.cookie-banner {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 50;
  max-width: 36rem; margin: 0 auto; padding: 1rem 1.1rem;
  background: #111; color: #f5f5f5; box-shadow: 0 12px 40px rgba(0,0,0,.25);
}
.cookie-banner a { color: #fff; }
.cookie-banner p { margin: 0 0 .8rem; font-size: .92rem; line-height: 1.45; color: inherit; }
.cookie-actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-btn { border: 0; padding: .65rem 1rem; cursor: pointer; font-weight: 600; background: #fff; color: #111; }
.cookie-btn.ghost { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.45); }

@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .top nav { display: none; }
  .hero, .modules, .products, .products article, .order-product { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero img { min-height: 42vh; }
  .studio { min-height: 55vh; }
}
