:root {
  --paper: #fffaf4;
  --linen: #f5efe6;
  --porcelain: #fffffb;
  --rose: #b56b67;
  --rose-soft: #f1d9d4;
  --moss: #637965;
  --sage: #93a58b;
  --sky: #7faeb6;
  --gold: #c69a4b;
  --ink: #463b34;
  --muted: #786d64;
  --line: rgba(104, 82, 68, 0.18);
  --shadow: 0 20px 54px rgba(72, 54, 42, 0.12);
  --shadow-soft: 0 12px 34px rgba(72, 54, 42, 0.08);
  --photo-shadow: 0 28px 70px rgba(72, 54, 42, 0.16);
  --matte: rgba(255, 253, 249, 0.86);
  --radius: 8px;
  --header-height: 76px;
  --page-x: max(18px, calc((100vw - 1180px) / 2));
  --fiore-texture: url("assets/fiore-texture.svg");
  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(249, 245, 238, 0.94) 46%, rgba(250, 251, 246, 0.96)),
    var(--fiore-texture),
    repeating-linear-gradient(90deg, rgba(70, 59, 52, 0.018) 0 1px, transparent 1px 18px),
    repeating-linear-gradient(0deg, rgba(70, 59, 52, 0.014) 0 1px, transparent 1px 16px);
  background-size: auto, 960px 720px, auto, auto;
  background-position: center, center 96px, 0 0, 0 0;
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
}

body > * {
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--fiore-texture);
  background-size: 1320px 990px;
  background-position: right -420px top 180px;
  background-repeat: repeat;
  mix-blend-mode: multiply;
  opacity: 0.14;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-linear-gradient(0deg, rgba(70, 59, 52, 0.032) 0 1px, transparent 1px 7px),
    repeating-linear-gradient(90deg, rgba(70, 59, 52, 0.022) 0 1px, transparent 1px 9px);
  background-size: auto, auto;
  mix-blend-mode: multiply;
}

.touch-section,
.collection-section,
.home-section,
.detail-gallery,
.atelier-section,
.process-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.touch-section > *,
.collection-section > *,
.home-section > *,
.detail-gallery > *,
.atelier-section > *,
.process-section > * {
  position: relative;
  z-index: 1;
}

.touch-section::after,
.collection-section::after,
.home-section::after,
.detail-gallery::after,
.atelier-section::after,
.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--fiore-texture);
  background-size: 960px 720px;
  background-repeat: repeat;
  opacity: 0.1;
  mix-blend-mode: multiply;
}

.touch-section::after {
  background-position: -180px 34px;
  opacity: 0.12;
}

.collection-section::after {
  background-position: 120px 58px;
  opacity: 0.1;
}

.home-section::after {
  background-position: right 24px top 60px;
  opacity: 0.1;
}

.detail-gallery::after {
  background-position: right 120px top 42px;
  opacity: 0.1;
}

.atelier-section::after,
.process-section::after {
  background-position: 80px 42px;
  opacity: 0.09;
}


::selection {
  background: rgba(241, 217, 212, 0.9);
  color: var(--ink);
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  transition: min-height 280ms ease, background 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px var(--page-x);
  background: rgba(255, 250, 244, 0.9);
  border-bottom: 1px solid rgba(104, 82, 68, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  min-height: 62px;
  background: rgba(255, 250, 244, 0.97);
  box-shadow: 0 2px 28px rgba(72, 54, 42, 0.1);
  border-bottom-color: rgba(104, 82, 68, 0.2);
}

@keyframes wa-ring {
  0% { box-shadow: 0 0 0 0 rgba(181, 107, 103, 0.4); }
  70% { box-shadow: 0 0 0 10px rgba(181, 107, 103, 0); }
  100% { box-shadow: 0 0 0 0 rgba(181, 107, 103, 0); }
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 18;
  background: rgba(70, 59, 52, 0.34);
  backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 40;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(104, 82, 68, 0.2);
  background: rgba(255, 250, 244, 0.95);
  backdrop-filter: blur(14px);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 28px rgba(72, 54, 42, 0.14);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 280ms ease, transform 280ms ease, background 200ms ease, color 200ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--rose);
  color: var(--porcelain);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(181, 107, 103, 0.3);
}

