:root {
    --bg: #f7f1ea;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-solid: #fffdf9;
    --surface-strong: #ffffff;
    --text: #241715;
    --text-soft: #69554f;
    --text-muted: #8c7670;
    --line: rgba(36, 23, 21, 0.1);
    --line-strong: rgba(36, 23, 21, 0.18);
    --primary: #2f1d1a;
    --primary-soft: #513530;
    --accent: #c8a16a;
    --accent-soft: #e4d1b3;
    --berry: #b88486;
    --shadow-soft: 0 18px 48px rgba(47, 29, 26, 0.08);
    --shadow-medium: 0 28px 70px rgba(47, 29, 26, 0.14);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 36px;
    --radius-pill: 999px;
    --container: 1240px;
    --transition: 220ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(200, 161, 106, 0.16), transparent 30%),
        radial-gradient(circle at top right, rgba(184, 132, 134, 0.14), transparent 28%),
        var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

button {
    border: 0;
    background: none;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: min(100% - 64px, var(--container));
    margin: 0 auto;
}

.section {
    padding: 112px 0;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: var(--line-strong);
}

h1,
h2,
h3,
.brand-name {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3.6rem, 5.2vw, 5.4rem);
    line-height: 0.95;
    font-weight: 600;
}

h2 {
    font-size: clamp(2.4rem, 3.4vw, 3.6rem);
    line-height: 1.02;
    font-weight: 600;
}

h3 {
    font-size: 1.9rem;
    line-height: 1.05;
    font-weight: 600;
}

p {
    color: var(--text-soft);
}

.section-header {
    max-width: 760px;
    margin-bottom: 56px;
}

.section-header p {
    font-size: 1.06rem;
    margin-top: 14px;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fffaf5;
    box-shadow: 0 18px 30px rgba(47, 29, 26, 0.2);
}

.btn-primary:hover {
    box-shadow: 0 22px 38px rgba(47, 29, 26, 0.26);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.56);
    border-color: var(--line);
    color: var(--text);
    backdrop-filter: blur(14px);
}

.btn-secondary:hover {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.76);
}

.text-link {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.text-link::after {
    content: "\2192";
    transition: transform var(--transition);
}

.text-link:hover::after {
    transform: translateX(3px);
}

#page-loader {
    position: fixed;
    inset: 0;
    background: var(--surface-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    transition: opacity 400ms ease;
}

.loader-mark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.loader-logo {
    width: 82px;
    height: 82px;
    object-fit: contain;
}

.loader-line {
    width: 92px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    animation: loaderPulse 1.1s infinite ease-in-out;
}

@keyframes loaderPulse {
    0%,
    100% {
        transform: scaleX(0.45);
        opacity: 0.45;
    }
    50% {
        transform: scaleX(1);
        opacity: 1;
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1200;
    padding: 20px 0;
    background: rgba(247, 241, 234, 0.72);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(36, 23, 21, 0.06);
    box-shadow: 0 10px 24px rgba(36, 23, 21, 0.05);
    transition:
        padding var(--transition),
        background-color var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand-logo {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.66);
    padding: 6px;
    box-shadow: var(--shadow-soft);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-name {
    font-size: 2rem;
    line-height: 0.9;
    font-weight: 700;
}

.brand-tag {
    font-family: "La Belle Aurore", cursive;
    font-size: 1.05rem;
    line-height: 1;
    letter-spacing: 0.01em;
    font-weight: 400;
    color: var(--text-muted);
}

.nav-links,
.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-soft);
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 1px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform var(--transition);
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--line);
    color: var(--primary);
    cursor: pointer;
}

.mobile-menu {
    display: none;
}

.top-marquee {
    position: absolute;
    left: 0;
    width: 100%;
    top: 100%;
    z-index: -1;
    padding: 10px 0;
    display: flex;
    overflow: hidden;
    border-top: 1px solid rgba(36, 23, 21, 0.08);
    border-bottom: 1px solid rgba(36, 23, 21, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 241, 0.58));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 240ms ease, transform 240ms ease;
}

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

.top-marquee-track {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    gap: 24px;
    min-width: max-content;
    padding-right: 24px;
    animation: topMarqueeMove 34s linear infinite;
}

