/* ============================================================
   CHOONIE — styles.css
   ============================================================
   Table of Contents
   1.  Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities & Scroll Reveal
   5.  Image Placeholders
   6.  Buttons
   7.  Navigation
   8.  Hero
   9.  Shop / Products
   10. About / Founder
   11. Founder's Den
   12. Process
   13. Testimonials
   14. How to Order
   15. Contact / Newsletter
   16. Footer
   17. Cart Drawer
   18. Order Summary Modal
   19. Animations & Keyframes
   20. Responsive — Tablet (≤1024px)
   21. Responsive — Mobile (≤768px)
   22. Responsive — Small Mobile (≤480px)
============================================================ */

/* ============================================================
   1. CUSTOM PROPERTIES
============================================================ */

:root {
  /* Brand Colors */
  --color-bg:        #FBF6EE;
  --color-primary:   #4A7C59;
  --color-secondary: #6EC6D8;
  --color-accent:    #F5C842;
  --color-clay:      #8B5E3C;
  --color-lavender:  #B8A0D8;
  --color-text:      #1A1A1A;

  /* Derived / Tints */
  --color-bg-warm:        #F5ECD9;
  --color-primary-light:  #E8F5EE;
  --color-secondary-light:#E4F5F9;
  --color-accent-light:   #FEF8E0;
  --color-lavender-light: #F0EBF8;

  /* Typography */
  --font-serif:      'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-display:    'DM Serif Display', 'Playfair Display', serif;
  --font-sans:       'DM Sans', system-ui, -apple-system, sans-serif;
  --font-handwritten:'Caveat', cursive;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  /* Spacing */
  --sp-1: .25rem;   --sp-2: .5rem;    --sp-3: .75rem;
  --sp-4: 1rem;     --sp-5: 1.25rem;  --sp-6: 1.5rem;
  --sp-8: 2rem;     --sp-10: 2.5rem;  --sp-12: 3rem;
  --sp-16: 4rem;    --sp-20: 5rem;    --sp-24: 6rem;

  /* Border Radius */
  --r-sm:   .25rem;  --r:    .5rem;   --r-md:  .75rem;
  --r-lg:   1rem;    --r-xl: 1.5rem;  --r-2xl: 2rem;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(26,26,26,.08), 0 1px 2px rgba(26,26,26,.06);
  --shadow:    0 4px 8px rgba(26,26,26,.07), 0 2px 4px rgba(26,26,26,.05);
  --shadow-md: 0 8px 18px rgba(26,26,26,.08), 0 3px 8px rgba(26,26,26,.05);
  --shadow-lg: 0 20px 40px rgba(26,26,26,.10), 0 8px 16px rgba(26,26,26,.06);
  --shadow-xl: 0 32px 64px rgba(26,26,26,.14);

  /* Transitions */
  --t-fast:   150ms ease;
  --t:        250ms ease;
  --t-slow:   400ms ease;
  --t-spring: 350ms cubic-bezier(.34,1.56,.64,1);

  /* Layout */
  --container:  1200px;
  --nav-height: 72px;
}

/* ============================================================
   2. RESET & BASE
============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-sans);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  overflow-x: hidden;
}

body.loading * { animation-play-state: paused !important; }
body.loading .loader,
body.loading .loader * { animation-play-state: running !important; }

/* ============================================================
   LOADER
============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__track {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5rem);
  color: var(--color-text);
  animation: loaderSlide 2s ease-in-out forwards;
}

.loader__ch, .loader__nie {
  opacity: 0;
  animation: loaderLetters 0.4s ease forwards;
  animation-delay: 0.8s;
}

.loader__oo {
  display: inline-flex;
  gap: 2px;
  align-items: center;
}

.loader__smiley {
  width: clamp(2.2rem, 7vw, 4.5rem);
  height: clamp(2.2rem, 7vw, 4.5rem);
  animation: loaderSpin 0.8s ease-in-out 2;
}

@keyframes loaderSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

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

@keyframes loaderSlide {
  0%   { transform: translateX(-30vw); }
  40%  { transform: translateX(-30vw); }
  100% { transform: translateX(0); }
}

img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

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

*:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ============================================================
   3. TYPOGRAPHY
============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.14;
  letter-spacing: -.02em;
}

.caveat-text {
  font-family: var(--font-handwritten);
  font-size: var(--text-2xl);
  line-height: 1.3;
}

/* ============================================================
   4. LAYOUT UTILITIES & SCROLL REVEAL
============================================================ */

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

.section {
  padding-block: var(--sp-24);
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

.section__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

.section__title {
  font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
  margin-bottom: var(--sp-4);
}

.section__title em { color: var(--color-primary); font-style: italic; }

.section__desc {
  font-size: var(--text-lg);
  color: #555;
  line-height: 1.72;
  max-width: 540px;
  margin-inline: auto;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.is-visible    { opacity: 1; transform: translateY(0); }
.reveal--delay-1      { transition-delay: .12s; }
.reveal--delay-2      { transition-delay: .24s; }
.reveal--delay-3      { transition-delay: .36s; }

/* ============================================================
   5. IMAGE PLACEHOLDERS
============================================================ */

.img-placeholder {
  background: var(--color-bg-warm);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 65%, rgba(255,255,255,.25));
  pointer-events: none;
}

.img-placeholder--portrait  { aspect-ratio: 3/4; width: 100%; }
.img-placeholder--square    { aspect-ratio: 1;   width: 100%; }
.img-placeholder--gallery   { width: 100%; height: 100%; }

.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-6);
  text-align: center;
  color: var(--color-clay);
  opacity: .6;
  font-size: var(--text-sm);
  font-weight: 500;
  line-height: 1.4;
  z-index: 1;
}

/* ============================================================
   6. BUTTONS
============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 600;
  letter-spacing: .01em;
  transition:
    transform var(--t-spring),
    box-shadow var(--t),
    background-color var(--t),
    color var(--t),
    border-color var(--t);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(255,255,255,.15);
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(74,124,89,.3);
}
.btn--primary:hover {
  background: #3a6347;
  box-shadow: 0 8px 22px rgba(74,124,89,.42);
}

.btn--secondary {
  background: transparent;
  color: var(--color-text);
  border-color: rgba(26,26,26,.3);
}
.btn--secondary:hover { background: var(--color-text); color: var(--color-bg); border-color: var(--color-text); }

.btn--outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn--outline:hover { background: var(--color-primary); color: #fff; }

.btn--lg   { padding: var(--sp-4) var(--sp-10); font-size: var(--text-lg); }
.btn--sm   { padding: var(--sp-2) var(--sp-4);  font-size: var(--text-sm); }
.btn--full { width: 100%; }

/* ============================================================
   7. NAVIGATION
============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background-color: #FBF6EE;
  border-bottom: 1px solid rgba(26,26,26,0.06);
  transition: box-shadow var(--t);
}

.nav.is-scrolled {
  box-shadow: 0 1px 8px rgba(26,26,26,.08);
}

.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-6);
  height: 100%;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

/* Logo shared styles */
.nav__logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-weight: 900;
  letter-spacing: -.03em;
  text-decoration: none;
  line-height: 1;
  color: var(--color-primary);
}

.nav__logo {
  font-size: var(--text-2xl);
  flex-shrink: 0;
}

.nav__logo .logo-ch,
.nav__logo .logo-nie {
  color: #1A1A1A;
}

.nav__logo .smiley-o circle:first-child {
  fill: #F5C842;
}

.logo-ch, .logo-nie {
  display: inline-block;
  vertical-align: middle;
}

.logo-oo-wrap {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  gap: 1px;
}

.smiley-o {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-primary);
  flex-shrink: 0;
}

