:root {
    --bg: #090909;
    --bg-soft: #101010;
    --surface: #131313;
    --surface-light: #191919;
    --gold: #d8b767;
    --gold-light: #f0d894;
    --gold-dark: #a88337;
    --text: #f7f3ea;
    --text-muted: #aaa59a;
    --border: rgba(216, 183, 103, 0.2);
    --border-strong: rgba(216, 183, 103, 0.48);
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --transition: 260ms ease;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background:
        radial-gradient(circle at 50% -20%, rgba(216, 183, 103, 0.09), transparent 30%),
        var(--bg);
    color: var(--text);
    font-family: "Vazirmatn", sans-serif;
    font-size: 16px;
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

::selection {
    background: var(--gold);
    color: #111;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--gold-light);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

.page-glow {
    position: fixed;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(110px);
    pointer-events: none;
    opacity: 0.08;
    background: var(--gold);
}

.page-glow--one {
    top: 10%;
    right: -220px;
}

.page-glow--two {
    bottom: 5%;
    left: -250px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold-light);
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.eyebrow::before {
    content: "";
    width: 30px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    line-height: 1.35;
}

h2 {
    margin-bottom: 20px;
    font-size: clamp(2rem, 4vw, 3.35rem);
    font-weight: 800;
    letter-spacing: -0.035em;
}

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    color: #111;
    box-shadow: 0 15px 38px rgba(216, 183, 103, 0.2);
}

.btn-gold:hover {
    box-shadow: 0 20px 46px rgba(216, 183, 103, 0.28);
}

.btn-outline-gold {
    border-color: var(--border-strong);
    background: rgba(255, 255, 255, 0.025);
    color: var(--gold-light);
}

.btn-outline-gold:hover {
    border-color: var(--gold);
    background: rgba(216, 183, 103, 0.08);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    left: 0;
    padding: 18px 0;
    transition:
        padding var(--transition),
        background var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.site-header.scrolled {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    background: rgba(9, 9, 9, 0.88);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(16px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(216, 183, 103, 0.15), transparent);
    color: var(--gold-light);
    box-shadow: inset 0 0 20px rgba(216, 183, 103, 0.05);
}

.brand-name {
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    direction: ltr;
}

.brand-name span {
    color: var(--gold);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    color: #d8d3c9;
    font-size: 0.92rem;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -8px;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-cta {
    min-height: 46px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 1px;
    background: var(--gold-light);
    transition:
        transform var(--transition),
        opacity var(--transition);
}

/* Hero */
.hero {
    display: flex;
    min-height: 100vh;
    align-items: center;
    padding-top: 150px;
    padding-bottom: 90px;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 5%;
    width: 1px;
    height: 55%;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 75px;
}

.hero-content h1 {
    max-width: 700px;
    margin: 24px 0;
    font-size: clamp(3.3rem, 7vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.06em;
}

.hero-content h1 span {
    display: block;
    color: transparent;
    background: linear-gradient(120deg, var(--gold-light), var(--gold), #896a2d);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-description {
    max-width: 650px;
    margin-bottom: 34px;
    color: var(--text-muted);
    font-size: 1.08rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 42px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #c8c3b8;
    font-size: 0.88rem;
}

.feature-item i {
    color: var(--gold);
    font-size: 1.08rem;
}

.hero-visual {
    position: relative;
    min-height: 620px;
}

.image-placeholder {
    position: relative;
    display: flex;
    overflow: hidden;
    height: 100%;
    min-height: 100%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    border: 1px solid var(--border);
    background:
        linear-gradient(145deg, rgba(216, 183, 103, 0.11), transparent 48%),
        linear-gradient(215deg, rgba(255, 255, 255, 0.035), transparent 60%),
        var(--surface);
    color: var(--text-muted);
    text-align: center;
    box-shadow: var(--shadow);
}

.image-placeholder::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(216, 183, 103, 0.11);
    pointer-events: none;
}

.image-placeholder strong {
    position: relative;
    z-index: 2;
    margin-bottom: 8px;
    color: var(--gold-light);
    font-size: 1.15rem;
}

.image-placeholder span {
    position: relative;
    z-index: 2;
    max-width: 330px;
    font-size: 0.9rem;
}

.hero-image-placeholder {
    min-height: 620px;
    border-radius: 42% 42% 22% 22% / 33% 33% 16% 16%;
}

.placeholder-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 24px;
    color: var(--gold);
    font-size: 4.7rem;
    filter: drop-shadow(0 12px 24px rgba(216, 183, 103, 0.2));
}

.placeholder-orbit {
    position: absolute;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(216, 183, 103, 0.2);
    border-radius: 50%;
}

.placeholder-orbit::before,
.placeholder-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(216, 183, 103, 0.08);
    border-radius: 50%;
}

.placeholder-orbit::before {
    inset: 35px;
}

.placeholder-orbit::after {
    inset: 78px;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(15, 15, 15, 0.84);
    color: var(--text);
    font-size: 0.8rem;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.floating-badge i,
.floating-badge strong {
    color: var(--gold-light);
}

.floating-badge--top {
    top: 85px;
    right: -30px;
}

.floating-badge--bottom {
    bottom: 70px;
    left: -35px;
}

.floating-badge--bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
}

.floating-badge--bottom strong {
    font-size: 1.35rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.78rem;
    transform: translateX(-50%);
    transition: color var(--transition);
}

.scroll-indicator i {
    color: var(--gold);
    animation: floatDown 1.6s ease-in-out infinite;
}

.scroll-indicator:hover {
    color: var(--gold-light);
}

@keyframes floatDown {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(6px);
    }
}

/* Products */
.products {
    border-top: 1px solid rgba(216, 183, 103, 0.09);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent);
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 55px;
}

