/* ========== MimoLand · Design System ========== */
:root {
  --cream: #f5efe6;
  --cream-2: #efe7d8;
  --paper: #fbf7f0;
  --ink: #2a221b;
  --ink-soft: #4a3f34;
  --muted: #8a7c6c;
  --line: #d9cebb;

  --terracotta: #b85c3a;
  --terracotta-deep: #8e3f24;
  --rose: #c98277;
  --sage: #8aa07a;
  --gold: #c9a352;

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Karla", system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
em, .italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.05; letter-spacing: -0.01em; color: var(--ink); }
h1 { font-size: clamp(3rem, 9vw, 8rem); }
h2 { font-size: clamp(2.2rem, 5.5vw, 4.6rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.8em;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn--solid {
  background: var(--ink);
  color: var(--cream);
}
.btn--solid:hover { background: var(--terracotta); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--text {
  padding: 0.95em 0.4em;
  color: var(--ink-soft);
}
.btn--text:hover { color: var(--terracotta); }

/* ========== Nav ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem var(--gutter);
  transition: all .4s var(--ease);
  background: transparent;
}
.nav.is-scrolled {
  background: color-mix(in srgb, var(--cream) 92%, transparent);
  backdrop-filter: blur(14px);
  padding-block: 0.8rem;
  box-shadow: 0 1px 0 var(--line);
}
.nav__brand { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--paper);
  transition: transform .5s var(--ease);
}
.nav__brand:hover .nav__logo,
.nav__brand a:hover .nav__logo { transform: rotate(-8deg) scale(1.05); }
.nav__brand-text {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 500;
}
.nav__links { display: flex; gap: 1rem; }
.nav__links a {
  font-size: 0.9rem; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500; color: var(--ink-soft);
  position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0; background: var(--terracotta);
  transition: width .4s var(--ease);
}
.nav__links a:hover { color: var(--terracotta); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 0.7em 1.3em; font-size: 0.72rem; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav__burger span { width: 24px; height: 1.5px; background: var(--ink); transition: .3s; }

/* ========== Hero ========== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: clamp(120px, 18vh, 180px) var(--gutter) 0;
  overflow: hidden;
  isolation: isolate;
  background-color: #f7f1e6;
}
.hero__bg {
  position: absolute;
  inset: -10% -5% -5% 35%;
  background: 
    linear-gradient(oklch(90.67% 0.0001 271.152 / 0.68), oklch(81.47% 0.09617 48.764 / 0.45)),
    url("/images/hero.jpg") center/cover no-repeat;
  z-index: -1;
  border-radius: 8px;
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, var(--cream) 0%, color-mix(in srgb, var(--cream) 90%, transparent) 45%, transparent 70%);
  z-index: -1;
}

.hero__inner {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}
.hero__title {
  margin: 1.2rem 0 1.8rem;
  font-size: clamp(1.8rem, 5.4vw, 4.8rem);
  font-weight: 500;
}
.hero__title span { display: block; }
.hero__title-italic {
  font-style: italic;
  color: var(--terracotta-deep);
  margin-left: clamp(20px, 8vw, 120px);
}
.hero__lede {
  max-width: 460px;
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 2.2rem;
}
.hero__cta { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.hero__meta {
  display: flex; gap: 2.5rem;
  margin-top: clamp(3rem, 8vh, 6rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  max-width: 560px;
}
.hero__meta div { display: flex; flex-direction: column; gap: 4px; }
.hero__meta strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; }
.hero__meta span { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }

.hero__socials {
  position: absolute;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 3vh, 2rem);
  display: flex;
  gap: 0.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 3;
}
.hero__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  border: none;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.hero__socials a:hover {
  transform: translateY(-2px);
}
@media (max-width: 720px) {
  .hero__socials a { width: 38px; height: 38px; }
  .hero__socials a svg { width: 18px; height: 18px; }
}

/* ========== About ========== */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  max-width: var(--container);
  margin: clamp(5rem, 12vh, 10rem) auto;
  padding: 0 var(--gutter);
}
.about__media {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 4 / 5;
}
.about__media img {
  width: 100%; height: 110%;
  object-fit: cover;
  will-change: transform;
}
.about__copy h2 { margin: 1rem 0 1.5rem; }
.about__copy p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 48ch; }
.about__pills { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem; }
.about__pills li {
  padding: 0.5em 1.1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* ========== Parallax break ========== */
.parallax-break {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  margin: clamp(4rem, 10vh, 8rem) 0;
}
.parallax-break__bg {
  position: absolute; inset: -20% 0;
  background: url("/images/parallax.jpg") center/cover no-repeat;
  z-index: -1;
  will-change: transform;
}
.parallax-break::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, color-mix(in srgb, var(--cream) 35%, transparent), color-mix(in srgb, var(--ink) 25%, transparent));
  z-index: -1;
}
.parallax-break__quote {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.15;
  text-align: center;
  color: var(--paper);
  text-shadow: 0 2px 30px rgba(0,0,0,.2);
  padding: 0 var(--gutter);
}
.parallax-break__quote .italic { color: var(--paper); font-weight: 600; }

