:root {
  --terracotta: #653333;
  --off-white: #fffcfa;
  --rose: #b88989;
  --rose-soft: #efe4e1;
  --paper: #fff8f4;
  --warm-gray: #756763;
  --ink: #382826;
  --line: rgba(101, 51, 51, 0.16);
  --glass: rgba(255, 252, 250, 0.72);
  --shadow: 0 22px 58px rgba(62, 35, 32, 0.10);
  --shadow-hover: 0 26px 70px rgba(62, 35, 32, 0.16);
  --ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-pill: 999px;
  --container: 1180px;
  --catalog-card-width: 200px;
  --catalog-card-image-height: 140px;
  --catalog-card-height: 240px;
  --catalog-card-title-size: 1.06rem;
  --catalog-card-price-size: 0.86rem;
  --serif: "Tan Pearl", "Cormorant Garamond", "Bodoni 72", Georgia, serif;
  --sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-logo: var(--serif);
  --font-menu: var(--sans);
  --font-heading: var(--serif);
  --font-subtitle: var(--sans);
  --font-body: var(--sans);
  --font-product-title: var(--serif);
  --font-product-description: var(--sans);
  --font-product-price: var(--sans);
  --font-category: var(--sans);
  --font-button: var(--sans);
  --button-primary-font: var(--font-button);
  --button-primary-font-size: var(--size-button);
  --button-primary-text-color: var(--off-white);
  --button-primary-font-weight: var(--weight-button);
  --button-primary-font-style: var(--style-button);
  --button-primary-background: #653333;
  --button-primary-border-color: #653333;
  --button-primary-border-width: 1px;
  --button-primary-border-radius: var(--radius-pill);
  --button-primary-padding-x: 24px;
  --button-primary-padding-y: 12px;
  --button-primary-letter-spacing: var(--letter-spacing-button);
  --button-primary-text-transform: var(--text-transform-button);
  --button-primary-hover-text-color: var(--off-white);
  --button-primary-hover-background: #502626;
  --button-primary-hover-border-color: #502626;
  --button-secondary-font: var(--font-button);
  --button-secondary-font-size: var(--size-button);
  --button-secondary-text-color: var(--terracotta);
  --button-secondary-font-weight: var(--weight-button);
  --button-secondary-font-style: var(--style-button);
  --button-secondary-background: rgba(255, 252, 250, 0.72);
  --button-secondary-border-color: rgba(101, 51, 51, 0.18);
  --button-secondary-border-width: 1px;
  --button-secondary-border-radius: var(--radius-pill);
  --button-secondary-padding-x: 16px;
  --button-secondary-padding-y: 10px;
  --button-secondary-letter-spacing: var(--letter-spacing-button);
  --button-secondary-text-transform: var(--text-transform-button);
  --button-secondary-hover-text-color: var(--terracotta);
  --button-secondary-hover-background: rgba(255, 252, 250, 0.96);
  --button-secondary-hover-border-color: rgba(101, 51, 51, 0.18);
  --size-logo: clamp(1.45rem, 7.6vw, 2.18rem);
  --size-menu: 0.9rem;
  --size-heading: clamp(2.4rem, 7vw, 5.6rem);
  --size-subtitle: 1rem;
  --size-body: 1rem;
  --size-product-title: var(--catalog-card-title-size);
  --size-product-description: 0.95rem;
  --size-product-price: var(--catalog-card-price-size);
  --size-category: 0.82rem;
  --size-button: 0.96rem;
  --color-logo: var(--terracotta);
  --color-menu: #6f5d59;
  --color-heading: #5b403d;
  --color-subtitle: var(--warm-gray);
  --color-body: var(--warm-gray);
  --color-product-title: var(--terracotta);
  --color-product-description: var(--warm-gray);
  --color-product-price: var(--terracotta);
  --color-category: var(--terracotta);
  --color-button-text: currentColor;
  --weight-logo: 400;
  --weight-menu: 400;
  --weight-heading: 400;
  --weight-subtitle: 400;
  --weight-body: 400;
  --weight-product-title: 400;
  --weight-product-description: 400;
  --weight-product-price: 500;
  --weight-category: 500;
  --weight-button: 500;
  --style-logo: normal;
  --style-menu: normal;
  --style-heading: normal;
  --style-subtitle: normal;
  --style-body: normal;
  --style-product-title: normal;
  --style-product-description: normal;
  --style-product-price: normal;
  --style-category: normal;
  --style-button: normal;
  --align-logo: left;
  --align-menu: center;
  --align-heading: left;
  --align-subtitle: left;
  --align-body: left;
  --align-product-title: left;
  --align-product-description: left;
  --align-product-price: left;
  --align-category: left;
  --align-button: center;
  --letter-spacing-heading: 0;
  --letter-spacing-subtitle: 0;
  --letter-spacing-body: 0;
  --letter-spacing-product-description: 0;
  --letter-spacing-button: 0;
  --line-height-heading: 1.02;
  --line-height-subtitle: 1.5;
  --line-height-body: 1.7;
  --line-height-product-description: 1.45;
  --line-height-button: 1.2;
  --text-transform-button: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(101, 51, 51, 0.11), transparent 25rem),
    linear-gradient(180deg, var(--off-white) 0%, #fff7f3 46%, var(--off-white) 100%);
  font-family: var(--sans);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(101, 51, 51, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(101, 51, 51, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.header-brand,
.header-brand span,
.footer-brand,
.footer-brand span {
  font-family: var(--font-logo);
  font-size: var(--size-logo);
  color: var(--color-logo);
  font-weight: var(--weight-logo);
  font-style: var(--style-logo);
  text-align: var(--align-logo);
}

.site-nav,
.site-nav a,
.menu-toggle,
.header-selected,
.category-shortcut {
  font-family: var(--font-menu);
  font-size: var(--size-menu);
  color: var(--color-menu);
  font-weight: var(--weight-menu);
  font-style: var(--style-menu);
  text-align: var(--align-menu);
}

h1,
h2,
.section-title,
.hero-copy h1,
.feature-banner h2,
.process-banner h2,
.about-copy h2,
.product-copy h2,
.showcase-title h2,
.section-header h2,
.footer-contact-kicker {
  font-family: var(--font-heading);
  font-size: var(--size-heading);
  color: var(--color-heading);
  font-weight: var(--weight-heading);
  font-style: var(--style-heading);
  text-align: var(--align-heading);
  letter-spacing: var(--letter-spacing-heading);
  line-height: var(--line-height-heading);
}

.eyebrow,
.section-kicker,
.hero-copy p:not(.eyebrow),
.feature-banner p,
.process-banner p,
.showcase-title p,
.category-page-text,
.catalog-summary {
  font-family: var(--font-subtitle);
  font-size: var(--size-subtitle);
  color: var(--color-subtitle);
  font-weight: var(--weight-subtitle);
  font-style: var(--style-subtitle);
  text-align: var(--align-subtitle);
  letter-spacing: var(--letter-spacing-subtitle);
  line-height: var(--line-height-subtitle);
}

p,
.quote-empty,
.about-copy p,
.contact p,
.site-footer p,
.footer-contact-content p,
.customization-box,
.field-hint {
  font-family: var(--font-body);
  font-size: var(--size-body);
  color: var(--color-body);
  font-weight: var(--weight-body);
  font-style: var(--style-body);
  text-align: var(--align-body);
  letter-spacing: var(--letter-spacing-body);
  line-height: var(--line-height-body);
}

.product-info h3,
.product-copy h2,
.quote-item h3 {
  font-family: var(--font-product-title);
  font-size: var(--size-product-title);
  color: var(--color-product-title);
  font-weight: var(--weight-product-title);
  font-style: var(--style-product-title);
  text-align: var(--align-product-title);
}

.product-info p:not(.price):not(.eyebrow),
.product-copy p,
.quote-item small {
  font-family: var(--font-product-description);
  font-size: var(--size-product-description);
  color: var(--color-product-description);
  font-weight: var(--weight-product-description);
  font-style: var(--style-product-description);
  text-align: var(--align-product-description);
  letter-spacing: var(--letter-spacing-product-description);
  line-height: var(--line-height-product-description);
}

.price,
.product-copy .price {
  font-family: var(--font-product-price);
  font-size: var(--size-product-price);
  color: var(--color-product-price);
  font-weight: var(--weight-product-price);
  font-style: var(--style-product-price);
  text-align: var(--align-product-price);
}

.product-info .eyebrow,
.showcase-card h3,
.showcase-card p,
.quote-count,
.catalog-summary {
  font-family: var(--font-category);
  font-size: var(--size-category);
  color: var(--color-category);
  font-weight: var(--weight-category);
  font-style: var(--style-category);
  text-align: var(--align-category);
}

.header-button,
.header-selected,
.category-shortcut,
.social-icon-link {
  font-family: var(--font-button);
  font-size: var(--size-button);
  color: var(--color-button-text);
  font-weight: var(--weight-button);
  font-style: var(--style-button);
  text-align: var(--align-button);
  letter-spacing: var(--letter-spacing-button);
  line-height: var(--line-height-button);
  text-transform: var(--text-transform-button);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

button,
input {
  font: inherit;
}

.header-brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  flex: 0 0 auto;
}

.glass {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), var(--shadow);
  backdrop-filter: blur(14px) saturate(118%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 252, 250, 0.94);
  border-bottom: 1px solid rgba(101, 51, 51, 0.12);
  backdrop-filter: blur(18px) saturate(120%);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
}

.brand {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 7.6vw, 2.18rem);
  line-height: 1;
  color: var(--terracotta);
  letter-spacing: 0;
}

.header-brand {
  white-space: nowrap;
}

.header-search {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  grid-column: 1 / -1;
  order: 3;
  justify-self: center;
}

.header-search input {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(101, 51, 51, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 252, 250, 0.9);
  color: var(--ink);
  padding: 0 48px 0 18px;
  outline: 0;
  box-shadow: 0 8px 22px rgba(62, 35, 32, 0.08);
}

.header-search input:focus {
  border-color: rgba(101, 51, 51, 0.44);
  box-shadow: 0 0 0 3px rgba(101, 51, 51, 0.08), 0 10px 28px rgba(62, 35, 32, 0.10);
}

.header-search button {
  position: absolute;
  right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--terracotta);
  cursor: pointer;
  line-height: 1;
}

