:root {
    --navy: #082238;
    --navy-2: #103d5d;
    --blue: #0f6f9c;
    --aqua: #cfeaf0;
    --gold: #c89b48;
    --wood: #8b5635;
    --paper: #f5efe5;
    --cream: #fffaf1;
    --ink: #102335;
    --muted: #5f7184;
    --line: rgba(16, 35, 53, .14);
    --white: #fff;
    --shadow: 0 24px 70px rgba(8, 34, 56, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: linear-gradient(180deg, #fbf7ef 0%, #f1e8dc 100%);
}
body.nav-lock { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.top-ribbon {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
    padding: 10px clamp(18px, 5vw, 72px);
    color: rgba(255,255,255,.86);
    background:
        linear-gradient(90deg, rgba(200,155,72,.12), transparent 20% 80%, rgba(200,155,72,.12)),
        linear-gradient(90deg, #061827, #0d3857, #061827);
    font-size: 13px;
    font-weight: 700;
    border-bottom: 1px solid rgba(200,155,72,.26);
}
.top-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
}
.top-icon {
    position: relative;
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    border: 1px solid rgba(200,155,72,.55);
    border-radius: 50%;
    background: rgba(255,255,255,.06);
    box-shadow: inset 0 0 0 3px rgba(255,255,255,.03);
}
.top-icon.pin::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 5px;
    width: 5px;
    height: 5px;
    border: 2px solid #fff;
    border-radius: 50%;
}
.top-icon.pin::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 11px;
    width: 5px;
    height: 8px;
    background: var(--gold);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.top-icon.wave::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 9px;
    width: 14px;
    height: 7px;
    border-bottom: 2px solid #fff;
    border-radius: 0 0 12px 12px;
}
.top-icon.wave::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 6px;
    width: 8px;
    height: 11px;
    border-left: 2px solid var(--gold);
    transform: skewX(-18deg);
}
.top-icon.phone::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 5px;
    width: 8px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 3px;
    transform: rotate(-18deg);
}
.top-ribbon span:first-child { justify-self: start; }
.top-ribbon span:nth-child(2) { justify-self: center; }
.top-ribbon a {
    justify-self: end;
    color: #fff;
    font-weight: 900;
    letter-spacing: .3px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    align-items: center;
    gap: 28px;
    min-height: 88px;
    padding: 9px clamp(18px, 5vw, 72px);
    background: rgba(255, 250, 241, .96);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 38px rgba(8,34,56,.06);
    backdrop-filter: blur(16px);
}
.brand {
    display: flex;
    align-items: center;
}
.logo-brand {
    width: 184px;
    min-width: 184px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}
