:root {
    --ink: #0c1d36;
    --ink-soft: #526073;
    --navy: #0b1b31;
    --gold: #a7792e;
    --gold-light: #c39b57;
    --paper: #fbfaf8;
    --cream: #f3eee7;
    --line: #e5e2dd;
    --white: #fff;
    --shadow: 0 14px 42px rgba(18, 30, 49, .09);
    --radius: 14px;
    --container: 1680px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}
body, button, input, select { font-size: 15px; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.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; z-index: 9999; top: 8px; left: 8px; padding: 10px 16px;
    color: var(--white); background: var(--navy); transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.utility-bar { color: #eef3f8; background: linear-gradient(90deg, #111f33, #182e43); }
.utility-bar__inner { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.utility-points, .utility-contact { display: flex; align-items: center; gap: 40px; }
.utility-points span { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; white-space: nowrap; }
.utility-points svg, .header-search svg, .sample-button svg, .filters svg {
    width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.6;
    stroke-linecap: round; stroke-linejoin: round;
}
.utility-contact { gap: 18px; font-size: 12px; }
.utility-contact a { text-decoration: none; opacity: .92; }
.utility-contact a:hover { color: #fff; }
.utility-contact span { width: 1px; height: 17px; background: rgba(255,255,255,.3); }

.nav-shell { position: relative; z-index: 50; background: rgba(255,255,255,.98); border-bottom: 1px solid #e9e9e9; }
.nav-shell__inner { min-height: 82px; display: grid; grid-template-columns: 300px auto minmax(280px, 440px) 180px; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; min-width: max-content; }
.brand__logo { width: 68px; height: 68px; flex: 0 0 68px; object-fit: contain; }
.brand span { display: flex; flex-direction: column; }
.brand strong { font-family: Georgia, "Times New Roman", serif; font-size: 20px; letter-spacing: 1.1px; }
.brand small { margin-top: 4px; color: #78808b; font-size: 8px; letter-spacing: 2.1px; }
.primary-nav { display: flex; justify-content: center; align-items: stretch; gap: 34px; height: 82px; }
.primary-nav a { position: relative; display: grid; place-items: center; text-decoration: none; font-size: 13px; white-space: nowrap; }
.primary-nav a::after { content: ""; position: absolute; bottom: 16px; left: 50%; width: 0; height: 2px; background: var(--gold); transform: translateX(-50%); transition: width .2s ease; }
.primary-nav a:hover::after, .primary-nav a.is-active::after { width: 100%; }
.header-search { height: 45px; display: flex; align-items: center; gap: 11px; padding: 0 16px; border: 1px solid #dcdfe3; border-radius: 14px; background: #f9f9f9; }
.header-search svg { flex: 0 0 auto; color: #111827; }
.header-search input { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: 13px; }
.header-search input::placeholder { color: #6d7280; }
.sample-button, .button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; border-radius: 11px; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.sample-button { min-height: 45px; padding: 0 18px; color: #fff; background: linear-gradient(135deg, #b68c49, #95681f); font-size: 13px; font-weight: 650; box-shadow: 0 8px 18px rgba(150,104,31,.18); }
.sample-button svg { width: 18px; }
.sample-button:hover, .button:hover { transform: translateY(-2px); }
.menu-toggle { display: none; width: 42px; height: 42px; padding: 9px; border: 1px solid var(--line); border-radius: 9px; background: #fff; }
.menu-toggle > span:not(.sr-only) { display: block; height: 2px; margin: 4px 0; background: var(--ink); }

.hero { position: sticky; z-index: 0; top: 0; min-height: clamp(560px, 72vh, 760px); display: grid; align-items: center; overflow: hidden; background: #e9e5df; isolation: isolate; }
.hero__slides { position: absolute; z-index: -2; inset: 0; overflow: hidden; }
.hero__slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: 0; transform: scale(1.035); transition: opacity 1.15s ease, transform 6.5s ease; }
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__wash { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(245,242,238,.96) 0%, rgba(245,242,238,.87) 31%, rgba(245,242,238,.18) 57%, rgba(5,17,31,.18) 100%); }
.hero__content { padding-block: clamp(82px, 14vh, 160px); }
.eyebrow { margin: 0 0 7px; color: #334155; font-size: 13px; font-weight: 650; letter-spacing: 6px; text-transform: uppercase; }
.hero h1 { max-width: 720px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 4vw, 65px); line-height: .98; font-weight: 700; letter-spacing: -2.2px; }
.gold-rule { display: block; width: 72px; height: 3px; margin: 22px 0 14px; background: var(--gold); }
.hero__content > p:not(.eyebrow) { max-width: 670px; margin: 0 0 22px; color: #4d5561; font-size: 16px; line-height: 1.45; }
.button { min-height: 42px; padding: 0 22px; border: 1px solid transparent; font-weight: 650; cursor: pointer; }
.button--primary, .button--gold { color: #fff; background: linear-gradient(135deg, #b78c47, #9b6f29); box-shadow: 0 9px 22px rgba(155,111,41,.22); }
.button--outline { color: var(--ink); border-color: #c9aa77; background: #fff; }
.hero__signature { position: absolute; right: 6%; bottom: 45px; color: #fff; font-family: "Segoe Script", cursive; font-size: clamp(28px, 3vw, 45px); line-height: .9; text-align: center; transform: rotate(-6deg); text-shadow: 0 2px 12px rgba(0,0,0,.35); }
.hero__signature span { margin-left: 40px; font-size: .75em; }
.hero__controls { position: absolute; z-index: 3; right: 50%; bottom: 16px; display: flex; align-items: center; gap: 11px; transform: translateX(50%); }
.hero__controls > button { width: 34px; height: 34px; display: grid; place-items: center; padding: 0 0 3px; color: #fff; border: 1px solid rgba(255,255,255,.68); border-radius: 50%; background: rgba(8,24,43,.48); font-family: Georgia, serif; font-size: 25px; line-height: 1; cursor: pointer; backdrop-filter: blur(5px); }
.hero__controls > button:hover, .hero__controls > button:focus-visible { background: rgba(8,24,43,.82); }
.hero__dots { display: flex; align-items: center; gap: 7px; }
.hero__dots button { width: 7px; height: 7px; padding: 0; border: 0; border-radius: 999px; background: rgba(255,255,255,.62); cursor: pointer; transition: width .2s ease, background .2s ease; }
.hero__dots button.is-active { width: 24px; background: #fff; }

.category-strip { position: relative; z-index: 5; margin-top: -28px; padding: 31px 0 14px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); border-radius: 28px 28px 0 0; box-shadow: 0 -16px 40px rgba(8,24,43,.12); }
.category-strip__inner { display: flex; gap: 14px; overflow-x: auto; scrollbar-width: thin; padding-bottom: 2px; }
.category-pill { min-width: 190px; flex: 1 0 190px; height: 70px; display: flex; align-items: center; gap: 14px; padding: 8px 14px; color: var(--ink); border: 1px solid #e1e3e5; border-radius: 13px; background: #fff; text-align: left; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.category-pill:hover { transform: translateY(-1px); border-color: #c6a36b; }
.category-pill.is-active { border-color: #b48740; box-shadow: 0 6px 20px rgba(105,73,24,.09); }
.category-pill img, .category-pill__swatch { width: 51px; height: 51px; flex: 0 0 51px; border-radius: 50%; object-fit: cover; }
.category-pill > span:last-child { font-size: 13px; font-weight: 650; }
.category-pill > span strong, .category-pill > span small { display: block; }
.category-pill > span small { margin-top: 2px; }
.category-pill__all { width: 30px; height: 30px; display: grid !important; grid-template-columns: 1fr 1fr; gap: 3px; margin: 0 6px; }
.category-pill__all i { display: block; border: 2px solid var(--ink); border-radius: 2px; }

.catalog { position: relative; z-index: 5; padding: 26px 0 32px; background: linear-gradient(#fff, #fcfbf9); }
.catalog__layout { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: 30px; align-items: start; }
.filters { position: sticky; top: 18px; overflow: hidden; border: 1px solid #e3e4e6; border-radius: 14px; background: #fff; box-shadow: 0 6px 24px rgba(15,23,42,.04); }
.filters__heading { display: flex; align-items: center; justify-content: space-between; padding: 17px 18px 13px; border-bottom: 1px solid #e9e9e9; }
.filters__heading h2 { display: flex; align-items: center; gap: 8px; margin: 0; font-family: inherit; font-size: 14px; }
.filters__heading h2 svg { width: 18px; }
.filters__heading button, .filters [data-clear-filters] { padding: 0; color: #7b7e85; border: 0; background: transparent; font-size: 11px; cursor: pointer; }
.filters fieldset { margin: 0 16px; padding: 14px 0 15px; border: 0; border-bottom: 1px solid #e7e7e7; }
.filters legend { width: 100%; margin-bottom: 9px; padding: 0; font-size: 12px; font-weight: 750; }
.filters label { display: flex; align-items: center; gap: 8px; margin: 8px 0; color: #596170; font-size: 12px; cursor: pointer; }
.filters input { width: 14px; height: 14px; margin: 0; accent-color: var(--gold); }
.color-options { display: flex; flex-wrap: wrap; gap: 11px; padding: 2px; }
.color-dot { position: relative; width: 25px; height: 25px; padding: 0; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 0 0 1px #cfd3d8; opacity: .9; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease; }
.color-dot:hover, .color-dot:focus-visible { opacity: 1; transform: translateY(-2px) scale(1.12); box-shadow: 0 0 0 2px rgba(174,125,45,.45), 0 5px 12px rgba(15,38,66,.16); outline: none; }
.color-dot.is-active, .color-dot[aria-pressed="true"] { opacity: 1; transform: scale(1.12); box-shadow: 0 0 0 3px var(--gold), 0 5px 12px rgba(15,38,66,.18); }
.color-dot.is-active::after, .color-dot[aria-pressed="true"]::after { content: "✓"; position: absolute; inset: 0; display: grid; place-items: center; color: #fff; font-size: 13px; font-weight: 900; text-shadow: 0 1px 3px rgba(0,0,0,.6); }
.color-dot--amarillo.is-active::after, .color-dot--amarillo[aria-pressed="true"]::after, .color-dot--beige.is-active::after, .color-dot--beige[aria-pressed="true"]::after, .color-dot--blanco.is-active::after, .color-dot--blanco[aria-pressed="true"]::after { color: var(--ink); text-shadow: none; }
.color-dot--rojo { background: #d91e36; }.color-dot--rosa { background: #ea6593; }.color-dot--naranja { background: #ff6d1d; }.color-dot--amarillo { background: #ffc51d; }.color-dot--verde { background: #05a862; }.color-dot--azul { background: #2777c9; }.color-dot--morado { background: #8f45d9; }.color-dot--beige { background: #d4b98e; }.color-dot--cafe { background: #76503b; }.color-dot--gris { background: #aeb0b2; }.color-dot--blanco { background: #f8f7f2; }.color-dot--negro { background: #202020; }.color-dot--multicolor { background: conic-gradient(#d91e36, #ffc51d, #05a862, #2777c9, #8f45d9, #d91e36); }
.filter-note { margin: 11px 0 0; color: #7c8490; font-size: 10px; line-height: 1.4; }
.filters details { margin: 0 16px; border-bottom: 1px solid #e7e7e7; }
.filters summary { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 14px 0; font-size: 12px; font-weight: 750; cursor: pointer; }
.filters summary span { min-width: 20px; padding: 2px 6px; color: #7a6037; border-radius: 10px; background: #f3ece2; font-size: 9px; text-align: center; }
.filter-options { max-height: 220px; overflow: auto; padding: 0 2px 10px; scrollbar-width: thin; scrollbar-color: #c9b08b transparent; }
.filter-options label { margin: 7px 0; }
.filter-options label span { min-width: 0; flex: 1; }
.filter-options label small { margin-left: auto; color: #9298a0; font-size: 9px; }
.catalog__heading { min-height: 68px; display: flex; justify-content: space-between; align-items: center; gap: 30px; margin-bottom: 13px; }
.catalog__heading h2, .about h2, .testimonials h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 2.2vw, 40px); letter-spacing: -.7px; }
.catalog__heading p { margin: 3px 0 0; color: #68707c; font-size: 13px; }
.catalog__meta { display: flex; align-items: center; gap: 32px; color: #69717c; font-size: 11px; white-space: nowrap; }
.catalog__meta label { display: flex; align-items: center; gap: 10px; }
.catalog__meta select { height: 38px; padding: 0 34px 0 13px; color: var(--ink); border: 1px solid #dfe2e6; border-radius: 10px; background: #fff; font-size: 11px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: 20px; }
.product-card { min-width: 0; overflow: hidden; border: 1px solid #e6e7e8; border-radius: 14px; background: #fff; box-shadow: 0 7px 24px rgba(17,31,52,.045); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.product-card[hidden] { display: none; }
.product-card__media { position: relative; aspect-ratio: 1.18 / 1; overflow: hidden; background: #e9e7e3; }
.product-card__media > a { display: block; width: 100%; height: 100%; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.favorite-button { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; display: grid; place-items: center; padding: 0; color: #647184; border: 0; border-radius: 50%; background: rgba(255,255,255,.94); box-shadow: 0 3px 10px rgba(0,0,0,.12); cursor: pointer; }
.favorite-button svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.favorite-button[aria-pressed="true"] { color: #b81438; }
.favorite-button[aria-pressed="true"] svg { fill: currentColor; }
.product-card__body { padding: 10px 13px 12px; }
.product-card h3 { overflow: hidden; margin: 0 0 2px; font-size: 13px; white-space: nowrap; text-overflow: ellipsis; }
.product-card p { margin: 0 0 8px; color: #737985; font-size: 10px; }
.mini-swatches { position: relative; display: flex; align-items: center; gap: 8px; min-height: 22px; margin-bottom: 10px; overflow: visible; }
.mini-swatches i { position: relative; width: 19px; height: 19px; flex: 0 0 19px; display: block; border: 1px solid rgba(12,29,54,.2); border-radius: 50%; box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), 0 2px 5px rgba(11,27,49,.11); cursor: help; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease, filter .2s ease; }
.mini-swatches i::before { content: ""; position: absolute; inset: -4px; border: 1px solid transparent; border-radius: 50%; transform: scale(.72); transition: border-color .2s ease, transform .25s ease; }
.mini-swatches i::after { content: attr(data-color-label); position: absolute; z-index: 15; left: 0; bottom: calc(100% + 9px); width: max-content; max-width: 145px; padding: 6px 9px; color: #fff; border-radius: 7px; background: #0b213b; box-shadow: 0 7px 18px rgba(4,18,33,.22); font-family: Inter, "Segoe UI", Arial, sans-serif; font-size: 9px; font-style: normal; font-weight: 700; letter-spacing: .7px; line-height: 1.2; text-transform: uppercase; white-space: normal; opacity: 0; pointer-events: none; transform: translate(-4px, 5px); transition: opacity .18s ease, transform .18s ease; }
.mini-swatches i:hover,
.mini-swatches i:focus-visible { z-index: 16; border-color: #a8793e; box-shadow: inset 0 0 0 1px rgba(255,255,255,.55), 0 5px 14px rgba(102,67,29,.28); outline: 0; animation: swatch-color-dance .7s ease both; }
.mini-swatches i:hover::before,
.mini-swatches i:focus-visible::before { border-color: rgba(169,121,62,.58); transform: scale(1); }
.mini-swatches i:hover::after,
.mini-swatches i:focus-visible::after { opacity: 1; transform: translate(-4px, 0); }
@keyframes swatch-color-dance { 0% { transform: translateY(0) scale(1); filter: saturate(1); } 45% { transform: translateY(-5px) scale(1.22) rotate(8deg); filter: saturate(1.55) brightness(1.16) hue-rotate(10deg); } 100% { transform: translateY(-3px) scale(1.14); filter: saturate(1.28) brightness(1.08); } }
.tone-1 { background: #064bdc; }.tone-2 { background: #ec356f; }.tone-3 { background: #0aae76; }.tone-4 { background: #d86c18; }.tone-5 { background: #8126ca; }.tone-6 { background: #1d293d; }
.product-card__link { min-height: 32px; display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--ink); border: 1px solid #d0ae78; border-radius: 18px; text-decoration: none; font-size: 10px; font-weight: 650; }
.product-card__link:hover { color: #fff; background: var(--gold); }
.empty-state { padding: 60px 20px; text-align: center; border: 1px dashed #c9cdd1; border-radius: 16px; }
.empty-state[hidden] { display: none; }

.about { position: relative; z-index: 5; min-height: clamp(600px, 68vw, 724px); display: grid; align-items: center; overflow: hidden; padding: clamp(76px, 7vw, 112px) 0; color: #fff; background: #071a2d; isolation: isolate; }
.about__background { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.about__shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(4,17,31,.18) 0%, rgba(4,17,31,.42) 32%, rgba(4,17,31,.82) 49%, rgba(4,17,31,.92) 100%); }
.about__inner { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: clamp(48px, 6.4vw, 108px); align-items: center; }
.about__intro { padding-left: clamp(24px, 13vw, 228px); }
.about__eyebrow { display: flex; align-items: center; gap: 20px; margin: 0 0 18px; color: #d7a966; font-size: clamp(12px, .9vw, 15px); font-weight: 750; letter-spacing: 6px; text-transform: uppercase; white-space: nowrap; }
.about__eyebrow span { width: 46px; height: 1px; background: rgba(215,169,102,.42); }
.about h2 { max-width: 690px; margin: 0; color: #fffaf3; font-size: clamp(52px, 5vw, 82px); line-height: .98; letter-spacing: -2.2px; text-transform: uppercase; text-wrap: balance; }
.about__tagline { margin: 34px 0 0 96px; color: rgba(255,255,255,.67); font-size: clamp(12px, .9vw, 15px); line-height: 1.85; letter-spacing: 5px; text-transform: uppercase; }
.about__story { min-width: 0; padding: 8px 0 8px clamp(38px, 4.4vw, 76px); border-left: 1px solid rgba(210,171,107,.52); }
.about h3 { margin: 0 0 20px; color: #fffaf3; font-family: Georgia, "Times New Roman", serif; font-size: clamp(28px, 2.35vw, 42px); line-height: 1.12; }
.about__copy { max-width: 760px; margin: 0; color: rgba(240,244,248,.84); font-size: clamp(15px, 1.1vw, 18px); line-height: 1.68; }
.about__values { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 36px 0 38px; }
.about-value { min-width: 0; display: flex; align-items: center; gap: 16px; padding: 0 22px; border-right: 1px solid rgba(255,255,255,.25); }
.about-value:first-child { padding-left: 0; }
.about-value:last-child { padding-right: 0; border-right: 0; }
.about-value__icon { width: 64px; height: 64px; flex: 0 0 64px; display: grid; place-items: center; color: #dbb67c; border: 1px solid #dbb67c; border-radius: 50%; }
.about-value__icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.about-value p { min-width: 0; margin: 0; }
.about-value strong, .about-value span { display: block; }
.about-value strong { color: #d7a35e; font-size: clamp(15px, 1vw, 18px); line-height: 1.25; white-space: nowrap; }
.about-value p > span { margin-top: 5px; color: rgba(255,255,255,.76); font-size: clamp(12px, .9vw, 15px); line-height: 1.25; white-space: nowrap; }
.about .about__button { min-width: min(100%, 380px); min-height: 56px; margin: 0; padding: 0 32px; color: #fff; border-radius: 999px; background: linear-gradient(135deg, #b8814c, #a66f3e); box-shadow: 0 14px 30px rgba(0,0,0,.2); font-size: 16px; }
.about .about__button:hover { background: linear-gradient(135deg, #c18d58, #ad7441); }
.testimonials { position: relative; z-index: 5; overflow: hidden; padding: clamp(72px, 6vw, 96px) 0 54px; text-align: center; background: #f7f2ec; isolation: isolate; }
.testimonials__background { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.testimonials__veil { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(251,247,242,.24), rgba(255,253,250,.7) 24%, rgba(255,253,250,.72) 76%, rgba(251,247,242,.26)); }
.testimonials__header { max-width: 980px; margin: 0 auto; }
.testimonials__eyebrow { display: flex; align-items: center; justify-content: center; gap: 26px; margin: 0 0 14px; color: #7b5b36; font-size: clamp(12px, .9vw, 15px); font-weight: 700; letter-spacing: 7px; text-transform: uppercase; }
.testimonials__eyebrow::before, .testimonials__eyebrow::after { content: ""; width: 64px; height: 1px; background: #c5a477; }
.testimonials h2 { margin: 0; color: var(--ink); font-size: clamp(38px, 3.4vw, 58px); line-height: 1.05; letter-spacing: -1.4px; }
.testimonials__lead { margin: 12px 0 0; color: #7a7e84; font-size: clamp(14px, 1.1vw, 18px); line-height: 1.35; }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(18px, 1.7vw, 30px); margin-top: 38px; text-align: left; }
.testimonial-card { min-width: 0; min-height: 280px; display: flex; flex-direction: column; margin: 0; padding: 28px clamp(26px, 2.3vw, 42px) 24px; border: 1px solid rgba(195,164,127,.28); border-radius: 20px; background: rgba(255,255,255,.88); box-shadow: 0 13px 35px rgba(78,55,35,.08); backdrop-filter: blur(3px); }
.testimonial-card__top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.testimonial-card__mark { height: 48px; color: #e7d3b8; font-family: Georgia, "Times New Roman", serif; font-size: 76px; line-height: .9; }
.testimonial-card__category { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; color: #625a52; border-radius: 999px; background: linear-gradient(90deg, #f4ede5, #eee5dc); font-size: 13px; white-space: nowrap; }
.testimonial-card__category svg { width: 22px; height: 22px; fill: none; stroke: #aa762d; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.testimonial-card__quote { flex: 1; margin: 14px 0 22px; color: #14304f; font-family: Georgia, "Times New Roman", serif; font-size: clamp(20px, 1.45vw, 27px); line-height: 1.28; }
.testimonial-card__footer { display: flex; align-items: center; gap: 18px; }
.testimonial-card__person { width: 62px; height: 62px; flex: 0 0 62px; display: grid; place-items: center; color: #a97731; border-radius: 50%; background: #f3ebe1; }
.testimonial-card__person svg { width: 36px; height: 36px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.testimonial-card__author { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.testimonial-card cite { overflow: hidden; color: #102b4a; font-family: Georgia, "Times New Roman", serif; font-size: 17px; font-style: normal; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; }
.testimonial-card__stars { color: #ad792f; font-size: 20px; letter-spacing: 3px; line-height: 1; white-space: nowrap; }
.benefits { position: relative; z-index: 5; background: #f7f2ec; border-top: 1px solid #d9bd97; border-bottom: 1px solid #e8ddd0; }
.benefits__grid { min-height: 134px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: stretch; }
.benefit-item { min-width: 0; display: flex; align-items: center; gap: 20px; padding: 22px clamp(22px, 2.5vw, 46px); border-right: 1px solid #e3d2bd; }
.benefit-item:first-child { padding-left: 0; }
.benefit-item:last-child { padding-right: 0; border-right: 0; }
.benefit-item__icon { width: 76px; height: 76px; flex: 0 0 76px; display: grid; place-items: center; color: #a87833; border-radius: 50%; background: #f0e7dc; }
.benefit-item__icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.benefit-item > span:last-child { min-width: 0; display: flex; flex-direction: column; }
.benefit-item b { color: #102b4a; font-family: Georgia, "Times New Roman", serif; font-size: clamp(15px, 1vw, 19px); line-height: 1.2; }
.benefit-item small { margin-top: 6px; color: #777a7f; font-size: clamp(11px, .85vw, 14px); line-height: 1.3; }
.project-cta { position: relative; z-index: 5; color: #fff; background: radial-gradient(circle at 72% 40%, #203d5d 0, #0c213a 31%, #07162a 72%); }
.project-cta__inner { min-height: 88px; display: flex; align-items: center; gap: 50px; }
.project-cta h2 { margin: 0; font-family: Georgia, serif; font-size: 19px; }
.project-cta p { margin: 3px 0 0; color: #d7dee7; font-size: 12px; }
.project-cta__script { margin-left: auto !important; font-family: "Segoe Script", cursive; font-size: 15px !important; text-align: center; transform: rotate(-4deg); }
.whatsapp-float { position: fixed; z-index: 90; right: 28px; bottom: 24px; width: 58px; height: 58px; display: grid; place-items: center; color: #fff; border: 4px solid #fff; border-radius: 50%; background: #13ad5a; box-shadow: 0 8px 20px rgba(0,0,0,.24); }
.whatsapp-float svg { width: 36px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.site-footer { position: relative; z-index: 5; padding: 55px 0 20px; color: #d4dae1; background: #071321; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; }
.brand--footer { color: #fff; }
.brand--footer .brand__logo { filter: brightness(0) invert(1); opacity: .9; }
.site-footer__grid > div:first-child > p { max-width: 470px; line-height: 1.6; }
.site-footer h2 { margin: 0 0 15px; color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px; }
.site-footer__grid > div:not(:first-child) { display: flex; flex-direction: column; gap: 9px; }
.site-footer a { color: inherit; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer__grid p { color: #8e9ba9; }
.site-footer__bottom { display: flex; justify-content: space-between; margin-top: 35px; padding-top: 18px; border-top: 1px solid #1b2a3a; color: #768494; font-size: 11px; }
.error-page { min-height: 62vh; display: grid; place-items: center; align-content: center; padding: 60px 24px; text-align: center; }
.error-page h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(32px, 5vw, 60px); }
.error-page p:not(.eyebrow) { color: var(--ink-soft); }

@media (max-width: 1400px) {
    .nav-shell__inner { grid-template-columns: 260px auto minmax(240px, 340px) 165px; gap: 18px; }
    .primary-nav { gap: 22px; }
    .brand strong { font-size: 18px; }
    .brand__logo { width: 62px; height: 62px; flex-basis: 62px; }
    .catalog__layout { grid-template-columns: 235px minmax(0, 1fr); gap: 24px; }
}

@media (max-width: 1120px) {
    .utility-points span:nth-child(3) { display: none; }
    .nav-shell__inner { min-height: 76px; grid-template-columns: 1fr auto auto; }
    .menu-toggle { display: block; order: 3; }
    .sample-button { display: none; }
    .primary-nav { position: absolute; top: 76px; right: 24px; width: min(340px, calc(100vw - 48px)); height: auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px; border: 1px solid var(--line); border-radius: 12px; background: #fff; box-shadow: var(--shadow); }
    .primary-nav.is-open { display: flex; }
    .primary-nav a { display: block; padding: 13px; }
    .primary-nav a::after { display: none; }
    .header-search { width: min(42vw, 420px); }
    .hero__signature { display: none; }
    .catalog__heading { align-items: flex-end; }
    .catalog__meta { align-items: flex-end; flex-direction: column; gap: 8px; }
    .about { min-height: auto; padding: 72px 0; }
    .about__background { object-position: 28% center; }
    .about__shade { background: linear-gradient(180deg, rgba(5,19,34,.62), rgba(5,19,34,.91) 56%, rgba(5,19,34,.97)); }
    .about__inner { grid-template-columns: 1fr; gap: 38px; }
    .about__intro { padding-left: 0; }
    .about h2 { max-width: 650px; font-size: clamp(46px, 10vw, 70px); }
    .about__tagline { margin: 24px 0 0; }
    .about__story { padding: 34px 0 0; border-top: 1px solid rgba(210,171,107,.52); border-left: 0; }
    .about__values { margin-block: 30px 34px; }
    .about-value { padding-inline: 15px; }
    .about-value__icon { width: 54px; height: 54px; flex-basis: 54px; }
    .about-value__icon svg { width: 29px; height: 29px; }
    .testimonial-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .testimonial-card:last-child:nth-child(odd) { grid-column: 1 / -1; }
    .testimonial-card { padding-inline: 24px; }
    .testimonial-card__category { padding-inline: 16px; }
    .benefits__grid { grid-template-columns: 1fr 1fr; }
    .benefit-item:nth-child(2) { border-right: 0; }
    .benefit-item:nth-child(-n+2) { border-bottom: 1px solid #e3d2bd; }
    .benefit-item:nth-child(3) { padding-left: 0; }
}

@media (max-width: 820px) {
    .container { width: min(calc(100% - 28px), var(--container)); }
    .utility-bar__inner { min-height: 32px; }
    .utility-points { gap: 16px; }
    .utility-points span:not(:first-child), .utility-contact > a:first-child, .utility-contact > span { display: none; }
    .nav-shell__inner { grid-template-columns: 1fr auto; gap: 12px; padding-block: 10px; }
    .header-search { grid-column: 1 / -1; grid-row: 2; width: 100%; }
    .menu-toggle { grid-column: 2; grid-row: 1; }
    .primary-nav { top: 132px; right: 14px; }
    .hero { position: relative; min-height: 520px; }
    .category-strip { margin-top: -20px; padding-top: 25px; border-radius: 20px 20px 0 0; }
    .hero__wash { background: linear-gradient(90deg, rgba(245,242,238,.96), rgba(245,242,238,.75)); }
    .hero h1 { max-width: 520px; }
    .category-pill { min-width: 170px; flex-basis: 170px; }
    .catalog__layout { grid-template-columns: 1fr; }
    .filters { position: static; }
    .filters fieldset { display: block; }
    .filters details { display: block; }
    .filters__heading { border: 0; }
    .catalog__heading { align-items: flex-start; flex-direction: column; gap: 15px; }
    .catalog__meta { width: 100%; align-items: center; flex-direction: row; justify-content: space-between; }
    .testimonials { padding: 62px 0 42px; }
    .testimonials__lead br { display: none; }
    .testimonial-grid { grid-template-columns: 1fr; margin-top: 30px; }
    .testimonial-card:last-child:nth-child(odd) { grid-column: auto; }
    .testimonial-card { min-height: auto; }
    .benefits__grid { grid-template-columns: 1fr 1fr; }
    .project-cta__inner { padding-block: 24px; flex-wrap: wrap; gap: 18px; }
    .project-cta__script { display: none; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .site-footer__grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 520px) {
    .brand strong { font-size: 16px; }
    .brand small { letter-spacing: 1.4px; }
    .brand__logo { width: 54px; height: 54px; flex-basis: 54px; }
    .hero__content { padding-block: 45px; }
    .hero h1 { font-size: 43px; }
    .hero__content > p:not(.eyebrow) br { display: none; }
    .catalog { padding-top: 18px; }
    .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
    .product-card__body { padding: 9px; }
    .product-card__media { aspect-ratio: 1 / 1.08; }
    .catalog__meta label { display: none; }
    .about { padding: 58px 0; }
    .about__eyebrow { letter-spacing: 4px; }
    .about h2 { font-size: clamp(42px, 13vw, 58px); letter-spacing: -1.4px; }
    .about__tagline { font-size: 11px; letter-spacing: 3px; }
    .about__values { grid-template-columns: 1fr; gap: 20px; }
    .about-value { padding: 0 0 20px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
    .about-value:last-child { padding-bottom: 0; border-bottom: 0; }
    .about-value strong { font-size: 17px; }
    .about-value p > span { font-size: 14px; }
    .about .about__button { width: 100%; min-width: 0; padding-inline: 20px; font-size: 14px; }
    .testimonials { padding-top: 52px; }
    .testimonials__eyebrow { gap: 12px; letter-spacing: 4px; }
    .testimonials__eyebrow::before, .testimonials__eyebrow::after { width: 28px; }
    .testimonials h2 { font-size: 38px; }
    .testimonial-card { padding: 22px 20px; border-radius: 16px; }
    .testimonial-card__category { min-height: 34px; padding-inline: 13px; font-size: 11px; }
    .testimonial-card__quote { font-size: 21px; }
    .benefits__grid { grid-template-columns: 1fr; }
    .benefit-item, .benefit-item:nth-child(2), .benefit-item:nth-child(3) { padding: 20px 0; border-right: 0; border-bottom: 1px solid #e3d2bd; }
    .benefit-item:last-child { padding: 20px 0; border-bottom: 0; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__grid > div:first-child { grid-column: auto; }
    .site-footer__bottom { flex-direction: column; gap: 8px; }
    .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
/* Product detail page */
.product-page { position: relative; z-index: 5; color: var(--ink); background: #fbfaf8; }
.product-detail-hero { position: relative; min-height: 420px; display: grid; overflow: hidden; background: #e8ddd1; isolation: isolate; }
.product-detail-hero__image { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center 46%; }
.product-detail-hero__wash { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgba(249,245,240,.97) 0%, rgba(249,245,240,.92) 24%, rgba(249,245,240,.55) 47%, rgba(249,245,240,.08) 72%); }
.product-detail-hero__content { min-height: 420px; display: flex; align-items: center; justify-content: space-between; gap: 48px; padding-block: 54px; }
.product-detail-hero__copy .eyebrow { color: #986837; letter-spacing: 4px; }
.product-detail-hero__copy h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 5vw, 76px); font-weight: 500; line-height: .94; letter-spacing: -2px; }
.product-detail-hero__copy > p:not(.eyebrow) { margin: 0 0 20px; color: #3d3d3c; font-size: 16px; line-height: 1.45; }
.product-detail-hero__feature { align-self: flex-end; min-width: 270px; display: flex; align-items: center; gap: 18px; margin-bottom: 6px; padding: 24px 26px; border: 1px solid rgba(150,111,69,.22); border-radius: 18px; background: rgba(255,255,255,.86); box-shadow: 0 18px 40px rgba(67,42,23,.12); backdrop-filter: blur(8px); }
.product-detail-hero__feature-icon { width: 56px; height: 56px; flex: 0 0 56px; display: grid; place-items: center; color: #9d6b32; border-radius: 50%; background: #f4eadf; }
.product-detail-hero__feature-icon svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.product-detail-hero__feature > span:last-child { display: flex; flex-direction: column; }
.product-detail-hero__feature strong { color: #191919; font-size: 16px; line-height: 1.15; }
.product-detail-hero__feature small { margin-top: 8px; color: #67645f; font-size: 12px; line-height: 1.4; }

.product-category-rail { position: relative; z-index: 6; background: rgba(255,255,255,.98); border-bottom: 1px solid #ece5dc; box-shadow: 0 10px 28px rgba(39,28,19,.04); }
.product-category-rail__inner { display: flex; align-items: stretch; justify-content: center; gap: clamp(16px, 3vw, 52px); overflow-x: auto; padding-block: 22px; scrollbar-width: thin; }
.product-category-link { min-width: 112px; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 9px; padding: 7px 10px; text-align: center; text-decoration: none; border-radius: 24px; transition: transform .2s ease, background .2s ease, color .2s ease; }
.product-category-link:hover { transform: translateY(-2px); }
.product-category-link img { width: 70px; height: 70px; border: 2px solid transparent; border-radius: 50%; object-fit: cover; box-shadow: 0 7px 18px rgba(31,25,19,.08); }
.product-category-link strong { font-size: 12px; font-weight: 600; white-space: nowrap; }
.product-category-link.is-active img { border-color: #a8793c; }
.product-category-link.is-active strong { color: #966329; }
.product-category-link--all { min-width: 112px; color: #fff; background: linear-gradient(135deg, #a9723d, #8f5c2d); }
.product-category-link__all { width: 30px; height: 30px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.product-category-link__all i { border: 2px solid currentColor; border-radius: 2px; }

.product-overview { padding: clamp(66px, 6vw, 96px) 0 74px; background: linear-gradient(100deg, #fff 0%, #faf7f2 64%, #f5eee5 100%); }
.product-overview__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(360px, .75fr); gap: clamp(52px, 7vw, 112px); align-items: center; }
.product-back-link { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; color: #8c6a43; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.product-overview__content h2 { margin: 0 0 20px; color: #101820; font-family: Georgia, "Times New Roman", serif; font-size: clamp(40px, 3.6vw, 60px); font-weight: 500; letter-spacing: 2px; text-transform: uppercase; }
.product-overview__category { display: flex; align-items: center; gap: 10px; margin: 0; color: #77706a; font-size: 14px; }
.product-overview__category svg { width: 18px; height: 18px; fill: none; stroke: #a87538; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.product-overview__rule { display: block; height: 1px; margin: 25px 0 20px; background: linear-gradient(90deg, #c7a477, rgba(199,164,119,.16)); }
.product-overview__content h3 { margin: 0 0 12px; color: #b57b38; font-size: 13px; letter-spacing: .9px; text-transform: uppercase; }
.product-overview__description { max-width: 800px; margin: 0; color: #505050; font-size: 15px; line-height: 1.75; }
.product-traits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; margin-top: 30px; }
.product-trait { min-width: 0; display: flex; align-items: center; flex-direction: column; gap: 10px; color: #242424; text-align: center; }
.product-trait > span { width: 62px; height: 62px; display: grid; place-items: center; color: #a87436; border-radius: 50%; background: #f5ece3; }
.product-trait svg { width: 33px; height: 33px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.product-trait small { font-size: 12px; line-height: 1.25; }
.purchase-card { padding: clamp(28px, 3vw, 42px); border: 1px solid #e3d0b7; border-radius: 18px; background: rgba(255,252,247,.86); box-shadow: 0 18px 45px rgba(83,53,26,.07); }
.purchase-card h3 { display: flex; align-items: center; gap: 10px; margin: 0 0 20px; font-family: Georgia, "Times New Roman", serif; font-size: 19px; text-transform: uppercase; }
.purchase-card h3 svg { width: 22px; height: 22px; fill: none; stroke: #a97638; stroke-width: 1.7; stroke-linecap: round; }
.purchase-card p { margin: 0; color: #64615d; font-size: 14px; line-height: 1.75; }
.purchase-card__button { margin-top: 26px; color: #32271d; border: 1px solid #bd8950; border-radius: 999px; background: #fffaf4; }
.purchase-card__button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

.product-uses { position: relative; overflow: hidden; padding: clamp(70px, 6vw, 96px) 0 44px; background: radial-gradient(circle at 100% 0%, rgba(210,181,150,.11), transparent 28%), linear-gradient(135deg, #fffdfa, #faf7f2); isolation: isolate; }
.product-uses::before, .product-uses::after { content: ""; position: absolute; z-index: -1; width: 430px; height: 430px; border: 1px solid rgba(193,154,116,.18); border-radius: 50%; }
.product-uses::before { top: 110px; left: -330px; }
.product-uses::after { top: -250px; right: -180px; }
.product-section-heading { text-align: center; }
.product-section-heading h2 { margin: 0; color: #171717; font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 3.6vw, 58px); font-weight: 500; line-height: 1.05; letter-spacing: -.9px; }
.product-section-heading > p:last-child { margin: 12px 0 0; color: #76716c; font-size: clamp(14px, 1.05vw, 18px); line-height: 1.4; letter-spacing: 0; }
.product-section-heading__eyebrow { display: flex; align-items: center; justify-content: center; gap: 22px; margin: 0 0 16px; color: #a47750; font-size: 13px; font-weight: 650; letter-spacing: 6px; text-transform: uppercase; }
.product-section-heading__eyebrow::before, .product-section-heading__eyebrow::after { content: ""; width: 64px; height: 1px; background: #ccb092; }
.product-uses__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(16px, 1.5vw, 26px); margin: 40px auto 0; }
.product-uses__grid--single { max-width: 410px; grid-template-columns: minmax(0, 410px); justify-content: center; }
.product-use-card { min-width: 0; overflow: hidden; border: 1px solid #e8ded3; border-radius: 17px; background: rgba(255,255,255,.9); box-shadow: 0 13px 32px rgba(69,47,29,.075); }
.product-use-card__media { position: relative; display: block; overflow: hidden; background: #eee6dd; }
.product-use-card__media img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; object-position: center 28%; transition: transform .5s ease; }
.product-use-card:nth-child(2) .product-use-card__media img { object-position: center 45%; }
.product-use-card:nth-child(3) .product-use-card__media img { object-position: center 27%; }
.product-use-card:nth-child(4) .product-use-card__media img { object-position: center; }
.product-use-card:hover .product-use-card__media img { transform: scale(1.035); }
.product-use-card__tag { position: absolute; top: 18px; left: 18px; min-height: 40px; display: inline-flex; align-items: center; gap: 10px; padding: 0 20px; color: #3e3934; border: 1px solid rgba(183,151,119,.22); border-radius: 999px; background: rgba(255,251,247,.93); box-shadow: 0 7px 18px rgba(64,43,27,.06); font-size: 11px; font-weight: 650; letter-spacing: .4px; text-transform: uppercase; backdrop-filter: blur(6px); }
.product-use-card__tag svg { width: 19px; height: 19px; fill: none; stroke: #9f6a34; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.product-use-card__body { min-height: 112px; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 20px 20px 21px 24px; }
.product-use-card__body > span:first-child { min-width: 0; }
.product-use-card__body h3 { overflow: hidden; margin: 0; color: #171717; font-family: Georgia, "Times New Roman", serif; font-size: clamp(18px, 1.45vw, 25px); font-weight: 500; line-height: 1.15; white-space: nowrap; text-overflow: ellipsis; }
.product-use-card__body p { overflow: hidden; margin: 8px 0 0; color: #6f6a65; font-size: 12px; line-height: 1.3; white-space: nowrap; text-overflow: ellipsis; }
.product-use-card__arrow { width: 50px; height: 50px; flex: 0 0 50px; display: grid; place-items: center; color: #9c6935; border-radius: 50%; background: #f4ebe2; text-decoration: none; font-size: 22px; transition: color .2s ease, background .2s ease, transform .2s ease; }
.product-use-card__arrow:hover { color: #fff; background: #9c6935; transform: translateX(2px); }
.product-uses__footer { min-height: 94px; display: grid; grid-template-columns: auto minmax(0, 1fr) auto; align-items: center; gap: 22px; margin-top: 38px; padding: 18px 0; border-top: 1px solid #e9ded3; }
.product-uses__footer-icon { width: 64px; height: 64px; display: grid; place-items: center; color: #a16e38; border-radius: 50%; background: #f2e9e0; }
.product-uses__footer-icon svg { width: 35px; height: 35px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.product-uses__footer-copy { display: flex; flex-direction: column; }
.product-uses__footer-copy strong { color: #2a2623; font-family: Georgia, "Times New Roman", serif; font-size: 18px; font-weight: 500; }
.product-uses__footer-copy small { margin-top: 8px; color: #7b736c; font-size: 10px; font-weight: 650; letter-spacing: 4px; text-transform: uppercase; }
.product-uses__footer .button { min-width: 250px; min-height: 54px; border-radius: 999px; }

.product-colors { padding: 72px 0 28px; background: linear-gradient(#fbfaf8, #f7f1ea); }
.product-colors__description { max-width: 760px; margin: 18px auto 0; color: #69645e; text-align: center; line-height: 1.65; }
.product-color-grid { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 220px); gap: 18px; overflow-x: auto; margin-top: 32px; padding: 4px 2px 18px; scroll-snap-type: x proximity; scrollbar-width: thin; }
.product-color-card { overflow: hidden; color: #17263b; text-align: center; text-decoration: none; border: 1px solid #e9ddd0; border-radius: 14px; background: rgba(255,255,255,.9); box-shadow: 0 8px 24px rgba(72,52,35,.06); scroll-snap-align: start; }
.product-color-card img { width: 100%; aspect-ratio: .82 / 1; object-fit: cover; transition: transform .4s ease; }
.product-color-card:hover img { transform: scale(1.04); }
.product-color-card span { display: block; overflow: hidden; padding: 13px 10px 14px; font-size: 12px; font-weight: 650; white-space: nowrap; text-overflow: ellipsis; }
.product-color-cta { min-height: 122px; display: grid; grid-template-columns: auto minmax(260px, 1fr) auto 280px; align-items: center; gap: 24px; overflow: hidden; margin-top: 34px; padding-left: 30px; border: 1px solid #eaded2; border-radius: 16px; background: rgba(255,255,255,.72); }
.product-color-cta__icon { width: 62px; height: 62px; display: grid; place-items: center; color: #a6763b; border-radius: 50%; background: #f1e7dc; }
.product-color-cta__icon svg { width: 34px; height: 34px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.product-color-cta__copy { display: flex; flex-direction: column; }
.product-color-cta__copy strong { font-family: Georgia, "Times New Roman", serif; font-size: 21px; font-weight: 500; line-height: 1.12; }
.product-color-cta__copy small { margin-top: 8px; color: #76706a; font-size: 12px; }
.product-color-cta > img { width: 100%; height: 122px; object-fit: cover; }

.product-page-benefits { border-top: 1px solid #e4d6c6; background: #fff; }
.product-page-benefits__grid { min-height: 110px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); align-items: center; }
.product-page-benefits__grid > div { min-height: 52px; display: flex; align-items: center; justify-content: center; gap: 16px; padding-inline: 24px; border-right: 1px solid #e5ddd4; }
.product-page-benefits__grid > div:last-child { border-right: 0; }
.product-page-benefits__grid span { width: 44px; height: 44px; flex: 0 0 44px; display: grid; place-items: center; }
.product-page-benefits__grid svg { width: 34px; height: 34px; fill: none; stroke: #111; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.product-page-benefits__grid strong { color: #1b1b1b; font-size: 13px; }

@media (max-width: 1120px) {
    .product-detail-hero__feature { min-width: 240px; }
    .product-category-rail__inner { justify-content: flex-start; }
    .product-overview__grid { grid-template-columns: 1fr; gap: 46px; }
    .purchase-card { max-width: 720px; }
    .product-uses__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
    .product-uses__grid--single { grid-template-columns: minmax(0, 410px); }
    .product-color-cta { grid-template-columns: auto minmax(220px, 1fr) auto; padding-right: 28px; }
    .product-color-cta > img { display: none; }
    .product-page-benefits__grid { grid-template-columns: 1fr 1fr; }
    .product-page-benefits__grid > div:nth-child(2) { border-right: 0; }
    .product-page-benefits__grid > div:nth-child(-n+2) { border-bottom: 1px solid #e5ddd4; }
}

@media (max-width: 820px) {
    .product-detail-hero { min-height: 500px; }
    .product-detail-hero__wash { background: linear-gradient(90deg, rgba(249,245,240,.96), rgba(249,245,240,.72)); }
    .product-detail-hero__content { min-height: 500px; align-items: flex-start; justify-content: center; flex-direction: column; padding-block: 52px; }
    .product-detail-hero__feature { align-self: auto; margin: 0; }
    .product-traits { grid-template-columns: 1fr 1fr; }
    .product-uses__grid { grid-template-columns: 1fr 1fr; }
    .product-uses__grid--single { grid-template-columns: minmax(0, 410px); }
    .product-uses__footer { grid-template-columns: auto 1fr; }
    .product-uses__footer .button { grid-column: 1 / -1; justify-self: start; }
    .product-color-cta { grid-template-columns: auto 1fr; padding: 24px; }
    .product-color-cta .button { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 520px) {
    .product-detail-hero__copy h1 { font-size: 52px; }
    .product-detail-hero__feature { width: 100%; min-width: 0; }
    .product-category-rail__inner { gap: 8px; }
    .product-category-link { min-width: 104px; }
    .product-category-link img { width: 62px; height: 62px; }
    .product-overview { padding-block: 54px; }
    .product-overview__content h2 { font-size: 38px; letter-spacing: 1px; }
    .product-traits { gap: 16px 8px; }
    .purchase-card { padding: 24px 20px; }
    .product-uses { padding: 56px 0 34px; }
    .product-section-heading h2 { font-size: 36px; letter-spacing: -.5px; }
    .product-section-heading__eyebrow { gap: 12px; font-size: 11px; letter-spacing: 4px; }
    .product-section-heading__eyebrow::before, .product-section-heading__eyebrow::after { width: 30px; }
    .product-uses__grid, .product-uses__grid--single { grid-template-columns: 1fr; margin-top: 28px; }
    .product-use-card__tag { top: 14px; left: 14px; min-height: 36px; padding-inline: 15px; }
    .product-use-card__body { padding: 18px; }
    .product-use-card__body h3 { font-size: 22px; }
    .product-use-card__arrow { width: 44px; height: 44px; flex-basis: 44px; }
    .product-uses__footer { grid-template-columns: 1fr; text-align: center; }
    .product-uses__footer-icon, .product-uses__footer .button { justify-self: center; }
    .product-uses__footer-copy small { line-height: 1.5; letter-spacing: 2px; }
    .product-uses__footer .button { width: 100%; min-width: 0; }
    .product-color-grid { grid-auto-columns: minmax(155px, 72vw); }
    .product-color-cta { grid-template-columns: 1fr; text-align: center; }
    .product-color-cta__icon, .product-color-cta .button { justify-self: center; }
    .product-page-benefits__grid { grid-template-columns: 1fr; padding-block: 8px; }
    .product-page-benefits__grid > div, .product-page-benefits__grid > div:nth-child(2) { justify-content: flex-start; padding: 16px 4px; border-right: 0; border-bottom: 1px solid #e5ddd4; }
    .product-page-benefits__grid > div:last-child { border-bottom: 0; }
}
/* Contact page */
.contact-page {
    position: relative;
    z-index: 5;
    overflow: hidden;
    min-height: 780px;
    color: var(--ink);
    background:
        radial-gradient(circle at 12% 42%, rgba(204, 167, 126, .12), transparent 24%),
        radial-gradient(circle at 88% 82%, rgba(196, 157, 114, .10), transparent 26%),
        linear-gradient(135deg, #fffdfa 0%, #f9f5ef 52%, #fffdf9 100%);
    isolation: isolate;
}
.contact-page::before,
.contact-page::after {
    content: "";
    position: absolute;
    z-index: -3;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(184, 132, 71, .22);
    border-radius: 50%;
}
.contact-page::before { top: 82px; left: -260px; }
.contact-page::after { right: -290px; top: 360px; }
.contact-page__fabric {
    position: absolute;
    z-index: -2;
    width: 430px;
    height: 340px;
    object-fit: cover;
    opacity: .72;
    pointer-events: none;
    -webkit-mask-image: linear-gradient(135deg, #000 10%, transparent 76%);
    mask-image: linear-gradient(135deg, #000 10%, transparent 76%);
}
.contact-page__fabric--left { left: -55px; bottom: -70px; object-position: left bottom; }
.contact-page__fabric--right { right: -75px; bottom: -80px; object-position: right center; transform: scaleX(-1); }
.contact-section { position: relative; padding: clamp(54px, 5vw, 82px) 0 46px; }
.contact-heading { max-width: 1050px; margin: 0 auto 42px; text-align: center; }
.contact-heading > p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 0 0 12px;
    color: #9f6b36;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 6px;
    text-transform: uppercase;
}
.contact-heading > p span { width: 76px; height: 1px; background: #c5a477; }
.contact-heading h1 {
    margin: 0;
    color: #102a49;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 5vw, 76px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -2px;
}
.contact-heading > div { margin-top: 12px; color: #667080; font-size: clamp(15px, 1.25vw, 21px); }
.contact-card {
    width: min(1420px, 100%);
    min-height: 570px;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(470px, .97fr);
    gap: 0;
    margin: 0 auto;
    padding: 12px;
    overflow: hidden;
    border: 1px solid rgba(206, 181, 151, .46);
    border-radius: 24px;
    background: rgba(255, 253, 250, .88);
    box-shadow: 0 24px 60px rgba(70, 48, 27, .09);
    backdrop-filter: blur(8px);
}
.contact-map { position: relative; min-height: 546px; overflow: hidden; border: 1px solid #e8ded3; border-radius: 18px; background: #ece7df; }
.contact-map iframe { width: 100%; height: 100%; position: absolute; inset: 0; border: 0; filter: sepia(.08) saturate(.72) contrast(.94) brightness(1.04); }
.contact-map__city {
    position: absolute;
    z-index: 2;
    top: 28px;
    left: 28px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 24px;
    border: 1px solid rgba(182, 140, 91, .28);
    border-radius: 999px;
    background: rgba(255, 253, 250, .94);
    box-shadow: 0 10px 25px rgba(44, 37, 29, .13);
    font-size: 14px;
    font-weight: 650;
    backdrop-filter: blur(6px);
}
.contact-map__city svg { width: 23px; height: 23px; fill: none; stroke: #a06b35; stroke-width: 1.7; }
.contact-map__popup {
    position: absolute;
    z-index: 2;
    top: 48%;
    left: 50%;
    min-width: min(330px, calc(100% - 60px));
    display: flex;
    flex-direction: column;
    padding: 20px 42px 20px 24px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 14px 35px rgba(38, 45, 53, .19);
    transform: translate(-34%, -50%);
}
.contact-map__popup::after { content: ""; position: absolute; left: 42%; bottom: -12px; border: 12px solid transparent; border-top-color: rgba(255,255,255,.96); border-bottom: 0; }
.contact-map__popup strong { color: #27313d; font-size: 15px; }
.contact-map__popup span { margin-top: 5px; color: #68717d; font-size: 13px; }
.contact-panel { min-width: 0; padding: clamp(30px, 3.3vw, 56px) clamp(26px, 3.2vw, 54px) 26px; }
.contact-panel__eyebrow { display: flex; align-items: center; gap: 16px; margin: 0 0 10px; color: #a4713d; font-size: 11px; font-weight: 750; letter-spacing: 3px; text-transform: uppercase; }
.contact-panel__eyebrow span { width: 60px; height: 1px; background: #c9a982; }
.contact-panel h2 { margin: 0; color: #112c4d; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 3.2vw, 54px); font-weight: 500; line-height: 1; }
.contact-panel__intro { max-width: 620px; margin: 13px 0 20px; color: #5e6875; font-size: 15px; line-height: 1.48; }
.contact-list { display: grid; gap: 8px; }
.contact-list > a {
    min-height: 72px;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
    padding: 7px 20px 7px 12px;
    border: 1px solid #e8dfd5;
    border-radius: 15px;
    background: rgba(255,255,255,.62);
    text-decoration: none;
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.contact-list > a:hover { border-color: #c9a16c; box-shadow: 0 8px 22px rgba(85,59,32,.08); transform: translateX(2px); }
.contact-list__icon { width: 48px; height: 48px; display: grid; place-items: center; color: #8f602f; border-radius: 50%; background: #f2e9df; }
.contact-list__icon svg { width: 28px; height: 28px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a > span:nth-child(2) { min-width: 0; display: flex; flex-direction: column; }
.contact-list small { margin-bottom: 5px; color: #806d5b; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.contact-list strong { overflow: hidden; color: #102b4d; font-size: clamp(15px, 1.25vw, 20px); line-height: 1.18; text-overflow: ellipsis; }
.contact-list b { color: #a26d35; font-family: Georgia, serif; font-size: 30px; font-weight: 400; }
.contact-actions { display: grid; grid-template-columns: 1.2fr .95fr; gap: 16px; margin-top: 18px; }
.contact-action {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 20px;
    color: #54391f;
    border: 1px solid #a9743e;
    border-radius: 999px;
    background: rgba(255,255,255,.72);
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease;
}
.contact-action:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(60,40,22,.12); }
.contact-action svg { width: 25px; height: 25px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-action > span { margin-left: auto; font-size: 20px; }
.contact-action--primary { color: #fff; border-color: #0b2543; background: linear-gradient(135deg, #102e51, #061a31); }
.contact-response { display: flex; align-items: center; gap: 10px; margin: 16px 0 0; color: #66717e; font-size: 12px; }
.contact-response svg { width: 22px; height: 22px; fill: none; stroke: #ad7a41; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-benefits { width: min(1250px, 100%); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin: 28px auto 0; }
.contact-benefits > div { min-width: 0; display: flex; align-items: center; justify-content: center; gap: 18px; padding: 0 clamp(22px, 3vw, 48px); border-right: 1px solid #e3d5c5; }
.contact-benefits > div:last-child { border-right: 0; }
.contact-benefits > div > span { width: 66px; height: 66px; flex: 0 0 66px; display: grid; place-items: center; color: #9b6b37; border-radius: 50%; background: #f1e8de; }
.contact-benefits svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.contact-benefits p { min-width: 0; margin: 0; }
.contact-benefits strong,
.contact-benefits small { display: block; }
.contact-benefits strong { color: #17304d; font-family: Georgia, "Times New Roman", serif; font-size: 16px; }
.contact-benefits small { margin-top: 5px; color: #6c7177; font-size: 12px; line-height: 1.3; }

@media (max-width: 1120px) {
    .contact-card { grid-template-columns: 1fr; width: min(800px, 100%); }
    .contact-map { min-height: 460px; }
    .contact-panel { padding: 38px 32px 28px; }
    .contact-benefits { width: min(800px, 100%); }
    .contact-benefits > div { padding: 0 18px; }
}

@media (max-width: 820px) {
    .contact-page__fabric { width: 300px; height: 260px; opacity: .5; }
    .contact-section { padding-top: 44px; }
    .contact-heading { margin-bottom: 30px; }
    .contact-heading > p { gap: 12px; letter-spacing: 4px; }
    .contact-heading > p span { width: 42px; }
    .contact-heading h1 { font-size: clamp(44px, 12vw, 62px); }
    .contact-card { padding: 8px; border-radius: 19px; }
    .contact-map { min-height: 380px; border-radius: 14px; }
    .contact-map__city { top: 18px; left: 18px; }
    .contact-panel { padding: 32px 20px 24px; }
    .contact-list strong { font-size: 16px; }
    .contact-actions { grid-template-columns: 1fr; }
    .contact-benefits { grid-template-columns: 1fr; gap: 0; margin-top: 20px; }
    .contact-benefits > div { justify-content: flex-start; padding: 18px 14px; border-right: 0; border-bottom: 1px solid #e3d5c5; }
    .contact-benefits > div:last-child { border-bottom: 0; }
}

@media (max-width: 520px) {
    .contact-heading > p { font-size: 10px; }
    .contact-heading > p span { width: 24px; }
    .contact-heading > div { line-height: 1.45; }
    .contact-map { min-height: 330px; }
    .contact-map__city { min-height: 42px; padding: 0 16px; font-size: 12px; }
    .contact-map__popup { display: none; }
    .contact-panel__eyebrow { font-size: 9px; letter-spacing: 2px; }
    .contact-panel h2 { font-size: 38px; }
    .contact-list > a { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 11px; padding-right: 13px; }
    .contact-list__icon { width: 44px; height: 44px; }
    .contact-list strong { white-space: normal; overflow-wrap: anywhere; }
    .contact-action { padding: 0 17px; font-size: 12px; }
    .contact-response { align-items: flex-start; line-height: 1.4; }
}
/* Client access and registration */
.auth-body { min-width: 320px; min-height: 100vh; background: #fbf7f1; }
.auth-page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding: 24px 24px 34px;
    background:
        radial-gradient(circle at 50% 45%, rgba(255,255,255,.94), rgba(250,246,240,.72) 58%, rgba(244,236,226,.76)),
        #faf6f0;
    isolation: isolate;
}
.auth-page::before,
.auth-page::after { content: ""; position: absolute; z-index: -3; width: 560px; height: 560px; border: 1px solid rgba(173,119,58,.34); border-radius: 50%; }
.auth-page::before { top: 130px; left: -430px; }
.auth-page::after { right: -390px; bottom: -260px; }
.auth-page__fabric { position: absolute; z-index: -2; width: 520px; height: 520px; max-width: none; object-fit: cover; pointer-events: none; }
.auth-page__fabric--left { left: -62px; bottom: -75px; object-position: left bottom; -webkit-mask-image: linear-gradient(145deg, #000 20%, transparent 77%); mask-image: linear-gradient(145deg, #000 20%, transparent 77%); }
.auth-page__fabric--right { top: -120px; right: -80px; object-position: right top; transform: scaleX(-1); opacity: .62; -webkit-mask-image: linear-gradient(315deg, #000 12%, transparent 68%); mask-image: linear-gradient(315deg, #000 12%, transparent 68%); }
.auth-shell { width: min(1210px, 100%); margin: 0 auto; }
.auth-heading { max-width: 1000px; margin: 0 auto 34px; text-align: center; }
.auth-brand { width: 68px; height: 68px; display: inline-grid; place-items: center; margin-bottom: 7px; text-decoration: none; }
.auth-brand img { width: 68px; height: 68px; object-fit: contain; }
.auth-heading > p { display: flex; align-items: center; justify-content: center; gap: 20px; margin: 0; color: #9d6c36; font-size: 13px; font-weight: 750; letter-spacing: 6px; text-transform: uppercase; }
.auth-heading > p span { width: 74px; height: 1px; background: #c7a778; }
.auth-heading > small { display: block; margin-top: 8px; color: #af8761; font-size: 9px; font-weight: 650; letter-spacing: 5px; text-transform: uppercase; }
.auth-heading h1 { margin: 13px 0 0; color: #102c4d; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 4.6vw, 72px); font-weight: 500; line-height: 1; letter-spacing: -2px; }
.auth-heading > div { margin-top: 11px; color: #647080; font-size: clamp(15px, 1.25vw, 20px); line-height: 1.4; }
.auth-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.auth-card { min-width: 0; min-height: 530px; padding: 32px clamp(30px, 3.5vw, 58px) 28px; border: 1px solid rgba(205,182,154,.46); border-radius: 23px; background: rgba(255,253,250,.88); box-shadow: 0 22px 55px rgba(72,48,27,.08); backdrop-filter: blur(9px); }
.auth-card__eyebrow { display: flex; align-items: center; gap: 16px; margin: 0 0 9px; color: #a4723c; font-size: 10px; font-weight: 750; letter-spacing: 3.5px; text-transform: uppercase; }
.auth-card__eyebrow span { width: 68px; height: 1px; background: #d1b48d; }
.auth-card h2,
.auth-register-card h2 { margin: 0; color: #112d4d; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 3vw, 50px); font-weight: 500; line-height: 1; }
.auth-card__lead { margin: 9px 0 0; color: #687483; font-size: 16px; line-height: 1.45; }
.auth-form { margin-top: 32px; }
.auth-form > label,
.auth-form > div > label { display: block; margin: 0 0 9px; color: #2c3845; font-size: 10px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.auth-form > .auth-field + label { margin-top: 22px; }
.auth-field { min-height: 56px; display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; align-items: center; overflow: hidden; border: 1px solid #ded8d1; border-radius: 13px; background: rgba(255,255,255,.68); transition: border-color .2s ease, box-shadow .2s ease; }
.auth-field:focus-within { border-color: #b78a56; box-shadow: 0 0 0 3px rgba(183,138,86,.1); }
.auth-field > span { width: 42px; height: 42px; display: grid; place-items: center; margin-left: 7px; color: #1b3653; border-radius: 50%; background: #f2ebe3; }
.auth-field svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.auth-field input { min-width: 0; width: 100%; height: 54px; padding: 0 14px; color: #1e2f42; border: 0; outline: 0; background: transparent; font-size: 14px; }
.auth-field input::placeholder { color: #8b929b; }
.auth-field button { width: 50px; height: 54px; display: grid; place-items: center; padding: 0; color: #5c6977; border: 0; background: transparent; cursor: pointer; }
.auth-field button:hover { color: #9a6834; }
.auth-field button svg { width: 21px; height: 21px; }
.auth-submit { width: 100%; min-height: 57px; display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 26px; padding: 0 28px; color: #fff; border: 0; border-radius: 999px; text-decoration: none; font-size: 13px; font-weight: 750; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease; }
.auth-submit:hover { transform: translateY(-2px); box-shadow: 0 13px 26px rgba(43,31,18,.15); }
.auth-submit span { color: #d9aa63; font-size: 20px; }
.auth-submit--navy { background: linear-gradient(135deg, #102f52, #061a31); }
.auth-submit--gold { background: linear-gradient(135deg, #bd9157, #a8773e); }
.auth-submit--gold span { color: #fff; }
.auth-forgot { display: block; width: max-content; margin: 23px auto 0; color: #9e7040; font-family: Georgia, "Times New Roman", serif; font-size: 14px; }
.auth-features { display: grid; gap: 15px; margin-top: 22px; }
.auth-features > div { display: flex; align-items: center; gap: 18px; }
.auth-features > div > span { width: 56px; height: 56px; flex: 0 0 56px; display: grid; place-items: center; color: #a46f35; border-radius: 50%; background: #f2e9de; }
.auth-features svg { width: 32px; height: 32px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.auth-features p { margin: 0; }
.auth-features strong,
.auth-features small { display: block; }
.auth-features strong { color: #17314e; font-family: Georgia, "Times New Roman", serif; font-size: 17px; }
.auth-features small { margin-top: 4px; color: #677382; font-size: 13px; }
.auth-card__note { margin: 14px 0 0; color: #687382; font-size: 12px; text-align: center; }
.auth-message { width: min(900px, 100%); display: flex; align-items: center; gap: 12px; margin: 0 auto 20px; padding: 13px 18px; border: 1px solid; border-radius: 12px; font-size: 13px; line-height: 1.45; }
.auth-message svg { width: 23px; height: 23px; flex: 0 0 23px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.auth-message--success { color: #245d43; border-color: #bad9c8; background: #eef8f2; }
.auth-message--error { margin-top: 18px; color: #8b3434; border-color: #e2baba; background: #fff1f0; }
.auth-message ul { margin: 0; padding-left: 19px; }
.auth-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 26px; }
.auth-benefits > div { display: flex; align-items: center; justify-content: center; gap: 17px; padding: 0 32px; border-right: 1px solid #dfd0bf; }
.auth-benefits > div:last-child { border-right: 0; }
.auth-benefits > div > span { width: 62px; height: 62px; flex: 0 0 62px; display: grid; place-items: center; color: #9f6d35; border-radius: 50%; background: #f1e8dd; }
.auth-benefits svg { width: 37px; height: 37px; fill: none; stroke: currentColor; stroke-width: 1.45; stroke-linecap: round; stroke-linejoin: round; }
.auth-benefits p { margin: 0; }
.auth-benefits strong,
.auth-benefits small { display: block; }
.auth-benefits strong { color: #19314c; font-family: Georgia, "Times New Roman", serif; font-size: 15px; }
.auth-benefits small { margin-top: 5px; color: #727980; font-size: 11px; }
.auth-shell--register { width: min(1080px, 100%); }
.auth-heading--register { margin-bottom: 28px; }
.auth-register-card { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .65fr); overflow: hidden; border: 1px solid rgba(205,182,154,.46); border-radius: 23px; background: rgba(255,253,250,.9); box-shadow: 0 22px 55px rgba(72,48,27,.08); backdrop-filter: blur(9px); }
.auth-register-card > section { min-width: 0; padding: 34px clamp(28px, 4vw, 58px); }
.auth-form--register { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-top: 24px; }
.auth-form--register .auth-form__wide { grid-column: 1 / -1; }
.auth-form--register .auth-submit { margin-top: 4px; }
.auth-register__back { margin: 22px 0 0; color: #66717d; text-align: center; }
.auth-register__back a { color: #9d6934; font-weight: 700; }
.auth-register-info { display: flex; flex-direction: column; justify-content: center; padding: 40px 36px; color: #fff; background: radial-gradient(circle at 80% 20%, #234768, #102d4b 45%, #081d34); }
.auth-register-info__icon { width: 74px; height: 74px; display: grid; place-items: center; margin-bottom: 22px; color: #ddb880; border: 1px solid #ddb880; border-radius: 50%; }
.auth-register-info__icon svg { width: 42px; height: 42px; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
.auth-register-info h2 { color: #fff; font-size: 34px; }
.auth-register-info p { color: #d5dee7; line-height: 1.6; }
.auth-register-info ul { display: grid; gap: 12px; padding-left: 20px; color: #d5dee7; font-size: 13px; line-height: 1.4; }
.auth-register-info a { margin-top: 16px; color: #e2b97b; font-weight: 700; text-decoration: none; }

@media (max-width: 900px) {
    .auth-page { padding-inline: 18px; }
    .auth-grid { grid-template-columns: 1fr; }
    .auth-card { min-height: 0; }
    .auth-benefits { width: min(620px, 100%); grid-template-columns: 1fr; margin-inline: auto; }
    .auth-benefits > div { justify-content: flex-start; padding: 18px; border-right: 0; border-bottom: 1px solid #dfd0bf; }
    .auth-benefits > div:last-child { border-bottom: 0; }
    .auth-register-card { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .auth-page { padding: 18px 12px 28px; }
    .auth-page__fabric { width: 330px; height: 330px; opacity: .45; }
    .auth-heading { margin-bottom: 24px; }
    .auth-brand,
    .auth-brand img { width: 58px; height: 58px; }
    .auth-heading > p { gap: 10px; font-size: 10px; letter-spacing: 4px; }
    .auth-heading > p span { width: 30px; }
    .auth-heading > small { letter-spacing: 2.5px; line-height: 1.5; }
    .auth-heading h1 { font-size: 44px; }
    .auth-card { padding: 27px 20px 24px; border-radius: 18px; }
    .auth-card h2,
    .auth-register-card h2 { font-size: 38px; }
    .auth-form--register { grid-template-columns: 1fr; }
    .auth-form--register .auth-form__wide { grid-column: auto; }
    .auth-register-card > section { padding: 28px 20px; }
    .auth-register-info { padding: 34px 24px; }
    .auth-card__eyebrow { letter-spacing: 2.5px; }
    .auth-card__eyebrow span { width: 40px; }
}

/* Social links and textile scroll-to-top */
.utility-contact { gap: 12px; }
.social-links { display: flex; align-items: center; gap: 9px; }
.social-link { display: grid; place-items: center; flex: 0 0 auto; border-radius: 50%; text-decoration: none; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.social-link:hover { transform: translateY(-2px); }
.social-link svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.65; stroke-linecap: round; stroke-linejoin: round; }
.social-links--utility { gap: 6px; padding-inline: 5px; }
.social-links--utility .social-link { width: 25px; height: 25px; color: #e4c28d; border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.05); opacity: 1; }
.social-links--utility .social-link:hover { color: #fff; border-color: #d7a85e; background: rgba(215,168,94,.18); }
.site-footer__grid { grid-template-columns: minmax(280px, 1.7fr) .75fr 1.15fr .8fr; gap: clamp(32px, 4vw, 68px); }
.site-footer__social > p { max-width: 230px; margin: 0 0 16px; line-height: 1.45; }
.social-links--footer { gap: 11px; }
.social-links--footer .social-link { width: 42px; height: 42px; color: #d9b477; border: 1px solid rgba(217,180,119,.42); background: rgba(255,255,255,.035); }
.social-links--footer .social-link:hover { color: #071321; border-color: #d9b477; background: #d9b477; }
.social-links--footer .social-link svg { width: 21px; height: 21px; }
.scroll-top {
    position: fixed;
    z-index: 92;
    right: 22px;
    bottom: 96px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    color: #fff;
    border: 0;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(22px) scale(.92);
    pointer-events: none;
    cursor: pointer;
    transition: opacity .28s ease, visibility .28s ease, transform .28s ease;
}
.scroll-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0) scale(1); pointer-events: auto; }
.scroll-top__label { min-height: 34px; display: inline-flex; align-items: center; padding: 0 15px; border: 1px solid rgba(213,173,111,.5); border-radius: 999px; background: rgba(8,28,50,.94); box-shadow: 0 9px 24px rgba(4,18,33,.2); font-size: 11px; font-weight: 750; letter-spacing: 1.4px; text-transform: uppercase; white-space: nowrap; backdrop-filter: blur(7px); }
.scroll-top__fabric { position: relative; width: 58px; height: 58px; display: grid; place-items: center; overflow: visible; border: 3px solid #fff; border-radius: 50%; background: linear-gradient(145deg, #c49550, #9c672c 48%, #173754 49%, #081d34); box-shadow: 0 10px 26px rgba(3,19,34,.28); animation: textile-float 2.8s ease-in-out infinite; }
.scroll-top__fabric::before { content: ""; position: absolute; inset: 5px; border: 1px dashed rgba(255,255,255,.45); border-radius: 50%; animation: textile-stitch 9s linear infinite; }
.scroll-top__fabric::after { content: ""; position: absolute; z-index: -1; right: 3px; bottom: -8px; width: 25px; height: 18px; border-radius: 2px 2px 10px 2px; background: linear-gradient(135deg, #bd8b48, #8a5626); transform: rotate(-14deg); }
.scroll-top svg { position: relative; z-index: 1; width: 34px; height: 34px; overflow: visible; }
.scroll-top__cloth { fill: rgba(219,174,105,.9); stroke: #fff5e6; stroke-width: 1; stroke-linejoin: round; animation: textile-wave 2.8s ease-in-out infinite; transform-origin: center; }
.scroll-top__arrow,
.scroll-top__roll { fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.scroll-top:hover .scroll-top__label,
.scroll-top:focus-visible .scroll-top__label { background: #0c2947; }
.scroll-top:hover .scroll-top__fabric,
.scroll-top:focus-visible .scroll-top__fabric { box-shadow: 0 13px 32px rgba(3,19,34,.38), 0 0 0 5px rgba(190,142,75,.13); }
.scroll-top:focus-visible { outline: 2px solid #d5a661; outline-offset: 4px; border-radius: 999px; }
@keyframes textile-float { 0%, 100% { transform: translateY(0) rotate(-2deg); } 50% { transform: translateY(-7px) rotate(2deg); } }
@keyframes textile-wave { 0%, 100% { transform: skewX(0deg); } 50% { transform: skewX(-5deg) translateX(1px); } }
@keyframes textile-stitch { to { transform: rotate(360deg); } }

@media (max-width: 1120px) {
    .site-footer__grid { grid-template-columns: 1.45fr .75fr 1.1fr .8fr; gap: 28px; }
}

@media (max-width: 820px) {
    .utility-contact { gap: 8px; }
    .social-links--utility { padding-inline: 0; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .site-footer__social { grid-column: 1 / -1; }
    .site-footer__social > p { max-width: none; }
    .scroll-top { right: 14px; bottom: 84px; gap: 7px; }
    .scroll-top__fabric { width: 52px; height: 52px; }
    .scroll-top__label { min-height: 31px; padding-inline: 11px; font-size: 9px; }
}

@media (max-width: 520px) {
    .utility-points span:first-child { font-size: 0; }
    .utility-points span:first-child svg { margin: 0; }
    .social-links--utility { gap: 4px; }
    .social-links--utility .social-link { width: 24px; height: 24px; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .site-footer__social { grid-column: auto; }
    .scroll-top { bottom: 76px; }
    .scroll-top__fabric { width: 48px; height: 48px; border-width: 2px; }
    .scroll-top svg { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-top__fabric,
    .scroll-top__fabric::before,
    .scroll-top__cloth { animation: none !important; }
}

/* Page transition loader */
.page-is-loading { overflow: hidden; }
.page-loader { position: fixed; z-index: 9998; inset: 0; display: grid; place-items: center; padding: 24px; background: rgba(250,246,240,.93); opacity: 0; visibility: hidden; pointer-events: none; backdrop-filter: blur(10px); transition: opacity .2s ease, visibility .2s ease; }
.page-loader.is-active { opacity: 1; visibility: visible; pointer-events: auto; }
.page-loader__panel { width: min(360px, calc(100vw - 40px)); display: flex; flex-direction: column; align-items: center; padding: 34px 28px 29px; border: 1px solid rgba(178,137,87,.35); border-radius: 22px; background: rgba(255,253,250,.94); box-shadow: 0 24px 65px rgba(41,29,18,.14); text-align: center; }
.page-loader__textiles { position: relative; width: 152px; height: 86px; margin-bottom: 17px; perspective: 500px; }
.page-loader__fabric { position: absolute; left: 50%; width: 106px; height: 28px; border: 1px solid rgba(255,255,255,.5); border-radius: 7px 18px 18px 7px; box-shadow: 0 8px 17px rgba(15,29,43,.14), inset 0 0 15px rgba(255,255,255,.18); transform-origin: left center; }
.page-loader__fabric::after { content: ""; position: absolute; inset: 5px 9px; border-top: 1px dashed rgba(255,255,255,.35); border-bottom: 1px dashed rgba(0,0,0,.1); }
.page-loader__fabric--one { top: 5px; background: linear-gradient(105deg, #143c65, #24547d 58%, #0b2948); animation: loader-fabric-one 1.55s ease-in-out infinite; }
.page-loader__fabric--two { top: 29px; background: linear-gradient(105deg, #c88085, #e0a0a4 58%, #ad626d); animation: loader-fabric-two 1.55s .12s ease-in-out infinite; }
.page-loader__fabric--three { top: 53px; background: linear-gradient(105deg, #aa7437, #c99c5b 58%, #8f5c28); animation: loader-fabric-three 1.55s .24s ease-in-out infinite; }
.page-loader__needle { position: absolute; top: -2px; left: 23px; width: 2px; height: 78px; border-radius: 999px; background: linear-gradient(#d8b77e, #fff, #9b7139); box-shadow: 0 0 0 1px rgba(100,72,36,.12); transform: rotate(12deg); animation: loader-needle 1.55s ease-in-out infinite; }
.page-loader__panel > strong { color: #102c4d; font-family: Georgia, "Times New Roman", serif; font-size: 29px; font-weight: 500; letter-spacing: .4px; }
.page-loader__dots { min-height: 17px; display: inline-flex; align-items: center; gap: 5px; margin-top: 2px; }
.page-loader__dots i { width: 6px; height: 6px; border-radius: 50%; background: #ad783a; animation: loader-dot 1.05s ease-in-out infinite; }
.page-loader__dots i:nth-child(2) { animation-delay: .14s; }
.page-loader__dots i:nth-child(3) { animation-delay: .28s; }
.page-loader__panel p { margin: 7px 0 0; color: #6d7580; font-size: 12px; line-height: 1.4; }
@keyframes loader-fabric-one { 0%, 100% { transform: translateX(-54%) rotate(-5deg) scaleX(.88); } 50% { transform: translateX(-47%) rotate(2deg) scaleX(1.04); } }
@keyframes loader-fabric-two { 0%, 100% { transform: translateX(-48%) rotate(2deg) scaleX(1.02); } 50% { transform: translateX(-55%) rotate(-3deg) scaleX(.9); } }
@keyframes loader-fabric-three { 0%, 100% { transform: translateX(-52%) rotate(-2deg) scaleX(.94); } 50% { transform: translateX(-46%) rotate(4deg) scaleX(1.06); } }
@keyframes loader-needle { 0%, 100% { transform: translateY(0) rotate(12deg); } 50% { transform: translateY(8px) rotate(7deg); } }
@keyframes loader-dot { 0%, 100% { opacity: .3; transform: translateY(0); } 50% { opacity: 1; transform: translateY(-4px); } }
@media (prefers-reduced-motion: reduce) {
    .mini-swatches i:hover,
    .mini-swatches i:focus-visible,
    .page-loader__fabric,
    .page-loader__needle,
    .page-loader__dots i { animation: none !important; }
}

/* Catalog swatch colors */
.swatch-04c5aa199c52 { background: #192b43; }
.swatch-811edfda1a16 { background: #1f55bc; }
.swatch-0671ca805a37 { background: #202731; }
.swatch-75f1cdc2984c { background: #203d68; }
.swatch-3ae7d2a806a3 { background: #205c3e; }
.swatch-bedcad6fd647 { background: #237d85; }
.swatch-f4f1208b2420 { background: #24596a; }
.swatch-c373b16cc4b8 { background: #26a174; }
.swatch-61d1147e94e1 { background: #29a7b2; }
.swatch-531747fbd376 { background: #2aa7ae; }
.swatch-30df12de715e { background: #3268ad; }
.swatch-73bdf71db6d3 { background: #348463; }
.swatch-5e02f80ffe77 { background: #39aebb; }
.swatch-c9e3b2c757ed { background: #3f9562; }
.swatch-9742772d9ae9 { background: #525964; }
.swatch-8955ecf21186 { background: #596341; }
.swatch-4516ee209cdd { background: #6d3999; }
.swatch-621d29ffd099 { background: #7187b9; }
.swatch-db79bbfb91f6 { background: #721b35; }
.swatch-a04fc64646f1 { background: #76503b; }
.swatch-8254d82fb1bc { background: #76b7e5; }
.swatch-4a0ddc263f2b { background: #76bda1; }
.swatch-d58c6b715998 { background: #78804e; }
.swatch-233e26cab44c { background: #78b886; }
.swatch-609f1518ab8b { background: #79aadb; }
.swatch-c4d638682fbb { background: #7cc1a6; }
.swatch-f98324cd0e23 { background: #88bb32; }
.swatch-d65131243a72 { background: #899473; }
.swatch-3e2c43fd276e { background: #8e9399; }
.swatch-6d427729ef05 { background: #966b82; }
.swatch-3cfaf600e7da { background: #969064; }
.swatch-5f86b81c21e0 { background: #9b73c9; }
.swatch-786e405b2b2b { background: #adb4bc; }
.swatch-a04acce8a1c4 { background: #b17b51; }
.swatch-82d378a17ac6 { background: #b55f45; }
.swatch-ff02356a3026 { background: #b98b38; }
.swatch-d6867e0095e1 { background: #b9bdc2; }
.swatch-ca48a546f86f { background: #c4972e; }
.swatch-b12d609cb9cb { background: #c52b79; }
.swatch-ffe2fb2be9ce { background: #c52f3d; }
.swatch-de7c14cf9568 { background: #c89a50; }
.swatch-e0770826ccbc { background: #c9878e; }
.swatch-fbb0ece53690 { background: #cfb994; }
.swatch-24c8110f0d0b { background: #d2bfa0; }
.swatch-b3c018d51986 { background: #d51a70; }
.swatch-855079bf0638 { background: #de8175; }
.swatch-ee033d65e130 { background: #dfc62e; }
.swatch-65d29e8038e3 { background: #e33c8f; }
.swatch-ed3d8412f056 { background: #e37c6c; }
.swatch-a98695a87edc { background: #e57ca0; }
.swatch-879219373f86 { background: #e58b7b; }
.swatch-856a426de3c4 { background: #e97825; }
.swatch-0fe5cf5edf78 { background: #eadc72; }
.swatch-e7bb51ef16b3 { background: #ed7b27; }
.swatch-f9668bc60c77 { background: #ef197f; }
.swatch-0061946d2186 { background: #efa8b7; }
.swatch-c5fdd72bc825 { background: #f3f1eb; }
.swatch-2ad17793492d { background: #ff7425; }
.swatch-46afd733b76c { background: conic-gradient(#d45c68, #d9ad45, #4d9372, #4779af, #8f5da8, #d45c68); }
.swatch-607637e0ae49 { background: linear-gradient(135deg, #255eb5 0 50%, #c62e3c 50%); }
.swatch-2ccaa3214219 { background: linear-gradient(135deg, #285b99 0 50%, #1e2530 50%); }
.swatch-0f7e6a64c423 { background: linear-gradient(135deg, #c6ab8d, #6e7f8e); }
.swatch-a379d0f8dcae { background: linear-gradient(135deg, #d51a70 0 50%, #1e2530 50%); }
.swatch-9229de4ef665 { background: linear-gradient(135deg, #e5749c 0 50%, #1e2530 50%); }

/* Blog migrado */
.blog-page {
    color: #102b49;
    background: #fbf8f3;
}
.blog-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(70px, 9vw, 125px) 0;
    background:
        linear-gradient(90deg, rgba(250,247,242,.98) 0%, rgba(250,247,242,.91) 44%, rgba(250,247,242,.25) 100%),
        url("../img/blog/IMG_2721.PNG") center/cover no-repeat;
}
.blog-hero::after {
    content: "";
    position: absolute;
    right: -140px;
    bottom: -240px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(172,117,51,.28);
    border-radius: 50%;
}
.blog-hero .container { position: relative; z-index: 1; }
.blog-hero .section-eyebrow { justify-content: flex-start; max-width: 720px; }
.blog-hero h1 {
    max-width: 760px;
    margin: 18px 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -2px;
}
.blog-hero > .container > p:not(.section-eyebrow) {
    max-width: 680px;
    margin: 0 0 28px;
    color: #536174;
    font-size: clamp(16px, 1.5vw, 20px);
    line-height: 1.7;
}
.blog-hero .button { width: max-content; }
.blog-gallery-section { padding: clamp(60px, 8vw, 110px) 0; }
.blog-gallery-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, .7fr);
    align-items: end;
    gap: 40px;
    margin-bottom: 38px;
}
.blog-gallery-heading h2 {
    margin: 10px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 500;
}
.blog-gallery-heading > p {
    margin: 0;
    color: #697483;
    font-size: 15px;
    line-height: 1.7;
}
.blog-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 330px;
    gap: 18px;
}
.blog-gallery__item {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border-radius: 18px;
    background: #e8e3dc;
    box-shadow: 0 13px 32px rgba(34,37,42,.08);
}
.blog-gallery__item--wide { grid-column: span 2; }
.blog-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}
.blog-gallery__item:hover img { transform: scale(1.035); }
.blog-gallery__item figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 12px 15px;
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(90deg, rgba(4,24,45,.86), rgba(4,24,45,.52));
    font-size: 12px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}
@media (max-width: 850px) {
    .blog-gallery-heading { grid-template-columns: 1fr; gap: 16px; }
    .blog-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 280px; }
}
@media (max-width: 560px) {
    .blog-hero { padding: 62px 0; background-position: 60% center; }
    .blog-hero h1 { font-size: 46px; }
    .blog-gallery { grid-template-columns: 1fr; grid-auto-rows: 300px; }
    .blog-gallery__item--wide { grid-column: auto; }
}