.header-search button svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.header-button,
.header-selected {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid rgba(101, 51, 51, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 252, 250, 0.72);
  color: var(--terracotta);
  padding: 9px 15px;
  font-size: 0.9rem;
  line-height: 1;
  white-space: nowrap;
  transition: transform 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft), background 220ms var(--ease-soft);
}

.header-selected {
  position: relative;
  gap: 8px;
  background: rgba(101, 51, 51, 0.08);
}

.header-selected svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-button:hover,
.header-selected:hover,
.menu-toggle:hover,
.category-shortcut:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(62, 35, 32, 0.10);
  background: rgba(255, 252, 250, 0.96);
}

.header-selected strong {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: var(--radius-pill);
  background: var(--rose);
  color: var(--off-white);
  font-size: 0.74rem;
  line-height: 1;
}

.site-nav {
  position: absolute;
  inset: calc(100% - 1px) 12px auto 12px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 12px;
  border: 1px solid rgba(101, 51, 51, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 250, 0.96);
  box-shadow: var(--shadow);
  color: #6f5d59;
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav.open {
  display: flex;
}

.site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 8px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  color: var(--terracotta);
  border-color: rgba(101, 51, 51, 0.24);
  transform: translateX(2px);
}

.site-nav .mobile-menu-item {
  display: none;
}

.menu-toggle,
.category-shortcut,
.mobile-menu-toggle {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(101, 51, 51, 0.18);
  border-radius: var(--radius-pill);
  background: rgba(255, 252, 250, 0.7);
  color: var(--terracotta);
  padding: 8px 14px;
  cursor: pointer;
  white-space: nowrap;
}

.mobile-menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: auto;
  overflow: hidden;
  isolation: isolate;
}

.hero-track,
.hero-slide {
  position: relative;
  width: 100%;
}

.hero-slide {
  display: none;
  min-height: clamp(340px, 38vh, 430px);
  background: var(--paper);
}

.hero-slide.active {
  display: grid;
  align-items: center;
}

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 250, 0.78), rgba(255, 252, 250, 0.44) 48%, rgba(255, 252, 250, 0.18)),
    linear-gradient(90deg, rgba(255, 252, 250, 0.80), rgba(255, 252, 250, 0.24), rgba(255, 252, 250, 0.08));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(640px, calc(100% - 44px));
  margin-left: 22px;
  padding: 34px 0 48px;
  animation: revealUp 620ms var(--ease-soft) both;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--terracotta);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.45rem, 9vw, 5.25rem);
  line-height: 0.98;
  color: var(--terracotta);
}

h2 {
  color: var(--terracotta);
  font-size: clamp(1.95rem, 6.8vw, 3.85rem);
  line-height: 1.02;
}

h3 {
  color: var(--terracotta);
  font-size: clamp(1.55rem, 2.3vw, 2.25rem);
}

.hero-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 32px;
  color: #5f504c;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 252, 250, 0.9);
  color: var(--rose);
  cursor: pointer;
  font-size: 2.1rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease-soft), background 220ms var(--ease-soft), color 220ms var(--ease-soft);
}