.logo-brand img {
    width: 100%;
    height: 62px;
    object-fit: contain;
    object-position: left center;
    filter: contrast(1.08) saturate(1.08);
}
.site-header .logo-brand {
    padding: 5px 0;
}
.site-header .logo-brand img {
    border-radius: 6px;
}
.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.nav-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.nav-panel a {
    position: relative;
    padding: 11px 14px;
    border-radius: 8px;
    color: #24384b;
    font-size: 15px;
    font-weight: 900;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav-panel a::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 6px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .22s ease;
}
.nav-panel a:hover {
    color: var(--navy);
    background: rgba(15,111,156,.08);
    transform: translateY(-1px);
}
.nav-panel a:hover::after { transform: scaleX(1); }
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(8,34,56,.16);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 12px 24px rgba(8,34,56,.08);
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 5px auto;
    border-radius: 999px;
    background: var(--navy);
    transition: transform .22s ease, opacity .22s ease;
}
.menu-backdrop { display: none; }
.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-cta, .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 20px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 900;
}
.header-cta {
    position: relative;
    flex-direction: column;
    min-width: 148px;
    min-height: 58px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(135deg, #149762, #086140);
    box-shadow: 0 18px 38px rgba(8,97,64,.25);
    transition: transform .2s ease, box-shadow .2s ease;
}
.header-cta::before {
    content: "";
    position: absolute;
    width: 72px;
    height: 72px;
    left: -32px;
    top: -32px;
    border-radius: 50%;
    border: 14px solid rgba(255,255,255,.12);
}
.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 48px rgba(8,97,64,.32);
}
.header-cta span { position: relative; font-size: 20px; line-height: 1; }
.header-cta small { position: relative; margin-top: 5px; opacity: .8; font-size: 12px; }
.btn.primary {
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--blue));
    box-shadow: 0 14px 34px rgba(8,34,56,.18);
}
.btn.ghost {
    color: var(--navy);
    background: rgba(255,255,255,.7);
    border-color: rgba(8,34,56,.2);
}
.btn.wide { width: 100%; }

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(360px, .92fr) minmax(480px, 1.08fr);
    align-items: center;
    gap: clamp(36px, 5vw, 84px);
    min-height: calc(100vh - 142px);
    padding: clamp(54px, 7vw, 96px) clamp(18px, 5vw, 72px);
    overflow: hidden;
    background:
        linear-gradient(108deg, rgba(255,250,241,.98) 0 49%, rgba(207,234,240,.9) 49% 100%),
        radial-gradient(circle at 80% 20%, rgba(15,111,156,.16), transparent 34%);
}
.hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 155px;
    background:
        radial-gradient(68px 32px at 50% 0, transparent 48%, rgba(15,111,156,.22) 50% 64%, transparent 66%) 0 0 / 138px 74px repeat-x;
    opacity: .65;
}
.hero-content { position: relative; z-index: 2; max-width: 650px; }
.eyebrow {
    margin: 0 0 14px;
    color: var(--wood);
    text-transform: uppercase;
    font-size: 12px !important;
    font-weight: 900;
    letter-spacing: 2.4px;
}
.hero h1, .page-hero h1 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(54px, 6.2vw, 92px);
    line-height: .95;
    letter-spacing: 0;
}
.hero p, .page-hero p {
    max-width: 650px;
    color: #42586d;
    font-size: 19px;
    line-height: 1.75;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 0;
}
.hero-badges span {
    padding: 10px 14px;
    border: 1px solid rgba(8,34,56,.16);
    border-radius: 999px;
    background: rgba(255,255,255,.74);
    color: var(--navy);
    font-size: 13px;
    font-weight: 900;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}
.hero-showcase {
    position: relative;
    z-index: 2;
    min-height: 520px;
}
.hero-card {
    position: absolute;
    inset: 0 0 42px 40px;
    border-radius: 12px;
    overflow: hidden;
    border: 10px solid rgba(255,255,255,.82);
    background: #fff;
    box-shadow: var(--shadow);
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-inset-card {
    position: absolute;
    left: 0;
    bottom: 0;
    width: min(280px, 42%);
    padding: 8px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(8,34,56,.18);
}
.hero-inset-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 7px;
}
.hero-inset-card span {
    display: block;
    padding: 10px 8px 4px;
    color: var(--navy);
    font-weight: 900;
    font-size: 13px;
}

.trust-strip {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background:
        radial-gradient(circle at 15% 0, rgba(200,155,72,.18), transparent 28%),
        linear-gradient(90deg, #061827, #103d5d, #061827);
    color: #fff;
}
.trust-strip::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 0 35%, rgba(255,255,255,.08) 45%, transparent 55% 100%);
    transform: translateX(-100%);
    animation: trustShine 7s ease-in-out infinite;
}
.trust-strip div {
    position: relative;
    z-index: 1;
    padding: 38px clamp(18px, 5vw, 72px);
    border-right: 1px solid rgba(255,255,255,.12);
}
.trust-strip div::before {
    content: "";
    display: block;
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border: 2px solid rgba(200,155,72,.85);
    border-radius: 50%;
    background:
        radial-gradient(circle, transparent 0 6px, rgba(200,155,72,.9) 7px 8px, transparent 9px),
        linear-gradient(var(--gold), var(--gold)) center / 2px 32px no-repeat,
        linear-gradient(90deg, var(--gold), var(--gold)) center / 32px 2px no-repeat,
        linear-gradient(45deg, transparent 47%, var(--gold) 48% 52%, transparent 53%) center / 34px 34px no-repeat,
        linear-gradient(-45deg, transparent 47%, var(--gold) 48% 52%, transparent 53%) center / 34px 34px no-repeat,
        rgba(255,255,255,.06);
    box-shadow: 0 10px 28px rgba(0,0,0,.18);
    animation: trustWheel 12s linear infinite;
}
.trust-card.handmade::before { animation-duration: 14s; }
.trust-card.custom::before { animation-duration: 16s; animation-direction: reverse; }
.trust-card.whatsapp::before { animation-duration: 13s; }
.trust-strip strong { display: block; font-size: 23px; }
.trust-strip span { color: rgba(255,255,255,.72); font-size: 14px; }

