:root {
  --ink: #21302d;
  --muted: #687774;
  --sage: #7f9b83;
  --sage-dark: #486b56;
  --sky: #d9e8ee;
  --ivory: #fffaf0;
  --rose: #ead8d0;
  --gold: #c89a48;
  --line: rgba(33, 48, 45, 0.14);
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(45, 56, 54, 0.12);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
section[id] { scroll-margin-top: 96px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  min-height: 76px;
  padding: 12px 48px;
  background: rgba(255, 250, 240, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong, .brand small { display: block; }
.brand strong { font-size: 16px; }
.brand small { color: var(--muted); font-size: 12px; }

.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] { color: var(--sage-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-toggle {
  display: inline-flex;
  border: 1px solid rgba(72, 107, 86, 0.22);
  border-radius: 999px;
  padding: 3px;
  background: var(--white);
}

.language-toggle a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  border-radius: 999px;
  padding: 6px 9px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 900;
}

.language-toggle a.is-active {
  color: var(--white);
  background: var(--sage-dark);
}

.nav-cta,
.button,
.quote-form button,
.checkout-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(72, 107, 86, 0.2);
}

.button.secondary,
.quote-button,
.button.quote-button {
  color: var(--sage-dark);
  background: var(--white);
  border: 1px solid rgba(72, 107, 86, 0.28);
  box-shadow: none;
}

.button.small { min-height: 38px; padding: 0 15px; font-size: 13px; }

.hero-showcase {
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 56px 48px;
  color: var(--white);
  background-image: linear-gradient(90deg, rgba(16, 28, 25, 0.78), rgba(16, 28, 25, 0.38), rgba(16, 28, 25, 0.1)), var(--hero-image);
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  width: min(720px, 100%);
}

.hero-product-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.hero-product-card {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
}

.hero-product-card img {
  width: 88px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.hero-product-card span,
.hero-product-card strong {
  display: block;
}

.hero-product-card span {
  color: #f2e5c8;
  font-size: 12px;
  font-weight: 900;
}

.hero-product-card strong {
  margin: 4px 0 10px;
  color: var(--white);
  font-size: 13px;
  line-height: 1.22;
}

.hero-product-card .button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-showcase .eyebrow { color: #f2e5c8; }

h1, h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.06;
}

h1 { max-width: 760px; font-size: 56px; }
h2 { font-size: 36px; }
h3 { margin: 0; font-size: 20px; line-height: 1.22; }

.hero-lead {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.hero-showcase .hero-lead {
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions,
.quote-actions,
.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 26px;
}

.hero-actions.single-cta .button {
  min-width: min(100%, 360px);
}

.cta-note {
  max-width: 520px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.occasion-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 34px;
  gap: 16px;
  align-items: center;
  padding: 12px 48px;
  color: #3b5248;
  background: #f3eadb;
  border-bottom: 1px solid rgba(72, 107, 86, 0.16);
}

.occasion-bar[hidden] {
  display: none;
}

.occasion-bar div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.occasion-bar strong {
  color: var(--sage-dark);
}

.occasion-bar a {
  color: var(--sage-dark);
  font-weight: 900;
}

.occasion-bar button {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(72, 107, 86, 0.22);
  border-radius: 50%;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.64);
  cursor: pointer;
  font-weight: 900;
}

.intro-band {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 20px 48px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-band span {
  display: block;
  color: var(--muted);
}

.intro-band a,
.text-link {
  color: var(--sage-dark);
  font-weight: 900;
}

.section,
.quote-strip,
.checkout-layout {
  padding: 72px 48px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow),
.split-copy p,
.info-card p,
.scene-card p,
.trust-grid p,
.guarantee-grid p,
.family-card figcaption,
.scene-use-card figcaption,
.detail-panel p,
.quote-strip p,
.quote-panel p {
  color: var(--muted);
}

.page-hero,
.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  gap: 48px;
  align-items: center;
  padding: 72px 48px;
  background: linear-gradient(135deg, #fffaf0 0%, #f1f7f3 70%, #e8f1f4 100%);
}

.page-hero img,
.product-gallery > img,
.feature-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-grid,
.scene-grid,
.trust-grid,
.info-grid,
.review-grid,
.guarantee-grid,
.family-grid,
.scene-use-grid,
.memory-path-grid,
.studio-step-grid,
.studio-timeline-grid,
.about-studio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.scene-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.family-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.memory-path-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.studio-timeline-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.about-studio-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.fast-gift-card,
.quote-card-panel,
.about-story-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.product-card,
.scene-card,
.info-card,
.review-card,
.family-card,
.scene-use-card,
.detail-panel,
.contact-card,
.cart-items,
.cart-summary,
.checkout-form,
.quote-panel,
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(45, 56, 54, 0.07);
}

.product-card {
  overflow: hidden;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
}

.product-body,
.scene-card,
.info-card,
.review-card,
.family-card figcaption,
.scene-use-card figcaption,
.detail-panel,
.contact-card,
.cart-items,
.cart-summary,
.checkout-form,
.quote-panel {
  padding: 22px;
}

.product-body p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.price {
  margin: 10px 0 0;
  color: var(--sage-dark);
  font-size: 18px;
  font-weight: 900;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #486255;
  background: #e8f1e7;
  font-size: 12px;
  font-weight: 900;
}

.scene-section { background: #f8fbf7; }
.scene-card { box-shadow: none; }
.scene-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; margin-bottom: 16px; }
.scene-card span { display: block; color: var(--sage-dark); font-weight: 900; font-size: 18px; }

.guarantee-section {
  background: #fffdf7;
}

.guarantee-grid article {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 12px 30px rgba(45, 56, 54, 0.06);
}

.guarantee-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 12px;
  font-weight: 900;
}

.guarantee-grid strong {
  display: block;
  color: var(--sage-dark);
}

.guarantee-grid p {
  margin: 8px 0 0;
}

.families-wall {
  background: #fffaf0;
}

.family-card,
.scene-use-card {
  overflow: hidden;
  margin: 0;
}

.family-card img,
.scene-use-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.scene-use-card img {
  aspect-ratio: 16 / 11;
}

.family-card figcaption,
.scene-use-card figcaption {
  display: grid;
  gap: 7px;
  font-size: 14px;
}

.family-card figcaption span,
.scene-use-card figcaption span {
  color: var(--sage-dark);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-scenes {
  background: #f8fbf7;
}

.memory-path-section {
  background: #fffdf7;
}

.memory-path-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: inherit;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(45, 56, 54, 0.07);
}

.memory-path-card img {
  width: 100%;
  aspect-ratio: 1 / 0.86;
  object-fit: cover;
  display: block;
}

.memory-path-card div {
  padding: 18px;
}

.memory-path-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--sage-dark);
  background: #e8f1e7;
  font-size: 12px;
  font-weight: 900;
}