/* ========== Shop ========== */
.shop {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.shop__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}
.shop__header h2 { margin: 1rem 0 1.2rem; }
.shop__sub { color: var(--ink-soft); }

.shop__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.card {
  display: flex; flex-direction: column;
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(42,34,27,.25); }
.card__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--cream-2);
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.card:hover .card__media img { transform: scale(1.06); }
.card__body { display: flex; flex-direction: column; flex: 1; padding: 1.5rem 1.5rem 1.8rem; }
.card__body h3 { margin-bottom: 0.4rem; }
.card__body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 1.2rem; }
.card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.price { font-family: var(--serif); font-size: 1.4rem; color: var(--terracotta-deep); }
.link-arrow {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--ink);
}
.link-arrow:hover { color: var(--terracotta); }

.shop__footer { text-align: center; margin-top: 4rem; }

/* ========== Workshops / Process ========== */
.workshops {
  background: var(--paper);
  margin: clamp(5rem, 12vh, 10rem) 0 0;
  padding: clamp(5rem, 12vh, 10rem) var(--gutter);
}
.workshops__copy { max-width: var(--container); margin: 0 auto; }
.workshops__copy h2 { margin: 1rem 0 3rem; max-width: 18ch; }
.steps { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.steps li {
  display: flex; flex-direction: column; gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.steps li span {
  font-family: var(--serif); font-style: italic;
  font-size: 1.1rem; color: var(--terracotta);
}
.steps h4 { margin-bottom: 0.4rem; }
.steps p { font-size: 0.92rem; color: var(--ink-soft); }

/* ========== Words / Testimonials ========== */
.words {
  max-width: var(--container);
  margin: clamp(5rem, 12vh, 10rem) auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.words h2 { margin: 1rem 0 4rem; }
.words__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: left; }
.quote {
  padding: 2.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  position: relative;
  transition: transform .4s var(--ease);
}
.quote:hover { transform: translateY(-4px); }
.quote::before {
  content: "\201C";
  position: absolute; top: -10px; left: 18px;
  font-family: var(--serif); font-size: 5rem; color: var(--terracotta); line-height: 1;
}
.quote blockquote {
  font-family: var(--serif); font-style: italic;
  font-size: 1.2rem; line-height: 1.4;
  color: var(--ink); margin-bottom: 1.2rem;
}
.quote figcaption { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }

/* ========== Visit ========== */
.visit {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(6rem, 14vh, 12rem) var(--gutter);
  text-align: center;
}
.visit__inner { max-width: 720px; margin: 0 auto; }
.visit .eyebrow { color: var(--gold); }
.visit h2 { color: var(--cream); margin: 1rem 0 1.5rem; }
.visit h2 .italic { color: var(--rose); }
.visit__lede { color: color-mix(in srgb, var(--cream) 75%, transparent); font-size: 1.05rem; margin-bottom: 2.5rem; }
.visit__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.visit .btn--solid { background: var(--cream); color: var(--ink); }
.visit .btn--solid:hover { background: var(--rose); color: var(--ink); }
.visit .btn--ghost { color: var(--cream); border-color: var(--cream); }
.visit .btn--ghost:hover { background: var(--cream); color: var(--ink); }

/* ========== Contact ========== */
.contact {
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
  background: var(--paper);
  text-align: center;
}
.contact__inner { max-width: var(--container); margin: 0 auto; }
.contact__lede {
  font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: 1.1rem;
  max-width: 48ch; margin: 1rem auto 3rem;
}
.contact__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}
.contact__card {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem;
  padding: 2rem 1.25rem;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.contact__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.18);
  border-color: var(--ink-soft);
}
.contact__icon { font-size: 1.6rem; }
.contact__card h4 {
  font-family: var(--sans); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); margin: 0;
}
.contact__card p {
  font-family: var(--serif); font-size: 1rem;
  line-height: 1.5; margin: 0; color: var(--ink);
}
.contact__card--whatsapp:hover {
  border-color: #25D366;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .contact__grid { grid-template-columns: 1fr; }
}

