:root {
    --bg: #efe3d0;
    --bg-strong: #ddc3a1;
    --surface: rgba(255, 250, 242, 0.72);
    --surface-strong: rgba(255, 252, 247, 0.92);
    --surface-dark: #201914;
    --text: #201613;
    --muted: #6e5a4d;
    --accent: #b55b31;
    --accent-dark: #7c3519;
    --accent-soft: #f2c98e;
    --border: rgba(32, 22, 19, 0.1);
    --shadow: 0 24px 80px rgba(76, 45, 22, 0.16);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
    animation: pageFadeIn 0.8s ease;
    background:
        radial-gradient(circle at 15% 10%, rgba(244, 194, 113, 0.5), transparent 26%),
        radial-gradient(circle at 85% 20%, rgba(181, 91, 49, 0.24), transparent 22%),
        linear-gradient(180deg, #f4e7d3 0%, var(--bg) 44%, #f9f4ec 100%);
}

main {
    position: relative;
    z-index: 1;
}

main > section,
main > .wrap {
    animation: sectionRise 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

main > section:nth-of-type(1),
main > .wrap:nth-of-type(1) {
    animation-delay: 0.08s;
}

main > section:nth-of-type(2),
main > .wrap:nth-of-type(2) {
    animation-delay: 0.16s;
}

main > section:nth-of-type(3),
main > .wrap:nth-of-type(3) {
    animation-delay: 0.24s;
}

main > section:nth-of-type(4),
main > .wrap:nth-of-type(4) {
    animation-delay: 0.32s;
}

.page-orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(10px);
    opacity: 0.7;
    z-index: 0;
    animation: floatOrb 14s ease-in-out infinite;
}

.page-orb-one {
    width: 320px;
    height: 320px;
    top: 100px;
    right: -80px;
    background: radial-gradient(circle, rgba(255, 211, 145, 0.9) 0%, rgba(255, 211, 145, 0) 70%);
}

.page-orb-two {
    width: 360px;
    height: 360px;
    bottom: 40px;
    left: -120px;
    background: radial-gradient(circle, rgba(181, 91, 49, 0.2) 0%, rgba(181, 91, 49, 0) 70%);
    animation-delay: -5s;
}

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

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wrap {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(18px);
    background: rgba(244, 232, 217, 0.58);
    border-bottom: 1px solid var(--border);
    animation: headerDropIn 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
}

.brand-stack {
    display: grid;
    gap: 0.2rem;
}

.brand-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.brand-copy,
.brand-note,
.eyebrow,
.product-category,
.count,
.detail-specs span {
    color: var(--muted);
}

.brand-note,
.filters button,
.back-link,
.hero-button {
    border-radius: 999px;
    padding: 0.8rem 1.2rem;
    border: 1px solid var(--border);
    background: var(--surface-strong);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.brand-note {
    margin: 0;
    padding-inline: 0;
    border: 0;
    background: transparent;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.nav-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.nav-toggle-button {
    display: none;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    border: 1px solid rgba(181, 91, 49, 0.16);
    background: rgba(255, 252, 247, 0.9);
    box-shadow: 0 12px 28px rgba(76, 45, 22, 0.08);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle-button span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-dark);
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.site-nav a {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    transition: background 0.28s ease, color 0.28s ease, transform 0.28s ease;
}

.site-nav .nav-strong {
    background: rgba(255, 252, 247, 0.88);
    color: var(--accent-dark);
    border: 1px solid rgba(181, 91, 49, 0.14);
    box-shadow: 0 10px 24px rgba(76, 45, 22, 0.08);
}

.site-nav .nav-active {
    background: linear-gradient(135deg, var(--accent) 0%, #cb7a4a 100%);
    color: #fff;
    border: 1px solid rgba(124, 53, 25, 0.18);
    box-shadow: 0 14px 30px rgba(181, 91, 49, 0.26);
}

.site-nav .nav-active:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #cb7a4a 100%);
    color: #fff;
}

.site-nav a:hover {
    background: rgba(255, 252, 247, 0.8);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.hero {
    padding: 5rem 0 2.4rem;
}

.hero-grid,
.detail-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
    align-items: center;
}

.hero h1,
.detail-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    line-height: 0.92;
    margin: 0.5rem 0 1rem;
}

.hero-copy-block {
    position: relative;
    animation: heroGlowIn 1s ease both;
}

.hero-copy,
.detail-copy p,
.product-body p,
.empty-state p,
.featured-item span {
    line-height: 1.7;
    color: var(--muted);
}

.hero-panel,
.filters,
.product-card,
.detail-copy,
.detail-image,
.empty-state,
.story-band {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
    border-radius: 32px;
}

.hero-panel {
    position: relative;
    overflow: hidden;
    padding: 1.7rem;
    background:
        linear-gradient(160deg, rgba(255, 248, 239, 0.92) 0%, rgba(245, 220, 191, 0.82) 100%);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.7);
    animation: panelFloatIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.6), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 60%);
    pointer-events: none;
}

