:root {
  --ink: #17140f;
  --surface: #faf7f1;
  --accent: #8a6d3b;
  --line: rgba(23, 20, 15, 0.12);
  --card: #ffffff;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.preloader{ position:fixed; inset:0; z-index:9999; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:22px; background:var(--surface); transition:opacity .5s var(--ease), visibility .5s var(--ease); }
.preloader.is-hidden{ opacity:0; visibility:hidden; pointer-events:none; }
.preloader-mark{ font-family:'Playfair Display', serif; font-weight:600; font-size:1.4rem; letter-spacing:-.01em; color:var(--accent); opacity:0; animation:preloaderIn .6s var(--ease) forwards; }
.preloader-bar{ width:120px; height:2px; background:var(--line); overflow:hidden; border-radius:2px; }
.preloader-bar-fill{ display:block; height:100%; width:0%; background:var(--accent); transition:width .25s var(--ease); }
@keyframes preloaderIn{ to{ opacity:1; } }
body.is-preloading{ overflow:hidden; }
@media (prefers-reduced-motion:reduce){ .preloader-mark{ animation:none; opacity:1; } }

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: none;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

.micro {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.6;
  margin: 0 0 14px;
}

.micro.accent { color: var(--accent); opacity: 1; }

/* ---------- header ---------- */
.site-head {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 40px;
  mix-blend-mode: difference;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: none;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3rem;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.01em;
}

.head-nav { display: flex; gap: 34px; }

.head-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease);
}

.head-nav a:hover { border-bottom-color: #fff; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 5, 0.38);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 40px 96px;
  max-width: 760px;
}

.hero-copy .micro { color: #fff; opacity: 0.82; }

.hero-title {
  font-size: clamp(2.8rem, 6.6vw, 5.2rem);
  line-height: 0.98;
  color: #fff;
  margin-bottom: 26px;
}

.hero-lede {
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.86);
  max-width: 560px;
  margin: 0 0 38px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 15px 32px;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  border: 1px solid #fff;
  transition: transform 220ms var(--ease), background 220ms var(--ease), color 220ms var(--ease);
}

.btn:hover { transform: translateY(-2px); background: transparent; color: #fff; }

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover { background: #fff; color: var(--ink); }

/* ---------- credibility strip ---------- */
.strip {
  background: var(--ink);
  padding: 44px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.strip-num {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: none;
  font-weight: 700;
  font-size: 2.1rem;
  color: #fff;
}

.strip-item .micro { color: #fff; opacity: 0.62; margin: 0; }

/* ---------- sections ---------- */
section:not(.hero):not(.strip) {
  padding: clamp(90px, 12vw, 160px) 0;
}

.sec-head {
  max-width: 640px;
  margin: 0 0 64px;
}

.sec-head h2 {
  font-size: clamp(2.2rem, 4.4vw, 3.2rem);
  line-height: 1.08;
  margin-bottom: 20px;
}

.sec-note {
  font-size: 1.02rem;
  color: rgba(23, 20, 15, 0.68);
  max-width: 480px;
  margin: 0;
}

/* ---------- collection ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
}

.card-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms var(--ease);
}

.card:hover .card-media img { transform: scale(1.035); }

.card-body { padding: 26px 26px 28px; }

.card-body h3 {
  font-size: 1.34rem;
  margin-bottom: 10px;
}

.spec {
  font-size: 0.88rem;
  color: rgba(23, 20, 15, 0.62);
  margin: 0 0 22px;
  line-height: 1.5;
}

.card-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.price-frame {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: none;
  font-weight: 600;
  font-size: 1.18rem;
}

.card-foot .micro { margin: 0; }

/* ---------- atelier ---------- */
.atelier { background: #f2ede2; }

.atelier-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 72px;
  align-items: center;
}

.atelier-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.atelier-media figcaption {
  margin-top: 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(23, 20, 15, 0.55);
}

.atelier-copy h2 {
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  line-height: 1.08;
  margin-bottom: 26px;
}

.atelier-lines p {
  font-size: 1.02rem;
  color: rgba(23, 20, 15, 0.74);
  margin: 0 0 18px;
  max-width: 480px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 200ms var(--ease);
}

.text-link:hover { opacity: 0.68; }

.atelier-secondary {
  margin-top: 88px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}

.atelier-media-wide img,
.atelier-media-narrow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.atelier-media-wide { aspect-ratio: 16 / 10; overflow: hidden; }
.atelier-media-narrow { aspect-ratio: 4 / 5; overflow: hidden; }

/* ---------- press ---------- */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.press-quote {
  margin: 0;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}

.press-quote blockquote {
  margin: 0 0 22px;
  font-family: 'Playfair Display', serif;
  font-optical-sizing: none;
  font-style: italic;
  font-weight: 500;
  font-size: 1.14rem;
  line-height: 1.44;
  color: var(--ink);
}

.press-quote figcaption {
  font-size: 0.84rem;
  color: rgba(23, 20, 15, 0.6);
}

.press-quote cite { font-style: normal; color: var(--accent); }

/* ---------- appointments ---------- */
.appointment {
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.appointment-inner {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.appointment .micro { color: #fff; }

.appointment h2 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 22px;
}

.appointment-note {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  margin: 0 0 36px;
}

/* ---------- footer ---------- */
.site-foot { background: #f2ede2; padding: 72px 0 0; }

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line);
}

.foot-mark {
  font-family: 'Playfair Display', serif;
  font-optical-sizing: none;
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  margin: 0;
}

.foot-col p { margin: 0; font-size: 0.92rem; color: rgba(23, 20, 15, 0.72); }
.foot-col .micro { margin-bottom: 10px; }

.quiet-link {
  color: rgba(23, 20, 15, 0.72);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}

.quiet-link:hover { color: var(--accent); border-color: var(--accent); }

.foot-base {
  display: flex;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.78rem;
  color: rgba(23, 20, 15, 0.5);
}

/* ---------- demo pill ---------- */
.demo-pill {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 50;
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 9px 14px;
  border-radius: 999px;
  opacity: 0.86;
  transition: opacity 200ms var(--ease);
}

.demo-pill:hover { opacity: 1; }

/* ---------- reveal ---------- */
/* content is visible by default (no JS / JS-disabled safe); only .js pages hide-then-reveal */
.js .rv {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.js .rv.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .card-media img { transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .atelier-grid { grid-template-columns: 1fr; gap: 40px; }
  .atelier-secondary { grid-template-columns: 1fr; margin-top: 40px; }
  .press-grid { grid-template-columns: 1fr; gap: 32px; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .site-head { padding: 16px 20px; flex-direction: column; align-items: flex-start; gap: 10px; }
  .head-nav { gap: 14px; flex-wrap: wrap; }
  .head-nav a { font-size: 0.66rem; }
  .wrap { padding: 0 20px; }
  .hero-copy { padding: 0 20px 64px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .btn { text-align: center; width: 100%; }
  .foot-grid { grid-template-columns: 1fr; }
  .foot-base { flex-direction: column; gap: 6px; }
}