/* ========== Lessons ========== */
.lessons {
  max-width: var(--container);
  margin: clamp(5rem, 12vh, 10rem) auto;
  padding: 0 var(--gutter);
  text-align: center;
}
.lessons__inner { max-width: 900px; margin: 0 auto; }
.lessons h2 { margin: 1rem 0 1.2rem; }
.lessons__lede {
  font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: 1.1rem;
  max-width: 48ch; margin: 1rem auto 3rem;
}
.lessons__widget {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.lessons__widget .calendly-inline-widget {
  width: 100%;
  border-radius: 14px;
}

/* ========== Footer ========== */
.footer { background: var(--cream-2); padding: 3rem var(--gutter) 1.5rem; }
.footer__top {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 2rem;
  max-width: var(--container); margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; background: var(--paper); }
.footer__title { font-family: var(--serif); font-size: 1.3rem; }
.footer__sub { font-size: 0.82rem; color: var(--muted); }
.footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__nav a { font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); }
.footer__nav a:hover { color: var(--terracotta); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  max-width: var(--container); margin: 0 auto;
  padding-top: 1.5rem;
  font-size: 0.78rem; color: var(--muted);
}

/* ========== Reveal animations ========== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .9s var(--ease) var(--d, 0s), transform .9s var(--ease) var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee__track { animation: none; }
  [data-parallax] { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ========== Responsive ========== */
@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 2rem var(--gutter);
    gap: 1.2rem;
    border-top: 1px solid var(--line);
  }
  .hero__bg { inset: -5% -5% 5% 0; opacity: 0.55; }
  .hero::before { background: linear-gradient(180deg, var(--cream) 0%, color-mix(in srgb, var(--cream) 70%, transparent) 60%, var(--cream) 100%); }
  .hero__title-italic { margin-left: 0; }
  .about { grid-template-columns: 1fr; }
  .shop__grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .words__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.5rem; }
}

@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero__meta strong { font-size: 1.3rem; }
  .footer__top, .footer__bottom { justify-content: flex-start; }
}

/* ========== Cards as links ========== */
a.card { color: inherit; text-decoration: none; display: flex; }
a.card:hover .link-arrow { color: var(--terracotta); }
a.card:hover h3 { color: var(--terracotta-deep); }
.card h3 { transition: color .35s var(--ease); }

/* ========== Solid nav (subpages) ========== */
.nav--solid {
  position: sticky;
  background: color-mix(in srgb, var(--cream) 95%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  padding-block: 0.9rem;
}
.nav__links a[aria-current="page"] { color: var(--terracotta); }
.nav__links a[aria-current="page"]::after { width: 100%; }

/* ========== Page hero (subpages) ========== */
.page { min-height: 70vh; background: var(--paper); }
.page .shop, .page .shop--full { background: var(--paper); }
.card { background: var(--cream) !important; }
.page__hero {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 6rem) var(--gutter) clamp(2rem, 5vh, 3.5rem);
  text-align: center;
}
.page__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 1.05;
  margin: 1rem 0 1.5rem;
}
.crumbs {
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted);
  display: inline-flex; gap: 0.6rem; align-items: center; flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}