.panel-title,
.product-body h3,
.section-heading h2 {
    margin: 0;
}

.panel-header,
.hero-actions,
.hero-stats,
.story-band {
    display: flex;
    align-items: center;
}

.panel-header {
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.panel-pill,
.hero-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.5rem 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.panel-pill {
    background: rgba(181, 91, 49, 0.12);
    color: var(--accent-dark);
}

.featured-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1rem;
    margin-top: 0.8rem;
    border: 1px solid rgba(32, 22, 19, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.56);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.featured-item strong,
.featured-item em {
    color: var(--text);
}

.featured-item em {
    font-style: normal;
    white-space: nowrap;
    color: var(--accent-dark);
}

.featured-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(76, 45, 22, 0.12);
    background: rgba(255, 255, 255, 0.9);
}

.panel-copy {
    position: relative;
    z-index: 1;
    margin: 0 0 0.8rem;
    max-width: 34ch;
    color: var(--muted);
    line-height: 1.7;
}

.hero-actions {
    gap: 0.9rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: buttonPulseIn 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-button-primary,
.filters button,
.back-link:hover,
.hero-button:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px rgba(181, 91, 49, 0.24);
    transform: translateY(-2px);
}

.hero-button-secondary {
    background: rgba(255, 252, 247, 0.82);
    color: var(--accent-dark);
}

.hero-chip {
    background: rgba(255, 255, 255, 0.66);
    color: var(--accent-dark);
    animation: chipFloatIn 1.1s ease both;
}

.hero-stats {
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-stats div {
    min-width: 140px;
    padding: 1rem 1.1rem;
    border-radius: 24px;
    background: rgba(255, 252, 247, 0.55);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 24px rgba(99, 61, 32, 0.08);
    animation: statLiftIn 0.85s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-stats div:nth-child(1) {
    animation-delay: 0.22s;
}

.hero-stats div:nth-child(2) {
    animation-delay: 0.32s;
}

.hero-stats div:nth-child(3) {
    animation-delay: 0.42s;
}

.hero-stats strong {
    display: block;
    font-size: 1.15rem;
}

.hero-stats span {
    color: var(--muted);
    font-size: 0.92rem;
}

.catalog-tools {
    margin-bottom: 2rem;
}

.filters {
    display: grid;
    grid-template-columns: 1.7fr 1fr auto;
    gap: 1rem;
    padding: 1rem;
    backdrop-filter: blur(14px);
}

.filters input,
.filters select {
    width: 100%;
    border: 1px solid var(--border);
    background: #fffdf9;
    border-radius: 18px;
    padding: 0.95rem 1rem;
    font: inherit;
}

.filters button {
    border: none;
    cursor: pointer;
}

.product-section {
    padding-bottom: 3rem;
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem;
    align-items: start;
}

.product-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    height: 100%;
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: cardFloatIn 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.product-card:nth-child(1) {
    animation-delay: 0.08s;
}

.product-card:nth-child(2) {
    animation-delay: 0.16s;
}

.product-card:nth-child(3) {
    animation-delay: 0.24s;
}

.product-card:nth-child(4) {
    animation-delay: 0.32s;
}

.product-card:nth-child(5) {
    animation-delay: 0.4s;
}

.product-card:nth-child(6) {
    animation-delay: 0.48s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 36px 90px rgba(76, 45, 22, 0.18);
}

.product-gallery {
    position: relative;
    overflow: hidden;
}

.product-gallery::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.3) 42%, transparent 62%);
    transform: translateX(-120%);
    animation: gallerySheen 1.35s ease 0.45s both;
    pointer-events: none;
    z-index: 1;
}

