@import url("publish-pages.css");
@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,600;12..96,700&family=Source+Sans+3:wght@400;500;600;700&display=swap");

:root {
  --ink: #26332e;
  --ink-soft: #5b6962;
  --sage: #6f826a;
  --sage-dark: #4d6354;
  --sage-light: #dce5d7;
  --coral: #c9785d;
  --coral-dark: #9d503f;
  --honey: #d6a94b;
  --cream: #f7f1e8;
  --paper: #fffdf8;
  --line: rgba(38, 51, 46, 0.14);
  --shadow-soft: 0 24px 70px rgba(61, 66, 50, 0.14);
  --shadow-card: 0 12px 34px rgba(61, 66, 50, 0.1);
  --wrap: min(1180px, calc(100% - 2.5rem));
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Source Sans 3", "Trebuchet MS", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(214, 169, 75, 0.14), transparent 24rem),
    radial-gradient(circle at 4% 16%, rgba(111, 130, 106, 0.12), transparent 28rem),
    var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: url("data:image/svg+xml,%3Csvg width='180' height='180' viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  z-index: -1;
}
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.wrap { width: var(--wrap); margin-inline: auto; }
.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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(38, 51, 46, 0.1);
  background: rgba(247, 241, 232, 0.86);
  backdrop-filter: blur(18px);
}
.header-inner {
  width: min(100% - 1rem, 1600px);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.32rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px 12px 12px 4px;
  color: var(--paper);
  background: var(--sage);
  box-shadow: inset -5px -5px 0 rgba(38, 51, 46, 0.12);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  transform: rotate(-8deg);
}
.brand small {
  display: block;
  margin-top: -0.2rem;
  color: var(--ink-soft);
  font: 500 0.62rem/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(.22rem, .35vw, .42rem);
}
.site-nav a {
  white-space: nowrap;
  color: var(--ink-soft);
  font-size: clamp(.92rem, 1.02vw, 1rem);
  font-weight: 500;
  letter-spacing: -.02em;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  transform: translateY(-1px);
}
.site-nav .nav-cta {
  padding: 0.6rem 0.86rem;
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.98rem;
  letter-spacing: -.02em;
}
.site-nav .nav-cta:hover { color: var(--paper); }
.mobile-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.55rem 0.7rem;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 0.75rem;
  color: var(--coral-dark);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.display,
h1, h2, h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.05;
  letter-spacing: -0.055em;
}
h1 { font-size: clamp(2.55rem, 6vw, 5.7rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.75rem); }
p { margin-top: 0; }
.lede {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}
.muted { color: var(--ink-soft); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.76rem 1.1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(38, 51, 46, 0.13);
}
.btn-primary { color: var(--paper); background: var(--ink); }
.btn-accent { color: var(--paper); background: var(--coral-dark); }
.btn-sage { color: var(--ink); background: var(--sage-light); }
.btn-ghost { border-color: var(--line); background: rgba(255, 253, 248, 0.55); }
.btn-row, .cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.hero-home {
  width: var(--wrap);
  min-height: 700px;
  margin-inline: auto;
  padding: clamp(3.5rem, 8vw, 7rem) 0 4rem;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(350px, 1.06fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7.5rem);
}
.hero-home .hero-copy { position: relative; z-index: 2; }
.hero-home h1 { max-width: 8.2ch; margin-bottom: 1.35rem; }
.hero-home h1 em {
  color: var(--coral-dark);
  font-style: normal;
  text-decoration: underline;
  text-decoration-color: rgba(214, 169, 75, 0.6);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.09em;
}
.hero-home .lede { margin-bottom: 1.7rem; }
.hero-note {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.hero-note .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--honey);
  box-shadow: 0 0 0 5px rgba(214, 169, 75, 0.16);
}
.hero-art {
  position: relative;
  min-height: 560px;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 7% 5% 2% 10%;
  border: 1px solid rgba(111, 130, 106, 0.45);
  border-radius: 48% 52% 44% 56% / 55% 44% 56% 45%;
  transform: rotate(7deg);
}
.hero-art::after {
  content: "";
  position: absolute;
  right: 2%;
  top: 11%;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(214, 169, 75, 0.75);
  box-shadow: 0 0 0 16px rgba(214, 169, 75, 0.11);
}
.hero-image-frame {
  position: absolute;
  inset: 6% 4% 5% 13%;
  overflow: hidden;
  border: 12px solid var(--paper);
  border-radius: 45% 55% 48% 52% / 52% 45% 55% 48%;
  background: var(--sage-light);
  box-shadow: var(--shadow-soft);
  transform: rotate(-3deg);
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-sticker {
  position: absolute;
  left: 1%;
  bottom: 10%;
  z-index: 2;
  max-width: 150px;
  padding: 0.9rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 50% 45% 52% 48%;
  color: var(--ink);
  background: var(--honey);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.05;
  transform: rotate(-8deg);
}
.hero-sticker span { display: block; margin-top: 0.35rem; font: 600 0.72rem/1.2 var(--font-body); }

.trust-band {
  padding: 1.4rem 0;
  color: var(--paper);
  background: var(--sage-dark);
}
.trust-band-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.trust-card {
  padding: 0.75rem 1rem;
  border-left: 1px solid rgba(255, 253, 248, 0.25);
}
.trust-card strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--honey);
  font: 700 clamp(1.35rem, 2.5vw, 2rem)/1 var(--font-display);
}
.trust-card span { color: rgba(255, 253, 248, 0.76); font-size: 0.9rem; }