.hero-arrow:hover {
  color: var(--terracotta);
  background: rgba(255, 252, 250, 0.98);
  transform: translateY(-50%) scale(1.04);
}

.hero-prev {
  left: 18px;
}

.hero-next {
  right: 18px;
}

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dots button {
  width: 9px;
  height: 9px;
  border: 1px solid rgba(101, 51, 51, 0.32);
  border-radius: 50%;
  background: rgba(255, 252, 250, 0.74);
  cursor: pointer;
  transition: width 220ms var(--ease-soft), background 220ms var(--ease-soft);
}

.hero-dots button.active {
  width: 28px;
  border-radius: 999px;
  background: var(--rose);
}

.site-button {
  max-width: 100%;
  text-align: center;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-secondary-border-radius);
  padding: var(--button-secondary-padding-y) var(--button-secondary-padding-x);
  color: var(--button-secondary-text-color);
  border: var(--button-secondary-border-width) solid var(--button-secondary-border-color);
  background: var(--button-secondary-background);
  font-family: var(--button-secondary-font);
  font-size: var(--button-secondary-font-size);
  font-weight: var(--button-secondary-font-weight);
  font-style: var(--button-secondary-font-style);
  letter-spacing: var(--button-secondary-letter-spacing);
  text-transform: var(--button-secondary-text-transform);
  cursor: pointer;
  transition: transform 220ms var(--ease-soft), background 220ms var(--ease-soft), color 220ms var(--ease-soft), border-color 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
}

.button:hover {
  transform: translateY(-2px);
  color: var(--button-secondary-hover-text-color);
  background: var(--button-secondary-hover-background);
  border-color: var(--button-secondary-hover-border-color);
  box-shadow: 0 16px 34px rgba(62, 35, 32, 0.12);
}

.button-primary {
  border-radius: var(--button-primary-border-radius);
  padding: var(--button-primary-padding-y) var(--button-primary-padding-x);
  color: var(--button-primary-text-color);
  background: var(--button-primary-background);
  border-color: var(--button-primary-border-color);
  border-width: var(--button-primary-border-width);
  font-family: var(--button-primary-font);
  font-size: var(--button-primary-font-size);
  font-weight: var(--button-primary-font-weight);
  font-style: var(--button-primary-font-style);
  letter-spacing: var(--button-primary-letter-spacing);
  text-transform: var(--button-primary-text-transform);
}

.button-primary:hover {
  color: var(--button-primary-hover-text-color);
  background: var(--button-primary-hover-background);
  border-color: var(--button-primary-hover-border-color);
}

.site-button:focus-visible {
  outline: 2px solid rgba(101, 51, 51, 0.42);
  outline-offset: 3px;
}

.rich-site-text p {
  margin: 0 0 0.72em;
}

.rich-site-text p:last-child {
  margin-bottom: 0;
}

.section {
  padding: clamp(34px, 6vw, 72px) clamp(16px, 4vw, 64px);
  scroll-margin-top: 132px;
}

.section > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(30px, 6vw, 88px);
  align-items: start;
}

.split p {
  margin: 0;
  color: var(--warm-gray);
  font-size: 1.04rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 14px;
}

.about-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--warm-gray);
  font-size: 1.04rem;
}

.about-carousel {
  position: relative;
  overflow: hidden;
  min-height: clamp(280px, 42vw, 420px);
  border-radius: var(--radius-md);
  background: rgba(255, 252, 250, 0.52);
}

.about-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 700ms ease;
}

.about-slide.active {
  opacity: 1;
}

.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.about-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 252, 250, 0.7);
  border: 1px solid rgba(156, 89, 89, 0.24);
  transition: width 250ms ease, background 250ms ease;
}

.about-dot.active {
  width: 22px;
  background: rgba(156, 89, 89, 0.74);
}

.process {
  background: rgba(255, 252, 250, 0.58);
}

.product-copy p,
.quote-empty,
.contact p {
  color: var(--warm-gray);
}

.section-header {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: start;
  flex-direction: column;
}

.category-showcases {
  background: rgba(255, 252, 250, 0.38);
  padding-top: clamp(26px, 4vw, 46px);
  padding-bottom: clamp(32px, 5vw, 64px);
}

.category-strip {
  padding-top: clamp(24px, 4vw, 44px);
  padding-bottom: clamp(18px, 3vw, 34px);
  background: rgba(255, 252, 250, 0.76);
  scroll-margin-top: 152px;
}

.category-strip-heading {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.category-strip-heading h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
}

.category-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 18px);
}

.category-tile {
  position: relative;
  min-height: clamp(124px, 22vw, 190px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-radius: 10px;
  padding: 16px;
  color: var(--off-white);
  isolation: isolate;
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.category-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(68, 52, 50, 0.04), rgba(61, 35, 33, 0.68));
}

.category-tile span {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 5vw, 2.6rem);
  line-height: 1;
}

.featured-products {
  padding-top: clamp(22px, 4vw, 48px);
  padding-bottom: clamp(24px, 4vw, 52px);
  background: rgba(255, 248, 244, 0.66);
}

.compact-heading h2 {
  font-size: clamp(1.9rem, 4.2vw, 3.25rem);
}

.featured-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--catalog-card-width);
  grid-template-columns: none !important;
  align-items: start;
  gap: clamp(10px, 1.3vw, 16px);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  padding: 4px 2px 14px;
  margin-top: clamp(18px, 3vw, 30px);
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(101, 51, 51, 0.26) transparent;
}

.featured-grid.product-grid {
  grid-template-columns: none !important;
}

.featured-grid .product-card {
  scroll-snap-align: start;
}

.process-banner-section {
  background: rgba(255, 252, 250, 0.64);
  padding-top: clamp(20px, 3.2vw, 40px);
  padding-bottom: clamp(22px, 3.6vw, 46px);
}

.process-banner {
  position: relative;
  display: grid;
  overflow: hidden;
  border-radius: 14px;
  min-height: clamp(280px, 32vw, 390px);
  isolation: isolate;
}

.process-banner > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 252, 250, 0.94), rgba(255, 252, 250, 0.74), rgba(255, 252, 250, 0.28)),
    linear-gradient(180deg, rgba(255, 252, 250, 0.22), rgba(101, 51, 51, 0.10));
}

.process-banner-copy {
  width: min(610px, 100%);
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 44px);
}

.process-banner-copy h2 {
  font-size: clamp(1.85rem, 4vw, 3.25rem);
}

.process-banner-copy p {
  margin: 0;
  color: var(--warm-gray);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 14px;
  margin: 2px 0 6px;
  padding: 0;
  counter-reset: process;
  list-style: none;
}

.process-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--terracotta);
}

.process-steps li::before {
  counter-increment: process;
  content: counter(process);
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 999px;
  background: rgba(101, 51, 51, 0.92);
  color: var(--off-white);
  font-size: 0.85rem;
}