.nav .smiley-o { width: 24px; height: 24px; }

/* Nav menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-left: auto;
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r);
  transition: color var(--t), background var(--t);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active { color: var(--color-primary); background: var(--color-primary-light); }

/* Cart button */
.nav__cart {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: var(--r-full);
  color: var(--color-text);
  transition: background var(--t), color var(--t);
  flex-shrink: 0;
}
.nav__cart:hover { background: var(--color-primary-light); color: var(--color-primary); }

.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  background: var(--color-primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform var(--t-spring), opacity var(--t);
}
.cart-count[data-count="0"] { transform: scale(0); opacity: 0; }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-text);
  border-radius: var(--r-full);
  transition: transform var(--t), opacity var(--t);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   8. HERO
============================================================ */

.hero {
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

/* Decorative floating elements */
.hero__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decor { position: absolute; }

.decor--1  { top: 10%; left: 5%;   animation: float 6.2s ease-in-out infinite; }
.decor--2  { top: 18%; right: 7%;  animation: float 5.1s ease-in-out infinite 1.2s; }
.decor--3  { bottom: 22%; left: 2%; animation: wobble 8.5s ease-in-out infinite; }
.decor--4  { top: 54%; right: 4%;  animation: float 7.3s ease-in-out infinite .6s; }
.decor--5  { bottom: 14%; right: 14%; animation: spin-slow 22s linear infinite; }
.decor--6  { top: 7%; right: 22%;  animation: spin-slow 34s linear infinite reverse; opacity: .45; }
.decor--7  { bottom: 28%; right: 3%; animation: wobble 10s ease-in-out infinite 2.2s; }
.decor--8  { top: 62%; left: 3%;   animation: float 9s ease-in-out infinite 1.7s; }
.decor--9  { top: 30%; left: 20%;  animation: float 7s ease-in-out infinite .3s; opacity: .5; }
.decor--10 { bottom: 18%; left: 18%; animation: wobble 6.5s ease-in-out infinite 1s; }

/* Shop page hero decorations — reuse existing keyframes with staggered timing */
.shop-hero__decor .decor:nth-of-type(1) { animation: float 6.2s ease-in-out infinite; }
.shop-hero__decor .decor:nth-of-type(2) { animation: wobble 7.4s ease-in-out infinite .5s; }
.shop-hero__decor .decor:nth-of-type(3) { animation: float 8.1s ease-in-out infinite 1s; }
.shop-hero__decor .decor:nth-of-type(4) { animation: wobble 6.8s ease-in-out infinite .3s; }
.shop-hero__decor .decor:nth-of-type(5) { animation: float 7.5s ease-in-out infinite 1.4s; }
.shop-hero__decor .decor:nth-of-type(6) { animation: wobble 9.2s ease-in-out infinite .8s; }

/* Inner page hero decorations — applies to seen-and-sent and practice */
.page-hero__decor .decor:nth-of-type(1) { animation: float 6.4s ease-in-out infinite; }
.page-hero__decor .decor:nth-of-type(2) { animation: wobble 7.8s ease-in-out infinite .4s; }
.page-hero__decor .decor:nth-of-type(3) { animation: float 8.3s ease-in-out infinite .9s; }
.page-hero__decor .decor:nth-of-type(4) { animation: wobble 7.1s ease-in-out infinite 1.2s; }

/* Hero content */
.hero__content {
  text-align: center;
  max-width: 840px;
  padding: var(--sp-8) var(--sp-6);
  z-index: 2;
  position: relative;
}

/* Big hero logo */
.hero__logo { margin-bottom: var(--sp-6); }

.hero-logo-text {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: clamp(3.4rem, 13vw, 7.5rem);
  color: var(--color-primary);
  letter-spacing: -.03em;
  line-height: 1;
  animation: fadeInDown .8s ease .1s both;
}

.hero-logo-text .logo-ch,
.hero-logo-text .logo-nie { vertical-align: middle; }

.smiley-o--hero {
  /* size relative to font-size: ~0.76em */
  width: clamp(2.6rem, 9.9vw, 5.7rem);
  height: clamp(2.6rem, 9.9vw, 5.7rem);
}

.hero__headline {
  font-size: clamp(var(--text-2xl), 4.8vw, var(--text-5xl));
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-4);
  animation: fadeInUp .8s ease .35s both;
}
.hero__headline em { color: var(--color-primary); }

.hero__slogan {
  font-family: var(--font-handwritten);
  font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
  color: var(--color-clay);
  margin-bottom: var(--sp-8);
  animation: fadeInUp .8s ease .55s both;
}

.hero__cta { animation: fadeInUp .8s ease .75s both; }

/* Scroll indicator */
.hero__scroll-hint {
  position: absolute;
  bottom: var(--sp-8);
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-clay);
  opacity: .55;
  animation: fadeInUp 1s ease 1.3s both;
  pointer-events: none;
}

.hero__scroll-hint > span,
.hero__scroll-hint > svg {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   9. SHOP / PRODUCTS
============================================================ */

.shop { background: #fff; }

.shop__filters {
  display: flex;
  gap: var(--sp-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.filter-btn {
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid rgba(26,26,26,.15);
  transition: all var(--t);
  cursor: pointer;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(74,124,89,.25);
  transform: translateY(-1px);
}

/* Link variant — navigates instead of filtering (e.g. Murals) */
.filter-btn--link {
  text-decoration: none;
  opacity: .8;
  letter-spacing: .01em;
  display: inline-block;
}

.filter-btn--link:hover {
  opacity: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

/* Product card */
.product-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t-spring), box-shadow var(--t);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__img {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: var(--color-bg-warm);
}

.product-card__img img,
.product-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.product-card__photo--contain {
  object-fit: contain !important;
  object-position: center !important;
  background: var(--color-bg-warm);
  padding: var(--sp-3);
}

.product-card__img .img-placeholder {
  border-radius: 0;
  transition: transform var(--t-slow);
}
.product-card:hover .img-placeholder { transform: scale(1.035); }

/* Placeholder color per product */
.product-card[data-color="clay"]     .img-placeholder { background: #F3EAE2; }
.product-card[data-color="yellow"]   .img-placeholder { background: #FEF8D6; }
.product-card[data-color="blue"]     .img-placeholder { background: #E2F3F8; }
.product-card[data-color="lavender"] .img-placeholder { background: #EEE7F8; }
.product-card[data-color="red"]      .img-placeholder { background: #FDECEA; }
.product-card[data-color="green"]    .img-placeholder { background: #E6F4E6; }

.product-card__badge {
  position: absolute;
  top: var(--sp-3); left: var(--sp-3);
  background: var(--color-primary);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 700;
  padding: 2px var(--sp-3);
  border-radius: var(--r-full);
  letter-spacing: .05em;
  text-transform: uppercase;
  z-index: 1;
}

.product-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__name {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-1);
  line-height: 1.2;
}

.product-card__desc {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.55;
  margin-bottom: var(--sp-4);
}

.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: var(--sp-4);
}

.product-card__price {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-primary);
}

.product-card__add {
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  background: var(--color-text);
  color: var(--color-bg);
  transition: all var(--t-spring);
  white-space: nowrap;
}
.product-card__add:hover    { background: var(--color-primary); transform: scale(1.06); }
.product-card__add.added    { background: #4CAF50; animation: pop .35s var(--t-spring); }
.product-card__add--link    { display: inline-block; text-decoration: none; text-align: center; }

.product-card__made-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px var(--sp-2);
  border-radius: var(--r-full);
  margin-top: var(--sp-2);
  margin-bottom: var(--sp-1);
}
/* Custom chevron for product card selects (size, design) — overrides inline styles */
.product__size-select,
.product-card select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px !important;
  background-color: #fff !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 12px !important;
}

.product-card__made-badge--handmade {
  background: #E8F5EE;
  color: #2d6a4f;
}
.product-card__made-badge--sculpted {
  background: #F4EBE1;
  color: #6b4a2b;
}
.product-card__made-badge--painting {
  background: #FFE9E0;
  color: #8a3b1f;
}
.product-card__made-badge--drawn {
  background: #FDF3D9;
  color: #7a5c00;
}
.product-card__made-badge--print {
  background: #E3F0F7;
  color: #1e4a6b;
}
.product-card__made-badge--original {
  background: var(--color-lavender-light);
  color: #5a3e85;
}
.product-card__made-badge--handcrafted {
  background: var(--color-accent-light);
  color: #7a5c00;
}

/* ============================================================
   PRODUCT CARD CAROUSEL
============================================================ */
.product-carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  background: var(--color-bg-warm);
}

.product-carousel__slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
}

.product-carousel__slide {
  flex: 0 0 100%;
  min-width: 100%;
  width: 100%;
  height: 100%;
  position: relative;
}

.product-carousel__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: var(--shadow-sm);
  transition: background var(--t), opacity var(--t);
  opacity: 0;
  font-size: 14px;
  line-height: 1;
}

.product-carousel:hover .product-carousel__btn { opacity: 1; }
.product-carousel__btn--prev { left: 8px; }
.product-carousel__btn--next { right: 8px; }
.product-carousel__btn:hover { background: #fff; }

.product-carousel__dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.product-carousel__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background var(--t), transform var(--t);
  border: none;
  padding: 0;
}

.product-carousel__dot.active {
  background: #fff;
  transform: scale(1.3);
}

.product-carousel__slide--contain {
  background: #FFF8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
}

.product-carousel__slide--contain img {
  object-fit: contain !important;
  object-position: center !important;
  width: 100%;
  height: 100%;
  padding: 0;
}

/* ============================================================
   PAINTINGS
============================================================ */
.paintings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
  margin-bottom: var(--sp-16);
}

.painting-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--t-spring), box-shadow var(--t);
}