.top-marquee-track span {
    color: rgba(36, 23, 21, 0.82);
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.top-marquee-track span::before {
    content: "";
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(36, 23, 21, 0.38);
    margin-right: 10px;
    vertical-align: middle;
}

.top-marquee-track em {
    font-style: normal;
    color: rgba(36, 23, 21, 0.6);
    margin-left: 8px;
}

@keyframes topMarqueeMove {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.hero {
    position: relative;
    padding: 162px 0 96px;
    overflow: hidden;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 24px;
    width: calc(100% - 48px);
    height: calc(100% - 48px);
    object-fit: cover;
    border-radius: 42px;
    filter: saturate(0.96) contrast(0.98);
    transform: scale(1.04);
    animation: heroFloat 16s ease-in-out infinite alternate;
}

.hero-video {
    display: block;
    object-fit: cover;
    object-position: center 78%;
    transform: none;
    animation: none;
}

.hero-gradient {
    position: absolute;
    inset: 24px;
    border-radius: 42px;
    background:
        linear-gradient(90deg, rgba(28, 16, 14, 0.84) 0%, rgba(28, 16, 14, 0.46) 38%, rgba(28, 16, 14, 0.16) 62%, rgba(28, 16, 14, 0.12) 100%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.14));
    z-index: 1;
}

@keyframes heroFloat {
    from {
        transform: scale(1.03) translateY(0);
    }
    to {
        transform: scale(1.07) translateY(-12px);
    }
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.85fr);
    gap: 40px;
    align-items: end;
    min-height: calc(100vh - 168px);
}

.hero-copy {
    color: #fff8f2;
    max-width: 720px;
    padding: 56px 0;
}

.hero-copy .eyebrow,
.hero-copy p,
.hero-copy .brand-tag {
    color: rgba(255, 248, 242, 0.78);
}

.hero-copy .eyebrow::before {
    background: rgba(255, 248, 242, 0.42);
}

.hero-text {
    font-size: 1.08rem;
    max-width: 600px;
    margin-top: 22px;
}

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

.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.hero-proof div,
.hero-card,
.hero-metrics .metric,
.trust-item,
.process-card,
.product-card,
.story-copy,
.review-card,
.inquiry-form {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    box-shadow: var(--shadow-soft);
}

.hero-proof div {
    padding: 18px 20px;
    border-radius: var(--radius-sm);
    background: rgba(25, 15, 13, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
}

.hero-proof strong,
.metric strong {
    display: block;
    font-size: 1.02rem;
    color: #fffdfb;
    margin-bottom: 4px;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-proof span,
.metric span {
    display: block;
    font-size: 0.97rem;
    color: rgba(255, 248, 242, 0.92);
    line-height: 1.55;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-panel {
    display: grid;
    gap: 18px;
    padding-bottom: 18px;
}

.hero-card {
    padding: 28px;
    border-radius: 30px;
    background: rgba(25, 15, 13, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(22px);
}

.card-label {
    display: inline-block;
    color: rgba(255, 248, 242, 0.9);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 18px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.intent-list {
    list-style: none;
    display: grid;
    gap: 18px;
    margin-bottom: 24px;
}

.intent-list li {
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.intent-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.intent-list strong {
    display: block;
    color: #fffdfb;
    margin-bottom: 6px;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.intent-list span {
    color: rgba(255, 248, 242, 0.92);
    font-size: 0.98rem;
    line-height: 1.55;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-split-actions {
    display: grid;
    gap: 12px;
}

.intent-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fffdfb;
    font-size: 0.98rem;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    transition:
        transform var(--transition),
        background-color var(--transition),
        border-color var(--transition);
}

.intent-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.18);
}

.hero-metrics {
    display: grid;
    gap: 14px;
}

.metric {
    padding: 18px 20px;
    border-radius: 20px;
    background: rgba(25, 15, 13, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
}

.metric strong {
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.35;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.metric span {
    font-size: 0.97rem;
    line-height: 1.55;
    color: rgba(255, 248, 242, 0.92);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.trust-bar {
    padding-bottom: 24px;
}

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

.trust-item,
.process-card,
.review-card {
    padding: 24px;
    border-radius: 24px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.46);
    border-color: rgba(36, 23, 21, 0.06);
}

.trust-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 800;
}

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

.collection-card {
    position: relative;
    min-height: 420px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.collection-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(24, 15, 13, 0.05), rgba(24, 15, 13, 0.68));
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    padding: 28px;
    color: #fff8f2;
}

.collection-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.18);
    margin-bottom: 14px;
}

.collection-overlay h3 {
    margin-bottom: 10px;
}

.collection-overlay p {
    color: rgba(255, 248, 242, 0.82);
    max-width: 34ch;
}

.experience-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 30px;
    align-items: start;
}

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

.process-card {
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(36, 23, 21, 0.08);
    min-height: 240px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(200, 161, 106, 0.18);
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.process-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

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

.product-card {
    overflow: hidden;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(36, 23, 21, 0.06);
}

.product-card img {
    width: 100%;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
}

.product-copy {
    padding: 22px;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: var(--radius-pill);
    background: rgba(200, 161, 106, 0.16);
    color: var(--primary);
    font-size: 0.77rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.pill.muted {
    background: rgba(36, 23, 21, 0.06);
}

.product-copy h3 {
    margin-bottom: 10px;
}

.product-copy p {
    margin-bottom: 18px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(36, 23, 21, 0.08);
}

.product-footer strong,
.story-points strong,
.inquiry-notes strong {
    display: block;
    font-size: 1rem;
    color: var(--primary);
    margin-bottom: 4px;
}

.product-footer span,
.story-points span,
.inquiry-notes span,
.footer-bottom span {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.story-section {
    padding-top: 40px;
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: stretch;
}

.story-image {
    overflow: hidden;
    border-radius: 34px;
    box-shadow: var(--shadow-medium);
}

.story-image img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.story-copy {
    padding: 34px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.58);
    border-color: rgba(36, 23, 21, 0.08);
}

.story-copy p {
    margin-top: 18px;
}

.story-points,
.inquiry-notes {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
    gap: 24px;
}

.gallery-tile {
    position: relative;
    min-height: 440px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.gallery-tile.large {
    min-height: 520px;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 14, 12, 0.08), rgba(23, 14, 12, 0.68));
}

.gallery-tile:hover img {
    transform: scale(1.05);
}

.gallery-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    z-index: 1;
    color: #fff8f2;
}

.gallery-copy span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 248, 242, 0.7);
    margin-bottom: 10px;
}