.quote-section {
  padding: 96px var(--page-x);
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.98), rgba(249, 245, 238, 0.96));
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.quote-section::before,
.quote-section::after {
  content: "";
  display: block;
  width: 72px;
  margin: 0 auto;
  border-top: 1px dashed rgba(181, 107, 103, 0.38);
}

.quote-section::before {
  margin-bottom: 52px;
}

.quote-section::after {
  margin-top: 48px;
}

.site-quote {
  max-width: 820px;
  margin: 0 auto;
  padding: 0;
  border: 0;
  position: relative;
}

.site-quote::before {
  content: '\201C';
  display: block;
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.6;
  color: rgba(181, 107, 103, 0.15);
  margin-bottom: 28px;
  font-weight: 300;
  user-select: none;
}

.site-quote p {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.32;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: -0.01em;
}

.site-quote footer {
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(104, 82, 68, 0.18);
  background: var(--paper);
  box-shadow: 0 8px 22px rgba(72, 54, 42, 0.1);
}

.brand-wordmark {
  display: block;
  padding-left: 12px;
  border-left: 1px solid rgba(181, 107, 103, 0.28);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-family: var(--font-serif);
  font-size: 1.36rem;
  font-weight: 600;
}

.brand small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border-radius: 999px;
  color: rgba(70, 59, 52, 0.82);
  font-weight: 800;
  font-size: 0.9rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  background: rgba(241, 217, 212, 0.5);
  outline: none;
}

.nav-links .nav-cta {
  color: #92524e;
  background: #fff2ee;
  border: 1px solid rgba(181, 107, 103, 0.22);
  animation: wa-ring 3.2s ease infinite;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--porcelain);
  color: var(--ink);
}

.hero {
  min-height: calc(82svh - var(--header-height));
  display: grid;
  align-content: center;
  padding: 8vh var(--page-x) 44px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(42, 33, 28, 0.8), rgba(42, 33, 28, 0.48) 48%, rgba(42, 33, 28, 0.1)),
    url("assets/instagram/maria-clara-full.jpg") center 43% / cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 0;
  border: 1px dashed rgba(255, 250, 244, 0.42);
  border-radius: var(--radius);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 0;
  height: 140px;
  background: linear-gradient(0deg, rgba(255, 250, 244, 0.98), transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content {
  width: min(760px, 100%);
  color: var(--paper);
  padding-bottom: 18px;
}

.hero-content::before {
  content: "";
  display: block;
  width: 112px;
  margin-bottom: 20px;
  border-top: 1px dashed rgba(255, 250, 244, 0.56);
}

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

.hero .eyebrow {
  color: #f7e2db;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1,
h2 {
  font-family: var(--font-serif);
  font-weight: 600;
}

h1 {
  font-size: 6.2rem;
}

.hero-copy {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 250, 244, 0.92);
  font-size: 1.18rem;
  text-shadow: 0 1px 18px rgba(29, 20, 16, 0.28);
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button.primary {
  background: var(--rose);
  color: var(--porcelain);
  box-shadow: 0 10px 28px rgba(181, 107, 103, 0.28);
}

.button.ghost {
  background: rgba(255, 250, 244, 0.16);
  color: var(--paper);
  border-color: rgba(255, 250, 244, 0.5);
  backdrop-filter: blur(12px);
}

.button.secondary {
  background: var(--porcelain);
  color: var(--ink);
  border-color: var(--line);
}

.button:hover,
.button:focus-visible,
.text-link:hover,
.text-link:focus-visible,
.product-copy a:hover,
.product-copy a:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.signal-band {
  display: grid;
  grid-template-columns: minmax(230px, 0.95fr) repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px var(--page-x);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(255, 250, 244, 0.9)),
    var(--fiore-texture);
  background-size: auto, 560px 380px;
  background-position: center, 20px 52px;
  border-top: 1px solid rgba(104, 82, 68, 0.08);
  border-bottom: 1px solid var(--line);
}

.signal-intro,
.signal-item {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  background: transparent;
  border-right: 0;
  border-radius: 0;
  color: var(--ink);
  font-weight: 850;
  box-shadow: none;
}

.signal-intro::after,
.signal-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 16px;
  bottom: 0;
  border-bottom: 1px dashed rgba(181, 107, 103, 0.22);
}