.painting-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.painting-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--color-bg-warm);
}

.painting-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--color-bg-warm);
  padding: var(--sp-2);
  transition: transform var(--t-slow);
}
.painting-card:hover .painting-card__img img { transform: scale(1.03); }

.painting-card__body {
  padding: var(--sp-6);
}

.painting-card__body h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-2);
  margin-top: 0;
}

.painting-card__body p {
  font-size: var(--text-sm);
  color: #555;
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.painting-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.painting-card__price {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--color-primary);
  font-weight: 700;
}

.propose-painting__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

/* ============================================================
   10. ABOUT / FOUNDER
============================================================ */

.about {
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.about__bg-blob {
  position: absolute;
  right: -80px; top: -80px;
  width: 560px; height: 560px;
  pointer-events: none;
}
.about__bg-blob svg { width: 100%; height: 100%; }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: var(--sp-16);
  align-items: center;
  position: relative;
  z-index: 1;
}

.about__img-wrap { position: relative; }

.about__img-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  opacity: .4;
  animation: spin-slow 36s linear infinite;
}

.about__img-tag {
  position: absolute;
  bottom: var(--sp-6);
  left: -var(--sp-4);
  background: var(--color-accent);
  color: var(--color-text);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  transform: rotate(-3deg);
  box-shadow: var(--shadow-md);
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
}
.about__img-tag .caveat-text { font-size: var(--text-xl); }

.about__title {
  text-align: left;
  font-size: clamp(var(--text-3xl), 4.2vw, var(--text-5xl));
  margin-bottom: var(--sp-6);
}

.about__text-col .section__tag { margin-bottom: var(--sp-4); }

.about__body p {
  font-size: var(--text-lg);
  line-height: 1.78;
  margin-bottom: var(--sp-4);
  color: #3A3A3A;
}

.about__quote {
  background: var(--color-accent-light);
  border-left: 4px solid var(--color-accent);
  padding: var(--sp-5) var(--sp-6);
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  margin: var(--sp-6) 0;
}
.about__quote p {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: var(--sp-2);
}
.about__quote cite {
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--color-clay);
  font-weight: 500;
}

/* ============================================================
   PROCESS STEP CARDS (Workshop page)
============================================================ */
.process-steps-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}

.process-step-card {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(26,26,26,.06);
  border-left: 4px solid var(--color-primary);
  transition: box-shadow var(--t), transform var(--t-spring);
}

.process-step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.process-step-card__num {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 900;
  color: var(--color-primary);
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.process-step-card__body h3 {
  font-family: var(--font-sans);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  margin-top: 0;
  color: var(--color-text);
}

.process-step-card__body p {
  font-size: var(--text-base);
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   WORKSHOP GRID
============================================================ */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.workshop-grid__item {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t);
}

.workshop-grid__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.workshop-grid__item img {
  width: 100%;
  height: auto;
  display: block;
}

.workshop-grid__caption {
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: #666;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

/* ============================================================
   ABOUT DEN EDITORIAL PHOTOS
============================================================ */
.about__den-photos {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: var(--sp-4);
  margin-top: var(--sp-10);
  align-items: stretch;
}

.about__den-photo {
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--color-bg-warm);
  box-shadow: var(--shadow-md);
  height: 480px;
}

.about__den-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform var(--t-slow);
}

.about__den-photo:hover img {
  transform: scale(1.03);
}

/* ============================================================
   11. FOUNDER'S DEN
============================================================ */

.founders-den {
  background: var(--color-text);
  color: var(--color-bg);
}

.founders-den .section__tag {
  background: rgba(245,200,66,.18);
  color: var(--color-accent);
}
.founders-den .section__title { color: var(--color-bg); }
.founders-den .section__desc  { color: rgba(251,246,238,.68); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: var(--sp-4);
}

.gallery-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  cursor: pointer;
}
.gallery-item .img-placeholder {
  height: 100%;
  background: #252525;
  border-radius: 0;
  transition: transform var(--t-slow);
}
.gallery-item:hover .img-placeholder { transform: scale(1.04); }
.gallery-item .placeholder-inner { color: rgba(251,246,238,.45); }

.gallery-item--tall { grid-row: span 2; }
.gallery-item--wide { grid-column: span 2; }

.den__caption {
  text-align: center;
  margin-top: var(--sp-10);
  color: var(--color-accent);
}

/* ============================================================
   12. PROCESS
============================================================ */

.process {
  background: var(--color-bg);
  position: relative;
}

/* Coloured top stripe */
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--color-primary),
    var(--color-secondary),
    var(--color-accent),
    var(--color-lavender));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  position: relative;
  margin-bottom: var(--sp-10);
}

.process-steps::before {
  display: none;
}

.process-step {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid rgba(26,26,26,.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow var(--t), transform var(--t-spring);
}

.process-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.process-step__icon {
  margin-bottom: var(--sp-5);
  transition: transform var(--t-spring);
}
.process-step:hover .process-step__icon {
  transform: scale(1.12) rotate(-6deg);
}

.process-step__num {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
  opacity: 0.7;
}

.process-step__title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-3);
  font-family: var(--font-sans);
}

.process-step__desc {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.7;
}

/* ============================================================
   13. TESTIMONIALS
============================================================ */

.testimonials { background: var(--color-secondary-light); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.testimonial-card {
  background: #fff;
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--t-spring), box-shadow var(--t);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -12px; left: var(--sp-6);
  font-family: var(--font-serif);
  font-size: 5.5rem;
  line-height: 1;
  color: var(--color-secondary);
  opacity: .22;
}