.crumbs a:hover { color: var(--terracotta); }

/* ========== Shop full page ========== */
.shop--full { padding-bottom: clamp(5rem, 10vh, 8rem); }
.shop__toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  padding-bottom: 1.5rem; margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.shop__count { color: var(--muted); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; }
.shop__search { flex: 1 1 280px; max-width: 420px; display: block; }
.shop__search input {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.9rem;
  padding: 0.65em 1.1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0.02em;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.shop__search input::placeholder { color: var(--muted); font-style: italic; }
.shop__search input:focus { outline: none; border-color: var(--terracotta); box-shadow: 0 0 0 3px hsl(from var(--terracotta) h s l / 0.18); }
.shop__sort {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.shop__sort select {
  font-family: var(--sans);
  font-size: 0.82rem;
  padding: 0.55em 2.2em 0.55em 1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path d='M1 1l4 4 4-4' stroke='%234a3f34' stroke-width='1.2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") no-repeat right 1em center;
  appearance: none; -webkit-appearance: none;
  color: var(--ink); cursor: pointer; letter-spacing: 0.06em; text-transform: none;
}
.shop__sort select:focus { outline: 2px solid var(--terracotta); outline-offset: 2px; }
.shop__grid--four { grid-template-columns: repeat(4, 1fr); }

.shop__footer { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ========== Product detail ========== */
.product {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(2rem, 5vh, 3.5rem) var(--gutter) clamp(4rem, 8vh, 6rem);
}
.product .crumbs { display: flex; justify-content: flex-start; margin-bottom: 2rem; }
.product__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.product__media {
  position: sticky; top: 100px;
  min-width: 0;
}
.product__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.product__media:hover img { transform: scale(1.04); }

/* ── Carousel ── */
.carousel {
  position: relative;
  background: var(--paper);
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.carousel__stage { width: 100%; height: 100%; }
.carousel__slide { width: 100%; height: 100%; object-fit: cover; }
.carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  color: var(--ink-soft);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.carousel__arrow:hover { background: #fff; color: var(--ink); }
.carousel__arrow--prev { left: 0.75rem; }
.carousel__arrow--next { right: 0.75rem; }
.carousel__thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.25rem;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  max-width: 100%;
}
.carousel__thumbs::-webkit-scrollbar { height: 4px; }
.carousel__thumbs::-webkit-scrollbar-track { background: transparent; }
.carousel__thumbs::-webkit-scrollbar-thumb { background: var(--line); border-radius: 4px; }
.carousel__thumb {
  width: 4.5rem;
  height: 4.5rem;
  min-width: 3.5rem;
  border-radius: 0.375rem;
  border: 2px solid transparent;
  background: var(--paper);
  cursor: pointer;
  overflow: hidden;
  flex-shrink: 0;
  padding: 0;
  transition: border-color 0.2s, opacity 0.2s;
}
.carousel__thumb:hover { border-color: var(--line); }
.carousel__thumb.is-active { border-color: var(--ink); }
.carousel__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.product__info h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 1rem 0 1.5rem;
}
.product__price {
  display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap;
  padding-block: 1.2rem;
  border-block: 1px solid var(--line);
  margin-bottom: 1.8rem;
}
.price--lg { font-size: 2.6rem; line-height: 1; }
.product__postage { font-size: 0.85rem; color: var(--muted); }

.product__desc {
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.product__specs {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.5rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  margin-bottom: 2rem;
}
.product__specs li { display: flex; flex-direction: column; gap: 0.25rem; }
.product__specs strong {
  font-family: var(--sans); font-weight: 600;
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--muted);
}
.product__specs span { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }

.product__cta { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.product__note {
  font-family: var(--serif); font-style: italic;
  color: var(--muted); font-size: 0.95rem; max-width: 48ch;
}

.muted-lede { color: var(--ink-soft); margin: 1rem auto 2rem; max-width: 40ch; }

/* ========== Related ========== */
.related {
  background: var(--paper);
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
  margin-top: clamp(3rem, 6vh, 5rem);
}
.related .shop__header { max-width: var(--container); margin: 0 auto 3rem; }
.related .shop__grid {
  max-width: var(--container);
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}
.related .shop__footer { margin-top: 3rem; }

/* ========== Responsive (subpages) ========== */
@media (max-width: 1100px) {
  .shop__grid--four { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  .shop__grid--four { grid-template-columns: repeat(2, 1fr); }
  .product__grid { grid-template-columns: 1fr; }
  .product__media { position: static; }
  .carousel { aspect-ratio: 1 / 1; }
  .related .shop__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .shop__grid--four { grid-template-columns: 1fr; }
  .product__specs { grid-template-columns: 1fr; }
}

/* Product · More info */
.product__more {
  margin-top: 4rem;
  padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
}
.product__more-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin: 0 0 1.25rem;
  color: var(--ink);
}
.product__more-body {
  font-family: var(--sans);
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
  text-align: justify;
}
.product__more-body p { margin: 0 0 1rem; }
.product__more-body h3 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  margin: 1.5rem 0 .5rem;
}
.product__more-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.product__more-body a:hover { color: var(--terracotta); }

/* ========== Project-specific utilities ========== */
.container-main { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.tab-pill { padding: 0.5rem 1.25rem; border-radius: 999px; font-size: 0.875rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.16em; background: var(--cream-2); transition: all .3s var(--ease); cursor: pointer; border: none; color: var(--ink); display: inline-flex; align-items: center; }
.tab-pill:hover { background: var(--cream); }
.tab-pill.active { background: var(--ink); color: var(--paper); }

/* ========== Blog listing ========== */
.blog-listing-header { margin-bottom: 2rem; }
.blog-title-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 0.5rem; flex-wrap: wrap;
}
.blog-listing-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem); font-weight: 500;
  color: var(--ink); line-height: 1.05;
}
.blog-listing-header h1 em { font-style: italic; color: var(--terracotta); }
.blog-listing-subtitle {
  font-family: var(--sans); font-size: 0.9375rem;
  color: var(--muted); max-width: 36ch; margin-top: 0.5rem;
}

.blog-search {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.625rem 1.125rem;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--paper); min-width: 260px;
  transition: border-color .2s, box-shadow .2s;
}
.blog-search:focus-within {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(184, 92, 58, 0.12);
}
.blog-search svg { width: 1.125rem; height: 1.125rem; color: var(--muted); flex-shrink: 0; }
.blog-search input {
  border: none; outline: none; background: transparent;
  font-family: var(--sans); font-size: 0.875rem; color: var(--ink); width: 100%;
}
.blog-search input::placeholder { color: var(--muted); }