.section, .gallery-grid, .product-detail, .form-layout, .contact-grid, .content-band, .craft-section {
    padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}
.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}
.section-heading h2, .split-band h2, .content-band h2, .side-panel h2, .craft-section h2 {
    margin: 0;
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}
.section-heading a {
    color: var(--blue);
    border-bottom: 2px solid rgba(15,111,156,.28);
    font-weight: 900;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}
.product-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 42px rgba(8,34,56,.08);
    transition: transform .22s ease, box-shadow .22s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 64px rgba(8,34,56,.14);
}
.product-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #e9e2d7;
}
.product-card div { padding: 20px; }
.product-card span { color: var(--wood); font-size: 13px; font-weight: 900; }
.product-card h3 { margin: 8px 0; color: var(--navy); font-size: 22px; letter-spacing: 0; }
.product-card p { min-height: 50px; color: var(--muted); line-height: 1.58; }
.product-card b { color: var(--blue); font-size: 18px; }

.craft-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: clamp(26px, 5vw, 66px);
    align-items: start;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(6,27,44,.94), rgba(16,61,93,.88)),
        url("../img/products/ardani-product-10.jpg") center / cover;
}
.craft-current {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(500px 150px at 0% 20%, rgba(200,155,72,.14), transparent 62%),
        linear-gradient(90deg, transparent, rgba(255,255,255,.06), transparent);
    opacity: .85;
    animation: currentMove 9s ease-in-out infinite;
}
.craft-section > div:not(.craft-current) {
    position: relative;
    z-index: 1;
}
.craft-section h2 { color: #fff; }
.craft-section .eyebrow { color: var(--gold); }
.craft-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.craft-steps article {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    padding: 22px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 18px 45px rgba(0,0,0,.14);
    transition: transform .28s ease, border-color .28s ease, background .28s ease;
    animation: craftRise .7s ease both;
}
.craft-steps article:nth-child(2) { animation-delay: .12s; }
.craft-steps article:nth-child(3) { animation-delay: .24s; }
.craft-steps article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0 36%, rgba(255,255,255,.16) 46%, transparent 58%);
    transform: translateX(-120%);
    transition: transform .6s ease;
}
.craft-steps article:hover {
    transform: translateY(-8px);
    border-color: rgba(200,155,72,.55);
    background: rgba(255,255,255,.14);
}
.craft-steps article:hover::before { transform: translateX(120%); }
.craft-steps span { color: var(--gold); font-weight: 900; }
.craft-steps strong { display: block; margin: 24px 0 10px; font-size: 20px; }
.craft-steps p { color: rgba(255,255,255,.74); line-height: 1.6; }

.split-band, .content-band {
    display: grid;
    grid-template-columns: .9fr 1fr;
    gap: clamp(28px, 5vw, 74px);
    align-items: center;
    padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}
.split-band img, .content-band img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}
.split-band p, .content-band p { color: var(--muted); line-height: 1.78; }

.page-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(56px, 7vw, 92px) clamp(18px, 5vw, 72px);
    background:
        linear-gradient(110deg, rgba(255,250,241,.97), rgba(207,234,240,.82)),
        url("../img/products/ardani-product-08.jpg") center right / cover;
    border-bottom: 1px solid var(--line);
}
.page-hero.compact h1 { font-size: clamp(40px, 5vw, 70px); }
.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.filter-row a {
    padding: 11px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
}
.filter-row a.active { background: var(--navy); color: #fff; }

.product-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, .9fr);
    gap: clamp(30px, 5vw, 72px);
    align-items: start;
    background: linear-gradient(180deg, #f8f2e9, #eee5d8);
}
.product-hero { min-height: 260px; }
.detail-image-frame {
    position: relative;
    padding: 12px;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}