.testimonial-card__stars {
  color: var(--color-accent);
  font-size: var(--text-lg);
  letter-spacing: 2px;
  margin-bottom: var(--sp-4);
}

.testimonial-card blockquote p {
  font-size: var(--text-base);
  line-height: 1.78;
  color: #444;
  font-style: italic;
  margin-bottom: var(--sp-5);
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.testimonial-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--color-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

/* Per-card avatar colors — distinct brand tones so each reviewer reads as unique */
.testimonial-card:nth-child(1) .testimonial-card__avatar {
  background-color: #F5C842;
  color: #3a3a3a;
}
.testimonial-card:nth-child(2) .testimonial-card__avatar {
  background-color: #4A7C59;
  color: #F5C842;
}
.testimonial-card:nth-child(2) .testimonial-card__avatar span {
  color: #F5C842;
}
.testimonial-card:nth-child(3) .testimonial-card__avatar {
  background-color: #B8A0D8;
  color: #fff;
}

.testimonial-card__author strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
}
.testimonial-card__author span {
  font-size: var(--text-xs);
  color: var(--color-primary);
  font-weight: 500;
}

/* ============================================================
   14. HOW TO ORDER
============================================================ */

.how-to-order { background: var(--color-bg); }

.order-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: var(--sp-16);
}

.order-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 var(--sp-4);
}

.order-step__connector {
  width: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 18px;
  font-size: var(--text-xl);
  color: var(--color-secondary);
  opacity: .7;
}
.order-step__connector::after {
  content: '→';
}

.order-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  box-shadow: 0 4px 14px rgba(74,124,89,.3);
  flex-shrink: 0;
  transition: transform var(--t-spring);
}
.order-step:hover .order-step__num { transform: scale(1.12) rotate(-5deg); }

.order-step__content h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}
.order-step__content p {
  font-size: var(--text-sm);
  color: #666;
  line-height: 1.65;
}

.order-cta { text-align: center; }
.order-cta__note {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: #888;
}

/* ============================================================
   15. CONTACT / NEWSLETTER
============================================================ */

.contact { background: var(--color-accent-light); }

#about, #shop, #murals-teaser, #process, #testimonials, #how-to-order, #commission, #propose {
  scroll-margin-top: var(--nav-height);
}

#contact {
  scroll-margin-top: 80px;
}

/* Desktop-only: tighten the contact section's top padding to match the scroll offset */
@media (min-width: 769px) {
  #contact {
    padding-top: 3rem;
  }
}

.contact__inner {
  max-width: 680px;
  margin-inline: auto;
}

.contact__title {
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  margin-bottom: 0;
}
.contact__title em { color: var(--color-primary); font-style: italic; }

.contact-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-md);
  margin-top: var(--sp-6);
}

.contact-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.contact-form,
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 0;
}

.form-group label {
  display: block;
  margin-bottom: 0;
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--color-text);
}

.form-group input,
.form-group textarea {
  padding: var(--sp-3) var(--sp-4);
  border: 2px solid rgba(26,26,26,.14);
  border-radius: var(--r-lg);
  background: #fff;
  font-size: var(--text-base);
  color: var(--color-text);
  transition: border-color var(--t), box-shadow var(--t);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(74,124,89,.13);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #bbb; }

.form-group--inline {
  flex-direction: row;
  gap: var(--sp-2);
}
.form-group--inline input { flex: 1; }

.contact-form select,
.commission__form-card select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid rgba(26,26,26,.18);
  border-radius: var(--r-lg);
  background: #fff;
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--color-text);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%231A1A1A' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--sp-4) center;
  cursor: pointer;
  transition: border-color var(--t);
}

.contact-form select:focus,
.commission__form-card select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.form-success {
  display: none;
}

.form-success:not([hidden]) {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: #E8F5EE;
  border-radius: var(--r-lg);
  color: #2d6a4f;
  font-size: var(--text-sm);
  margin-top: var(--sp-3);
}

.newsletter-box {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  margin-bottom: var(--sp-8);
}
.newsletter-box__icon { margin-bottom: var(--sp-4); }
.newsletter-box h3 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-3);
}
.newsletter-box p {
  font-size: var(--text-base);
  color: #666;
  line-height: 1.68;
  margin-bottom: var(--sp-5);
}

.social-links h3 {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  margin-bottom: var(--sp-4);
}

.social-links__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  font-weight: 500;
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: all var(--t);
}
.social-link:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

/* ============================================================
   16. FOOTER
============================================================ */

.footer {
  background: #1A1A1A;
  color: rgba(255,255,255,0.75);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-8);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
  padding-bottom: var(--sp-10);
  margin-bottom: var(--sp-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Brand column */
.footer__brand { display: flex; flex-direction: column; gap: var(--sp-2); }

.footer__logo {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
  text-decoration: none;
  margin-bottom: var(--sp-1);
}

.footer__logo .logo-ch,
.footer__logo .logo-nie { color: #fff; }

.footer__logo .logo-oo-wrap {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-inline: 3px;
}

.smiley-o--footer { width: 28px; height: 28px; }

.footer__slogan {
  font-family: var(--font-handwritten);
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.8);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
}

/* Social column */
.footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sp-5);
}

.footer__social-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.footer__social-icons {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  align-items: flex-start;
  width: auto;
}

.footer__social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-full);
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: var(--text-sm);
  font-weight: 500;
  transition: background var(--t), color var(--t);
  width: fit-content;
}

.footer__social-link:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.footer__social-link svg { flex-shrink: 0; }

/* Nav columns — 3-column staggered grid */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 48px;
  align-items: start;
}

.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__nav-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color var(--t);
  white-space: nowrap;
}

.footer__nav-col a:hover { color: #fff; }

/* Legal column: small uppercase label + slightly muted links */
.footer__nav-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
  padding: 0;
  line-height: 1;
  /* Match the row height of a regular footer link (text-sm 14px × 1.65 ≈ 23px) */
  min-height: 23px;
  display: flex;
  align-items: center;
}

.footer__nav-col--legal {
  padding-top: 2px;
}

.footer__nav-col--legal a {
  font-size: .88rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer__nav-col--legal a:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* Bottom bar */
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color var(--t);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.7); }

.footer__love {
  color: var(--color-primary);
  font-size: var(--text-xs);
}

/* Footer responsive */
@media (max-width: 768px) {
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .footer__social {
    align-items: flex-start;
    text-align: left;
  }

  .footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 0 32px;
    align-items: start;
  }

  .footer__nav-col:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer__nav-col:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer__nav-col:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
    margin-top: 28px;
    padding-top: 0;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

/* ============================================================
   PRODUCT REQUEST SECTION
============================================================ */
.product-request {
  background: var(--color-bg-warm);
}

.product-request__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.product-request__title {
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-3);
  line-height: 1.2;
}

.product-request__title em {
  color: var(--color-primary);
  font-style: italic;
}

.product-request__text p {
  font-size: var(--text-base);
  color: #555;
  line-height: 1.7;
  max-width: 420px;
}

/* ============================================================
   CART SHIPPING NUDGE
============================================================ */
.cart-shipping-nudge {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  background: var(--color-secondary-light);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  color: var(--color-text);
  margin-bottom: var(--sp-3);
  transition: background var(--t);
}

.cart-shipping-nudge.is-unlocked {
  background: #E8F5EE;
  color: #2d6a4f;
}

/* ============================================================
   17. CART DRAWER
============================================================ */

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.52);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(2px);
}
.cart-overlay.is-open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 380px;
  max-width: 100vw;
  background: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  transform: translateX(100%);
  transition: transform var(--t-spring);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid rgba(26,26,26,.08);
}
.cart-drawer__header h2 { font-size: var(--text-xl); }