.signal-intro {
  display: grid;
  align-content: center;
  gap: 2px;
}

.signal-intro span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.signal-intro strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.16;
}

.signal-item:nth-child(2) svg {
  color: var(--rose);
}

.signal-item:nth-child(3) svg {
  color: var(--moss);
}

.signal-item:nth-child(4) svg {
  color: var(--sky);
}

.signal-item:nth-child(5) svg {
  color: var(--gold);
}

.signal-band > :last-child {
  border-right: 0;
}

.signal-band > :last-child::after {
  right: 0;
}

.touch-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
  padding: 78px var(--page-x);
  background:
    linear-gradient(90deg, rgba(255, 250, 244, 0.94), rgba(247, 250, 244, 0.88)),
    repeating-linear-gradient(90deg, rgba(181, 107, 103, 0.035) 0 1px, transparent 1px 18px);
  border-bottom: 1px solid var(--line);
}

.touch-frame {
  position: relative;
  isolation: isolate;
  min-height: 350px;
  padding: 12px;
  border: 1px solid rgba(104, 82, 68, 0.1);
  border-radius: var(--radius);
  background: var(--matte);
  box-shadow: 0 22px 58px rgba(72, 54, 42, 0.12);
}

.touch-frame::before {
  content: "";
  position: absolute;
  inset: 30px -18px -16px 42px;
  z-index: -1;
  border: 1px dashed rgba(181, 107, 103, 0.2);
  background:
    linear-gradient(145deg, rgba(241, 217, 212, 0.22), rgba(147, 165, 139, 0.1)),
    var(--fiore-texture);
  background-size: auto, 520px 390px;
  opacity: 0.85;
}

.touch-frame::after {
  content: none;
}

.touch-frame img {
  width: 100%;
  height: 100%;
  min-height: 326px;
  object-fit: cover;
  border-radius: 6px;
}

.touch-copy {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.touch-copy span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(181, 107, 103, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.92);
  color: #985a55;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  box-shadow: 0 8px 22px rgba(72, 54, 42, 0.08);
}

.touch-text,
.home-copy,
.atelier-copy {
  max-width: 720px;
}

.touch-text h2,
.home-copy h2,
.section-heading h2,
.atelier-copy h2,
.order-intro h2 {
  font-size: 3rem;
}

.touch-text p:not(.eyebrow),
.home-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.34rem;
  line-height: 1.48;
}

.section {
  padding: 92px var(--page-x);
}

.collection-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.72), rgba(255, 253, 249, 0.92)),
    repeating-linear-gradient(135deg, rgba(181, 107, 103, 0.024) 0 1px, transparent 1px 16px);
}

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

.section-heading::after,
.atelier-copy::after,
.order-intro::after,
.home-copy::after {
  content: "";
  display: block;
  width: 84px;
  margin-top: 18px;
  border-top: 1px dashed rgba(181, 107, 103, 0.38);
}

.section-heading p:not(.eyebrow),
.atelier-copy p:not(.eyebrow),
.order-intro p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
  padding: 14px 0;
  border-top: 1px solid rgba(104, 82, 68, 0.1);
  border-bottom: 1px solid rgba(104, 82, 68, 0.1);
}