.gallery-copy strong {
    font-size: 1.4rem;
    line-height: 1.2;
}

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

.review-card {
    background: rgba(255, 255, 255, 0.66);
    border-color: rgba(36, 23, 21, 0.06);
}

.review-card p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.75;
}

.review-author {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(36, 23, 21, 0.08);
}

.review-author strong {
    display: block;
    margin-bottom: 4px;
}

.inquiry-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 28px;
    align-items: start;
}

.inquiry-form {
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(36, 23, 21, 0.08);
}

.form-row {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

.form-row.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-row.two-column > div {
    display: grid;
    gap: 10px;
}

label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid rgba(36, 23, 21, 0.1);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 18px;
    padding: 14px 16px;
    color: var(--text);
    outline: none;
    transition:
        border-color var(--transition),
        box-shadow var(--transition),
        background-color var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(47, 29, 26, 0.28);
    box-shadow: 0 0 0 4px rgba(200, 161, 106, 0.14);
    background: #ffffff;
}

textarea {
    resize: vertical;
    min-height: 132px;
}

.form-submit {
    width: 100%;
    margin-top: 6px;
}

.form-helper {
    margin-top: 14px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.instagram-highlight {
    margin-top: 64px;
    padding: 36px 48px;
    border-radius: 32px;
    background-color: rgba(200, 161, 106, 0.05); /* Base color to animate over */
    background-image: linear-gradient(135deg, rgba(200, 161, 106, 0.15), rgba(184, 132, 134, 0.1)); /* Overlay texture */
    border: 1px solid rgba(200, 161, 106, 0.3);
    backdrop-filter: blur(24px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 12px 40px rgba(200, 161, 106, 0.1);
    position: relative;
    overflow: hidden;
    animation: elegantCardFlash 4s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes elegantCardFlash {
    0%, 100% {
        background-color: rgba(200, 161, 106, 0.15); /* Warm Gold */
        border-color: rgba(200, 161, 106, 0.4);
        box-shadow: 0 12px 40px rgba(200, 161, 106, 0.15), inset 0 0 0 rgba(255, 255, 255, 0);
    }
    33% {
        background-color: rgba(255, 255, 255, 0.3); /* Bright Frosted White */
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 16px 50px rgba(255, 255, 255, 0.3), inset 0 0 30px rgba(255, 255, 255, 0.3);
    }
    66% {
        background-color: rgba(184, 132, 134, 0.25); /* Rich Berry */
        border-color: rgba(184, 132, 134, 0.5);
        box-shadow: 0 16px 40px rgba(184, 132, 134, 0.25), inset 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

.instagram-highlight::before {
    content: "";
    position: absolute;
    right: -10%;
    top: -50%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(200, 161, 106, 0.15) 0%, transparent 70%);
    transform: rotate(-15deg);
    animation: sweepBg 8s infinite alternate ease-in-out;
    pointer-events: none;
    z-index: 1;
}

@keyframes sweepBg {
    from { transform: rotate(-15deg) translateY(0) scale(1); opacity: 0.4; }
    to { transform: rotate(-5deg) translateY(10%) scale(1.1); opacity: 0.8; }
}

.instagram-highlight::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    mix-blend-mode: overlay;
}

.instagram-highlight.is-visible::after {
    animation: cameraFlash 1.6s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes cameraFlash {
    0% { opacity: 0; }
    8% { opacity: 0.95; }
    16% { opacity: 0.1; }
    24% { opacity: 0.7; }
    45% { opacity: 0; }
    100% { opacity: 0; }
}

.ig-content {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.ig-icon {
    font-size: 3.2rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--accent), var(--berry));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08));
    animation: igFloat 3.5s ease-in-out infinite alternate;
}

@keyframes igFloat {
    from { transform: translateY(0) rotate(-4deg) scale(1); }
    to { transform: translateY(-6px) rotate(4deg) scale(1.05); }
}

.ig-copy h3 {
    margin-bottom: 6px;
    font-size: 1.8rem;
    color: var(--primary);
}

.ig-copy p {
    font-size: 0.98rem;
    max-width: 480px;
    color: var(--text-soft);
}

.ig-btn {
    flex-shrink: 0;
    min-height: 56px;
    padding: 0 32px;
    border-radius: 999px;
    background: var(--surface-strong);
    color: var(--primary);
    box-shadow: 0 8px 24px rgba(47, 29, 26, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.3s ease;
}

.ig-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 30%;
    height: 100%;
    background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: btnShine 4s infinite 1s;
}

@keyframes btnShine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.ig-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(47, 29, 26, 0.16);
}