.cart-drawer__close {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: var(--color-text);
  transition: background var(--t);
}
.cart-drawer__close:hover { background: var(--color-bg); }

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--sp-5) var(--sp-6);
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  gap: var(--sp-3);
  padding-block: var(--sp-16);
  color: #999;
}
.cart-empty p:first-of-type { font-weight: 600; color: #666; }

.cart-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cart-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  background: var(--color-bg);
  border-radius: var(--r-lg);
}

.cart-item__info { flex: 1; }
.cart-item__name  { font-weight: 600; font-size: var(--text-sm); margin-bottom: 2px; }
.cart-item__price { font-size: var(--text-sm); color: var(--color-primary); font-weight: 600; }

.cart-item__qty {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}
.cart-item__qty button {
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-lg);
  font-weight: 700;
  background: #fff;
  border: 1.5px solid rgba(26,26,26,.15);
  transition: all var(--t);
  line-height: 1;
}
.cart-item__qty button:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.cart-item__qty span {
  font-size: var(--text-sm);
  font-weight: 600;
  min-width: 20px;
  text-align: center;
}

.cart-drawer__footer {
  padding: var(--sp-5) var(--sp-6);
  border-top: 1px solid rgba(26,26,26,.08);
  background: #fff;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
  font-weight: 600;
}
.cart-total__amount {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  color: var(--color-primary);
}

/* ============================================================
   18. ORDER SUMMARY MODAL
============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t);
  backdrop-filter: blur(4px);
}
.modal-overlay.is-open { opacity: 1; pointer-events: all; }

.modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-60%) scale(.94);
  z-index: 1400;
  width: 92vw;
  max-width: 520px;
  background: #fff;
  border-radius: var(--r-2xl);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--t-spring), opacity var(--t);
  max-height: 88vh;
  overflow-y: auto;
}
.modal.is-open {
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  pointer-events: all;
}

.modal__close {
  position: absolute;
  top: var(--sp-4); right: var(--sp-4);
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-full);
  color: #999;
  transition: background var(--t), color var(--t);
}
.modal__close:hover { background: var(--color-bg); color: var(--color-text); }

.modal__icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.modal h2 {
  font-size: var(--text-3xl);
  text-align: center;
  margin-bottom: var(--sp-2);
}
.modal__subtitle {
  text-align: center;
  font-size: var(--text-sm);
  color: #666;
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

.modal__order-text {
  background: var(--color-bg);
  border-radius: var(--r-lg);
  padding: var(--sp-5);
  font-size: var(--text-sm);
  line-height: 1.8;
  margin-bottom: var(--sp-5);
  white-space: pre-wrap;
  border: 1.5px dashed rgba(26,26,26,.18);
}

.modal .btn {
  display: flex;
  width: 100%;
  margin-bottom: var(--sp-3);
}

/* ============================================================
   19. ANIMATIONS & KEYFRAMES
============================================================ */

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-13px); }
}

@keyframes wobble {
  0%, 100% { transform: rotate(0deg); }
  25%       { transform: rotate(-5deg) scale(1.03); }
  75%       { transform: rotate(5deg)  scale(.97); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes pop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}

/* ============================================================
   EVENTS STRIP
============================================================ */
.events-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: var(--sp-12);
  align-items: center;
}

.events-strip__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-4);
  margin-top: var(--sp-3);
}
.events-strip__title em { color: var(--color-primary); font-style: italic; }

.events-strip__photo-single {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--color-bg-warm);
  box-shadow: var(--shadow-lg);
}

.events-strip__photo-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform var(--t-slow);
}

.events-strip__photo-single:hover img {
  transform: scale(1.03);
}

/* ============================================================
   20. RESPONSIVE — TABLET (≤1024px)
============================================================ */

@media (max-width: 1024px) {
  :root { --nav-height: 66px; }

  .products-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }

  .about__inner     { grid-template-columns: 1fr 1.5fr; gap: var(--sp-10); }

  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    width: 100%;
    margin-inline: auto;
  }

  /* footer handled in footer responsive block */
}

/* ============================================================
   21. RESPONSIVE — MOBILE (≤768px)
============================================================ */

@media (max-width: 768px) {
  :root { --nav-height: 60px; }

  .section { padding-block: var(--sp-16); }

  .events-strip__inner { grid-template-columns: 1fr; }

  /* Nav layout — tighten padding/gap so logo + hamburger + cart fit comfortably */
  .nav__inner {
    padding-inline: var(--sp-4);
    gap: var(--sp-3);
  }
  .nav__logo {
    font-size: clamp(1rem, 5vw, 1.5rem);
    margin-right: auto;
    white-space: nowrap;
  }
  .nav .smiley-o {
    width: 22px;
    height: 22px;
  }

  /* Nav menu — hidden by default, slides down when hamburger tapped */
  .nav__menu {
    display: none !important;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    flex-direction: column;
    align-items: stretch;
    padding: var(--sp-4);
    box-shadow: var(--shadow-lg);
    gap: var(--sp-1);
    z-index: 999;
    border-bottom: 1px solid rgba(26,26,26,.08);
    margin: 0;
  }
  .nav__menu.is-open {
    display: flex !important;
  }
  .nav__link {
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--text-base);
    border-radius: var(--r-lg);
  }
  .nav__hamburger {
    display: flex;
  }

  /* Hide hero decorations on mobile */
  .decor--1, .decor--2, .decor--3, .decor--4, .decor--5,
  .decor--6, .decor--7, .decor--8, .decor--9, .decor--10 { display: none; }

  /* Hide page hero decorative SVGs on mobile */
  .page-hero__decor { display: none; }

  /* About */
  .about__inner { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about__img-col { max-width: 360px; margin-inline: auto; width: 100%; }
  .about__title { font-size: var(--text-3xl); }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
  .gallery-item--wide { grid-column: span 1; }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial-card:last-child { grid-column: 1; max-width: none; }

  /* Order steps */
  .order-steps { flex-direction: column; }
  .order-step {
    flex-direction: row;
    text-align: left;
    gap: var(--sp-5);
    padding: 0;
    align-items: flex-start;
  }
  .order-step__num    { flex-shrink: 0; margin-bottom: 0; }
  .order-step__connector {
    width: 100%;
    margin-left: 0;
    padding-left: 0;
    padding-top: 0;
    padding-bottom: var(--sp-2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transform: none;
  }
  .order-step__connector::after {
    content: '↓';
  }

  /* Contact */
  .contact-card__row { grid-template-columns: 1fr; }

  /* Footer */
  /* footer handled in footer responsive block */

  /* Product grid */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); }

  /* Page hero */
  .page-hero { padding-top: calc(var(--nav-height) + var(--sp-12)); padding-bottom: var(--sp-12); }
  .page-hero__title { font-size: var(--text-4xl); }

  /* Paintings */
  .paintings-grid { grid-template-columns: 1fr; }

  .about__den-photos { grid-template-columns: 1fr; height: auto; }
  .about__den-photo { height: 320px; }

  .process-step-card { padding: var(--sp-5); gap: var(--sp-4); align-items: flex-start; }
  .workshop-grid { grid-template-columns: repeat(2, 1fr); }
  .propose-painting__inner { grid-template-columns: 1fr; }
  .product-request__inner { grid-template-columns: 1fr; gap: var(--sp-8); }

  /* Hero CTAs */
  .hero__ctas { flex-direction: column; align-items: stretch; gap: var(--sp-3); }
  .hero__ctas .btn { text-align: center; justify-content: center; }
}

/* ============================================================
   22. RESPONSIVE — SMALL MOBILE (≤480px)
============================================================ */