.section-heading h2 {
    margin: 12px 0 0;
}

.section-heading p {
    max-width: 500px;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    overflow: hidden;
    border: 1px solid rgba(216, 183, 103, 0.12);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.product-card:hover {
    border-color: var(--border-strong);
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-8px);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 0.92;
    background: #151515;
}

.product-image::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent);
    pointer-events: none;
}

.product-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.72, 0.35, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.055);
}

.product-badge {
    position: absolute;
    z-index: 2;
    top: 16px;
    right: 16px;
    padding: 7px 12px;
    border: 1px solid rgba(216, 183, 103, 0.34);
    border-radius: 999px;
    background: rgba(9, 9, 9, 0.78);
    color: var(--gold-light);
    font-size: 0.72rem;
    backdrop-filter: blur(8px);
}

.favorite-btn {
    position: absolute;
    z-index: 2;
    top: 16px;
    left: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(216, 183, 103, 0.24);
    border-radius: 50%;
    background: rgba(9, 9, 9, 0.74);
    color: var(--gold-light);
    cursor: pointer;
    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
    backdrop-filter: blur(8px);
}

.favorite-btn:hover,
.favorite-btn.is-favorite {
    background: var(--gold);
    color: #111;
    transform: scale(1.06);
}

.product-content {
    padding: 24px;
}

.product-category {
    display: block;
    margin-bottom: 8px;
    color: var(--gold);
    font-size: 0.76rem;
}

.product-content h3 {
    margin-bottom: 11px;
    font-size: 1.2rem;
}

.product-content p {
    min-height: 58px;
    margin-bottom: 22px;
    color: var(--text-muted);
    font-size: 0.86rem;
    line-height: 1.8;
}

.product-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.055);
}

.price {
    color: var(--gold-light);
    font-size: 1.04rem;
    white-space: nowrap;
}

.price small {
    color: var(--text-muted);
    font-size: 0.69rem;
    font-weight: 400;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #d7d2c7;
    font-size: 0.75rem;
    transition: color var(--transition);
}

.product-link:hover {
    color: var(--gold-light);
}

/* Craft */
.craft {
    overflow: hidden;
}

.craft::before {
    content: "";
    position: absolute;
    top: 15%;
    right: -140px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(216, 183, 103, 0.08);
    border-radius: 50%;
}

.craft-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 90px;
}

.craft-visual {
    position: relative;
    display: flex;
    min-height: 460px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at center, rgba(216, 183, 103, 0.12), transparent 46%),
        var(--surface);
    box-shadow: var(--shadow);
}

.craft-visual::before,
.craft-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(216, 183, 103, 0.13);
    border-radius: 50%;
}

.craft-visual::before {
    width: 240px;
    height: 240px;
}

.craft-visual::after {
    width: 330px;
    height: 330px;
}

.craft-monogram {
    position: relative;
    z-index: 2;
    color: transparent;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Georgia, serif;
    font-size: 6.8rem;
    line-height: 1;
}

.craft-line {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 1px;
    margin: 20px 0;
    background: var(--gold);
}

.craft-visual span {
    position: relative;
    z-index: 2;
    color: var(--text-muted);
    font-size: 0.82rem;
}

.craft-content p {
    max-width: 650px;
    color: var(--text-muted);
    font-size: 1rem;
}

.craft-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 38px;
}

.craft-stats div {
    padding: 22px;
    border: 1px solid rgba(216, 183, 103, 0.11);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.018);
}

.craft-stats strong,
.craft-stats span {
    display: block;
}

.craft-stats strong {
    margin-bottom: 5px;
    color: var(--gold-light);
    font-size: 1.55rem;
}

.craft-stats span {
    color: var(--text-muted);
    font-size: 0.77rem;
}

/* Custom Order CTA */
.custom-order {
    padding-top: 65px;
}

.order-panel {
    position: relative;
    display: grid;
    overflow: hidden;
    align-items: stretch;
    grid-template-columns: 1.08fr 0.92fr;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 15% 15%, rgba(216, 183, 103, 0.12), transparent 30%),
        var(--surface);
    box-shadow: var(--shadow);
}