@media (max-width: 860px) {
    .instagram-highlight {
        flex-direction: column;
        align-items: flex-start;
        padding: 32px;
        margin-top: 48px;
    }
}

@media (max-width: 640px) {
    .instagram-highlight {
        padding: 24px;
        border-radius: 24px;
        gap: 20px;
    }
    
    .ig-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .ig-icon {
        font-size: 2.6rem;
    }
    
    .ig-copy h3 {
        font-size: 1.5rem;
    }
    
    .ig-btn {
        width: 100%;
        justify-content: space-between;
    }
}

.footer {
    padding: 0 0 42px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr 0.8fr;
    gap: 22px;
    padding: 28px 0 28px;
    border-top: 1px solid rgba(36, 23, 21, 0.08);
}

.footer-brand {
    max-width: 420px;
}

.footer-brand-lockup {
    margin-bottom: 14px;
}

.footer-brand p {
    margin-top: 16px;
}

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-title {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--text-muted);
}

.footer-title::after {
    content: "";
    display: block;
    width: min(140px, 100%);
    height: 1px;
    margin-top: 8px;
    background: rgba(36, 23, 21, 0.18);
}

.footer-column a,
.footer-column p {
    color: var(--text-soft);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-map {
    width: 100%;
    height: 150px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(36, 23, 21, 0.1);
    box-shadow: 0 8px 20px rgba(36, 23, 21, 0.08);
    margin: 4px 0 2px;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(12%) contrast(1.05);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(36, 23, 21, 0.08);
}

.designer-badge {
    display: inline-flex;
    align-items: center;
    min-height: 14px;
    padding: 0 5px;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(36, 23, 21, 0.08);
    background: rgba(255, 255, 255, 0.2);
    color: rgba(36, 23, 21, 0.42);
    font-size: 0.4rem;
    letter-spacing: 0.06em;
    text-transform: none;
    line-height: 1;
    opacity: 0.55;
    transition: opacity var(--transition), color var(--transition), border-color var(--transition);
}

.designer-badge:hover {
    opacity: 0.95;
    color: rgba(36, 23, 21, 0.68);
    border-color: rgba(36, 23, 21, 0.18);
}

.mobile-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--primary), var(--primary-soft));
    color: #fffaf5;
    font-weight: 800;
    box-shadow: 0 20px 42px rgba(47, 29, 26, 0.24);
    z-index: 1100;
}