.filter-chip {
  min-height: 38px;
  border: 1px solid rgba(104, 82, 68, 0.16);
  border-radius: 999px;
  padding: 0 18px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.filter-chip:hover {
  background: rgba(241, 217, 212, 0.35);
  color: var(--ink);
}

.filter-chip.active {
  background: var(--rose);
  color: var(--porcelain);
  border-color: var(--rose);
  font-weight: 800;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 26px 22px;
  align-items: start;
}

.product-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: rgba(255, 253, 249, 0.97);
  border: 1px solid rgba(104, 82, 68, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 4px 22px rgba(72, 54, 42, 0.07);
  padding: 0;
  position: relative;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.product-card::before,
.product-card::after {
  content: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 52px rgba(72, 54, 42, 0.13);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 3.5;
  object-fit: cover;
  border: none;
  border-radius: 0;
  filter: saturate(0.96) contrast(0.98);
  transition: transform 560ms ease, filter 560ms ease;
}

.product-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.01);
}

.product-card img.focus-guardanapo {
  object-position: 34% 74%;
}

.product-card-feature {
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 0;
  min-height: 400px;
  align-items: stretch;
}

.product-card:nth-child(3),
.product-card:nth-child(7) {
  grid-column: span 5;
}

.product-card:nth-child(8) {
  grid-column: span 3;
}

.product-card:nth-child(3) img,
.product-card:nth-child(7) img {
  aspect-ratio: 4 / 4.6;
}

.product-card:nth-child(4) img,
.product-card:nth-child(6) img {
  aspect-ratio: 4 / 3.9;
}

.product-card-feature img {
  height: 100%;
  aspect-ratio: auto;
  min-height: 400px;
  object-position: 52% 48%;
  border-radius: 0;
}

.product-card-feature .product-copy {
  justify-content: center;
  align-self: stretch;
  margin: 0;
  padding: 36px 30px;
  border-top: none;
  border-left: 1px solid rgba(104, 82, 68, 0.09);
  background: rgba(255, 253, 249, 0.97);
}

.product-card-feature h3 {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 600;
}

.product-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  flex: 1;
  margin: 0;
  padding: 20px 20px 18px;
  border-top: 1px solid rgba(104, 82, 68, 0.08);
  background: transparent;
}

.tag {
  width: fit-content;
  margin-bottom: 14px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(241, 217, 212, 0.55);
  color: #8d5753;
  font-size: 0.76rem;
  font-weight: 900;
}

.tag::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: 1px;
}

.product-copy h3 {
  font-size: 1.18rem;
}

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

.product-copy a {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid rgba(181, 107, 103, 0.3);
  border-radius: 999px;
  background: rgba(255, 242, 238, 0.7);
  color: #92524e;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 180ms ease;
}

.product-copy a:hover {
  background: var(--rose);
  color: var(--porcelain);
  border-color: var(--rose);
  transform: translateY(-2px);
}

.text-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: #9b5c56;
  font-weight: 900;
  transition: transform 180ms ease;
}

.home-section {
  display: grid;
  grid-template-columns: minmax(320px, 1.12fr) minmax(0, 0.88fr);
  gap: 46px;
  align-items: center;
  padding: 90px var(--page-x);
  background:
    linear-gradient(180deg, rgba(246, 250, 244, 0.96), rgba(255, 250, 244, 0.84)),
    repeating-linear-gradient(0deg, rgba(99, 121, 101, 0.05) 0 1px, transparent 1px 30px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-image {
  position: relative;
  isolation: isolate;
  padding: 12px;
  background: var(--matte);
  border: 1px solid rgba(104, 82, 68, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(72, 54, 42, 0.12);
}

.home-image::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 44px;
  z-index: -1;
  background:
    linear-gradient(145deg, rgba(147, 165, 139, 0.18), rgba(198, 154, 75, 0.1)),
    var(--fiore-texture);
  background-size: auto, 540px 405px;
  border: 1px dashed rgba(99, 121, 101, 0.18);
}

.home-image::after {
  content: none;
}

.home-image img {
  width: 100%;
  aspect-ratio: 4 / 4.65;
  object-fit: cover;
  object-position: center 50%;
  border-radius: 6px;
}

.home-copy .text-link {
  margin-top: 22px;
}

.detail-gallery {
  position: relative;
  overflow: hidden;
  padding: 96px var(--page-x);
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(247, 250, 244, 0.96)),
    repeating-linear-gradient(90deg, rgba(104, 82, 68, 0.02) 0 1px, transparent 1px 22px);
}

.detail-gallery::before {
  content: "";
  position: absolute;
  left: var(--page-x);
  right: var(--page-x);
  top: 56px;
  border-top: 1px dashed rgba(181, 107, 103, 0.28);
  pointer-events: none;
}

.detail-editorial,
.detail-moments {
  position: relative;
  z-index: 1;
}

.detail-editorial {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.detail-copy {
  max-width: 520px;
}

.detail-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.35rem, 4vw, 4.4rem);
  font-weight: 600;
  line-height: 1.02;
}