.section { padding: clamp(4.6rem, 9vw, 8.5rem) 0; }
.section-tight { padding: 3rem 0; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.3rem;
}
.section-head h2 { max-width: 12ch; margin-bottom: 0; }
.section-head p { max-width: 34rem; margin-bottom: 0.25rem; color: var(--ink-soft); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.category-card {
  position: relative;
  overflow: hidden;
  min-height: 410px;
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease;
}
.category-card:hover { transform: translateY(-6px) rotate(-0.4deg); box-shadow: var(--shadow-soft); }
.category-media { height: 255px; overflow: hidden; background: var(--sage-light); }
.category-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 450ms ease; }
.category-card:hover .category-media img { transform: scale(1.05); }
.category-body { padding: 1.2rem 1.25rem 1.35rem; }
.category-body h3 { margin-bottom: 0.45rem; }
.category-body p { min-height: 3.2em; margin-bottom: 0.9rem; color: var(--ink-soft); font-size: 0.95rem; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--coral-dark);
  font-weight: 700;
  text-decoration: none;
}
.text-link::after { content: "↗"; transition: transform 180ms ease; }
.text-link:hover::after { transform: translate(2px, -2px); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
}
.split-media {
  position: relative;
  min-height: 530px;
  padding: 8% 9%;
}
.split-media::before {
  content: "";
  position: absolute;
  inset: 0 9% 6% 0;
  border-radius: 55% 45% 42% 58% / 47% 59% 41% 53%;
  background: var(--sage-light);
}
.split-media img {
  position: relative;
  width: 85%;
  height: 450px;
  object-fit: cover;
  border: 10px solid var(--paper);
  border-radius: 42% 58% 52% 48% / 54% 44% 56% 46%;
  box-shadow: var(--shadow-soft);
  transform: rotate(3deg);
}
.split-copy h2 { max-width: 11ch; }
.split-copy .lede { margin-bottom: 1.7rem; }
.check-list {
  display: grid;
  gap: 0.8rem;
  margin: 1.7rem 0 2rem;
  padding: 0;
  list-style: none;
}
.check-list li { display: flex; gap: 0.7rem; color: var(--ink-soft); }
.check-list li::before {
  content: "✓";
  flex: 0 0 auto;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--sage);
  font-weight: 700;
  line-height: 1;
}

.process-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.process-step {
  min-height: 210px;
  padding: 2rem 2rem 2rem 0;
  border-right: 1px solid var(--line);
}
.process-step + .process-step { padding-left: 2rem; }
.process-step:last-child { border-right: 0; }
.step-number {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--coral-dark);
  font: 700 2.2rem/1 var(--font-display);
}
.process-step h3 { margin-bottom: 0.5rem; }
.process-step p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.95rem; }

.content-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 3.2rem;
  border-bottom: 1px solid var(--line);
}
.content-hero .lede { margin-bottom: 0; }
.content-hero h1 { max-width: 12ch; margin-bottom: 1rem; }
.content-hero .eyebrow { margin-bottom: 1rem; }
.content-hero.compact h1 { max-width: 15ch; font-size: clamp(2.7rem, 6vw, 5rem); }

.plp-shell { padding: 4rem 0 7rem; }
.plp-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2.2rem;
}
.plp-intro h1 { max-width: 11ch; margin-bottom: 0.9rem; }
.plp-intro p { max-width: 42rem; margin-bottom: 0; color: var(--ink-soft); }
.plp-image {
  margin: 0;
  padding: 0.7rem;
  border-radius: 28px 28px 28px 8px;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  transform: rotate(2deg);
}
.plp-image img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  border-radius: 20px 20px 20px 5px;
}
.plp-image figcaption {
  padding: 0.65rem 0.35rem 0.1rem;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}