.main-detail-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}
.detail-badge {
    position: absolute;
    left: 28px;
    bottom: 28px;
    padding: 9px 13px;
    border-radius: 999px;
    color: #fff;
    background: rgba(8,34,56,.9);
    font-weight: 900;
}
.thumb-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 14px;
}
.thumb-row img {
    aspect-ratio: 1;
    object-fit: cover;
    border: 5px solid #fff;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(8,34,56,.1);
}
.detail-info {
    position: sticky;
    top: 132px;
    padding: clamp(26px, 4vw, 42px);
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255,255,255,.95);
    box-shadow: 0 18px 52px rgba(8,34,56,.09);
}
.detail-info h1 {
    margin: 0 0 14px;
    color: var(--navy);
    font-family: Georgia, serif;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: 0;
}
.detail-info p { color: var(--muted); line-height: 1.75; }
.detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 20px 0 4px;
}
.detail-tags span {
    padding: 8px 11px;
    border: 1px solid rgba(15,111,156,.15);
    border-radius: 999px;
    color: var(--navy);
    background: rgba(15,111,156,.08);
    font-size: 13px;
    font-weight: 900;
}
.spec-list { margin: 24px 0; border-top: 1px solid var(--line); }
.spec-list div {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.spec-list dt { color: var(--muted); }
.spec-list dd { margin: 0; color: var(--navy); font-weight: 900; text-align: right; }
.detail-actions small {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    line-height: 1.5;
    text-align: center;
}
.product-craft-note {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 38px clamp(18px, 5vw, 72px);
    color: #fff;
    background:
        linear-gradient(90deg, rgba(6,27,44,.94), rgba(16,61,93,.92)),
        url("../img/products/ardani-product-02.jpg") center / cover;
}
.product-craft-note h2 {
    max-width: 860px;
    margin: 0;
    color: #fff;
    font-family: Georgia, serif;
    font-size: clamp(28px, 3vw, 44px);
    line-height: 1.1;
    letter-spacing: 0;
}
.product-craft-note .eyebrow { color: var(--gold); }
.product-craft-note .btn.ghost {
    flex: 0 0 auto;
    color: #fff;
    border-color: rgba(255,255,255,.38);
    background: rgba(255,255,255,.12);
}

.gallery-grid {
    columns: 4 250px;
    column-gap: 18px;
}
.gallery-grid img {
    width: 100%;
    margin: 0 0 18px;
    break-inside: avoid;
    border: 8px solid #fff;
    border-radius: 10px;
    box-shadow: 0 16px 42px rgba(8,34,56,.1);
}

.form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}
.form-card, .side-panel, .contact-card {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 16px 42px rgba(8,34,56,.08);
}
label { display: grid; gap: 8px; margin-bottom: 16px; color: var(--navy); font-weight: 900; }
input, textarea, select {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #d6cbbd;
    border-radius: 8px;
    color: var(--ink);
    background: #fff;
    font: inherit;
}
textarea { resize: vertical; }
.notice { padding: 12px 14px; border-radius: 8px; margin-bottom: 16px; font-weight: 900; }
.notice.success { background: #e8f7ed; color: #146c37; }
.notice.error { background: #fdecec; color: #a12626; }
.side-panel p { color: var(--muted); line-height: 1.7; }

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.contact-card span { color: var(--wood); font-weight: 900; }
.contact-card strong { display: block; margin: 10px 0; color: var(--navy); font-size: 22px; }
.contact-card a { color: var(--blue); font-weight: 900; }
.contact-card p { color: var(--muted); }

.site-footer {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.35fr .7fr .8fr 1.05fr;
    gap: 34px;
    padding: 92px clamp(18px, 5vw, 72px) 48px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(200,155,72,.12), transparent 28% 72%, rgba(207,234,240,.1)),
        linear-gradient(135deg, #051725, #0b2d49);
}
.footer-divider {
    position: absolute;
    inset: 0 0 auto;
    height: 54px;
    background:
        linear-gradient(180deg, #f1e8dc 0 14px, transparent 14px),
        repeating-linear-gradient(115deg, transparent 0 15px, rgba(255,250,241,.88) 16px 20px, transparent 21px 36px);
    opacity: .92;
    mask-image: linear-gradient(180deg, #000 0 46px, transparent 46px);
}
.footer-divider::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 25px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(200,155,72,.9), transparent);
}
.footer-brand p {
    max-width: 460px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
}
.footer-logo {
    width: 210px;
    min-width: 0;
    padding: 8px 10px;
    border-radius: 8px;
    background: rgba(255,255,255,.98);
    box-shadow: 0 16px 36px rgba(0,0,0,.18);
}
.footer-logo img {
    height: 58px;
    object-position: center;
}
.footer-col, .footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}
.footer-col strong, .footer-contact strong { margin-bottom: 8px; color: #fff; }
.footer-col a, .footer-col span, .footer-contact a, .footer-contact small {
    color: rgba(255,255,255,.72);
    line-height: 1.5;
}
.footer-contact a { font-weight: 900; }

@media (max-width: 1120px) {
    .site-header {
        grid-template-columns: 190px 1fr auto;
    }
    .header-cta { justify-self: end; }
    .nav-panel { gap: 4px; }
    .nav-panel a { padding: 10px 9px; font-size: 14px; }
    .hero, .product-detail, .split-band, .content-band, .form-layout, .craft-section {
        grid-template-columns: 1fr;
    }
    .hero { min-height: auto; }
    .hero-showcase { min-height: 470px; }
    .detail-info { position: static; }
    .product-grid, .contact-grid, .trust-strip, .craft-steps, .site-footer { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
    .top-ribbon { grid-template-columns: 1fr; justify-items: center; gap: 6px; font-size: 12px; }
    .top-ribbon span:first-child, .top-ribbon span:nth-child(2), .top-ribbon a { justify-self: center; }
    .site-header {
        grid-template-columns: auto 1fr auto;
        min-height: auto;
        padding: 12px 14px;
        gap: 12px;
    }
    .logo-brand { width: 156px; min-width: 156px; padding: 0; }
    .logo-brand img { height: 50px; }
    .menu-toggle { display: block; grid-column: 3; grid-row: 1; }
    .main-nav { display: block; }
    .nav-panel {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 60;
        display: grid;
        align-content: start;
        gap: 6px;
        width: min(330px, calc(100vw - 42px));
        height: 100vh;
        padding: 96px 20px 24px;
        background:
            linear-gradient(180deg, rgba(255,250,241,.98), rgba(245,239,229,.98));
        border-left: 1px solid rgba(8,34,56,.12);
        box-shadow: -22px 0 52px rgba(8,34,56,.22);
        transform: translateX(105%);
        transition: transform .28s ease;
    }
    .nav-panel a {
        display: flex;
        align-items: center;
        min-height: 48px;
        padding: 0 14px;
        border: 1px solid rgba(8,34,56,.1);
        border-radius: 10px;
        background: #fff;
        font-size: 16px;
    }
    .menu-open .nav-panel { transform: translateX(0); }
    .menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 50;
        display: block;
        background: rgba(8,34,56,.48);
        opacity: 0;
        pointer-events: none;
        transition: opacity .25s ease;
    }
    .menu-open .menu-backdrop {
        opacity: 1;
        pointer-events: auto;
    }
    .header-cta {
        grid-column: 1 / -1;
        width: 100%;
        min-height: 46px;
        flex-direction: row;
        gap: 8px;
        padding: 0 12px;
    }
    .header-cta span { font-size: 16px; }
    .header-cta small { margin-top: 0; }
    .hero, .section, .gallery-grid, .product-detail, .form-layout, .contact-grid, .content-band, .page-hero, .craft-section {
        padding-left: 14px;
        padding-right: 14px;
    }
    .hero { grid-template-columns: 1fr; padding-top: 40px; }
    .hero h1 { font-size: clamp(44px, 14vw, 60px); }
    .hero-actions .btn { width: 100%; }
    .hero-showcase { min-height: 390px; }
    .hero-card { inset: 0; }
    .hero-inset-card { width: 160px; }
    .section-heading { align-items: flex-start; flex-direction: column; }
    .thumb-row { grid-template-columns: repeat(3, 1fr); }
    .product-craft-note { flex-direction: column; align-items: flex-start; }
    .footer-logo { width: 200px; padding: 8px 10px; }
    .footer-logo img { height: 56px; }
}

@keyframes trustShine {
    0%, 35% { transform: translateX(-110%); }
    60%, 100% { transform: translateX(110%); }
}
@keyframes trustWheel {
    to { transform: rotate(360deg); }
}
@keyframes currentMove {
    0%, 100% { transform: translateX(-4%) skewX(-6deg); }
    50% { transform: translateX(6%) skewX(-6deg); }
}
@keyframes craftRise {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: translateY(0); }
}