.blog-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2.5rem; }
.blog-filter-pill {
  padding: 0.5rem 1.125rem; border-radius: 999px;
  border: 1px solid var(--line); background: transparent;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none;
  transition: all .18s var(--ease);
}
.blog-filter-pill:hover { border-color: var(--terracotta); color: var(--terracotta); }
.blog-filter-pill.active { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.blog-article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  height: 100%;
}
.blog-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -16px rgba(42, 34, 27, 0.12);
  border-color: var(--terracotta);
}
.blog-article-card .card-img-wrap {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--cream-2);
}
.blog-article-card .card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .5s var(--ease);
}
.blog-article-card:hover .card-img-wrap img { transform: scale(1.05); }
.blog-article-card .card-body {
  padding: 1.25rem 1.25rem 1.5rem;
  flex: 1; display: flex; flex-direction: column;
}
.blog-article-card .card-cat {
  display: inline-block; align-self: flex-start;
  font-family: var(--sans); font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--terracotta);
  margin-bottom: 0.625rem;
  padding: 3px 10px; border-radius: 999px;
  background: rgba(184, 92, 58, 0.08);
}
.blog-article-card h3 {
  font-family: var(--serif); font-size: 1.125rem; font-weight: 600;
  line-height: 1.25; color: var(--ink); margin-bottom: 0.5rem;
}
.blog-article-card .card-excerpt {
  font-family: var(--sans); font-size: 0.8125rem; color: var(--muted);
  line-height: 1.55; flex: 1;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-article-card .card-meta {
  display: flex; align-items: center; gap: 0.5rem;
  margin-top: 0.875rem;
  font-family: var(--sans); font-size: 0.6875rem;
  color: var(--muted); letter-spacing: 0.02em;
}
.blog-article-card .card-meta .dot { color: var(--terracotta); font-weight: 700; }

.blog-empty {
  text-align: center; padding: 4rem 1.5rem; color: var(--muted);
}
.blog-empty h3 {
  font-family: var(--serif); font-size: 1.25rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.5rem;
}

/* ========== Blog card (legacy — keep for related/other uses) ========== */
.blog-card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border-radius: 6px;
  overflow: hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  border: 1px solid var(--line);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -30px rgba(42,34,27,.25); }