.order-panel::before {
    content: "TALAZON";
    position: absolute;
    right: 35px;
    bottom: -38px;
    color: rgba(216, 183, 103, 0.035);
    font-family: Georgia, serif;
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    pointer-events: none;
}

.order-content {
    position: relative;
    z-index: 2;
    padding: 75px;
}

.order-content h2 {
    max-width: 620px;
    margin-top: 14px;
}

.order-content p {
    max-width: 640px;
    margin-bottom: 32px;
    color: var(--text-muted);
}

.order-visual {
    min-height: 530px;
    padding: 18px;
}

.cta-image-placeholder {
    min-height: 100%;
    border-radius: 22px;
}

/* Footer */
.site-footer {
    position: relative;
    margin-top: 60px;
    padding-top: 85px;
    border-top: 1px solid var(--border);
    background:
        linear-gradient(180deg, rgba(216, 183, 103, 0.025), transparent 35%),
        #070707;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 1.1fr;
    gap: 80px;
    padding-bottom: 65px;
}

.footer-brand p {
    max-width: 440px;
    margin: 24px 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--gold-light);
    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        border-color var(--transition);
}

.social-links a:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: #111;
    transform: translateY(-3px);
}

.footer-column {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 11px;
}

.footer-column h3 {
    margin-bottom: 12px;
    color: var(--gold-light);
    font-size: 1rem;
}

.footer-column a,
.footer-column p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-column > a:hover {
    color: var(--gold-light);
}

.footer-contact p,
.footer-contact a {
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.footer-contact i {
    margin-top: 5px;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #77736c;
    font-size: 0.76rem;
}

.footer-bottom p {
    margin: 0;
}

/* Back to top */
.back-to-top {
    position: fixed;
    z-index: 950;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    background: rgba(13, 13, 13, 0.88);
    color: var(--gold-light);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition:
        opacity var(--transition),
        transform var(--transition),
        background var(--transition),
        color var(--transition);
    backdrop-filter: blur(12px);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold);
    color: #111;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.products-grid .reveal:nth-child(2),
.products-grid .reveal:nth-child(5) {
    transition-delay: 90ms;
}

.products-grid .reveal:nth-child(3),
.products-grid .reveal:nth-child(6) {
    transition-delay: 180ms;
}

/* Responsive */
@media (max-width: 1080px) {
    .main-nav {
        gap: 18px;
    }

    .header-cta {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-visual,
    .hero-image-placeholder {
        min-height: 540px;
    }

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

    .craft-grid {
        gap: 50px;
    }

    .order-content {
        padding: 55px;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 85px 0;
    }

    .site-header {
        padding: 12px 0;
    }

    .menu-toggle {
        display: flex;
        order: -1;
    }

    .menu-toggle.is-active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.is-active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 76px;
        right: 20px;
        left: 20px;
        display: flex;
        visibility: hidden;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: var(--radius-md);
        background: rgba(12, 12, 12, 0.96);
        box-shadow: var(--shadow);
        opacity: 0;
        transform: translateY(-12px);
        transition:
            opacity var(--transition),
            transform var(--transition),
            visibility var(--transition);
        backdrop-filter: blur(18px);
    }

    .main-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .nav-link {
        padding: 13px 12px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-link:last-child {
        border-bottom: 0;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 135px;
    }

    .hero-grid,
    .craft-grid,
    .order-panel {
        grid-template-columns: 1fr;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .eyebrow,
    .hero-actions,
    .hero-features {
        justify-content: center;
    }

    .hero-description {
        margin-inline: auto;
    }

    .hero-content h1 {
        margin-inline: auto;
        font-size: clamp(3rem, 12vw, 5.4rem);
    }

    .hero-visual {
        width: min(100%, 590px);
        min-height: 540px;
        margin-inline: auto;
    }

    .floating-badge--top {
        right: -8px;
    }

    .floating-badge--bottom {
        left: -8px;
    }

    .scroll-indicator {
        display: none;
    }

    .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }

    .craft-visual {
        min-height: 400px;
    }

    .order-visual {
        min-height: 430px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 72px 0;
    }

    .brand-name {
        font-size: 1.25rem;
    }

    .brand-mark {
        width: 38px;
        height: 38px;
    }

    .hero {
        padding-top: 115px;
    }

    .hero-content h1 {
        font-size: clamp(2.7rem, 14vw, 4.1rem);
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: right;
    }

    .hero-visual,
    .hero-image-placeholder {
        min-height: 440px;
    }

    .floating-badge {
        position: relative;
        inset: auto;
        width: max-content;
        max-width: 90%;
        margin-top: 12px;
    }

    .floating-badge--bottom {
        margin-right: auto;
    }

    .placeholder-orbit {
        width: 250px;
        height: 250px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-content p {
        min-height: auto;
    }

    .product-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .craft-stats {
        grid-template-columns: 1fr;
    }

    .order-content {
        padding: 38px 24px;
    }

    .order-content .btn {
        width: 100%;
    }

    .order-visual {
        min-height: 370px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .back-to-top {
        right: 14px;
        bottom: 14px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