.detail-copy p:not(.eyebrow) {
  margin: 20px 0 0;
  color: var(--muted);
  font-family: var(--font-serif);
  font-size: 1.24rem;
  line-height: 1.5;
}

.detail-thread-list {
  margin-top: 34px;
  border-top: 1px solid rgba(104, 82, 68, 0.16);
  border-bottom: 1px solid rgba(104, 82, 68, 0.16);
}

.detail-thread-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px dashed rgba(181, 107, 103, 0.24);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

.detail-thread-list span:last-child {
  border-bottom: 0;
}

.detail-thread-list strong {
  color: var(--rose);
  font-size: 0.76rem;
}

.detail-portrait {
  position: relative;
  min-height: 560px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 12px solid var(--matte);
  background: var(--matte);
  box-shadow: 0 24px 64px rgba(72, 54, 42, 0.13);
}

.detail-portrait::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px dashed rgba(255, 250, 244, 0.58);
  border-radius: 6px;
  pointer-events: none;
}

.detail-portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 50% 52%;
  filter: saturate(0.98) contrast(0.99);
}

.detail-portrait figcaption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  width: min(430px, calc(100% - 44px));
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--rose);
  background: rgba(255, 250, 244, 0.9);
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.35;
  box-shadow: 0 16px 36px rgba(72, 54, 42, 0.12);
}

.detail-moments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(104, 82, 68, 0.1);
}

.detail-tile {
  position: relative;
  isolation: isolate;
  margin: 0;
  min-width: 0;
}

.detail-tile::before,
.detail-tile::after {
  content: none;
}

.detail-tile img {
  width: 100%;
  aspect-ratio: 4 / 3.25;
  object-fit: cover;
  border: none;
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(72, 54, 42, 0.1);
  transition: transform 480ms ease;
}

.detail-tile:hover img {
  transform: scale(1.025);
}

.detail-tile:nth-child(1) img {
  object-position: 48% 62%;
}

.detail-tile:nth-child(2) img {
  object-position: 28% center;
}

.detail-tile:nth-child(3) img {
  object-position: 34% 76%;
}

.detail-tile:nth-child(4) img {
  object-position: 50% 42%;
}

.detail-tile figcaption {
  display: grid;
  gap: 4px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(181, 107, 103, 0.3);
}

.detail-tile figcaption span {
  color: var(--rose);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-tile figcaption strong {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.18;
}

.atelier-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: 52px;
  align-items: center;
  padding: 90px var(--page-x);
  background:
    linear-gradient(180deg, rgba(246, 250, 244, 0.96), rgba(255, 246, 244, 0.82)),
    repeating-linear-gradient(0deg, rgba(99, 121, 101, 0.04) 0 1px, transparent 1px 34px);
  position: relative;
}

.atelier-section::before {
  content: "";
  position: absolute;
  inset: 28px var(--page-x);
  border: 1px dashed rgba(99, 121, 101, 0.24);
  border-radius: var(--radius);
  pointer-events: none;
}

.atelier-copy,
.atelier-collage {
  position: relative;
  z-index: 1;
}

.atelier-collage {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr 0.68fr;
  grid-template-rows: 280px 170px;
  gap: 14px;
}