.feature-banners {
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(22px, 4vw, 46px);
  background: rgba(255, 252, 250, 0.56);
}

.feature-banner-grid {
  display: grid;
  gap: clamp(16px, 2.6vw, 28px);
}

.feature-banner {
  position: relative;
  min-height: clamp(260px, 34vw, 420px);
  display: grid;
  align-content: end;
  overflow: hidden;
  border-radius: 16px;
  padding: clamp(22px, 4vw, 44px);
  color: var(--off-white);
  isolation: isolate;
  transition: transform 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft);
}

.feature-banner:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(44, 28, 26, 0.10), rgba(44, 28, 26, 0.72));
}

.feature-banner .section-kicker,
.feature-banner h2,
.feature-banner p {
  color: inherit;
}

.feature-banner h2 {
  max-width: 620px;
  font-size: clamp(2rem, 6vw, 4.4rem);
}

.feature-banner p {
  max-width: 460px;
  margin: 12px 0 18px;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.compact-about {
  padding-top: clamp(28px, 5vw, 58px);
  padding-bottom: clamp(30px, 5vw, 64px);
}

.about-page {
  background: rgba(255, 252, 250, 0.64);
}

.about-page[hidden] {
  display: none;
}

.about-page-hero,
.about-editorial-grid {
  display: grid;
  gap: clamp(22px, 4vw, 52px);
}

.about-page-hero {
  grid-template-columns: 1fr;
  align-items: center;
}

.about-page-hero p:not(.section-kicker),
.about-editorial-card p,
.about-founder-card p {
  color: var(--warm-gray);
  line-height: 1.75;
}

.about-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-page-image,
.about-founder-card {
  overflow: hidden;
  border-radius: 16px;
}

.about-page-image {
  margin: 0;
  min-height: clamp(300px, 48vw, 560px);
}

.about-page-image img,
.about-founder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-editorial-grid {
  margin-top: clamp(28px, 5vw, 64px);
}

.about-editorial-card {
  padding: clamp(22px, 4vw, 42px);
}

.about-founder-card {
  display: grid;
  gap: 0;
  padding: 0;
  align-items: stretch;
}

.about-founder-card img {
  display: block;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  object-position: center 18%;
  border-radius: 16px 16px 0 0;
}

.about-founder-content {
  position: relative;
  z-index: 1;
  padding: clamp(24px, 6vw, 38px);
  background: rgba(255, 252, 250, 0.9);
}

.about-founder-content .section-kicker {
  margin-top: 0;
}

.about-founder-content .rich-site-text,
.about-founder-content .rich-site-text p:last-child {
  margin-bottom: 0;
}

.process,
.quote,
.contact {
  padding-top: clamp(28px, 5vw, 58px);
  padding-bottom: clamp(30px, 5vw, 60px);
}

.contact {
  padding-top: clamp(18px, 3.2vw, 38px);
  padding-bottom: clamp(20px, 3.4vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 252, 250, 0.96), rgba(255, 248, 244, 0.78)),
    radial-gradient(circle at 88% 26%, rgba(184, 137, 137, 0.15), transparent 30%);
}

.showcase-stack {
  display: grid;
  gap: clamp(18px, 3vw, 34px);
  margin-top: 0;
}

.category-showcase {
  display: grid;
  gap: 10px;
}

.showcase-title {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  flex-direction: column;
}

.showcase-title p:not(.section-kicker) {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--warm-gray);
}

.product-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--catalog-card-width);
  align-items: start;
  gap: clamp(10px, 1.3vw, 16px);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 6px 4px 16px;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(101, 51, 51, 0.26) transparent;
}

.product-rail .product-card {
  scroll-snap-align: start;
}

.featured-grid .product-card,
.product-rail .product-card {
  align-self: start;
  width: var(--catalog-card-width);
  min-height: var(--catalog-card-height);
  grid-template-rows: var(--catalog-card-image-height) 1fr;
}

.featured-grid .product-media,
.product-rail .product-media {
  height: var(--catalog-card-image-height);
  min-height: 0;
  aspect-ratio: auto;
}

.category-page-text {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--warm-gray);
}

.category-page,
.product-page,
.about-page {
  scroll-margin-top: 132px;
}

.catalog-summary {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: clamp(10px, 1.35vw, 16px);
  margin-top: 12px;
}

.product-card {
  display: grid;
  align-content: start;
  overflow: hidden;
  gap: 0;
  border: 1px solid rgba(101, 51, 51, 0.12);
  border-radius: 12px;
  background: rgba(255, 252, 250, 0.70);
  box-shadow: 0 12px 30px rgba(62, 35, 32, 0.07);
  transition: transform 260ms var(--ease-soft), border-color 260ms var(--ease-soft), box-shadow 260ms var(--ease-soft);
  animation: revealUp 520ms var(--ease-soft) both;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(101, 51, 51, 0.24);
  box-shadow: var(--shadow-hover);
}

.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 252, 250, 0.54);
  border: 0;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-soft), filter 520ms var(--ease-soft);
}

.product-media-contain {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255, 252, 250, 0.92), rgba(184, 137, 137, 0.14));
}

.product-media-contain img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
  filter: saturate(0.98) contrast(1.03);
}

.product-card:hover .product-media-contain img {
  transform: scale(1.02);
}

.back-to-catalog {
  margin: 0 auto 18px;
}

.product-info {
  display: grid;
  gap: 4px;
  padding: 10px 12px 12px;
}

.product-info h3 {
  min-height: auto;
  margin: 0;
  font-size: var(--size-product-title);
  line-height: 1.08;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.product-info h3 a {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  transition: color 180ms var(--ease-soft);
}

.product-info h3 a:hover {
  color: var(--terracotta);
}

.price {
  color: var(--terracotta);
  font-weight: 600;
  font-size: var(--size-product-price);
  line-height: 1.35;
}

.soft-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--button-secondary-border-radius);
  border: var(--button-secondary-border-width) solid var(--button-secondary-border-color);
  color: var(--button-secondary-text-color);
  background: var(--button-secondary-background);
  padding: var(--button-secondary-padding-y) var(--button-secondary-padding-x);
  font-family: var(--button-secondary-font);
  font-size: var(--button-secondary-font-size);
  font-weight: var(--button-secondary-font-weight);
  font-style: var(--button-secondary-font-style);
  letter-spacing: var(--button-secondary-letter-spacing);
  text-transform: var(--button-secondary-text-transform);
  cursor: pointer;
  transition: transform 220ms var(--ease-soft), background 220ms var(--ease-soft), color 220ms var(--ease-soft), border-color 220ms var(--ease-soft), box-shadow 220ms var(--ease-soft);
}

