@import url("https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@400;500;600;700&family=Mali:wght@500;600;700&display=swap");

:root {
  --cream: #fbf5e9;
  --paper: #fffaf1;
  --paper-deep: #f3e7d3;
  --brown: #633b25;
  --brown-dark: #3d271b;
  --brown-muted: #785d4b;
  --coral: #d97761;
  --coral-dark: #b85848;
  --coral-soft: #f0b3a1;
  --olive: #707448;
  --olive-dark: #555a35;
  --blue: #2a69b2;
  --white: #fffefb;
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --shadow-sm: 0 2px 3px -1px rgba(0, 0, 0, 0.1), 0 1px 0 rgba(25, 28, 33, 0.02), 0 0 0 1px rgba(25, 28, 33, 0.08);
  --shadow-md: 0 0 0 1px rgba(0, 0, 0, 0.06), 0 1px 1px -0.5px rgba(0, 0, 0, 0.06), 0 3px 3px -1.5px rgba(0, 0, 0, 0.06), 0 6px 6px -3px rgba(0, 0, 0, 0.06), 0 12px 12px -6px rgba(0, 0, 0, 0.06), 0 24px 24px -12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 2.8px 2.2px rgba(0, 0, 0, 0.034), 0 6.7px 5.3px rgba(0, 0, 0, 0.048), 0 12.5px 10px rgba(0, 0, 0, 0.06), 0 22.3px 17.9px rgba(0, 0, 0, 0.072), 0 41.8px 33.4px rgba(0, 0, 0, 0.086), 0 100px 80px rgba(0, 0, 0, 0.12);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.2, 0, 0, 1);
  --font-display: "Mali", "Segoe Print", cursive;
  --font-body: "Be Vietnam Pro", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; overflow-x: clip; }
body { margin: 0; color: var(--brown-dark); background: var(--cream); font-family: var(--font-body); font-size: 16px; line-height: 1.7; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body.modal-open { overflow: hidden; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
button, [role="button"] { cursor: pointer; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 16px; top: 12px; z-index: 100; padding: 10px 16px; border-radius: 10px; background: var(--brown-dark); color: white; transform: translateY(-150%); transition: transform 180ms var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; }

.site-header { position: fixed; inset: 16px 16px auto; z-index: 50; transition: transform 250ms var(--ease-out); }
.nav-shell { max-width: 1240px; min-height: 72px; margin: auto; padding: 8px 10px 8px 14px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-radius: 24px; background: rgba(255, 250, 241, 0.88); box-shadow: var(--shadow-md); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); transition: background-color 200ms ease, box-shadow 200ms ease; }
.site-header.is-scrolled .nav-shell { background: rgba(255, 250, 241, 0.96); box-shadow: var(--shadow-lg); }
.brand { display: inline-flex; align-items: center; gap: 10px; min-height: 52px; }
.brand img { width: 52px; height: 52px; object-fit: cover; border-radius: 50%; outline: 1px solid oklch(0 0 0 / 0.1); }
.brand span { display: flex; flex-direction: column; font-family: var(--font-display); font-weight: 700; font-size: 18px; line-height: 1.05; color: var(--brown); }
.brand small { font-family: var(--font-body); font-weight: 600; font-size: 9px; letter-spacing: .18em; text-transform: uppercase; color: var(--coral-dark); }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 38px); font-size: 14px; font-weight: 600; }
.main-nav > a { position: relative; padding: 13px 0; color: var(--brown-muted); transition: color 180ms ease; }
.main-nav > a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 8px; height: 1.5px; background: var(--coral); transition: right 220ms var(--ease-out); }
.main-nav > a:hover { color: var(--brown-dark); }
.main-nav > a:hover::after { right: 0; }
.menu-toggle { display: none; width: 48px; height: 48px; place-items: center; padding: 0; border: 0; border-radius: 14px; background: var(--paper-deep); color: var(--brown); }
.menu-icon { position: relative; width: 20px; height: 16px; }
.menu-icon i { position: absolute; left: 1px; width: 18px; height: 2px; border-radius: 2px; background: currentColor; transition: transform 250ms var(--ease-soft), top 250ms var(--ease-soft); }
.menu-icon i:first-child { top: 4px; }.menu-icon i:last-child { top: 11px; }
.menu-toggle[aria-expanded="true"] i:first-child { top: 7px; transform: rotate(45deg); }.menu-toggle[aria-expanded="true"] i:last-child { top: 7px; transform: rotate(-45deg); }