@media (max-width: 480px) {
  .products-grid  { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .workshop-grid { grid-template-columns: 1fr; }

  /* Tighter page hero padding on small screens */
  .page-hero { padding: var(--sp-8) var(--sp-4); }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item--tall,
  .gallery-item--wide { grid-row: span 1; grid-column: span 1; }

  .form-group--inline { flex-direction: column; }

  .hero__headline { font-size: var(--text-2xl); }

  .modal { padding: var(--sp-8) var(--sp-5); }
}

/* ============================================================
   PRODUCT PHOTOS
============================================================ */
.product-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}

/* ============================================================
   PRINTS BUNDLE NOTE
============================================================ */
.prints-bundle-note {
  background: var(--color-accent-light);
  border: 2px solid var(--color-accent);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-6);
  text-align: center;
  font-size: var(--text-base);
  margin-bottom: var(--sp-8);
  color: var(--color-text);
}

.product-card__bundle-note {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  background: var(--color-accent);
  color: var(--color-text);
  padding: 2px var(--sp-2);
  border-radius: var(--r-full);
  margin-left: var(--sp-2);
  vertical-align: middle;
}

/* ============================================================
   CART DISCOUNT + NUDGE
============================================================ */
.cart-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) var(--sp-5);
  background: var(--color-accent-light);
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-3);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
}
.cart-discount__amount { color: #2e7d32; }

.cart-print-nudge {
  padding: var(--sp-3) var(--sp-4);
  background: var(--color-secondary-light);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  color: var(--color-text);
  margin: var(--sp-3) 0;
  text-align: center;
}

/* ============================================================
   PAYMENT OPTIONS MODAL
============================================================ */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-xl);
  border: 2px solid rgba(26,26,26,.12);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: all var(--t-spring);
  font-family: var(--font-sans);
}
.payment-option:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.payment-option div { display: flex; flex-direction: column; gap: 2px; }
.payment-option strong { font-size: var(--text-base); font-weight: 700; }
.payment-option span { font-size: var(--text-sm); color: #666; }

.payment-option--venmo { border-color: #008CFF; }
.payment-option--venmo:hover { background: #f0f8ff; border-color: #008CFF; }
.payment-option--zelle { border-color: #6D1ED4; }
.payment-option--zelle:hover { background: #f8f0ff; border-color: #6D1ED4; }
.payment-option--card:hover { border-color: var(--color-primary); background: var(--color-primary-light); }

/* ============================================================
   STRIPE MODAL
============================================================ */
.stripe-card-mount {
  border: 1.5px solid rgba(26,26,26,.18);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  background: #fff;
  margin-bottom: var(--sp-4);
  min-height: 44px;
}

.stripe-modal__total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-4);
  font-size: var(--text-base);
  font-weight: 600;
}
.stripe-modal__total { font-size: var(--text-2xl); color: var(--color-primary); font-family: var(--font-serif); }
.stripe-modal__note { font-size: var(--text-xs); color: #888; text-align: center; margin-top: var(--sp-3); line-height: 1.5; }

/* ============================================================
   ABOUT PHOTO
============================================================ */
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-2xl);
  display: block;
}

/* ============================================================
   MURALS TEASER (homepage)
============================================================ */
.murals-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

.murals-teaser__item {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--color-bg-warm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t);
}

.murals-teaser__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.murals-teaser__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--t-slow);
}

.murals-teaser__item:hover img {
  transform: scale(1.03);
}

.murals-teaser__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55), transparent);
  color: #fff;
  padding: var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
}

.murals-teaser__item.no-img {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-clay);
  font-size: var(--text-sm);
  opacity: 0.5;
}

.murals-teaser__cta {
  text-align: center;
}

/* ============================================================
   MURALS PAGE
============================================================ */
.page-hero {
  padding-top: calc(var(--nav-height) + var(--sp-20));
  padding-bottom: var(--sp-20);
  background: var(--color-bg-warm);
}

.page-hero__title {
  font-size: clamp(var(--text-4xl), 6vw, 5rem);
  line-height: 1.1;
  margin-bottom: var(--sp-4);
}
.page-hero__title em { color: var(--color-primary); font-style: italic; }
.page-hero__desc { font-size: var(--text-lg); color: #555; max-width: 560px; margin-bottom: var(--sp-8); line-height: 1.7; }

/* ============================================================
   MURALS GALLERY
============================================================ */
.murals-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--sp-16);
}

.murals-grid__item {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--color-bg-warm);
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t);
  aspect-ratio: 4 / 3;
}

.murals-grid__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.murals-grid__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

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

@media (max-width: 600px) {
  .murals-grid {
    grid-template-columns: 1fr;
  }
}

.murals-quote {
  text-align: center;
  padding: var(--sp-12) 0;
  border-top: 1px solid rgba(26,26,26,.08);
}
.murals-quote .caveat-text { font-size: var(--text-3xl); display: block; margin-bottom: var(--sp-3); }
.murals-quote cite { font-size: var(--text-sm); color: #888; font-style: normal; }

/* ============================================================
   COMMISSION FORM
============================================================ */
.commission__header {
  margin-bottom: var(--sp-10);
}

.commission__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: start;
}

@media (max-width: 768px) {
  .commission__inner {
    grid-template-columns: 1fr !important;
    gap: var(--sp-8) !important;
  }
}

.commission__info {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.commission__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: 0;
}

.commission__card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  background: #fff;
  border-radius: var(--r-xl);
  border: 1.5px solid rgba(26,26,26,.08);
  transition: all var(--t-spring);
  cursor: default;
}

.commission__card:hover {
  transform: translateX(6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.commission__card-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: var(--r-lg);
}

.commission__card-body h3 {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-1);
  color: var(--color-text);
}

.commission__card-body p {
  font-size: var(--text-sm);
  color: #555;
  line-height: 1.65;
  margin: 0;
}

.commission__info { align-self: start; }
.commission__form-col { align-self: start; }

.commission__form-card {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-md);
  margin-top: 0;
}
.commission__form-card h3 { font-size: var(--text-xl); margin-bottom: var(--sp-6); font-family: var(--font-serif); }

/* ============================================================
   GALLERY IMAGES (Den, Workshop)
============================================================ */
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-lg);
}

/* ============================================================
   PROCESS WORKSHOP CTA
============================================================ */
.process__workshop-cta {
  text-align: center;
  margin-top: var(--sp-12);
}

/* ============================================================
   SHOP SEE ALL
============================================================ */
.shop__see-all {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ============================================================
   HERO DUAL CTA
============================================================ */
.hero__ctas {
  display: flex;
  gap: var(--sp-4);
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-text);
}
.btn--outline:hover {
  background: var(--color-text);
  color: var(--color-bg);
}

/* ============================================================
   PAINTINGS PAGE
============================================================ */
.paintings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.painting-card {
  background: #fff;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-spring), box-shadow var(--t-spring);
}
.painting-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.painting-card__img {
  aspect-ratio: 3/4;
  background: var(--color-bg-warm);
  overflow: hidden;
}
.painting-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--color-bg-warm);
  padding: var(--sp-2);
}
.painting-card__img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-clay);
  font-size: var(--text-sm);
  opacity: 0.4;
}
.painting-card__img.no-img::before { content: 'Photo coming soon'; }

.painting-card__body {
  padding: var(--sp-4) var(--sp-5);
}
.painting-card__title { font-size: var(--text-base); font-weight: 700; margin-bottom: var(--sp-1); }
.painting-card__price { font-size: var(--text-sm); color: #555; margin-bottom: var(--sp-3); }

/* ============================================================
   WORKSHOP PAGE
============================================================ */
.workshop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--sp-6);
  margin-bottom: var(--sp-12);
}