.soft-button:hover {
  transform: translateY(-2px);
  color: var(--button-secondary-hover-text-color);
  background: var(--button-secondary-hover-background);
  border-color: var(--button-secondary-hover-border-color);
  box-shadow: 0 12px 26px rgba(62, 35, 32, 0.10);
}

.product-page[hidden] {
  display: none;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 0.46fr;
  gap: 16px;
  align-self: start;
  min-width: 0;
}

.gallery-trigger {
  display: block;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: zoom-in;
}

.product-gallery img,
.gallery-trigger img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(156, 89, 89, 0.12);
}

.gallery-trigger:first-child {
  grid-row: span 2;
}

.gallery-trigger:first-child img {
  height: 100%;
  object-fit: cover;
}

.product-copy {
  position: sticky;
  top: 118px;
}

.product-copy h2 {
  margin-bottom: 18px;
}

.product-copy .price {
  margin-bottom: 18px;
  font-size: var(--size-product-price);
}

.product-copy p {
  margin: 0 0 18px;
}

.product-description-rich {
  margin: 0 0 8px;
}

.product-description-rich p {
  margin: 0 0 0.48em;
}

.product-description-rich p:last-child {
  margin-bottom: 0;
}

.product-description-rich,
.product-description-rich p,
.product-value-note,
.about-copy p,
.category-page-text,
.feature-banner p,
.process-banner p,
.footer-contact-content p,
.customization-box p {
  text-align: justify !important;
  text-justify: inter-word;
}

.product-value-note {
  margin-top: 4px !important;
  margin-bottom: 16px !important;
}

.detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.detail-actions .site-button {
  width: auto;
  min-width: 184px;
  min-height: 44px;
  padding: 9px 20px;
  white-space: nowrap;
  font-size: 0.92rem;
}

.quantity-field {
  display: grid;
  gap: 6px;
  color: var(--terracotta);
  font-size: 0.84rem;
  font-weight: 600;
}

.quantity-field input {
  width: 96px;
  min-height: 42px;
  border: 1px solid rgba(156, 89, 89, 0.18);
  border-radius: 8px;
  background: rgba(255, 252, 250, 0.74);
  color: var(--ink);
  padding: 8px 10px;
}

.product-quantity {
  margin: 16px 0 0;
}

.customization-box {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  border-radius: 8px;
  padding: 18px;
}

.customization-box h3 {
  font-size: 1.45rem;
}

.customization-box textarea {
  width: 100%;
  min-height: 132px;
  resize: vertical;
  border: 1px solid rgba(156, 89, 89, 0.16);
  border-radius: 8px;
  background: rgba(255, 252, 250, 0.74);
  color: var(--ink);
  padding: 14px;
  outline: 0;
}

.quote-panel {
  margin-top: 28px;
  border-radius: 8px;
  padding: clamp(22px, 3vw, 34px);
}

.quote-count {
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--terracotta);
}

.quote .section-header {
  align-items: flex-start;
  flex-direction: row;
}

.quote .section-kicker {
  margin-bottom: 16px;
}

.quote .section-header h2 {
  text-transform: uppercase;
}

.quote-panel {
  min-height: clamp(280px, 34vw, 440px);
  display: grid;
  align-content: center;
  border: 1px solid rgba(101, 51, 51, 0.06);
  background:
    linear-gradient(135deg, rgba(255, 252, 250, 0.96), rgba(255, 248, 244, 0.78)),
    radial-gradient(circle at 50% 36%, rgba(184, 137, 137, 0.10), transparent 34%);
  box-shadow: 0 28px 70px rgba(101, 51, 51, 0.10);
}

.quote-count {
  display: inline-flex;
  min-width: 86px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 252, 250, 0.84);
  box-shadow: 0 14px 34px rgba(101, 51, 51, 0.08);
  font-weight: 600;
  text-transform: uppercase;
}

.quote-count::before {
  content: "▢";
  font-size: 0.85em;
  color: currentColor;
}

.quote-empty {
  width: min(640px, 100%);
  justify-self: center;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: var(--terracotta);
  text-align: center;
}

.quote-empty-icon {
  width: 116px;
  color: rgba(101, 51, 51, 0.76);
}

.quote-empty-icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.quote-empty h3 {
  font-family: var(--font-title);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.1;
  color: var(--terracotta);
}

.quote-empty p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.5;
}

.quote-empty-actions {
  width: min(310px, 100%);
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.quote-empty-actions .site-button,
.quote-empty-actions .soft-button {
  width: 100%;
  min-height: 48px;
  justify-content: center;
}

.quote-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.quote-actions[hidden] {
  display: none !important;
}

.quote-actions .site-button {
  min-width: min(280px, 100%);
}

.quote-empty-alert {
  min-height: 1.4em;
  color: var(--terracotta) !important;
  font-size: 0.92rem !important;
}

.quote-empty-alert[hidden] {
  display: none;
}

.quote-empty[hidden],
.quote-whatsapp[hidden],
.quote-list[hidden] {
  display: none !important;
}

.quote-list {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.quote-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(156, 89, 89, 0.12);
}

.quote-thumb {
  width: 82px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(255, 252, 250, 0.62);
}

.quote-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-item-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
}

.quote-item-main > div {
  display: grid;
  gap: 3px;
}

.quote-item-main em {
  color: var(--warm-gray);
  font-style: normal;
}

.quote-item small {
  color: var(--warm-gray);
}

.remove-button {
  border: 0;
  background: transparent;
  color: var(--terracotta);
  cursor: pointer;
  border-bottom: 1px solid rgba(156, 89, 89, 0.25);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.contact-actions .external-button {
  width: auto;
  min-width: 118px;
  max-width: max-content;
  flex: 0 0 auto;
  padding-inline: 22px;
}

.contact .split {
  position: relative;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  align-items: stretch;
  gap: 0;
  max-width: 980px;
  border: 1px solid rgba(101, 51, 51, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 250, 0.70);
  box-shadow: 0 18px 44px rgba(62, 35, 32, 0.07);
  overflow: hidden;
}

.contact .split::before {
  content: "";
  position: absolute;
  inset: 14px auto 14px 42%;
  width: 1px;
  background: linear-gradient(transparent, rgba(101, 51, 51, 0.20), transparent);
}

.contact .split::after {
  content: "Atendimento personalizado";
  position: absolute;
  right: 22px;
  top: 18px;
  color: rgba(101, 51, 51, 0.56);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact h2 {
  display: flex;
  align-items: center;
  max-width: none;
  margin: 0;
  padding: clamp(22px, 3.4vw, 36px);
  background: rgba(101, 51, 51, 0.055);
  font-size: clamp(2rem, 3.55vw, 3rem) !important;
  line-height: 0.98 !important;
}

.contact .split > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: none;
  padding: clamp(30px, 3.4vw, 44px) clamp(24px, 3.6vw, 40px);
}

.contact p {
  max-width: 500px;
  line-height: 1.62;
}

.external-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(156, 89, 89, 0.18);
  transition: transform 180ms ease, opacity 180ms ease;
}