.button { min-height: 52px; padding: 13px 22px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border: 1px solid transparent; border-radius: 16px; font-weight: 700; font-size: 14px; line-height: 1.2; transition: transform 160ms var(--ease-soft), background-color 180ms ease, color 180ms ease, box-shadow 180ms ease; }
.button:active { transform: scale(.96); }
.button svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 200ms var(--ease-out); }
.button:hover svg { transform: translateX(3px); }
.button--small { min-height: 48px; padding: 11px 17px; border-radius: 14px; }
.button--small svg { width: 22px; height: 22px; stroke-width: 1.8; }
.button--primary { color: var(--white); background: var(--coral-dark); box-shadow: var(--shadow-sm); }
.button--primary:hover { background: #9f493d; box-shadow: var(--shadow-md); }
.button--secondary { color: var(--brown); background: var(--paper); border-color: rgba(99, 59, 37, .18); }
.button--cream { color: var(--brown-dark); background: var(--cream); box-shadow: var(--shadow-md); }
.button--cream:hover { background: white; box-shadow: var(--shadow-lg); }

.hero { position: relative; width: 100%; min-height: 820px; padding: 156px max(32px, calc((100vw - 1240px) / 2)) 84px; display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(420px, .98fr); align-items: center; gap: clamp(36px, 6vw, 100px); }
.hero::before { content: ""; position: absolute; width: 560px; height: 560px; left: -330px; top: 170px; border: 1px dashed rgba(217, 119, 97, .32); border-radius: 50%; }
.hero__content { position: relative; z-index: 2; min-width: 0; }
.eyebrow { margin-bottom: 18px; display: flex; align-items: center; gap: 11px; color: var(--olive-dark); font-size: 12px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 38px; height: 1px; background: currentColor; }
.hero h1 { max-width: 750px; margin-bottom: 25px; color: var(--brown); font-family: var(--font-display); font-size: clamp(52px, 6.3vw, 91px); line-height: 1.02; letter-spacing: -.045em; }
.hero h1 em, .closing h2 em { color: var(--coral-dark); font-weight: 600; }
.hero__lead { max-width: 620px; margin-bottom: 30px; color: var(--brown-muted); font-size: clamp(16px, 1.4vw, 19px); line-height: 1.75; }
.hero__actions { display: flex; align-items: center; gap: 24px; }
.text-link { min-height: 44px; display: inline-flex; align-items: center; gap: 9px; color: var(--brown); font-size: 14px; font-weight: 700; border-bottom: 1px dashed rgba(99, 59, 37, .45); transition: color 180ms ease, border-color 180ms ease; }
.text-link:hover { color: var(--coral-dark); border-color: var(--coral-dark); }
.hero__note { margin-top: 42px; display: flex; align-items: center; gap: 14px; }
.hero__note p { margin: 0; color: var(--brown-muted); font-size: 12px; line-height: 1.55; }
.hero__note strong { color: var(--brown-dark); }
.avatar-stack { display: flex; }
.avatar-stack i { width: 34px; height: 34px; margin-left: -8px; border: 3px solid var(--cream); border-radius: 50%; box-shadow: var(--shadow-sm); }
.avatar-stack i:first-child { margin-left: 0; background: var(--coral-soft); }.avatar-stack i:nth-child(2) { background: #d7c99d; }.avatar-stack i:nth-child(3) { background: #aeb28b; }
.hero__visual { position: relative; justify-self: end; width: min(100%, 620px); aspect-ratio: 1; }
.hero__visual::before { content: ""; position: absolute; inset: 6% 1% 1% 6%; border-radius: 48% 52% 46% 54% / 52% 45% 55% 48%; background: var(--paper-deep); transform: rotate(4deg); }
.hero__logo-wrap { position: absolute; inset: 5% 8% 9% 4%; overflow: hidden; border-radius: 46% 54% 48% 52% / 51% 43% 57% 49%; background: var(--paper); box-shadow: var(--shadow-lg); transform: rotate(-2deg); outline: 1px solid oklch(0 0 0 / 0.1); }
.hero__logo-wrap img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); }
.hero__stitch { position: absolute; z-index: 2; inset: 0 4% 3% 1%; pointer-events: none; border: 2px dashed var(--coral-soft); border-radius: 49% 51% 45% 55% / 52% 46% 54% 48%; transform: rotate(2deg); }
.handwritten-note { position: absolute; z-index: 3; padding: 8px 14px; color: var(--brown); background: rgba(255, 250, 241, .96); font-family: var(--font-display); font-size: 15px; box-shadow: var(--shadow-sm); transform: rotate(-5deg); }
.note--top { top: 3%; right: 0; }.note--bottom { left: 0; bottom: 5%; transform: rotate(5deg); }.note--bottom span { color: var(--coral-dark); font-size: 20px; font-weight: 700; }
.leaf-doodle { position: absolute; z-index: 2; width: 115px; right: -22px; bottom: 1%; fill: rgba(112, 116, 72, .13); stroke: var(--olive); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.thread-line { position: absolute; pointer-events: none; }
.thread-line svg { width: 100%; height: 100%; fill: none; stroke: rgba(217, 119, 97, .5); stroke-width: 2; stroke-dasharray: 6 9; stroke-linecap: round; }
.thread-line--hero { width: 52%; height: 180px; left: 7%; bottom: -20px; }

.ticker { width: 100%; overflow: hidden; color: var(--cream); background: var(--olive-dark); transform: rotate(-1deg); }
.ticker__track { min-height: 58px; padding: 0 3vw; display: flex; align-items: center; justify-content: space-around; gap: 28px; white-space: nowrap; font-family: var(--font-display); font-size: 16px; font-weight: 600; }
.ticker i { width: 10px; height: 10px; flex: 0 0 auto; border: 2px solid var(--coral-soft); border-radius: 50%; }

.section { max-width: 1240px; margin: auto; padding: 120px 0; }
.section-heading { margin-bottom: 48px; display: grid; grid-template-columns: 1fr minmax(280px, 440px); gap: 60px; align-items: end; }
.section-heading h2, .order-flow h2, .story h2, .closing h2 { margin-bottom: 0; color: var(--brown); font-family: var(--font-display); font-size: clamp(40px, 5vw, 64px); line-height: 1.12; letter-spacing: -.035em; }
.section-heading > p { margin-bottom: 6px; color: var(--brown-muted); font-size: 15px; }
.filter-bar { display: flex; gap: 8px; overflow-x: auto; padding: 4px 4px 15px; scrollbar-width: thin; }
.filter { min-height: 44px; flex: 0 0 auto; padding: 9px 15px; border: 1px solid rgba(99, 59, 37, .13); border-radius: 999px; color: var(--brown-muted); background: transparent; font-weight: 600; font-size: 13px; transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 160ms var(--ease-soft); }
.filter span { margin-left: 6px; opacity: .65; font-variant-numeric: tabular-nums; }
.filter:hover { border-color: rgba(99, 59, 37, .35); color: var(--brown-dark); }
.filter:active { transform: scale(.96); }
.filter.is-active { color: var(--cream); background: var(--brown); border-color: var(--brown); }
.product-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { min-width: 0; padding: 10px; border-radius: 32px; background: var(--paper); box-shadow: var(--shadow-md); transition: transform 240ms var(--ease-out), box-shadow 240ms ease, opacity 240ms ease; }
.product-card:hover { transform: translateY(-6px) rotate(.15deg); box-shadow: var(--shadow-lg); }
.product-card[hidden] { display: none; }
.product-card__visual { position: relative; min-height: 310px; overflow: hidden; display: grid; place-items: center; border-radius: 23px; }
.product-card__visual::before { content: ""; position: absolute; inset: 12px; border: 1px dashed rgba(99, 59, 37, .18); border-radius: 17px; }
.visual--butter { background: #ead8ae; }.visual--rose { background: #efd2cf; }.visual--sage { background: #dfe3cd; }.visual--clay { background: #ddad92; }.visual--oat { background: #eadfc9; }.visual--sky { background: #cfdde0; }
.paper-tag { position: absolute; z-index: 2; top: 21px; left: 21px; padding: 6px 10px; color: var(--brown); background: var(--paper); font-family: var(--font-display); font-size: 12px; font-weight: 700; box-shadow: var(--shadow-sm); transform: rotate(-3deg); }
.product-card__image { width: 100%; height: 100%; min-height: 310px; aspect-ratio: 1; object-fit: cover; transition: transform 500ms var(--ease-out), filter 250ms ease; }
.product-card:hover .product-card__image { transform: scale(1.035); filter: saturate(1.04); }
.product-illustration { position: relative; width: 83%; max-height: 265px; overflow: visible; filter: drop-shadow(0 14px 9px rgba(61, 39, 27, .12)); transition: transform 350ms var(--ease-out); }
.product-card:hover .product-illustration { transform: rotate(-2deg) translateY(-4px); }
.shape-main { fill: #ad7959; stroke: var(--brown); stroke-width: 3; }.shape-light { fill: #eac3a3; stroke: var(--brown); stroke-width: 3; }.accent-fill { fill: var(--coral); stroke: var(--brown); stroke-width: 3; }.ink { fill: var(--brown-dark); }.ink-line, .yarn-line, .stem, .stitch { fill: none; stroke: var(--brown); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }.ink-line.thick { stroke-width: 8; }.yarn-line { stroke: var(--coral-dark); stroke-width: 3; stroke-dasharray: 5 7; }.stem { stroke: var(--olive-dark); stroke-width: 7; }.leaf { fill: var(--olive); stroke: var(--olive-dark); stroke-width: 2; }.paper { fill: var(--paper); stroke: var(--brown); stroke-width: 3; }.stitch { stroke: rgba(99, 59, 37, .55); stroke-width: 2; stroke-dasharray: 4 5; }.button-dot { fill: var(--brown); stroke: var(--paper); stroke-width: 3; }
.product-card__body { padding: 20px 14px 14px; display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: start; }
.product-code { margin-bottom: 5px; color: var(--olive-dark); font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.product-card h3 { margin-bottom: 0; color: var(--brown); font-family: var(--font-display); font-size: 23px; line-height: 1.3; }
.price { margin: 3px 0 0; color: var(--brown-muted); font-size: 11px; text-align: right; }
.price strong { display: block; color: var(--coral-dark); font-size: 15px; font-variant-numeric: tabular-nums; }
.card-link { grid-column: 1 / -1; min-height: 46px; padding: 10px 0 3px; display: flex; align-items: center; justify-content: space-between; border: 0; border-top: 1px dashed rgba(99, 59, 37, .22); color: var(--brown); background: transparent; font-weight: 700; font-size: 13px; }
.card-link svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 180ms var(--ease-out); }.card-link:hover svg { transform: translateX(4px); }
.empty-state { max-width: 450px; margin: 40px auto 0; padding: 45px; text-align: center; border-radius: 28px; background: var(--paper); box-shadow: var(--shadow-md); }
.empty-state svg { width: 70px; margin: auto auto 18px; fill: none; stroke: var(--coral); stroke-width: 2; }.empty-state h3 { margin-bottom: 7px; font-family: var(--font-display); font-size: 25px; }.empty-state p { color: var(--brown-muted); }

.order-flow { max-width: 100%; padding: 110px max(32px, calc((100vw - 1240px) / 2)); display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 10vw, 150px); color: var(--cream); background: var(--brown); }
.order-flow .eyebrow, .order-flow h2 { color: var(--cream); }.order-flow__intro > p:not(.eyebrow) { max-width: 520px; margin: 24px 0 32px; color: #dccdbd; }
.steps { margin: 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { position: relative; min-height: 135px; display: grid; grid-template-columns: 44px 66px 1fr; gap: 20px; align-items: start; }
.steps li:not(:last-child)::after { content: ""; position: absolute; top: 67px; bottom: 6px; left: 76px; border-left: 1px dashed rgba(240, 179, 161, .55); }
.steps > li > span { padding-top: 13px; color: var(--coral-soft); font-family: var(--font-display); font-size: 14px; }
.step-icon { width: 64px; height: 64px; display: grid; place-items: center; border: 1px dashed rgba(240, 179, 161, .65); border-radius: 23px; background: rgba(255, 250, 241, .07); transform: rotate(-2deg); }
.step-icon svg { width: 35px; fill: none; stroke: var(--coral-soft); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.steps h3 { margin: 6px 0 6px; color: var(--cream); font-family: var(--font-display); font-size: 23px; }.steps p { max-width: 400px; color: #cbbbaa; font-size: 13px; }

.story { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 10vw, 140px); align-items: center; }
.story__visual { position: relative; padding: 22px; }
.story__visual::before { content: ""; position: absolute; inset: 0; border: 1px dashed var(--coral); border-radius: 44% 56% 52% 48% / 53% 42% 58% 47%; transform: rotate(-3deg); }
.story__image { position: relative; overflow: hidden; aspect-ratio: 1; border-radius: 46% 54% 45% 55% / 55% 43% 57% 45%; box-shadow: var(--shadow-lg); outline: 1px solid oklch(0 0 0 / 0.1); }
.story__image img { width: 100%; height: 100%; object-fit: cover; }
.story__caption { position: absolute; right: -32px; bottom: 10%; max-width: 170px; padding: 14px 18px; color: var(--brown); background: var(--paper); font-family: var(--font-display); font-size: 15px; line-height: 1.45; box-shadow: var(--shadow-md); transform: rotate(4deg); }
.story__content { max-width: 570px; }
.story__content > p:not(.eyebrow) { color: var(--brown-muted); }
.story__dropcap { margin-top: 30px; }.story__dropcap::first-letter { float: left; margin: 7px 8px 0 0; color: var(--coral-dark); font-family: var(--font-display); font-size: 54px; line-height: .75; }
.signature { margin-top: 35px; display: flex; align-items: center; gap: 13px; color: var(--coral-dark); }.signature span { font-family: var(--font-display); font-size: 25px; font-weight: 700; }.signature i { width: 50px; border-top: 1px solid currentColor; }.signature small { color: var(--brown-muted); }

.reviews { border-top: 1px dashed rgba(99, 59, 37, .2); }
.customer-gallery { display: grid; grid-template-columns: 1.12fr .88fr; grid-template-rows: auto auto; gap: 22px; align-items: stretch; }
.customer-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; border-radius: 32px; background: var(--paper); box-shadow: var(--shadow-md); }
.customer-photo--wide { grid-row: 1 / 3; }
.customer-photo img { width: 100%; height: 100%; min-height: 430px; display: block; object-fit: cover; object-position: center; transition: transform 650ms var(--ease-out); }
.customer-photo--wide img { min-height: 700px; }
.customer-photo:hover img { transform: scale(1.025); }
.customer-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 48%; pointer-events: none; background: linear-gradient(180deg, transparent, rgba(47, 30, 20, .76)); }
.customer-photo figcaption { position: absolute; z-index: 1; right: 0; bottom: 0; left: 0; padding: 30px; display: flex; flex-direction: column; gap: 7px; color: var(--cream); }
.customer-photo figcaption span { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; opacity: .78; }
.customer-photo figcaption strong { max-width: 470px; font-family: var(--font-display); font-size: clamp(20px, 2.2vw, 31px); line-height: 1.24; }
.customer-note { padding: 34px; display: flex; flex-direction: column; justify-content: center; border: 1px dashed rgba(99, 59, 37, .2); border-radius: 30px; color: var(--brown); background: #eadfc9; }
.customer-note > p:not(.eyebrow) { margin: 12px 0 20px; font-family: var(--font-display); font-size: 17px; line-height: 1.62; }
.customer-note > span { color: var(--coral-dark); font-family: var(--font-display); font-size: 18px; font-weight: 700; }
.review-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.review-card { position: relative; margin: 0; padding: 35px; min-height: 320px; display: flex; flex-direction: column; border-radius: 29px; color: var(--brown); background: var(--paper); box-shadow: var(--shadow-md); }
.review-card--accent { color: var(--cream); background: var(--olive-dark); transform: rotate(1deg); }
.quote-mark { height: 55px; color: var(--coral); font-family: Georgia, serif; font-size: 82px; line-height: .9; }
.review-card blockquote { margin: 10px 0 32px; font-family: var(--font-display); font-size: 18px; line-height: 1.65; }
.review-card figcaption { margin-top: auto; display: flex; align-items: center; gap: 12px; }.review-card figcaption > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--paper); background: var(--coral); font-size: 11px; font-weight: 700; }.review-card figcaption div { display: flex; flex-direction: column; }.review-card figcaption strong { font-size: 12px; }.review-card figcaption small { opacity: .7; font-size: 10px; }

.closing { position: relative; max-width: 1180px; margin-bottom: 110px; padding: 105px 8%; overflow: hidden; text-align: center; border-radius: 48px; background: #eadfc9; box-shadow: var(--shadow-lg); }
.closing::before { content: ""; position: absolute; inset: 15px; border: 1px dashed rgba(99, 59, 37, .2); border-radius: 37px; pointer-events: none; }
.closing .eyebrow { justify-content: center; }.closing h2 { position: relative; font-size: clamp(44px, 6vw, 75px); }.closing > p:not(.eyebrow) { position: relative; max-width: 650px; margin: 26px auto 30px; color: var(--brown-muted); }.closing .button { position: relative; }
.closing__thread { position: absolute; inset: 0; pointer-events: none; }.closing__thread svg { position: absolute; width: 360px; right: -15px; bottom: -25px; fill: none; stroke: rgba(217, 119, 97, .42); stroke-width: 2; stroke-dasharray: 7 8; }

.site-footer { max-width: 1240px; min-height: 125px; margin: auto; padding: 28px 0; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 30px; border-top: 1px solid rgba(99, 59, 37, .14); color: var(--brown-muted); font-size: 11px; }
.footer__brand { display: flex; align-items: center; gap: 13px; }.footer__brand img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; outline: 1px solid oklch(0 0 0 / 0.1); }.footer__brand div { display: flex; flex-direction: column; }.footer__brand strong { color: var(--brown); font-family: var(--font-display); font-size: 16px; }.footer__brand span { font-size: 9px; }
.site-footer nav { display: flex; gap: 25px; font-weight: 600; }.site-footer nav a { min-height: 44px; display: inline-flex; align-items: center; transition: color 180ms ease; }.site-footer nav a:hover { color: var(--coral-dark); }.site-footer > p { margin: 0; text-align: right; }

.zalo-float { position: fixed; z-index: 40; right: 20px; bottom: 20px; min-height: 54px; padding: 10px 17px 10px 12px; display: flex; align-items: center; gap: 8px; border: 0; border-radius: 999px; color: white; background: #1769aa; box-shadow: var(--shadow-lg); font-weight: 700; font-size: 12px; transition: transform 180ms var(--ease-soft), background-color 180ms ease; }.zalo-float:hover { background: #0d578f; transform: translateY(-3px); }.zalo-float:active { transform: scale(.96); }.zalo-float svg { position: relative; width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.zalo-pulse { position: absolute; left: 9px; width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; animation: pulse-ring 2.2s ease-out infinite; }
@keyframes pulse-ring { 0% { opacity: .7; transform: scale(.8); } 70%, 100% { opacity: 0; transform: scale(1.5); } }

.modal { position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 20px; }.modal[hidden] { display: none; }.modal__backdrop { position: absolute; inset: 0; background: rgba(47, 30, 20, .58); backdrop-filter: blur(7px); animation: fade-in 230ms ease both; }
.modal__panel { position: relative; width: min(880px, 100%); max-height: min(680px, calc(100vh - 40px)); overflow: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: 34px; background: var(--paper); box-shadow: var(--shadow-lg); animation: modal-in 320ms var(--ease-out) both; outline: none; }
.modal__close { position: absolute; z-index: 2; top: 14px; right: 14px; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 14px; color: var(--brown); background: rgba(255,250,241,.9); box-shadow: var(--shadow-sm); transition: transform 180ms var(--ease-soft), background-color 180ms ease; }.modal__close:hover { background: white; transform: rotate(4deg); }.modal__close:active { transform: scale(.96); }.modal__close svg { width: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }
.modal__visual { min-height: 480px; overflow: hidden; }.modal__visual .product-card__visual { height: 100%; min-height: 480px; border-radius: 34px 0 0 34px; }.modal__content { align-self: center; padding: 58px; }.modal__content h2 { margin-bottom: 15px; color: var(--brown); font-family: var(--font-display); font-size: 41px; line-height: 1.2; }.modal__content > p:not(.product-code):not(.modal__price) { color: var(--brown-muted); font-size: 14px; }.modal__price { margin-bottom: 24px; color: var(--brown-muted); font-size: 12px; }.modal__price strong { margin-left: 6px; color: var(--coral-dark); font-size: 18px; }.modal__notice { margin: 25px 0; padding: 14px; display: flex; gap: 10px; align-items: flex-start; border-radius: 14px; color: var(--olive-dark); background: rgba(112, 116, 72, .09); font-size: 11px; }.modal__notice svg { width: 18px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
@keyframes fade-in { from { opacity: 0; } }.modal.is-closing .modal__backdrop { animation: fade-out 160ms ease both; }.modal.is-closing .modal__panel { animation: modal-out 180ms ease both; }
@keyframes modal-in { from { opacity: 0; transform: translateY(18px) scale(.98); } }@keyframes fade-out { to { opacity: 0; } }@keyframes modal-out { to { opacity: 0; transform: translateY(8px) scale(.99); } }
.toast { position: fixed; z-index: 100; left: 50%; bottom: 30px; width: min(440px, calc(100% - 32px)); padding: 14px 17px; display: flex; align-items: center; gap: 12px; border-radius: 16px; color: var(--cream); background: var(--brown-dark); box-shadow: var(--shadow-lg); font-size: 13px; transform: translateX(-50%); animation: toast-in 300ms var(--ease-out) both; }.toast[hidden] { display: none; }.toast svg { width: 22px; flex: 0 0 auto; fill: none; stroke: var(--coral-soft); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }@keyframes toast-in { from { opacity: 0; transform: translate(-50%, 12px); } }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out); }.reveal--delay-1 { transition-delay: 80ms; }.reveal--delay-2 { transition-delay: 160ms; }.reveal--delay-3 { transition-delay: 240ms; }.reveal--delay-4 { transition-delay: 320ms; }.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1280px) { .section, .site-footer { margin-inline: 32px; }.hero { padding-inline: 44px; }.order-flow { margin-inline: 0; }.closing { margin-inline: 32px; }.story__caption { right: -10px; } }
@media (max-width: 980px) {
  .main-nav { gap: 18px; }.main-nav > a { display: none; }
  .hero { min-height: auto; padding-top: 140px; grid-template-columns: 1fr; text-align: center; }.hero__content { max-width: 760px; margin: auto; }.hero__lead { margin-inline: auto; }.hero__actions, .hero__note { justify-content: center; }.hero__visual { width: min(620px, 82vw); justify-self: center; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .order-flow { grid-template-columns: 1fr; }.order-flow__intro { max-width: 650px; }.steps { max-width: 650px; }
  .story { grid-template-columns: 1fr; }.story__visual { width: min(570px, 85vw); margin: auto; }.story__content { max-width: 700px; margin: auto; }
  .customer-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }.customer-photo--wide { grid-column: 1 / -1; grid-row: auto; }.customer-photo--wide img { min-height: 560px; }.customer-note { min-height: 430px; }
  .review-grid { grid-template-columns: 1fr 1fr; }.review-card:last-child { grid-column: 1 / -1; min-height: 250px; }
  .site-footer { grid-template-columns: 1fr auto; }.site-footer > p { grid-column: 1 / -1; text-align: center; }.site-footer nav { justify-self: end; }
}
@media (max-width: 700px) {
  html { scroll-padding-top: 88px; }.site-header { inset: 10px 10px auto; }.nav-shell { min-height: 64px; padding: 6px 8px 6px 10px; border-radius: 20px; }.brand img { width: 48px; height: 48px; }.brand span { font-size: 16px; }.menu-toggle { display: grid; }.main-nav { position: absolute; top: calc(100% + 8px); left: 0; right: 0; padding: 13px; display: grid; gap: 3px; border-radius: 20px; background: rgba(255, 250, 241, .98); box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(-8px); transition: opacity 200ms var(--ease-soft), transform 200ms var(--ease-soft); }.main-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }.main-nav > a { display: flex; min-height: 48px; align-items: center; padding: 8px 13px; border-radius: 12px; }.main-nav > a:hover { background: var(--paper-deep); }.main-nav > a::after { display: none; }.main-nav .button { width: 100%; margin-top: 4px; }
  .hero { padding: 125px 20px 68px; gap: 50px; }.hero h1 { font-size: clamp(45px, 13vw, 65px); }.hero__lead { font-size: 15px; }.hero__actions { flex-direction: column; gap: 11px; }.hero__actions .button { width: 100%; max-width: 330px; }.hero__note { margin-top: 30px; }.hero__visual { width: 100%; }.handwritten-note { font-size: 12px; }.note--bottom span { font-size: 16px; }.leaf-doodle { right: -15px; width: 80px; }.thread-line--hero { width: 85%; }
  .ticker__track { justify-content: flex-start; overflow: hidden; font-size: 14px; }.ticker__track span:nth-of-type(n+4), .ticker__track i:nth-of-type(n+4) { display: none; }
  .section { margin-inline: 20px; padding-block: 82px; }.section-heading { margin-bottom: 32px; grid-template-columns: 1fr; gap: 16px; }.section-heading > p { font-size: 13px; }.section-heading h2, .order-flow h2, .story h2 { font-size: 42px; }.filter-bar { margin-right: -20px; }
  .product-grid { grid-template-columns: 1fr; gap: 18px; }.product-card__visual, .product-card__image { min-height: 300px; }.product-card__body { padding: 17px 11px 11px; }
  .order-flow { margin: 0; padding: 82px 20px; gap: 55px; }.steps li { grid-template-columns: 35px 58px 1fr; gap: 12px; min-height: 145px; }.step-icon { width: 56px; height: 56px; border-radius: 19px; }.steps li:not(:last-child)::after { left: 63px; top: 59px; }.steps h3 { font-size: 19px; }.steps p { font-size: 12px; }
  .story__visual { width: 100%; padding: 13px; }.story__caption { right: -5px; bottom: 4%; }.story__content { padding-top: 12px; }
  .customer-gallery { grid-template-columns: 1fr; }.customer-photo--wide, .customer-photo { grid-column: auto; grid-row: auto; }.customer-photo img, .customer-photo--wide img { min-height: 480px; }.customer-note { min-height: auto; padding: 30px; }.customer-photo figcaption { padding: 24px; }
  .review-grid { grid-template-columns: 1fr; }.review-card, .review-card:last-child { grid-column: auto; min-height: 285px; padding: 29px; }
  .closing { margin: 20px 12px 75px; padding: 80px 26px; border-radius: 36px; }.closing::before { inset: 10px; border-radius: 28px; }.closing h2 { font-size: 42px; }.closing__thread svg { opacity: .65; }
  .site-footer { margin-inline: 20px; padding-block: 32px 100px; grid-template-columns: 1fr; text-align: center; }.footer__brand { justify-content: center; }.site-footer nav { justify-self: center; flex-wrap: wrap; justify-content: center; gap: 13px; }.site-footer > p { grid-column: auto; }
  .zalo-float { right: 14px; bottom: 14px; width: 56px; height: 56px; padding: 0; justify-content: center; }.zalo-float > span:last-child { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }.zalo-pulse { left: 11px; }
  .modal { padding: 10px; }.modal__panel { max-height: calc(100vh - 20px); grid-template-columns: 1fr; border-radius: 27px; }.modal__visual { min-height: 300px; }.modal__visual .product-card__visual { min-height: 300px; height: 300px; border-radius: 27px 27px 0 0; }.modal__content { padding: 30px 25px 35px; }.modal__content h2 { font-size: 32px; }.modal__close { top: 10px; right: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