.product-image,
.detail-image {
    position: relative;
    border-radius: 999px;
    background: rgba(32, 22, 19, 0.16);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
    animation: dotsRiseIn 0.9s ease 0.55s both;
}

.product-gallery-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.54);
    cursor: pointer;
    transition: transform 0.28s ease, background 0.28s ease;
}

.product-gallery-dot.is-active {
    background: #fff;
    transform: scale(1.18);
}

.image-overlay,
.detail-glow {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(30, 20, 15, 0.28) 100%);
    pointer-events: none;
}

.placeholder {
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    letter-spacing: 0.08em;
    color: var(--accent-dark);
}

.product-body,
.detail-copy {
    padding: 1.45rem;
}

.product-body {
    display: grid;
    align-content: start;
    gap: 0.7rem;
    padding-bottom: 1rem;
}

.product-body h3 {
    line-height: 1.2;
}

.product-body h3 a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-body p,
.product-category {
    margin: 0;
}

.product-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.7em * 3);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 0 1.45rem 1.45rem;
}

.badge {
    border-radius: 999px;
    padding: 0.45rem 0.7rem;
    background: rgba(181, 91, 49, 0.12);
    color: var(--accent-dark);
    font-size: 0.85rem;
    font-weight: 700;
}

.link-mark {
    color: var(--accent-dark);
    font-size: 0.88rem;
    font-weight: 700;
}

.detail-layout {
    padding: 3rem 0 4rem;
}

.detail-gallery {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.detail-thumbnails {
    display: grid;
    gap: 0.75rem;
}

.detail-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(32, 22, 19, 0.08);
    border-radius: 20px;
    background: rgba(255, 252, 247, 0.76);
    padding: 0.35rem;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.detail-thumb img,
.detail-thumb-video {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

.detail-thumb img {
    object-fit: cover;
}

.detail-thumb-video {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(181, 91, 49, 0.18), rgba(242, 201, 142, 0.35));
    color: var(--accent-dark);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.detail-thumb:hover,
.detail-thumb.is-active {
    transform: translateX(4px);
    border-color: rgba(181, 91, 49, 0.24);
    box-shadow: 0 14px 28px rgba(76, 45, 22, 0.12);
}

.detail-thumb.is-active {
    background: rgba(255, 255, 255, 0.96);
}

.detail-stage {
    position: relative;
    overflow: hidden;
    min-height: 560px;
    background: rgba(255, 251, 245, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow);
    border-radius: 32px;
}

.detail-stage-media {
    position: relative;
    aspect-ratio: 4 / 4.8;
    background: linear-gradient(135deg, var(--bg-strong), #fffdf9);
}

.detail-stage-media img,
.detail-stage-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-stage-media video {
    background: #000;
}

.detail-nav-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 252, 247, 0.9);
    color: var(--accent-dark);
    font-size: 1.7rem;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(76, 45, 22, 0.12);
    transform: translateY(-50%);
    transition: transform 0.28s ease, background 0.28s ease;
}

.detail-nav-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.detail-nav-prev {
    left: 1rem;
}

.detail-nav-next {
    right: 1rem;
}

.detail-image {
    overflow: hidden;
}

.detail-copy {
    background: rgba(255, 251, 245, 0.78);
}

.detail-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-dark);
}

.lead {
    font-size: 1.1rem;
}

.detail-callout {
    display: grid;
    gap: 0.35rem;
    margin: 1.7rem 0 0;
    padding: 1rem 1.1rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(181, 91, 49, 0.12), rgba(242, 201, 142, 0.28));
    border: 1px solid rgba(181, 91, 49, 0.14);
}