.external-button:hover {
  transform: translateY(-1px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(35, 27, 26, 0.74);
  backdrop-filter: blur(12px);
}

.lightbox img {
  max-width: min(1120px, 100%);
  max-height: 86vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 252, 250, 0.82);
  color: var(--terracotta);
  padding: 9px 16px;
  cursor: pointer;
}

.site-footer {
  padding: clamp(34px, 6vw, 62px) clamp(18px, 4vw, 64px);
  background: linear-gradient(180deg, rgba(255, 252, 250, 0.98), rgba(251, 244, 241, 0.92));
  text-align: left;
}

.footer-contact-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1fr);
  width: min(100%, 1180px);
  max-width: 1180px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(101, 51, 51, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 250, 0.86);
  box-shadow: 0 18px 44px rgba(62, 35, 32, 0.07);
}

.footer-contact-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(24px, 3.4vw, 36px);
  background: rgba(101, 51, 51, 0.06);
}

.footer-contact-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: clamp(30px, 3.4vw, 44px) clamp(24px, 3.6vw, 40px);
  border-left: 1px solid rgba(101, 51, 51, 0.12);
}

.footer-brand {
  display: inline-flex;
  flex-direction: row;
  width: fit-content;
  margin-bottom: 0;
}

.footer-brand .brand-logo {
  width: 48px;
  height: 48px;
}

.site-footer p {
  max-width: 540px;
  margin: 0;
  color: #6f5d59;
  line-height: 1.62;
}