.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.6);
}
.catalog-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.filter-chip {
  padding: 0.45rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  font-size: 0.85rem;
}
.filter-chip.active { border-color: var(--sage); color: var(--ink); background: var(--sage-light); }
.catalog-status { margin: 0; color: var(--ink-soft); font-size: 0.88rem; }
.empty-catalog {
  display: grid;
  place-items: center;
  min-height: 280px;
  margin-bottom: 4.5rem;
  padding: 3rem;
  border: 1px dashed rgba(111, 130, 106, 0.55);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(220, 229, 215, 0.48), rgba(255, 253, 248, 0.5)),
    var(--paper);
}
.empty-catalog .empty-icon {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 1.1rem;
  border-radius: 20px 20px 20px 7px;
  color: var(--paper);
  background: var(--coral-dark);
  font: 700 1.5rem/1 var(--font-display);
  transform: rotate(-8deg);
}
.empty-catalog h2 { margin-bottom: 0.6rem; font-size: 2rem; }
.empty-catalog p { max-width: 33rem; margin: 0 auto 1.3rem; color: var(--ink-soft); }
.empty-catalog .btn-row { justify-content: center; }
.depth-grid, .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.depth-card, .feature-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 248, 0.7);
}
.depth-card h3, .feature-card h3 { margin-bottom: 0.55rem; font-size: 1.32rem; }
.depth-card p, .feature-card p { margin-bottom: 0.8rem; color: var(--ink-soft); font-size: 0.95rem; }
.depth-card a { color: var(--coral-dark); font-weight: 700; }
.faq-section { margin-top: 4.5rem; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--coral-dark); font: 700 1.5rem/1 var(--font-display); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 52rem; padding: 0 2.5rem 1.1rem 0; color: var(--ink-soft); }

.prose {
  max-width: 780px;
  padding: 3rem 0 6rem;
}
.prose h2 { margin-top: 2.7rem; margin-bottom: 0.8rem; font-size: 2.2rem; }
.prose h3 { margin-top: 2rem; margin-bottom: 0.6rem; font-size: 1.4rem; }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.2rem; }
.prose strong { color: var(--ink); }
.note-box {
  margin: 1.8rem 0;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--honey);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(214, 169, 75, 0.12);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.blog-card img { width: 100%; aspect-ratio: 1.45; object-fit: cover; }