.blog-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
}
.blog-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.blog-card:hover .blog-card__media img { transform: scale(1.06); }
.blog-card__body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card__body h3 { margin-bottom: 0.4rem; font-size: 1.25rem; }
.blog-card__body p { color: var(--muted); font-size: 0.9rem; }
.blog-card__meta { font-size: 0.72rem; color: var(--muted); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.6rem; }
.blog-card__link {
  margin-top: auto; padding-top: 1rem;
  font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; color: var(--terracotta);
}
.blog-card:hover .blog-card__link { text-decoration: underline; }

/* Inline blog card (horizontal) */
.blog-card--inline {
  flex-direction: row; align-items: center; gap: 1rem; padding: 1rem;
}
.blog-card--inline .blog-card__media {
  width: 80px; height: 80px; flex-shrink: 0;
  aspect-ratio: auto;
}
.blog-card--inline .blog-card__body { padding: 0; }
.blog-card--inline .blog-card__link { display: none; }

/* =============================================================
   ARTICLE DETAIL
   ============================================================= */

.article-back,
.article-detail,
.article-bar,
.article-body,
.article-conclusion,
.article-tags-row,
.article-top-meta {
  margin-left: auto;
  margin-right: auto;
}

.article-back {
  display: inline-flex; align-items: center; gap: 0.375rem;
  font-family: var(--sans); font-size: 0.8125rem; font-weight: 500;
  color: var(--ink-soft); text-decoration: none;
  margin: 2.5rem 0 0;
  transition: color .2s;
}
.article-back:hover { color: var(--terracotta); }
.article-back svg { width: 1rem; height: 1rem; }

/* hero image */
.article-hero-img {
  border-radius: 1.5rem;
  overflow: hidden;
  margin: 2rem 0;
  aspect-ratio: 16/9;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* header meta row */
.article-top-meta {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem; flex-wrap: wrap;
}
.article-top-meta .art-badge {
  display: inline-flex; align-items: center;
  padding: 0.25rem 0.625rem; border-radius: 0.25rem;
  font-family: var(--sans); font-size: 0.625rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
}
.art-badge-cat { background: var(--terracotta); }
.art-badge-time { background: var(--ink); }
.article-top-meta .art-date {
  font-family: var(--sans); font-size: 0.75rem;
  color: var(--muted); letter-spacing: 0.02em;
}

.article-detail {
  margin: 1rem 0;
}
.article-detail h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  line-height: 1.1; color: var(--ink); margin-bottom: 0.75rem;
}
.article-detail .art-subtitle {
  font-family: var(--sans); font-size: 1rem;
  color: var(--muted); line-height: 1.6;
  margin-bottom: 1.75rem; 
  max-width: 56ch;
}

/* author + share bar */
.article-bar {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 1.25rem; 
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem; 
  flex-wrap: wrap;
}
.article-author { display: flex; align-items: center; gap: 0.75rem; }
.article-author img {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--terracotta);
}
.article-author .auth-name {
  font-family: var(--sans); font-size: 0.875rem; font-weight: 600;
  color: var(--ink);
}
.article-author .auth-label {
  font-family: var(--sans); font-size: 0.75rem;
  color: var(--muted); margin-top: 1px;
}