.mobile-order-cta {
    display: none;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 10px;
    border-radius: var(--radius-pill);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-transform: none;
    color: rgba(36, 23, 21, 0.72);
    background: rgba(255, 255, 255, 0.42);
    border: 1px solid rgba(36, 23, 21, 0.12);
    opacity: 0.72;
    box-shadow: none;
    transition: opacity 260ms ease, background-color 260ms ease, border-color 260ms ease, color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.mobile-order-cta.is-active-scroll {
    opacity: 1;
    color: rgba(36, 23, 21, 0.9);
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(36, 23, 21, 0.24);
    box-shadow: 0 8px 16px rgba(36, 23, 21, 0.12);
    transform: translateY(-1px);
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 700ms ease,
        transform 700ms ease;
}

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

.reveal-delay-1 {
    transition-delay: 80ms;
}

.reveal-delay-2 {
    transition-delay: 160ms;
}

.reveal-delay-3 {
    transition-delay: 240ms;
}

/* ── Background Music Toggle ── */
.music-toggle {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 4px 16px rgba(47, 29, 26, 0.08);
    color: var(--primary);
    cursor: pointer;
    font-size: 0.8rem;
    transition: transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1), background-color 280ms ease;
}

.music-toggle:hover {
    transform: translateY(-4px) scale(1.08);
    background: rgba(255, 255, 255, 0.32);
    box-shadow:
        0 14px 42px rgba(200, 161, 106, 0.15),
        0 6px 20px rgba(47, 29, 26, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.music-bars {
    display: none;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
}

.music-bars .bar {
    width: 2px;
    background: var(--primary);
    border-radius: 2px;
    height: 20%;
    transition: height 0.2s ease;
}

.music-toggle.playing .music-bars {
    display: flex;
}

.music-toggle.playing .music-slash {
    display: none;
}

.music-toggle.playing .bar {
    animation: musicBounce 1s infinite alternate ease-in-out;
}

.music-toggle.playing .bar:nth-child(1) { animation-delay: 0.1s; }
.music-toggle.playing .bar:nth-child(2) { animation-delay: 0.4s; }
.music-toggle.playing .bar:nth-child(3) { animation-delay: 0.2s; }
.music-toggle.playing .bar:nth-child(4) { animation-delay: 0.5s; }

@keyframes musicBounce {
    0% { height: 20%; }
    100% { height: 100%; }
}

/* ── WhatsApp floating action button ── */
.whatsapp-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1300;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.32);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow:
        0 8px 32px rgba(47, 29, 26, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #25d366;
    cursor: pointer;
    transition:
        transform 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
        box-shadow 280ms cubic-bezier(0.2, 0.8, 0.2, 1),
        background-color 280ms ease;
}

.whatsapp-fab:hover {
    transform: translateY(-4px) scale(1.08);
    background: rgba(255, 255, 255, 0.32);
    box-shadow:
        0 14px 42px rgba(37, 211, 102, 0.22),
        0 6px 20px rgba(47, 29, 26, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.whatsapp-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.whatsapp-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.35);
    animation: whatsappPulse 2.4s ease-out infinite;
    pointer-events: none;
}

@keyframes whatsappPulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.35);
        opacity: 0;
    }
    100% {
        transform: scale(1.35);
        opacity: 0;
    }
}