.footer-contact-kicker {
  color: rgba(101, 51, 51, 0.62);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.footer-contact-actions {
  margin-top: 2px;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 1px solid rgba(255, 252, 250, 0.72);
  border-radius: 999px;
  background: #653333;
  color: var(--off-white);
  box-shadow: 0 10px 22px rgba(62, 35, 32, 0.10);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social-icon-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(62, 35, 32, 0.14);
}

.social-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.social-icon-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-menu-toggle {
  display: none;
  min-width: 54px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(101, 51, 51, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 250, 0.72);
  color: var(--terracotta);
  padding: 8px 14px;
  cursor: pointer;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}

@media (max-width: 920px) {
  .header-main {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-search {
    grid-column: 1 / -1;
    order: 3;
    width: 100%;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu-toggle {
    display: inline-flex;
    min-width: 72px;
    justify-content: center;
  }

  .category-shortcut {
    display: none;
  }

  .header-button {
    display: none;
  }

  .site-nav {
    position: absolute;
    inset: calc(100% - 1px) 12px auto 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border-radius: 8px;
    background: rgba(255, 252, 250, 0.92);
    border: 1px solid rgba(156, 89, 89, 0.12);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav .desktop-menu-item {
    display: none;
  }

  .site-nav .mobile-menu-item {
    display: flex;
  }

  .hero-slide {
    min-height: 330px;
  }

  .hero-copy {
    width: min(560px, calc(100% - 56px));
    margin-left: 28px;
  }

  .split,
  .about-layout,
  .product-detail,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .about-carousel {
    min-height: 340px;
  }

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

  .showcase-title {
    align-items: start;
    flex-direction: column;
  }

  .section-header {
    align-items: start;
    flex-direction: column;
  }

  .catalog-summary {
    justify-content: flex-start;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .header-main {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 14px;
  }

  .header-brand {
    min-width: 0;
    max-width: 52vw;
    gap: 8px;
    overflow: hidden;
  }

  .header-brand span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .header-actions {
    gap: 7px;
    min-width: 0;
  }

  .header-button {
    display: none;
  }

  .header-selected {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .category-shortcut {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.8rem !important;
  }

  .header-selected span {
    display: none;
  }

  .header-search input {
    min-height: 46px;
    padding-left: 18px;
  }

  .hero-slide {
    min-height: clamp(240px, 62vw, 310px);
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-slide::after {
    background: linear-gradient(90deg, rgba(255, 252, 250, 0.82), rgba(255, 252, 250, 0.46));
  }

  .hero-copy {
    width: calc(100% - 40px);
    margin-inline: 20px;
    padding: 26px 0 54px;
  }

  .hero-copy p:not(.eyebrow) {
    margin: 18px 0 24px;
  }

  .hero-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.6rem;
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .hero-prev {
    left: 18px;
  }

  .hero-next {
    right: 18px;
  }

  .hero-dots {
    bottom: 28px;
  }

  .about-carousel {
    min-height: 300px;
  }

  .product-gallery {
    grid-template-columns: minmax(0, 1fr) minmax(86px, 0.46fr);
    gap: 8px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .category-strip-grid {
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 72vw);
    grid-template-columns: none;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 2px 2px 12px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(101, 51, 51, 0.22) transparent;
  }

  .category-tile {
    scroll-snap-align: start;
    min-height: 132px;
  }

  .featured-grid {
    grid-auto-columns: min(var(--catalog-card-width), 72vw);
    grid-template-columns: none !important;
    gap: 10px;
  }

  .process-banner {
    min-height: auto;
  }

  .process-banner::after {
    background: linear-gradient(180deg, rgba(255, 252, 250, 0.96), rgba(255, 252, 250, 0.78), rgba(255, 252, 250, 0.42));
  }

  .process-banner-copy {
    padding: 20px;
  }

  .product-rail {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: min(var(--catalog-card-width), 72vw);
    overflow-x: auto;
    padding: 4px 2px 14px;
    scroll-snap-type: inline mandatory;
    scroll-padding-left: 0;
    scrollbar-width: thin;
  }

  .feature-banner {
    min-height: 300px;
    padding: 22px;
  }

  .section,
  .product-page,
  .about-page,
  .category-page {
    padding-inline: 18px;
    scroll-margin-top: 150px;
  }

  .section-header,
  .showcase-title {
    gap: 12px;
  }

  .product-card {
    border-radius: 12px;
  }

  .product-media {
    aspect-ratio: 5 / 4;
  }

  .product-info {
    padding: 8px 9px 10px;
  }

  .product-info h3 {
    font-size: min(var(--size-product-title), 1.42rem);
    line-height: 1.08 !important;
  }

  .price {
    font-size: var(--size-product-price);
  }

  .product-description-rich {
    margin-bottom: 6px;
  }

  .product-description-rich p {
    margin-bottom: 0.38em;
  }

  .product-value-note {
    margin-top: 2px !important;
    margin-bottom: 14px !important;
  }

  .product-copy .product-description-rich {
    margin-bottom: 3px !important;
  }

  .product-copy .product-description-rich p {
    margin-bottom: 0.16em !important;
    line-height: 1.28 !important;
  }

  .product-copy .product-value-note {
    margin-top: 2px !important;
    margin-bottom: 12px !important;
    line-height: 1.3 !important;
  }

  .gallery-trigger:first-child {
    grid-row: span 2;
  }

  .catalog-summary,
  .detail-actions,
  .contact-actions {
    width: 100%;
  }

  .button,
  .soft-button {
    flex: 1 1 auto;
  }

  .quote-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quote-thumb {
    width: 100%;
    max-width: 150px;
  }

  .quote-item-main {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .quantity-field input {
    width: 100%;
  }

  .contact {
    padding-inline: 16px;
  }

  .contact .section-kicker {
    max-width: 960px;
    margin-inline: auto;
  }

  .contact .split {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .contact .split::before,
  .contact .split::after {
    display: none;
  }

  .contact h2 {
    padding: 24px 20px 4px;
    background: transparent;
    font-size: clamp(2rem, 11vw, 3rem) !important;
  }

  .contact .split > div:last-child {
    padding: 12px 20px 22px;
  }

  .contact-actions {
    margin-top: 16px;
    justify-content: flex-start;
  }

  .contact-actions .external-button {
    width: auto;
    min-width: 112px;
    flex: 0 0 auto;
  }

  .site-footer {
    padding: 30px 16px 34px;
    text-align: center;
  }

  .footer-contact-card {
    grid-template-columns: 1fr;
    max-width: 460px;
    border-radius: 16px;
  }

  .footer-contact-brand {
    align-items: center;
    gap: 10px;
    padding: 24px 20px 18px;
  }

  .footer-contact-content {
    align-items: center;
    padding: 22px 20px 26px;
    border-left: 0;
    border-top: 1px solid rgba(101, 51, 51, 0.12);
  }

  .footer-brand {
    gap: 10px;
    margin-bottom: 0;
  }

  .footer-brand .brand-logo {
    width: 34px;
    height: 34px;
  }

  .footer-brand span {
    font-size: clamp(1.28rem, 7vw, 1.7rem) !important;
    line-height: 1;
  }

  .site-footer p {
    max-width: 340px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .footer-contact-actions {
    justify-content: center;
    width: auto;
    margin-top: 4px;
  }

  .social-icon-link {
    width: 40px;
    height: 40px;
  }

  .footer-menu-toggle {
    display: none;
  }

  .site-footer nav {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin-top: 4px;
    padding: 14px;
    border: 1px solid rgba(101, 51, 51, 0.10);
    border-radius: 14px;
    background: rgba(255, 252, 250, 0.58);
    font-size: 0.88rem;
  }

  .site-footer nav a {
    width: fit-content;
  }
}

@media (max-width: 420px) {
  .header-main {
    padding-inline: 12px;
  }

  .header-brand {
    max-width: 48vw;
  }

  .brand-logo {
    width: 30px;
    height: 30px;
  }

  .menu-toggle,
  .category-shortcut,
  .mobile-menu-toggle,
  .header-selected {
    min-width: 38px;
    min-height: 38px;
    padding: 8px;
  }

  .header-search input {
    font-size: 0.92rem;
  }

  .hero-copy {
    width: calc(100% - 32px);
    margin-inline: 16px;
  }

  .button,
  .soft-button,
  .external-button {
    width: 100%;
    justify-content: center;
  }

  .detail-actions {
    width: 100%;
    align-items: stretch;
  }

  .contact-actions .external-button {
    width: auto;
    min-width: 108px;
  }

  .site-footer {
    padding-inline: 16px;
  }

  .footer-brand .brand-logo {
    width: 32px;
    height: 32px;
  }

  .site-footer nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 720px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .featured-grid.product-grid {
    grid-template-columns: none !important;
  }

  .product-rail {
    grid-auto-columns: var(--catalog-card-width);
  }

  .category-strip-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

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

  .section-header,
  .showcase-title {
    align-items: end;
    flex-direction: row;
  }

  .site-footer {
    grid-template-columns: minmax(240px, 0.8fr) minmax(280px, 1fr);
  }

  .feature-banner-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  }

  .about-page-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.75fr);
  }

  .about-founder-card {
    grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1fr);
  }

  .about-founder-card img {
    height: 100%;
    min-height: 360px;
    aspect-ratio: auto;
    border-radius: 16px 0 0 16px;
  }

  .about-founder-content {
    display: grid;
    align-content: center;
    padding: clamp(28px, 4vw, 48px);
  }
}

@media (min-width: 940px) {
  .header-main {
    grid-template-columns: auto minmax(280px, 1fr) auto;
    gap: clamp(18px, 3vw, 36px);
    padding: 12px clamp(24px, 4vw, 48px);
  }

  .header-search {
    grid-column: auto;
    order: initial;
    width: min(560px, 100%);
  }

  .menu-toggle {
    display: none;
  }

  .header-button {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    display: flex;
    min-height: 54px;
    flex-direction: row;
    align-items: center;
    gap: clamp(22px, 3vw, 44px);
    padding: 0 clamp(24px, 4vw, 48px);
    border-width: 1px 0 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .site-nav a {
    min-height: 54px;
    padding: 10px 0;
  }

  .site-nav a:hover {
    transform: translateY(-1px);
  }

  .site-nav .mobile-menu-item {
    display: none;
  }

  .hero-slide {
    min-height: clamp(340px, 30vw, 430px);
  }

  .hero-copy {
    width: min(680px, calc(100% - 96px));
    margin-left: clamp(48px, 9vw, 132px);
    padding: clamp(42px, 5vw, 68px) 0;
  }

  .hero-slide::after {
    background: linear-gradient(90deg, rgba(255, 252, 250, 0.82), rgba(255, 252, 250, 0.36), rgba(255, 252, 250, 0.08));
  }

  .split {
    grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.74fr);
  }

  .about-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.82fr);
  }

  .about-carousel {
    min-height: 380px;
  }

  .product-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .featured-grid.product-grid {
    grid-template-columns: none !important;
  }

  .product-rail {
    grid-auto-columns: var(--catalog-card-width);
  }

  .product-detail {
    grid-template-columns: minmax(520px, 1.18fr) minmax(320px, 0.72fr);
    gap: clamp(34px, 4.5vw, 68px);
  }

.product-gallery {
  width: 100%;
  max-width: none;
}
}

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

.header-brand,
.header-brand span,
.footer-brand,
.footer-brand span {
  font-family: var(--font-logo) !important;
  font-size: var(--size-logo) !important;
  color: var(--color-logo) !important;
  font-weight: var(--weight-logo) !important;
  font-style: var(--style-logo) !important;
  text-align: var(--align-logo) !important;
}

.site-nav a,
.menu-toggle,
.mobile-menu-toggle,
.header-selected,
.category-shortcut {
  font-family: var(--font-menu) !important;
  font-size: var(--size-menu) !important;
  color: var(--color-menu) !important;
  font-weight: var(--weight-menu) !important;
  font-style: var(--style-menu) !important;
  text-align: var(--align-menu) !important;
}

h1,
h2,
.hero-copy h1,
.feature-banner h2,
.process-banner h2,
.showcase-title h2,
.section-header h2,
.footer-contact-kicker {
  font-family: var(--font-heading) !important;
  font-size: var(--size-heading) !important;
  color: var(--color-heading) !important;
  font-weight: var(--weight-heading) !important;
  font-style: var(--style-heading) !important;
  text-align: var(--align-heading) !important;
  letter-spacing: var(--letter-spacing-heading) !important;
  line-height: var(--line-height-heading) !important;
}

.eyebrow,
.section-kicker,
.hero-copy p:not(.eyebrow),
.feature-banner p,
.process-banner p,
.showcase-title p,
.catalog-summary {
  font-family: var(--font-subtitle) !important;
  font-size: var(--size-subtitle) !important;
  color: var(--color-subtitle) !important;
  font-weight: var(--weight-subtitle) !important;
  font-style: var(--style-subtitle) !important;
  text-align: var(--align-subtitle) !important;
  letter-spacing: var(--letter-spacing-subtitle) !important;
  line-height: var(--line-height-subtitle) !important;
}

p,
.quote-empty,
.about-copy p,
.site-footer p,
.footer-contact-content p,
.category-page-text {
  font-family: var(--font-body) !important;
  font-size: var(--size-body) !important;
  color: var(--color-body) !important;
  font-weight: var(--weight-body) !important;
  font-style: var(--style-body) !important;
  text-align: var(--align-body) !important;
  letter-spacing: var(--letter-spacing-body) !important;
  line-height: var(--line-height-body) !important;
}

.product-info h3,
.product-copy h2,
.quote-item h3 {
  font-family: var(--font-product-title) !important;
  font-size: var(--size-product-title) !important;
  color: var(--color-product-title) !important;
  font-weight: var(--weight-product-title) !important;
  font-style: var(--style-product-title) !important;
  text-align: var(--align-product-title) !important;
}

.product-info h3 {
  line-height: 1.08 !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.product-info h3 a {
  display: block;
  max-width: 100%;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.product-info p:not(.price):not(.eyebrow),
.product-copy p,
.quote-item small {
  font-family: var(--font-product-description) !important;
  font-size: var(--size-product-description) !important;
  color: var(--color-product-description) !important;
  font-weight: var(--weight-product-description) !important;
  font-style: var(--style-product-description) !important;
  text-align: var(--align-product-description) !important;
  letter-spacing: var(--letter-spacing-product-description) !important;
  line-height: var(--line-height-product-description) !important;
}

.product-copy .product-description-rich,
.product-copy .product-description-rich p,
.product-copy .product-value-note,
.about-copy p,
.category-page-text,
.feature-banner p,
.process-banner p,
.footer-contact-content p {
  text-align: justify !important;
  text-justify: inter-word;
  hyphens: auto;
}

/*
 * Preserve the rich editor's two spacing levels on product pages:
 * Enter creates a paragraph with a medium gap; Shift+Enter remains a
 * compact line break inside that paragraph.
 */
.product-copy .product-description-rich,
.product-copy .product-description-rich p {
  line-height: 1.55 !important;
}

.product-copy .product-description-rich p {
  margin: 0 0 0.8em !important;
}

.product-copy .product-description-rich p:last-child {
  margin-bottom: 0 !important;
}

.product-copy .product-description-rich p > strong:first-child > br:first-child,
.product-copy .product-description-rich p > b:first-child > br:first-child {
  display: none;
}

.product-copy .product-description-rich {
  margin-bottom: 4px !important;
}

.product-copy .product-value-note {
  margin-top: 0.8em !important;
  margin-bottom: 14px !important;
  line-height: 1.55 !important;
}

.price,
.product-copy .price {
  font-family: var(--font-product-price) !important;
  font-size: var(--size-product-price) !important;
  color: var(--color-product-price) !important;
  font-weight: var(--weight-product-price) !important;
  font-style: var(--style-product-price) !important;
  text-align: var(--align-product-price) !important;
}

.product-info .eyebrow,
.showcase-card h3,
.showcase-card p,
.quote-count,
.catalog-summary {
  font-family: var(--font-category) !important;
  font-size: var(--size-category) !important;
  color: var(--color-category) !important;
  font-weight: var(--weight-category) !important;
  font-style: var(--style-category) !important;
  text-align: var(--align-category) !important;
}

.header-button,
.header-selected,
.category-shortcut {
  font-family: var(--font-button) !important;
  font-size: var(--size-button) !important;
  color: var(--color-button-text) !important;
  font-weight: var(--weight-button) !important;
  font-style: var(--style-button) !important;
  text-align: var(--align-button) !important;
  letter-spacing: var(--letter-spacing-button) !important;
  line-height: var(--line-height-button) !important;
  text-transform: var(--text-transform-button) !important;
}

.header-actions .category-shortcut {
  color: var(--terracotta) !important;
  background: rgba(255, 252, 250, 0.82) !important;
  border-color: rgba(101, 51, 51, 0.2) !important;
}

.header-actions .category-shortcut:hover {
  color: var(--terracotta) !important;
  background: rgba(255, 252, 250, 0.98) !important;
  border-color: rgba(101, 51, 51, 0.3) !important;
}

.quote .quote-empty {
  text-align: center !important;
}

.quote .quote-empty h3 {
  font-family: var(--font-title) !important;
  color: var(--terracotta) !important;
  text-align: center !important;
}

.quote .quote-empty p {
  color: var(--ink) !important;
  text-align: center !important;
}

.quote .quote-empty .quote-empty-alert {
  color: var(--terracotta) !important;
}

.product-page .detail-actions {
  width: auto;
}

.product-page .detail-actions .site-button {
  flex: 0 0 auto;
  width: auto !important;
  max-width: 100%;
}

@media (max-width: 720px) {
  .quote {
    padding-inline: 14px;
  }

  .quote .section-header {
    gap: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .quote-panel {
    min-height: 0;
    margin-top: 18px;
    padding: 26px 16px;
  }

  .quote-empty-icon {
    width: 84px;
  }

  .quote-empty h3 {
    font-size: 1.45rem !important;
  }

  .quote-empty p {
    font-size: 0.96rem !important;
  }

  .quote-empty-actions {
    width: 100%;
  }

  .quote-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quote-actions .site-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .product-page .detail-actions {
    width: 100%;
  }

  .product-page .detail-actions .site-button {
    width: 100% !important;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