.memory-path-card p {
  color: var(--muted);
  font-size: 14px;
}

.soft-boundary-section {
  background: #eef5f1;
}

.soft-boundary-card {
  max-width: 980px;
  border: 1px solid rgba(72, 107, 86, 0.22);
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(45, 56, 54, 0.08);
}

.soft-boundary-card p {
  color: var(--muted);
}

.studio-process-section,
.studio-timeline-section,
.product-studio-strip,
.about-studio-section {
  background: #fffdf7;
}

.studio-step-card,
.studio-timeline-grid article,
.about-studio-grid figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(45, 56, 54, 0.07);
}

.studio-step-card img,
.studio-timeline-grid img,
.about-studio-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  display: block;
}

.studio-step-card div,
.studio-timeline-grid div,
.about-studio-grid figcaption {
  padding: 18px;
}

.studio-step-card span {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--sage-dark);
  background: #e8f1e7;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.studio-step-card p,
.studio-timeline-grid p,
.about-studio-grid figcaption {
  color: var(--muted);
}

.studio-timeline-grid strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 13px;
}

.studio-step-grid.compact .studio-step-card div {
  min-height: 150px;
}

.fast-gift-section {
  background: #fffdf7;
}

.fast-gift-card,
.quote-card-panel,
.about-story-grid {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: var(--white);
  box-shadow: 0 16px 42px rgba(45, 56, 54, 0.08);
}

.fast-gift-card img,
.quote-card-panel img,
.about-story-grid img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border-radius: 8px;
}

.quote-card-signup {
  background: #eef5f1;
}

.quote-card-panel {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.46fr);
}

.quote-card-panel figure,
.about-story-grid figure {
  margin: 0;
}

.quote-card-panel figcaption,
.about-story-grid figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 13px;
}