.atelier-collage::before {
  content: "";
  position: absolute;
  inset: 36px 44px -18px -18px;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(127, 174, 182, 0.13), rgba(241, 217, 212, 0.16)),
    var(--fiore-texture);
  background-size: auto, 540px 405px;
  border: 1px dashed rgba(127, 174, 182, 0.2);
}

.atelier-collage::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border: 1px dashed rgba(255, 250, 244, 0.5);
  border-radius: 6px;
}

.atelier-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  border: 10px solid rgba(255, 253, 249, 0.84);
  box-shadow: 0 20px 52px rgba(72, 54, 42, 0.12);
}

.collage-large {
  grid-row: 1 / 3;
}

.collage-small {
  align-self: end;
  object-position: 28% center;
  transform: rotate(1.1deg);
}

.process-section {
  background:
    linear-gradient(180deg, rgba(255, 244, 242, 0.94), rgba(255, 250, 244, 0.98)),
    repeating-linear-gradient(90deg, rgba(181, 107, 103, 0.026) 0 1px, transparent 1px 24px);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: transparent;
  border: 0;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 34px;
  right: 34px;
  top: 48px;
  z-index: 0;
  border-top: 1px dashed rgba(181, 107, 103, 0.3);
}

.process-item {
  z-index: 1;
  min-height: 250px;
  padding: 26px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid rgba(181, 107, 103, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  position: relative;
}

.process-item::after {
  content: none;
}

.process-item span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: #fff2ee;
  color: #92524e;
  border: 1px solid rgba(181, 107, 103, 0.24);
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(255, 253, 249, 0.86);
}

.process-item h3 {
  font-size: 1.25rem;
}

.process-item p {
  margin: 12px 0 0;
  color: var(--muted);
}

.order-section {
  padding: 94px var(--page-x);
  background:
    linear-gradient(rgba(44, 34, 29, 0.56), rgba(44, 34, 29, 0.42)),
    url("assets/instagram/familia-amor-full.jpg") center / cover fixed;
}

.order-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 34px;
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 250, 244, 0.96);
  border: 1px solid rgba(255, 255, 251, 0.62);
  box-shadow: var(--shadow);
  outline: 1px dashed rgba(181, 107, 103, 0.22);
  outline-offset: -12px;
}

.order-form {
  display: grid;
  gap: 16px;
}

.phone-link {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  padding: 0 14px;
  border: 1px dashed rgba(181, 107, 103, 0.32);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.74);
  color: #92524e;
  font-weight: 900;
}

.order-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.order-form select,
.order-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  background: var(--porcelain);
  color: var(--ink);
}

.order-form select:focus,
.order-form input:focus {
  border-color: var(--rose);
  outline: 3px solid rgba(181, 107, 103, 0.16);
}

.message-preview {
  min-height: 96px;
  padding: 16px;
  border-left: 4px solid var(--gold);
  background: rgba(198, 154, 75, 0.12);
  border-radius: var(--radius);
  color: #4d4635;
  font-weight: 700;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 34px var(--page-x);
  background: #463b34;
  color: var(--paper);
}

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

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 250, 244, 0.28);
}