.workshop-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--color-bg-warm);
}
.workshop-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.workshop-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.workshop-card__img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-clay);
  font-size: var(--text-sm);
  opacity: 0.4;
  aspect-ratio: 4/3;
}
.workshop-card__img.no-img::before { content: 'Photo coming soon'; }

.workshop-card__caption {
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  color: #555;
  text-align: center;
}

/* ============================================================
   DEN PAGE GALLERY
============================================================ */
.den-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: var(--sp-4);
  margin-bottom: var(--sp-12);
}

.den-gallery__item {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--color-bg-warm);
}
.den-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow);
}
.den-gallery__item:hover img { transform: scale(1.04); }

.den-gallery__item--wide { grid-column: span 2; }
.den-gallery__item--tall { grid-row: span 2; }

.den-gallery__item.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-clay);
  font-size: var(--text-sm);
  opacity: 0.4;
}
.den-gallery__item.no-img::before { content: 'Photo coming soon'; }

/* ============================================================
   RESPONSIVE UPDATES
============================================================ */
@media (max-width: 768px) {
  .murals-teaser__grid { grid-template-columns: 1fr 1fr; }
  .commission__inner { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; align-items: flex-start; }
  .den-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
}

@media (max-width: 480px) {
  .murals-teaser__grid { grid-template-columns: 1fr; }
  .den-gallery { grid-template-columns: 1fr; }
  .den-gallery__item--wide { grid-column: span 1; }
  .den-gallery__item--tall { grid-row: span 1; }
}

/* ============================================================
   PASSWORD GATE
============================================================ */
#password-gate {
  position: fixed;
  inset: 0;
  background: #f5f0e8;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gate__inner {
  text-align: center;
  padding: 2rem;
  max-width: 380px;
  width: 100%;
}
.gate__logo {
  font-family: var(--font-display, serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}
.gate__tagline {
  font-size: 1rem;
  color: #666;
  margin-bottom: 2rem;
  font-style: italic;
}
.gate__form {
  display: flex;
  gap: 8px;
  margin-bottom: 0.75rem;
}
.gate__form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1.5px solid #ddd;
  border-radius: 100px;
  font-size: 1rem;
  outline: none;
  background: white;
}
.gate__form input:focus {
  border-color: #4a7c5e;
}
.gate__form button {
  padding: 0.75rem 1.5rem;
  background: #4a7c5e;
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  cursor: pointer;
  white-space: nowrap;
}
.gate__form button:hover {
  background: #3a6a4e;
}
.gate__error {
  color: #c0392b;
  font-size: 0.875rem;
}

/* ============================================================
   IMAGE LIGHTBOX
============================================================ */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  cursor: pointer;
}

#lightbox-content {
  position: relative;
  z-index: 99999;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

#lightbox-img.zoomed {
  cursor: zoom-out;
  transform: scale(2);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
}

#lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  z-index: 100000;
}

#lightbox-close:hover {
  background: rgba(255,255,255,0.3);
}

/* ============================================================
   CARDS PAGE
============================================================ */
.cards-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.card-item {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--color-bg-warm);
  cursor: zoom-in;
  transition: transform var(--t), box-shadow var(--t);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-item__img-wrap {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-warm);
  padding: var(--sp-4);
}

.card-item img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.card-item__label {
  font-size: var(--text-sm);
  font-weight: 500;
  text-align: center;
  padding: var(--sp-3) var(--sp-2);
  color: var(--color-text);
  margin: 0;
}

.cards-pricing { background: var(--color-bg-warm); }

.cards-pricing .section__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.cards-pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.pricing-tier {
  background: #fff;
  border-radius: var(--r-2xl);
  padding: var(--sp-10) var(--sp-6);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.pricing-tier--featured {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-tier--featured .pricing-tier__desc {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-tier__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--color-accent);
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.pricing-tier__price {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.pricing-tier__name {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-3);
}

.pricing-tier__desc {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: #666;
  margin: 0;
}

.cards-order__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.cards-order__text {
  font-size: var(--text-lg);
  line-height: 1.7;
  color: #555;
  margin-top: var(--sp-4);
}

.cards-order__form .form-group {
  margin-bottom: var(--sp-5);
}

.cards-order__form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.cards-order__form input,
.cards-order__form select,
.cards-order__form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e0dcd3;
  border-radius: var(--r-lg);
  font-family: inherit;
  font-size: var(--text-base);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--t);
}

.cards-order__form input:focus,
.cards-order__form select:focus,
.cards-order__form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

select[name="cardsType"],
select[name="cardsDesign"] {
  padding-right: 44px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.cards-order__form textarea {
  resize: vertical;
  min-height: 110px;
}

.rights-check-wrapper {
  padding: var(--sp-3) var(--sp-4);
  background: #f9f9f9;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-4);
}

.rights-check-label {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: var(--text-sm);
  line-height: 1.55;
  color: #555;
  cursor: pointer;
}

.rights-check-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--color-primary);
  flex-shrink: 0;
  cursor: pointer;
}

.rights-check-label a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
}

/* Cards homepage teaser */
.cards-teaser { text-align: center; }

.cards-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin: var(--sp-8) auto;
  max-width: 880px;
}

.cards-teaser__grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: var(--color-bg-warm);
  border-radius: var(--r-xl);
  display: block;
  cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t);
}

.cards-teaser__grid img:hover {
  transform: translateY(-4px);
}

/* ==============================================
   CARDS TEASER STAGGER — DO NOT CHANGE
   These max-height values are intentional and
   create the deliberate stair-step effect on the
   homepage cards section. Tops flush, bottoms
   descend left to right. Approved and locked in.
   Card 1: 320px (shortest)
   Card 2: 480px (tallest)
   Card 3: 400px (medium)
   ============================================== */
/* Desktop-only: tops flush, bottoms stair-step down via max-height */
@media (min-width: 769px) {
  .cards-teaser__grid {
    align-items: start;
  }

  .cards-teaser__grid img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-top: 0;
  }

  .cards-teaser__grid img:nth-child(1) {
    max-height: 320px;
  }

  .cards-teaser__grid img:nth-child(2) {
    max-height: 480px;
  }

  .cards-teaser__grid img:nth-child(3) {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .cards-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }

  .card-item__img-wrap {
    height: 280px;
    padding: var(--sp-3);
  }

  .cards-pricing__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .pricing-tier--featured {
    transform: none;
  }

  .cards-order__split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .cards-teaser__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-2);
  }
}

@media (max-width: 480px) {
  .cards-gallery__grid {
    gap: var(--sp-3);
  }

  .card-item__img-wrap {
    height: 220px;
    padding: var(--sp-2);
  }
}

/* ============================================================
   SEEN & SENT PAGE
============================================================ */
.seen-hero__price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: .01em;
  margin-top: 20px;
  line-height: 1.6;
}

.seen-hero__price strong {
  font-size: 1.5rem;
  color: #3a6a4e;
  font-weight: 800;
}

.seen-how .section__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.seen-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.seen-how__step {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--color-bg-warm);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
}

.seen-how__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.seen-how__step h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.seen-how__step p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: #555;
}

.seen-form-section__split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12);
  align-items: start;
}

.seen-form__intro {
  font-size: var(--text-base);
  line-height: 1.7;
  color: #555;
  margin-top: var(--sp-4);
}

.seen-form__hint {
  font-size: 13px;
  color: var(--color-primary);
  background: #E8F5EE;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  margin-top: var(--sp-5);
  line-height: 1.55;
}