.email-capture-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 20px;
}

.email-capture-form button {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--sage-dark);
  font-weight: 900;
  cursor: pointer;
}

.about-story-section,
.promise-section {
  background: #fffdf7;
}

.about-story-grid p {
  color: var(--muted);
}

.trust-section { background: #eef5f1; }
.trust-grid article { border-left: 4px solid var(--sage); padding: 18px 18px 18px 20px; background: rgba(255, 255, 255, 0.75); }
.trust-grid strong { color: var(--sage-dark); }

.shop-toolbar {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.78);
}

.shop-toolbar div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.shop-toolbar span {
  min-width: 48px;
  color: var(--sage-dark);
  font-size: 13px;
  font-weight: 900;
}

.shop-toolbar button {
  border: 1px solid rgba(72, 107, 86, 0.22);
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--sage-dark);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.shop-toolbar button.is-active {
  color: var(--white);
  background: var(--sage-dark);
}

.filter-status { color: var(--muted); font-weight: 800; }

.product-gallery {
  display: grid;
  gap: 12px;
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.thumb-grid img {
  width: 100%;
  aspect-ratio: 1 / 0.75;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

label {
  display: grid;
  gap: 8px;
  color: #43514f;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(33, 48, 45, 0.17);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
}

textarea { min-height: 128px; resize: vertical; }

.product-meta,
.mini-product-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.product-meta span,
.mini-product-row a {
  border: 1px solid rgba(72, 107, 86, 0.18);
  border-radius: 999px;
  padding: 8px 11px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
}

.product-detail-grid,
.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.42fr);
  gap: 24px;
  padding: 64px 48px;
}

.detail-panel + .detail-panel { margin-top: 16px; }
.detail-panel ul { margin: 14px 0 0; padding-left: 20px; color: var(--muted); }
.detail-panel li + li { margin-top: 8px; }

.contact-card {
  position: sticky;
  top: 96px;
  align-self: start;
  background: linear-gradient(180deg, var(--white), #f3faf4);
}

.contact-card .button,
.checkout-button { width: 100%; }

.review-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stars {
  color: var(--gold);
  font-weight: 900;
  letter-spacing: 0;
}

.review-card span {
  color: var(--sage-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  background: #f3eadb;
}

.process-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(0, 0.92fr);
  gap: 32px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.82);
}

.process-list strong {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 920px;
}

details { padding: 18px 20px; box-shadow: none; }
summary { cursor: pointer; font-weight: 900; }
details p { color: var(--muted); }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form,
.checkout-form {
  display: grid;
  gap: 14px;
}

.form-note,
.empty-cart {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cart-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-item:last-child { border-bottom: 0; }
.cart-item img { width: 92px; height: 72px; border-radius: 8px; object-fit: cover; }
.cart-item h3 { font-size: 16px; }
.cart-item p { margin: 6px 0 0; color: var(--muted); font-size: 13px; }

.cart-controls { display: grid; gap: 8px; justify-items: end; }
.qty-control { display: inline-flex; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; }
.qty-control button { width: 34px; border: 0; background: #f3f7f2; color: var(--sage-dark); font-weight: 900; cursor: pointer; }
.qty-control span { min-width: 34px; padding: 6px 8px; text-align: center; font-weight: 800; }
.remove-item { border: 0; color: var(--muted); background: transparent; font-size: 12px; font-weight: 800; cursor: pointer; }

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 12px 0;
  color: var(--muted);
}

.summary-line.total {
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.blog-hero {
  padding: 88px 48px 42px;
  background: #eef4ec;
}

.blog-hero > div {
  width: min(920px, 100%);
}

.blog-hero h1,
.article-hero h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.03;
}

.blog-hero p:last-child,
.article-lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.blog-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.84);
}

.blog-card a {
  display: grid;
  height: 100%;
}

.blog-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.blog-card span {
  margin: 18px 18px 0;
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 8px 18px 8px;
  font-size: 21px;
  line-height: 1.18;
}

.blog-card p {
  margin: 0 18px 20px;
  color: var(--muted);
}

.article-layout {
  background: var(--ivory);
}

.article-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 36px;
  align-items: end;
  padding: 72px 48px 42px;
  background: #eef4ec;
}

.article-hero .eyebrow,
.article-hero h1,
.article-hero .article-lead {
  grid-column: 1;
}