.site-footer p {
  margin: 6px 0 0;
  color: rgba(255, 250, 244, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 250, 244, 0.84);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 640ms cubic-bezier(0.22, 1, 0.36, 1), transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-scale {
  transform: scale(0.94) translateY(12px);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.signal-item:nth-child(2) { transition-delay: 60ms; }
.signal-item:nth-child(3) { transition-delay: 120ms; }
.signal-item:nth-child(4) { transition-delay: 180ms; }
.signal-item:nth-child(5) { transition-delay: 240ms; }

.process-item:nth-child(1) { transition-delay: 0ms; }
.process-item:nth-child(2) { transition-delay: 90ms; }
.process-item:nth-child(3) { transition-delay: 180ms; }
.process-item:nth-child(4) { transition-delay: 270ms; }

svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

@media (min-width: 1500px) {
  .collection-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
  }

  h1 {
    font-size: 7.2rem;
  }
}

@media (max-width: 1220px) {
  .collection-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .product-card,
  .product-card:nth-child(3),
  .product-card:nth-child(7),
  .product-card:nth-child(8) {
    grid-column: span 3;
  }

  .product-card-feature {
    grid-column: span 6;
  }

  .detail-portrait {
    min-height: 500px;
  }

  .detail-portrait img {
    min-height: 500px;
  }
}

@media (max-width: 980px) {
  .signal-band,
  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .signal-intro {
    grid-column: 1 / -1;
  }

  .process-list::before {
    content: none;
  }

  .touch-section,
  .home-section,
  .atelier-section,
  .order-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding-inline: 18px;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-backdrop {
    display: block;
  }

  .nav-backdrop.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links {
    position: fixed;
    inset: var(--header-height) 14px auto;
    z-index: 22;
    display: grid;
    gap: 6px;
    padding: 12px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    justify-content: flex-start;
    border-radius: var(--radius);
  }

  .hero {
    min-height: calc(84svh - var(--header-height));
    padding: 44px 18px 26px;
  }

  .hero::before {
    inset: 14px;
  }

  h1 {
    font-size: 3.6rem;
  }

  .quote-section {
    padding: 72px 18px;
  }

  .section,
  .touch-section,
  .home-section,
  .detail-gallery,
  .atelier-section,
  .order-section {
    padding: 70px 18px;
  }

  .touch-text h2,
  .home-copy h2,
  .section-heading h2,
  .atelier-copy h2,
  .order-intro h2 {
    font-size: 2.22rem;
  }

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

  .product-card,
  .product-card:nth-child(3),
  .product-card:nth-child(7),
  .product-card:nth-child(8) {
    grid-column: span 1;
  }

  .product-card-feature {
    grid-column: span 2;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .product-card-feature img {
    height: auto;
    aspect-ratio: 4 / 3.35;
    min-height: 0;
  }

  .product-card-feature .product-copy {
    margin: 0;
    border-left: 0;
    border-top: 1px solid rgba(104, 82, 68, 0.08);
    padding: 20px 20px 18px;
  }

  .product-card-feature h3 {
    font-size: 1.35rem;
  }

  .detail-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .detail-copy {
    max-width: 680px;
  }

  .detail-portrait,
  .detail-portrait img {
    min-height: 460px;
  }

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

  .atelier-collage {
    grid-template-rows: 240px 160px;
  }

  .order-panel {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  body {
    background-size: auto, 760px 570px, auto, auto;
  }

  .touch-section::after,
  .collection-section::after,
  .home-section::after,
  .detail-gallery::after,
  .atelier-section::after,
  .process-section::after {
    background-size: 760px 570px;
    opacity: 0.1;
  }

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

  .brand strong {
    font-size: 1.12rem;
  }

  .brand small {
    font-size: 0.66rem;
  }

  .hero-actions,
  .order-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .signal-band,
  .collection-grid,
  .process-list,
  .detail-moments {
    grid-template-columns: 1fr;
  }

  .product-card-feature {
    grid-column: span 1;
  }

  .product-card::before {
    inset: 16px -6px auto 16px;
  }

  .signal-band {
    padding: 18px;
    gap: 6px;
  }

  .signal-intro,
  .signal-item {
    min-height: 64px;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(104, 82, 68, 0.1);
  }

  .signal-band > :last-child {
    border-bottom: 0;
  }

  .touch-text p:not(.eyebrow),
  .home-copy p:not(.eyebrow) {
    font-size: 1.14rem;
  }

  .touch-frame {
    min-height: 292px;
  }

  .touch-frame img {
    min-height: 268px;
  }

  .touch-copy {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .detail-portrait,
  .detail-portrait img {
    min-height: 360px;
  }

  .detail-portrait figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    font-size: 0.98rem;
  }

  .detail-tile img {
    aspect-ratio: 4 / 3;
  }

  .atelier-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 260px 180px;
  }

  .collage-large {
    grid-row: auto;
  }

  .site-footer {
    display: grid;
  }

  .site-quote::before {
    font-size: 6rem;
    margin-bottom: 16px;
  }
}

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