.article-share { display: flex; gap: 0.5rem; }
.article-share button,
.article-share a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; min-width: 2.25rem; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--ink-soft); cursor: pointer; text-decoration: none;
  transition: all .18s ease; padding: 0;
}
.article-share button:hover,
.article-share a:hover { border-color: var(--terracotta); color: var(--terracotta); }
.article-share button svg,
.article-share a svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

/* ── Article body (rendered HTML) ── */
.article-body {
  font-family: var(--sans); line-height: 1.78; color: var(--ink-soft);
}
.article-body h2 {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600;
  color: var(--ink); line-height: 1.2;
}
.article-body h3 {
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  color: var(--ink);
}
.article-body p { font-size: 0.9375rem; }
.article-body ul,
.article-body ol { margin: 0.75rem 0 1.25rem 1.5rem; font-size: 0.9375rem; }
.article-body li { margin-bottom: 0.375rem; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body blockquote {
  margin: 1.5rem 0; padding: 1rem 1.5rem;
  border-left: 3px solid var(--terracotta);
  background: var(--cream);
  border-radius: 0 0.75rem 0.75rem 0; font-style: italic;
}
.article-body img { border-radius: 1rem; margin: 1.5rem 0; max-width: 100%; height: auto; }
.article-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.875rem; }
.article-body th,
.article-body td { padding: 0.625rem 0.875rem; border: 1px solid var(--line); text-align: left; }
.article-body th { background: var(--cream); font-weight: 600; color: var(--ink); }
.article-body a { color: var(--terracotta); text-decoration: underline; text-underline-offset: 2px; }
.article-body a:hover { color: var(--terracotta-deep); }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

/* conclusion callout */
.article-conclusion {
  margin-top: 2rem; padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--terracotta);
  background: var(--cream);
  border-radius: 0 0.75rem 0.75rem 0;
}
.article-conclusion * {
  font-family: var(--sans); font-size: 0.9375rem;
  color: var(--ink-soft); line-height: 1.75; font-style: italic;
}

/* tags */
.article-tags-row {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.article-tag {
  display: inline-flex; padding: 0.25rem 0.75rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  font-family: var(--sans); font-size: 0.6875rem; font-weight: 500;
  color: var(--ink-soft); letter-spacing: 0.02em;
  transition: all .18s ease;
}
.article-tag:hover { border-color: var(--terracotta); color: var(--terracotta); }

/* related */
.related-articles {
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}
.related-articles h2 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600;
  color: var(--ink); margin-bottom: 1.75rem;
}

/* ── Mobile share ── */
.mobile-share-bar {
  display: none; margin: 1.25rem 0; padding: 1.25rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mobile-share-bar .share-label {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 500;
  color: var(--muted); margin-bottom: 0.75rem;
}
.mobile-share-bar .share-row { display: flex; gap: 0.625rem; flex-wrap: wrap; }
.share-btn-wide {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper);
  color: var(--ink); font-family: var(--sans);
  font-size: 0.8125rem; font-weight: 500;
  cursor: pointer; text-decoration: none; transition: all .18s ease;
}
.share-btn-wide:hover { border-color: var(--terracotta); color: var(--terracotta); }
.share-btn-wide svg { width: 0.875rem; height: 0.875rem; flex-shrink: 0; }

/* =============================================================
   BLOG RESPONSIVE
   ============================================================= */

@media (max-width: 900px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-listing-header .blog-title-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .blog-search { min-width: 0; width: 100%; }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-listing-header h1 { font-size: 1.75rem; }
  .article-detail h1 { font-size: 1.5rem; }
  .article-bar { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .article-conclusion { padding: 1.25rem 1rem; }
  .mobile-share-bar { display: block; }
  .article-share { display: none; }
}
@media (max-width: 400px) {
  .blog-article-card .card-body { padding: 1rem 1rem 1.25rem; }
}