.article-hero img {
  grid-column: 2;
  grid-row: 1 / span 3;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.article-body {
  width: min(820px, calc(100% - 48px));
  margin: 0 auto;
  padding: 48px 0 20px;
}

.article-body p {
  color: #42504d;
  font-size: 17px;
}

.article-body h2 {
  margin: 34px 0 10px;
  font-size: 28px;
  line-height: 1.2;
}

.article-body a {
  color: var(--sage-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-cta {
  width: min(820px, calc(100% - 48px));
  margin: 24px auto 64px;
  border: 1px solid rgba(72, 107, 86, 0.22);
  border-radius: 8px;
  padding: 28px;
  background: #f3eadb;
}

.article-cta h2 {
  margin: 0 0 8px;
}

.article-cta p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 48px;
  color: var(--white);
  background: #253632;
}

.site-footer p { margin: 6px 0 0; color: rgba(255, 255, 255, 0.72); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 18px; }
.site-footer a { color: #f6e4bd; font-weight: 800; }

.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  color: var(--white);
  background: #1fa855;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(31, 168, 85, 0.28);
}

@media (max-width: 1100px) {
  .site-header {
    position: static;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 14px 24px;
  }

  .main-nav { justify-content: flex-start; gap: 10px; }
  .header-actions { flex-wrap: wrap; }
  .scene-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .family-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .memory-path-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .hero-showcase { min-height: 560px; padding: 44px 24px; }
  .hero-overlay { width: 100%; }
  .hero-product-strip { grid-template-columns: 1fr; max-width: 520px; }
  .page-hero,
  .product-hero,
  .process-layout,
  .fast-gift-card,
  .quote-card-panel,
  .article-hero,
  .about-story-grid,
  .checkout-layout,
  .product-detail-grid,
  .cart-layout,
  .quote-strip {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .trust-grid,
  .info-grid,
  .review-grid,
  .review-grid.compact,
  .guarantee-grid,
  .scene-use-grid,
  .memory-path-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .blog-hero,
  .page-hero,
  .article-hero,
  .product-hero,
  .product-detail-grid,
  .cart-layout,
  .quote-strip,
  .checkout-layout {
    padding-left: 24px;
    padding-right: 24px;
  }

  h1 { font-size: 42px; }
  h2 { font-size: 30px; }

  .article-hero .eyebrow,
  .article-hero h1,
  .article-hero .article-lead,
  .article-hero img {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  .main-nav a {
    border: 1px solid rgba(72, 107, 86, 0.14);
    border-radius: 999px;
    padding: 7px 10px;
    background: rgba(255, 255, 255, 0.7);
    font-size: 13px;
  }

  .hero-showcase { min-height: 520px; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .hero-lead { font-size: 16px; }
  .hero-actions .button,
  .nav-cta,
  .checkout-form button,
  .quote-form button { width: 100%; }

  .intro-band,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .scene-grid,
  .family-grid,
  .blog-card-grid,
  .product-options,
  .email-capture-form,
  .form-row {
    grid-template-columns: 1fr;
  }

  .occasion-bar {
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 12px 24px;
  }

  .occasion-bar a {
    grid-column: 1 / -1;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .cart-controls {
    grid-column: 1 / -1;
    justify-items: start;
  }

  .floating-whatsapp { display: none; }
}


.video-section {
  background: #f8fbf7;
}

.youtube-placeholder {
  display: grid;
  place-items: center;
  min-height: 360px;
  border: 1px dashed rgba(72, 107, 86, 0.42);
  border-radius: 8px;
  padding: 28px;
  color: var(--sage-dark);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(238, 245, 241, 0.92)),
    #eef5f1;
  text-align: center;
}

.youtube-placeholder span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--white);
  background: var(--sage-dark);
  font-size: 12px;
  font-weight: 900;
}

.youtube-placeholder strong {
  display: block;
  font-size: 22px;
}

.youtube-placeholder p {
  max-width: 560px;
  margin: 10px auto 0;
  color: var(--muted);
}

.answer-list {
  display: grid;
  gap: 16px;
  max-width: 980px;
}

.answer-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 14px 36px rgba(45, 56, 54, 0.06);
}

.answer-list p {
  color: var(--muted);
}

.faq-list.mini {
  max-width: none;
}