@media (max-width: 1150px) {
    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-secondary,
    .nav-primary {
        display: none;
    }

    .mobile-order-cta {
        display: inline-flex;
    }

    .mobile-menu {
        position: absolute;
        top: calc(100% + 10px);
        left: 20px;
        right: 20px;
        display: grid;
        gap: 10px;
        padding: 16px;
        border-radius: 24px;
        background: linear-gradient(165deg, rgba(255, 255, 255, 0.96), rgba(255, 248, 241, 0.94));
        backdrop-filter: blur(18px) saturate(130%);
        -webkit-backdrop-filter: blur(18px) saturate(130%);
        border: 1px solid rgba(255, 255, 255, 0.9);
        box-shadow:
            0 20px 42px rgba(36, 23, 21, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.42);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition:
            opacity var(--transition),
            transform var(--transition);
    }

    .mobile-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .mobile-menu a:not(.btn) {
        padding: 10px 12px;
        color: var(--text);
        font-weight: 700;
        border-radius: 12px;
        transition: background-color var(--transition), color var(--transition);
    }

    .mobile-menu a:not(.btn):hover {
        background: rgba(255, 255, 255, 0.42);
        color: #1f1311;
    }

    .hero-grid,
    .experience-grid,
    .story-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
    }

    .experience-copy {
        text-align: left;
    }

    .experience-copy p {
        margin-top: 20px;
    }

    .process-steps,
    .product-grid,
    .review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .gallery-tile.large {
        grid-column: 1 / -1;
    }

    .hero {
        padding-top: 120px;
    }

    .hero-copy,
    .hero-panel {
        max-width: 720px;
    }
}

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

    .nav-container {
        gap: 12px;
    }

    .brand {
        gap: 10px;
        max-width: calc(100% - 130px);
    }

    .brand-copy {
        min-width: 0;
    }

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

    .navbar .brand-tag {
        font-size: 0.8rem;
        line-height: 0.9;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
    }

    .top-marquee {
        padding: 8px 0;
    }

    .top-marquee-track {
        gap: 18px;
        animation-duration: 28s;
    }

    .top-marquee-track span {
        font-size: 0.7rem;
    }

    .top-marquee-track em {
        margin-left: 6px;
    }

    .hero {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-image,
    .hero-gradient {
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .hero-video {
        object-position: center 66%;
    }

    .hero-grid {
        min-height: auto;
        gap: 16px;
    }

    .hero-copy {
        padding: 40px 0 14px;
    }

    .hero-actions {
        margin-top: 22px;
    }

    .hero-proof {
        margin-top: 22px;
    }

    .hero-proof,
    .trust-grid,
    .collections-grid,
    .process-steps,
    .product-grid,
    .review-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-tile,
    .gallery-tile.large,
    .collection-card {
        min-height: 320px;
    }

    .form-row.two-column {
        grid-template-columns: 1fr;
    }

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

    .mobile-cta {
        display: none;
    }
}

@media (max-width: 640px) {
    .trust-bar {
        display: none;
    }

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

    .navbar .brand-tag {
        display: block;
        font-size: 0.74rem;
        line-height: 0.95;
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

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

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .mobile-order-cta {
        min-height: 28px;
        padding: 0 8px;
        font-size: 0.56rem;
    }

    h1 {
        font-size: clamp(2.1rem, 9vw, 2.85rem);
        line-height: 0.98;
    }

    h2 {
        font-size: clamp(1.72rem, 7.5vw, 2.2rem);
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header p {
        font-size: 0.94rem;
        margin-top: 10px;
    }

    .hero-proof {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 18px;
    }

    .top-marquee {
        padding: 7px 0;
    }

    .top-marquee-track {
        gap: 14px;
        animation-duration: 24s;
    }

    .top-marquee-track span {
        font-size: 0.64rem;
    }

    .top-marquee-track span::before {
        width: 4px;
        height: 4px;
        margin-right: 8px;
    }

    .top-marquee-track em {
        margin-left: 5px;
    }

    .hero {
        padding-top: 126px;
        padding-bottom: 48px;
        min-height: calc(100dvh - 72px);
    }

    .hero-image,
    .hero-gradient {
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .hero-video {
        object-position: center 62%;
    }

    .hero-text {
        font-size: 0.9rem;
        line-height: 1.45;
        margin-top: 14px;
    }

    .hero-card,
    .hero-proof div,
    .metric,
    .trust-item,
    .process-card,
    .story-copy,
    .review-card,
    .inquiry-form {
        padding: 20px;
    }

    .hero-actions,
    .hero-split-actions {
        display: grid;
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .hero-actions {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 8px;
    }

    .btn,
    .intent-button {
        width: 100%;
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.86rem;
    }

    .hero-actions .btn {
        width: auto;
        min-height: 36px;
        padding: 0 12px;
        font-size: 0.74rem;
        border-radius: 12px;
    }

    .hero-panel {
        gap: 8px;
        padding-bottom: 0;
    }

    .hero-card {
        padding: 16px;
        border-radius: 18px;
    }

    .hero-proof div,
    .metric {
        padding: 12px 13px;
        border-radius: 14px;
    }

    .card-label {
        font-size: 0.64rem;
        letter-spacing: 0.1em;
        margin-bottom: 10px;
    }

    .intent-list {
        gap: 8px;
        margin-bottom: 10px;
    }

    .intent-list li {
        padding-bottom: 10px;
    }

    .intent-list strong {
        font-size: 0.9rem;
        margin-bottom: 4px;
        line-height: 1.25;
    }

    .intent-list span {
        font-size: 0.8rem;
        line-height: 1.35;
    }

    .hero-proof strong,
    .metric strong {
        font-size: 0.88rem;
        margin-bottom: 2px;
        line-height: 1.25;
    }

    .hero-proof span,
    .metric span {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .intent-button {
        min-height: 36px;
        padding: 8px 10px;
        border-radius: 12px;
        font-size: 0.74rem;
    }

    .product-copy {
        padding: 16px;
    }

    .product-copy h3 {
        font-size: 1.45rem;
    }

    .product-copy p {
        font-size: 0.9rem;
        margin-bottom: 14px;
    }

    .collection-overlay {
        padding: 16px;
    }

    .collection-overlay h3 {
        font-size: 1.6rem;
    }

    .collection-overlay p {
        font-size: 0.86rem;
    }

    .gallery-tile,
    .gallery-tile.large,
    .collection-card {
        min-height: 280px;
    }

    .gallery-copy {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .gallery-copy strong {
        font-size: 1.08rem;
    }

    .gallery-copy span {
        font-size: 0.68rem;
        margin-bottom: 6px;
    }

    .mobile-menu {
        left: 12px;
        right: 12px;
        padding: 12px;
        border-radius: 18px;
    }

    .mobile-menu .btn {
        min-height: 38px;
        font-size: 0.78rem;
        padding: 0 12px;
    }

    .form-row {
        margin-bottom: 14px;
    }

    input,
    select,
    textarea {
        padding: 12px 14px;
        border-radius: 14px;
    }

    .inquiry-form {
        padding: 16px;
        border-radius: 18px;
    }

    .footer-grid {
        gap: 14px;
        padding: 20px 0;
    }

    .footer-column {
        gap: 8px;
    }

    .footer-map {
        height: 120px;
    }

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

    .music-toggle {
        bottom: 16px;
        left: 16px;
        width: 30px;
        height: 30px;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 32px, var(--container));
    }



    .top-marquee-track {
        animation-duration: 22s;
    }

    .top-marquee-track span {
        font-size: 0.58rem;
    }

    .hero {
        padding-top: 110px;
        min-height: calc(100dvh - 64px);
    }

    .hero-grid {
        gap: 20px;
    }

    .nav-container {
        gap: 8px;
    }

    .brand {
        gap: 8px;
        max-width: calc(100% - 110px);
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

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

    .navbar .brand-tag {
        font-size: 0.64rem;
        line-height: 0.9;
    }

    .menu-toggle {
        width: 36px;
        height: 36px;
    }

    .hero-copy {
        padding: 18px 0 8px;
    }


    .hero-card,
    .hero-proof div,
    .metric {
        padding: 14px;
    }

    .btn,
    .intent-button {
        min-height: 38px;
        font-size: 0.78rem;
        border-radius: 12px;
    }

    .hero-actions {
        gap: 6px;
    }

    .hero-actions .btn {
        min-height: 32px;
        padding: 0 10px;
        font-size: 0.68rem;
        border-radius: 10px;
    }

    .hero-card {
        padding: 12px;
        border-radius: 14px;
    }

    .hero-proof div,
    .metric {
        padding: 10px 11px;
        border-radius: 12px;
    }

    .card-label {
        font-size: 0.58rem;
        margin-bottom: 8px;
    }

    .intent-list {
        gap: 8px;
        margin-bottom: 10px;
    }

    .intent-list li {
        padding-bottom: 8px;
    }

    .intent-list strong {
        font-size: 0.82rem;
    }

    .intent-list span {
        font-size: 0.74rem;
    }

    .hero-proof strong,
    .metric strong {
        font-size: 0.8rem;
    }

    .hero-proof span,
    .metric span {
        font-size: 0.72rem;
    }

    .intent-button {
        min-height: 34px;
        padding: 7px 9px;
        border-radius: 10px;
        font-size: 0.69rem;
    }

    .mobile-order-cta {
        min-height: 26px;
        padding: 0 7px;
        font-size: 0.52rem;
    }

    .gallery-tile,
    .gallery-tile.large,
    .collection-card {
        min-height: 240px;
    }

    .footer-map {
        height: 104px;
    }

    .whatsapp-fab {
        width: 52px;
        height: 52px;
        bottom: 20px;
        right: 20px;
    }

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