.detail-callout span {
    color: var(--muted);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 1.5rem;
    padding: 0.95rem 1.4rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.02em;
    box-shadow: 0 16px 32px rgba(18, 140, 74, 0.28);
    transition: transform 0.28s ease, box-shadow 0.28s ease, filter 0.28s ease;
    animation: whatsappPulse 2.4s ease-in-out infinite;
}

.whatsapp-button:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 22px 40px rgba(18, 140, 74, 0.34);
    filter: brightness(1.05);
}

.whatsapp-icon {
    width: 22px;
    height: 22px;
}

@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 16px 32px rgba(18, 140, 74, 0.28);
    }
    50% {
        box-shadow: 0 16px 40px rgba(37, 211, 102, 0.45);
    }
}

.detail-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.detail-specs div {
    padding: 1rem;
    border-radius: 20px;
    background: var(--surface-strong);
    border: 1px solid var(--border);
}

.empty-state {
    grid-column: 1 / -1;
    padding: 2rem;
    text-align: center;
}

.story-band {
    justify-content: space-between;
    gap: 1.4rem;
    padding: 1.5rem 1.7rem 2.1rem;
    margin-bottom: 4rem;
    animation: bandGlowIn 1s ease both;
}

.footer-cta {
    animation: buttonPulseIn 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 0.25s;
}

.story-band h2 {
    margin: 0.4rem 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.story-band p:last-child {
    max-width: 540px;
    color: var(--muted);
    line-height: 1.8;
}

.page-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
    gap: 1.8rem;
    align-items: center;
    padding: 4.4rem 0 2rem;
}

.page-hero-copy h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    margin: 0.5rem 0 1rem;
}

.page-hero-copy p:last-child {
    max-width: 58ch;
    color: var(--muted);
    line-height: 1.75;
}

.page-hero-card,
.info-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
    border-radius: 32px;
}

.page-hero-card {
    display: grid;
    gap: 1rem;
    padding: 1.5rem;
}

.page-hero-card div,
.page-list div {
    display: grid;
    gap: 0.25rem;
}

.page-hero-card strong,
.page-list strong {
    font-size: 1.05rem;
}

.page-hero-card span,
.page-list span,
.footer-copy {
    color: var(--muted);
    line-height: 1.7;
}

.info-grid,
.contact-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-card {
    padding: 1.6rem;
}

.info-card h2,
.site-footer h2 {
    margin: 0.4rem 0 0.9rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
}

.feature-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 4rem;
}

.mini-product {
    display: grid;
    grid-template-columns: 108px minmax(0, 1fr);
    gap: 1rem;
    align-items: center;
    padding: 0.9rem;
    background: rgba(255, 252, 247, 0.72);
    border: 1px solid rgba(32, 22, 19, 0.08);
    border-radius: 26px;
    box-shadow: 0 16px 36px rgba(76, 45, 22, 0.1);
}

.mini-product img,
.mini-product-placeholder {
    width: 108px;
    height: 108px;
    border-radius: 18px;
}

.mini-product-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--bg-strong), #fffdf9);
    color: var(--accent-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    text-align: center;
    padding: 0.5rem;
}

.mini-product div {
    display: grid;
    gap: 0.3rem;
}

.mini-product span {
    color: var(--muted);
}

.contact-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.page-list {
    display: grid;
    gap: 1rem;
}

.page-list.compact {
    gap: 0.85rem;
}

.site-footer {
    position: relative;
    z-index: 1;
    padding: 1rem 0 3.4rem;
    animation: footerLiftIn 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.95fr) minmax(220px, 0.8fr);
    gap: 1.8rem;
    padding: 1.9rem;
    background:
        linear-gradient(135deg, rgba(255, 252, 247, 0.92), rgba(248, 237, 222, 0.78));
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 36px;
    box-shadow: 0 30px 70px rgba(76, 45, 22, 0.12);
}