.blog-card-body { padding: 1.15rem 1.2rem 1.35rem; }
.blog-card h2 { margin-bottom: 0.55rem; font-size: 1.55rem; letter-spacing: -0.04em; }
.blog-card p { color: var(--ink-soft); font-size: 0.94rem; }
.blog-meta { margin-bottom: 0.55rem; color: var(--coral-dark); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.texture-strip-section { padding: clamp(3.5rem, 8vw, 7rem) 0; background: var(--sage-light); overflow: hidden; }
.texture-strip-section .section-head { margin-bottom: 1.8rem; }
.texture-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.texture-tile { margin: 0; overflow: hidden; border: 1px solid rgba(38, 51, 46, 0.1); border-radius: 1.2rem; background: var(--paper); box-shadow: var(--shadow-soft); }
.texture-tile img { display: block; width: 100%; aspect-ratio: 1 / .72; object-fit: cover; }
.texture-tile figcaption { padding: .75rem .9rem; color: var(--muted); font-size: .82rem; letter-spacing: .04em; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(340px, 1.2fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  padding: 3rem 0 7rem;
}
.contact-copy h1 { max-width: 9ch; }
.contact-points { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-point {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.contact-point .point-icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px 14px 14px 5px;
  color: var(--paper);
  background: var(--sage);
  font-weight: 700;
}
.contact-point strong { display: block; margin-bottom: 0.1rem; }
.contact-point span, .contact-point a { color: var(--ink-soft); text-decoration: none; }
.form-card {
  padding: clamp(1.2rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: var(--shadow-soft);
}
.form-card h2 { margin-bottom: 0.5rem; font-size: 2.2rem; }
.form-card .form-note { margin-bottom: 1.4rem; color: var(--ink-soft); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.field { display: grid; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--ink-soft); font-size: 0.88rem; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid rgba(38, 51, 46, 0.2);
  border-radius: 12px;
  padding: 0.75rem 0.8rem;
  color: var(--ink);
  background: #fffefb;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 4px rgba(111, 130, 106, 0.16);
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 4px;
}
.field textarea { min-height: 150px; resize: vertical; }
.form-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.form-status { min-height: 1.4em; color: var(--sage-dark); font-size: 0.9rem; }

.footer {
  padding: 3.5rem 0 2rem;
  color: rgba(255, 253, 248, 0.8);
  background: var(--ink);
}
.footer-inner {
  width: var(--wrap);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer .brand { color: var(--paper); }
.footer .brand small { color: rgba(255, 253, 248, 0.54); }
.footer h3 { margin-bottom: 0.85rem; color: var(--honey); font-size: 1rem; letter-spacing: 0; }
.footer p { max-width: 20rem; color: rgba(255, 253, 248, 0.62); font-size: 0.92rem; }
.footer-links { display: grid; align-content: start; gap: 0.42rem; }
.footer-links a { color: rgba(255, 253, 248, 0.72); font-size: 0.92rem; text-decoration: none; }
.footer-links a:hover { color: var(--paper); }
.footer-bottom {
  width: var(--wrap);
  margin: 2.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 253, 248, 0.16);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: rgba(255, 253, 248, 0.5);
  font-size: 0.83rem;
}

.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.2rem;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  color: #fff;
  background: #219b58;
  box-shadow: 0 12px 28px rgba(38, 51, 46, 0.2);
  font-weight: 700;
  text-decoration: none;
}
.wa-float::before { content: "↗"; font-size: 1rem; }
.quote-drawer {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  width: min(360px, calc(100% - 2rem));
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transform: translateY(130%);
  transition: transform 240ms ease;
}
.quote-drawer.open { transform: translateY(0); }
.quote-drawer h2 { margin-bottom: 0.45rem; font-size: 1.55rem; }
.quote-drawer p { margin-bottom: 0.9rem; color: var(--ink-soft); font-size: 0.9rem; }

.reveal { animation: reveal-up 700ms both; animation-delay: var(--delay, 0ms); }
@keyframes reveal-up { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: 1ms !important; transition-duration: 1ms !important; }
}

@media (max-width: 900px) {
  :root { --wrap: min(100% - 2rem, 720px); }
  .header-inner { width: var(--wrap); }
  .site-nav { flex: 0 0 auto; gap: 0.7rem; }
  .site-nav a:not(.nav-cta) { display: none; }
  .mobile-toggle { display: inline-flex; }
  .site-nav.open {
    position: absolute;
    top: 70px;
    left: 1rem;
    right: 1rem;
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--paper);
    box-shadow: var(--shadow-card);
  }
  .site-nav.open a:not(.nav-cta) { display: block; padding: 0.7rem; }
  .site-nav.open .nav-cta { text-align: center; }
  .hero-home, .split-section, .contact-layout { grid-template-columns: 1fr; }
  .hero-home { min-height: unset; padding-top: 4rem; gap: 1rem; }
  .hero-home h1 { max-width: 10ch; }
  .hero-art { min-height: 500px; }
  .split-section { gap: 1rem; }
  .split-media { min-height: 430px; }
  .split-media img { height: 360px; }
  .card-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .texture-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .depth-grid, .feature-grid { grid-template-columns: 1fr 1fr; }
  .trust-band-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .plp-intro { grid-template-columns: 1fr; gap: 1rem; }
}
@media (min-width: 1240px) {
  .site-nav {
    justify-content: space-between;
    gap: clamp(.28rem, .38vw, .42rem);
  }
  .site-nav > a { flex: 0 0 auto; }
  .site-nav a {
    font-size: clamp(.95rem, 1.19vw, 1.02rem);
    letter-spacing: -.045em;
  }
  .site-nav .nav-cta {
    font-size: .99rem;
    letter-spacing: -.02em;
  }
}
@media (max-width: 580px) {
  body { font-size: 16px; }
  :root { --wrap: calc(100% - 1.35rem); --radius-lg: 24px; }
  .header-inner { min-height: 68px; }
  .hero-home { padding-top: 3.2rem; }
  .hero-art { min-height: 380px; }
  .hero-image-frame { inset: 7% 2% 5% 7%; border-width: 8px; }
  .hero-art::before { inset: 8% 1% 4% 4%; }
  .hero-art::after { width: 58px; height: 58px; right: 0; top: 8%; }
  .hero-sticker { left: 0; bottom: 2%; max-width: 130px; padding: 0.7rem; font-size: 0.9rem; }
  .section { padding: 4.5rem 0; }
  .section-head { display: block; }
  .section-head p { margin-top: 0.9rem; }
  .card-grid, .blog-grid, .depth-grid, .feature-grid, .process-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 0; }
  .category-media { height: 220px; }
  .process-step, .process-step + .process-step { min-height: 0; padding: 1.6rem 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .process-step:last-child { border-bottom: 0; }
  .trust-band-inner { grid-template-columns: 1fr 1fr; }
  .trust-card { padding: 0.8rem 0.65rem; }
  .catalog-toolbar { border-radius: 18px; align-items: flex-start; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: 0.35rem; }
  .wa-float { right: 0.7rem; bottom: 0.7rem; }
}