.seen-form__price-note {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #3a6a4e;
  letter-spacing: .02em;
  margin-top: var(--sp-4);
  margin-bottom: 16px;
}

.seen-form__voice-tip {
  font-size: 12px;
  color: #888;
  margin-top: .5rem;
  font-style: italic;
  line-height: 1.5;
}

.form-hint-text {
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.seen-form .form-group {
  margin-bottom: var(--sp-5);
}

.seen-form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: var(--sp-2);
  color: var(--color-text);
}

.seen-form input,
.seen-form select,
.seen-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid #e0dcd3;
  border-radius: var(--r-lg);
  font-family: inherit;
  font-size: var(--text-base);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--t);
}

.seen-form input:focus,
.seen-form select:focus,
.seen-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.seen-form textarea {
  resize: vertical;
}

/* Seen & Sent homepage teaser */
.seen-teaser .container {
  padding-inline: var(--sp-4);
}

.seen-teaser__inner {
  background: #3a6a4e;
  border-radius: 24px;
  padding: 5rem 3rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  max-width: 880px;
  margin: 0 auto;
}

.seen-teaser__decor {
  position: absolute;
  color: rgba(255, 255, 255, 0.15);
  font-size: 6rem;
  top: -1rem;
  left: 2rem;
  pointer-events: none;
  animation: float 4s ease-in-out infinite;
  z-index: 0;
}

.seen-teaser__decor--2 {
  top: auto;
  left: auto;
  bottom: -1rem;
  right: 2rem;
  font-size: 4rem;
  animation-delay: 1.5s;
}

.seen-teaser__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px;
  letter-spacing: .08em;
  font-weight: 500;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  text-transform: uppercase;
}

.seen-teaser__headline {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: .75rem;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

.seen-teaser__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.seen-teaser__detail {
  font-size: .95rem;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
  margin: 0 auto .75rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.seen-teaser__btn {
  background: #fff;
  color: #3a6a4e;
  font-weight: 700;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  border: none;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background .2s ease, transform .15s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
}

.seen-teaser__btn:hover {
  background: #faf6ef;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .seen-how__steps {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .seen-form-section__split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .seen-teaser__inner {
    padding: 3rem 1.5rem;
  }

  .seen-teaser__headline {
    font-size: 2.5rem;
  }

  .seen-teaser__decor {
    font-size: 4rem;
  }
}

/* ============================================================
   PRACTICE PAGE (B2B)
============================================================ */
.practice-hero__cta {
  margin-top: var(--sp-6);
}

.practice-why .section__header,
.practice-kit .section__header,
.practice-how .section__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}

.practice-why__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.practice-why__card {
  background: var(--color-bg-warm);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}

.practice-why__icon {
  color: var(--color-primary);
  margin-bottom: var(--sp-3);
  line-height: 0;
}

.practice-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
  display: block;
  flex-shrink: 0;
}

.practice-why__card h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.practice-why__card p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: #555;
}

.practice-kit__sub {
  max-width: 600px;
  color: #666;
  margin: var(--sp-4) auto 0;
  line-height: 1.65;
}

.practice-kit__contents {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-12);
}

.practice-kit__item {
  background: var(--color-bg-warm);
  border-radius: var(--r-2xl);
  padding: var(--sp-6);
  box-shadow: var(--shadow-sm);
}

.practice-kit__item--featured {
  background: #3a6a4e;
  color: #fff;
  grid-column: span 2;
}

.practice-kit__item h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.practice-kit__item p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: #555;
}

/* Featured (dark green) override — must come after base to win cascade */
.practice-kit__item--featured p {
  color: rgba(255, 255, 255, 0.88);
}

.practice-kit__pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.practice-kit__price-card {
  background: var(--color-bg-warm);
  border-radius: var(--r-2xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.practice-kit__price-card--featured {
  background: #3a6a4e;
  color: #fff;
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.practice-kit__price-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #f5c842;
  color: #1a1a1a;
  padding: 6px 14px;
  border-radius: var(--r-full);
  white-space: nowrap;
}

.practice-kit__price-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: var(--sp-2);
}

.practice-kit__price-card--featured .practice-kit__price-label {
  color: rgba(255, 255, 255, 0.6);
}

.practice-kit__price {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-serif);
  margin-bottom: var(--sp-3);
  line-height: 1;
}

.practice-kit__price-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Featured (dark green) override — must come after base to win cascade */
.practice-kit__price-card--featured p {
  color: rgba(255, 255, 255, 0.88);
}

.practice-how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.practice-how__step {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--color-bg-warm);
  border-radius: var(--r-2xl);
  box-shadow: var(--shadow-sm);
}

.practice-how__number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #3a6a4e;
  color: #fff;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}

.practice-how__step h3 {
  font-size: var(--text-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.practice-how__step p {
  font-size: var(--text-sm);
  line-height: 1.65;
  color: #555;
}

.practice-form__split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-12);
  align-items: start;
}

.practice-form__note {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-top: var(--sp-4);
}

.practice-form__form .form-group {
  margin-bottom: 12px;
}

.practice-form__form label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--color-text);
}

.practice-form__form input,
.practice-form__form select,
.practice-form__form textarea {
  width: 100%;
  padding: 10px 1rem;
  border: 1.5px solid #e0dcd3;
  border-radius: var(--r-lg);
  font-family: inherit;
  font-size: var(--text-base);
  background: #fff;
  color: var(--color-text);
  transition: border-color var(--t);
}

.practice-form__form input:focus,
.practice-form__form select:focus,
.practice-form__form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.practice-form__form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
}

.practice-form__form textarea {
  resize: vertical;
  min-height: 90px;
}

/* About section practice callout (homepage) */
.about-practice-callout {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--color-bg-warm);
  border-radius: var(--r-lg);
  border-left: 3px solid #3a6a4e;
  font-size: .95rem;
}

.about-practice-callout p {
  margin: 0;
}

.about-practice-callout a {
  color: #3a6a4e;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .practice-why__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .practice-kit__contents {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .practice-kit__item--featured {
    grid-column: span 1;
  }

  .practice-kit__pricing {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  .practice-kit__price-card--featured {
    transform: none;
  }

  .practice-how__steps {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }

  .practice-form__split {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
}

/* ============================================================
   SHOP THE COLLECTION SECTION CTA
============================================================ */
.collection-cta {
  padding: 2rem var(--sp-6);
  display: flex;
  justify-content: center;
}

.collection-cta__btn {
  display: block;
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 1.25rem 2rem;
  background: #3a6a4e;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 100px;
  text-decoration: none;
  letter-spacing: .02em;
  transition: background .2s ease, transform .15s ease;
}

.collection-cta__btn:hover {
  background: #2e5640;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .collection-cta {
    padding: 1.5rem 1rem;
  }

  .collection-cta__btn {
    font-size: 1rem;
    padding: 1rem 1.5rem;
  }
}

/* ============================================================
   FOR PRACTICES HOMEPAGE TEASER
============================================================ */
.practices-teaser {
  padding: 80px 24px;
  background-color: #E8F5EE;
}

.practices-teaser__inner {
  max-width: 760px;
  margin: 0 auto;
}

.practices-teaser__eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3a6a4e;
  margin-bottom: 12px;
}

.practices-teaser__heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-family: var(--font-serif);
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.15;
}

.practices-teaser__body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  max-width: 560px;
  margin-bottom: 32px;
}

.practices-teaser__cta {
  display: inline-block;
  background-color: #3a6a4e;
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 36px;
  border-radius: 100px;
  text-decoration: none;
  transition: background-color .2s ease, transform .15s ease;
}

.practices-teaser__cta:hover {
  background-color: #2e5640;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .practices-teaser {
    padding: 60px 20px;
  }
}