.footer-intro {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.footer-badge {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(181, 91, 49, 0.12);
    color: var(--accent-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.footer-highlights {
    display: flex;
    gap: 0.7rem;
    flex-wrap: wrap;
}

.footer-highlights span {
    display: inline-flex;
    align-items: center;
    padding: 0.62rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(181, 91, 49, 0.1);
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-title {
    margin: 0 0 1rem;
    font-weight: 800;
    font-size: 1.05rem;
}

.footer-contact-list {
    display: grid;
    gap: 0.85rem;
}

.footer-contact-item {
    display: grid;
    gap: 0.28rem;
    padding: 1rem 1.05rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(181, 91, 49, 0.12);
    box-shadow: 0 12px 28px rgba(76, 45, 22, 0.06);
}

.footer-contact-item span {
    color: var(--muted);
    font-size: 0.88rem;
}

.footer-contact-item strong {
    line-height: 1.5;
}

.footer-links {
    display: grid;
    gap: 0.7rem;
}

.footer-links a {
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0;
}

.footer-links a:hover {
    color: var(--accent-dark);
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.2rem;
    padding: 0.9rem 1.1rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(181, 91, 49, 0.2);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 32px rgba(181, 91, 49, 0.24);
}

.reveal-up,
.reveal-scale {
    opacity: 0;
    animation-duration: 0.9s;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up {
    transform: translateY(28px);
    animation-name: revealUp;
}

.reveal-scale {
    transform: scale(0.96);
    animation-name: revealScale;
}

.delay-1 {
    animation-delay: 0.12s;
}

.delay-2 {
    animation-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.28s;
}

.delay-4 {
    animation-delay: 0.36s;
}

.delay-5 {
    animation-delay: 0.44s;
}

.delay-6 {
    animation-delay: 0.52s;
}

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

@keyframes revealScale {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatOrb {
    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }
    50% {
        transform: translateY(-18px) translateX(12px);
    }
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes headerDropIn {
    from {
        opacity: 0;
        transform: translateY(-18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGlowIn {
    from {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes panelFloatIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes cardFloatIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes bandGlowIn {
    from {
        opacity: 0;
        transform: translateY(26px);
        box-shadow: 0 0 0 rgba(76, 45, 22, 0);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        box-shadow: var(--shadow);
    }
}

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

@keyframes buttonPulseIn {
    0% {
        opacity: 0;
        transform: translateY(18px) scale(0.94);
    }
    70% {
        opacity: 1;
        transform: translateY(-2px) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

@keyframes statLiftIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes gallerySheen {
    from {
        transform: translateX(-120%);
    }
    to {
        transform: translateX(135%);
    }
}

@keyframes imageBreath {
    from {
        transform: scale(1.01);
    }
    to {
        transform: scale(1.06);
    }
}


@media (max-width: 900px) {
    .hero-grid,
    .detail-layout,
    .product-grid,
    .filters,
    .story-band,
    .page-hero,
    .info-grid,
    .contact-layout,
    .feature-strip,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .header-row {
        position: relative;
    }

    .nav-toggle-button {
        display: inline-flex;
        position: absolute;
        top: 0.6rem;
        right: 0;
    }

    .hero-stats,
    .hero-actions,
    .story-band {
        align-items: start;
    }

    .detail-gallery {
        grid-template-columns: 1fr;
    }

    .detail-thumbnails {
        grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
        order: 2;
    }

    .detail-thumb:hover,
    .detail-thumb.is-active {
        transform: translateY(-3px);
    }

    .detail-stage {
        min-height: auto;
    }

    .footer-highlights {
        align-items: start;
    }

    .site-nav {
        width: 100%;
        display: grid;
        gap: 0.55rem;
        padding-top: 0.4rem;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transition: max-height 0.3s ease, opacity 0.3s ease, padding-top 0.3s ease;
    }

    .site-nav a {
        width: 100%;
        background: rgba(255, 252, 247, 0.84);
        border: 1px solid rgba(181, 91, 49, 0.1);
    }

    .nav-toggle:checked + .nav-toggle-button + .site-nav {
        max-height: 320px;
        opacity: 1;
        pointer-events: auto;
        padding-top: 1rem;
    }

    .nav-toggle:checked + .nav-toggle-button span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle:checked + .nav-toggle-button span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle:checked + .nav-toggle-button span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mini-product {
        grid-template-columns: 88px minmax(0, 1fr);
    }

    .mini-product img,
    .mini-product-placeholder {
        width: 88px;
        height: 88px;
    }

    .featured-item,
    .panel-header {
        flex-direction: column;
    }
}

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