/* =========================================
   Base / Reset
========================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    /* DARK DEFAULT — masculine, powerful, grounded */
    --bg: #14100c;             /* dark warm black — default canvas */
    --bg-alt: #1c1612;         /* slightly lighter dark */
    --bg-deep: #0a0806;        /* deepest black warm */
    --bg-light: #ebe0cc;       /* cream — feature/accent panels only */
    --bg-cream: #f5ecd6;       /* lightest cream */
    --surface: #1c1612;

    /* Text */
    --text: #f4ecdc;           /* default cream text on dark */
    --text-dark: #1c1410;      /* dark text when on light surfaces */
    --text-muted: #a59886;     /* muted cream */
    --text-muted-dark: #5a4d3e;
    --text-soft: #7a6e5a;

    /* Accents — bronze, gold, copper */
    --accent: #c4823f;         /* bronze accent */
    --accent-dark: #8a5826;    /* deep bronze for hover */
    --accent-light: #d6a36c;   /* gold highlight */
    --accent-warm: #d6a36c;

    /* Borders */
    --border: rgba(214, 163, 108, 0.18);
    --border-strong: rgba(214, 163, 108, 0.32);
    --border-light: #c4b29a;
    --border-input: #b39d80;
    --shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
    color: var(--text);
    background: var(--bg);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Subtle film grain texture on dark */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background-image: radial-gradient(rgba(214, 163, 108, 0.025) 1px, transparent 1px);
    background-size: 3px 3px;
    opacity: 0.7;
}

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

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

h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", "Times New Roman", serif;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    letter-spacing: -0.2px;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-dark);
}

.btn-block {
    width: 100%;
    padding: 16px;
}

/* =========================================
   Header
========================================= */
.site-header {
    background: var(--bg);
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--border);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 22px;
    padding-bottom: 22px;
    gap: 24px;
}

.brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 2.8px;
    font-size: 14px;
    color: var(--text);
}

.brand-tag {
    font-size: 10px;
    letter-spacing: 2.4px;
    color: var(--accent-light);
    margin-top: 4px;
}

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

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--text);
}

.main-nav a.active {
    color: var(--text);
    font-weight: 600;
}

.main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: var(--accent);
}

/* Header right side: auth + cart + cta */
.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.auth-actions {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.auth-link {
    color: var(--text-muted);
    transition: color 0.2s ease;
    font-weight: 500;
}

.auth-link:hover {
    color: var(--text);
}

.auth-link.strong {
    color: var(--accent-light);
    font-weight: 600;
}

.auth-sep {
    color: var(--text-soft);
    font-size: 12px;
}

.auth-greet {
    font-size: 13px;
    color: var(--text);
    font-weight: 500;
}

/* Cart button */
.cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--text);
    transition: color 0.2s ease, transform 0.2s ease;
}

.cart-btn:hover {
    color: var(--accent-light);
}

.cart-btn.bump {
    animation: cartBump 0.35s ease;
}

@keyframes cartBump {
    0% { transform: scale(1); }
    40% { transform: scale(1.18); }
    100% { transform: scale(1); }
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.cart-badge.has-items {
    opacity: 1;
    transform: scale(1);
}

.header-cta {
    padding: 11px 20px;
    font-size: 13px;
    letter-spacing: 0.4px;
    text-transform: none;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    width: 32px;
    height: 28px;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    padding: 4px 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
}

/* =========================================
   Hero
========================================= */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    background: #efe5d6;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    filter: brightness(1.02);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(250, 246, 240, 0) 0%,
        rgba(250, 246, 240, 0.35) 40%,
        rgba(250, 246, 240, 0.65) 70%,
        rgba(250, 246, 240, 0.85) 100%
    );
}

.hero-inner {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
    display: flex;
    justify-content: flex-end;
}

.hero-copy {
    max-width: 460px;
    text-align: left;
}

.hero-copy h1 {
    font-size: 38px;
    line-height: 1.25;
    color: #2a2a2a;
    margin-bottom: 22px;
    font-weight: 500;
}

.hero-copy p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* =========================================
   Contact Section
========================================= */
.contact-section {
    padding: 110px 0 90px;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 100px;
    align-items: flex-start;
}

.eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.6px;
    color: var(--accent);
    text-transform: uppercase;
    position: relative;
    padding-left: 44px;
    margin-bottom: 32px;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 32px;
    height: 1.5px;
    background: var(--accent);
}

.eyebrow::after { content: none; }

.center-eyebrow {
    display: block;
    text-align: left;
}

.contact-intro h2 {
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text);
    font-weight: 600;
    letter-spacing: -0.8px;
}

.contact-intro p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0 0 18px;
    max-width: 340px;
}

.decor-leaf {
    margin-top: 60px;
    width: 110px;
    height: auto;
    opacity: 0.7;
}

/* =========================================
   Form
========================================= */
.contact-form {
    background: transparent;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.6px;
    color: var(--text);
    margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border-input);
    color: var(--text);
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #b3a89a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(184, 90, 31, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    font-family: inherit;
}

.select-wrap {
    position: relative;
}

.select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    cursor: pointer;
    color: #b3a89a;
}

.select-wrap select.has-value {
    color: var(--text);
}

.select-caret {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 8px;
    color: var(--text-muted);
    pointer-events: none;
}

.form-note {
    margin: 18px 0 0;
    text-align: center;
    color: var(--text-soft);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note svg {
    color: var(--text-soft);
}

/* =========================================
   Reach Section
========================================= */
.reach-section {
    background: var(--bg-alt);
    padding: 56px 0;
}

.reach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: center;
    margin-top: 8px;
}

.reach-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.reach-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #e8dccb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
}

.reach-icon svg {
    width: 20px;
    height: 20px;
}

.reach-info h4 {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.8px;
    color: var(--text);
    margin: 0 0 4px;
}

.reach-info p {
    margin: 0;
    color: var(--text-muted);
    font-size: 13px;
}

/* =========================================
   CTA
========================================= */
.cta-section {
    position: relative;
    text-align: center;
    padding: 80px 24px;
    background: var(--bg);
    overflow: hidden;
}

.cta-leaf {
    position: absolute;
    right: 6%;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    margin: 0;
    opacity: 0.85;
}

.cta-inner h2 {
    font-size: 34px;
    margin-bottom: 12px;
    font-weight: 500;
}

.cta-inner p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 28px;
}

/* =========================================
   Footer
========================================= */
.site-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    padding: 28px 0;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 12px;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    font-size: 11px;
    letter-spacing: 1.6px;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

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

/* =========================================
   Toast
========================================= */
.toast {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translate(-50%, 20px);
    background: var(--text);
    color: #fff;
    padding: 12px 22px;
    font-size: 13px;
    letter-spacing: 0.4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 50;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

/* =========================================
   Responsive
========================================= */
@media (max-width: 960px) {
    .main-nav,
    .header-cta,
    .auth-actions {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-inner {
        justify-content: center;
        padding-top: 60px;
        padding-bottom: 60px;
    }

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

    .hero-copy h1 {
        font-size: 30px;
    }

    .contact-section {
        padding: 70px 0 50px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-intro h2 {
        font-size: 36px;
    }

    .decor-leaf {
        display: none;
    }

    .reach-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .reach-item {
        justify-content: flex-start;
    }

    .cta-inner h2 {
        font-size: 26px;
    }

    .cta-leaf {
        display: none;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        gap: 18px;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 20px;
    }

    .brand-name {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .brand-tag {
        font-size: 9px;
    }

    .hero-copy h1 {
        font-size: 24px;
    }
}

/* =========================================
   SHOP PAGE — WARM EDITORIAL REDESIGN
========================================= */
.shop-page {
    --shop-paper: #f4ede1;
    --shop-card: #fffdf8;
    --shop-ink: #241810;
    --shop-muted: #766657;
    --shop-line: #ded1bf;
    --shop-accent: #a9682c;
}

.shop-page .shop-hero {
    overflow: hidden;
    padding: 78px 0 82px;
    text-align: left;
    background:
        radial-gradient(circle at 78% 42%, rgba(196, 130, 63, 0.16), transparent 27%),
        linear-gradient(135deg, #17110d 0%, #0c0907 100%);
}

.shop-page .shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.24;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, transparent 49.9%, rgba(214, 163, 108, 0.07) 50%, transparent 50.1%),
        linear-gradient(transparent 49.9%, rgba(214, 163, 108, 0.05) 50%, transparent 50.1%);
    background-size: 84px 84px;
}

.shop-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 80px;
    align-items: center;
}

.shop-hero-copy {
    max-width: 690px;
}

.shop-page .shop-hero .eyebrow {
    display: block;
    color: var(--accent-light);
    letter-spacing: 3.2px;
}

.shop-page .shop-hero h1 {
    max-width: 680px;
    margin: 0 0 20px;
    font-size: clamp(48px, 5.5vw, 72px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1.8px;
}

.shop-page .shop-hero p {
    max-width: 560px;
    margin: 0;
    font-size: 16px;
    text-align: left;
    color: #c7bbaa;
}

.shop-hero-mark {
    position: relative;
    width: 230px;
    height: 230px;
    justify-self: end;
    display: grid;
    place-items: center;
    border: 1px solid rgba(214, 163, 108, 0.33);
    border-radius: 50%;
}

.shop-mark-ring {
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(214, 163, 108, 0.16);
    border-radius: 50%;
}

.shop-mark-symbol {
    font-family: "Cormorant Garamond", serif;
    font-size: 48px;
    font-weight: 500;
    color: #eadcc8;
    letter-spacing: 2px;
}

.shop-mark-copy {
    position: absolute;
    bottom: 48px;
    width: 160px;
    font-size: 8px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 1.7px;
    text-align: center;
    color: var(--accent-light);
}

.shop-page .products-listing {
    position: relative;
    padding: 76px 0 94px;
    background: var(--shop-paper);
    color: var(--shop-ink);
}

.catalog-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
    gap: 64px;
    align-items: end;
    padding-bottom: 38px;
    border-bottom: 1px solid var(--shop-line);
}

.catalog-heading .eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--shop-accent);
    letter-spacing: 2.8px;
}

.catalog-heading h2 {
    max-width: 610px;
    color: var(--shop-ink);
    font-size: clamp(36px, 4vw, 50px);
    line-height: 1.03;
    font-weight: 500;
    letter-spacing: -0.8px;
}

.catalog-heading p {
    max-width: 390px;
    margin: 0 0 4px auto;
    color: var(--shop-muted);
    font-size: 14px;
    line-height: 1.75;
}

.shop-page .products-toolbar {
    grid-template-columns: minmax(210px, 0.9fr) minmax(420px, 1.7fr) minmax(180px, 0.7fr);
    gap: 18px;
    margin: 30px 0 24px;
    padding: 18px;
    background: rgba(255, 253, 248, 0.72);
    border: 1px solid var(--shop-line);
}

.shop-page .search-box,
.shop-page .sort-control select {
    background: var(--shop-card);
    border-color: var(--shop-line);
}

.shop-page .search-box input,
.shop-page .sort-control select {
    color: var(--shop-ink);
}

.shop-page .search-box input::placeholder,
.shop-page .search-box svg,
.shop-page .sort-control label {
    color: #8e7e6e;
}

.shop-page .chip {
    min-height: 38px;
    padding: 8px 15px;
    border-color: var(--shop-line);
    color: #756352;
    background: transparent;
}

.shop-page .chip:hover {
    color: var(--shop-ink);
    border-color: var(--shop-accent);
    background: #fffaf1;
}

.shop-page .chip.active {
    color: #fffaf2;
    border-color: var(--shop-ink);
    background: var(--shop-ink);
}

.shop-page .results-meta {
    color: var(--shop-muted);
    margin-bottom: 22px;
}

.shop-page .products-grid-listing {
    gap: 26px;
}

.shop-page .product-card-listing {
    min-width: 0;
    overflow: hidden;
    background: var(--shop-card);
    color: var(--shop-ink);
    border: 1px solid var(--shop-line);
    box-shadow: 0 10px 30px rgba(70, 48, 28, 0.05);
}

.shop-page .product-card-listing:hover {
    transform: translateY(-4px);
    border-color: #c9ad88;
    box-shadow: 0 22px 48px rgba(70, 48, 28, 0.13);
}

.shop-page .product-card-listing .product-image {
    aspect-ratio: 4 / 3.45;
    background: #e9dfcf;
}

.shop-page .product-card-listing .product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(86, 53, 25, 0.01), rgba(86, 53, 25, 0.07));
    mix-blend-mode: multiply;
}

.shop-page .product-card-listing .product-image img {
    filter: saturate(0.88) contrast(0.96);
}

.shop-page .product-card-listing:hover .product-image img {
    transform: scale(1.025);
}

.product-category {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
    padding: 7px 10px;
    background: rgba(255, 253, 248, 0.9);
    color: #61452e;
    border: 1px solid rgba(97, 69, 46, 0.16);
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(5px);
}

.shop-page .product-card-listing .card-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    color: var(--shop-ink);
}

.shop-page .product-card-listing .card-body {
    flex: 1;
    padding: 22px 22px 14px;
    text-align: left;
}

.shop-page .product-card-listing h4 {
    color: var(--shop-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: none;
}

.shop-page .product-card-listing .product-sub {
    margin: 0 0 20px;
    color: var(--shop-muted);
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.product-meta-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding-top: 15px;
    border-top: 1px solid #ebe2d5;
}

.product-meta-row > span {
    max-width: 120px;
    color: #958575;
    font-size: 10px;
    line-height: 1.45;
}

.shop-page .product-card-listing .product-price {
    flex: none;
    color: var(--shop-accent);
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    font-weight: 600;
}

.shop-page .product-card-listing .add-btn {
    margin: 0 22px 22px;
    padding: 14px;
    color: #fffaf2;
    background: var(--shop-ink);
    border-color: var(--shop-ink);
}

.shop-page .product-card-listing .add-btn:hover {
    color: #fff;
    background: var(--shop-accent);
    border-color: var(--shop-accent);
}

.shop-page .pagination {
    margin-top: 44px;
}

.shop-page .page-btn {
    color: var(--shop-muted);
    border-color: var(--shop-line);
}

.shop-page .page-btn:hover:not(:disabled) {
    color: var(--shop-ink);
    border-color: var(--shop-accent);
}

.shop-page .page-btn.active {
    color: #fffaf2;
    background: var(--shop-ink);
    border-color: var(--shop-ink);
}

.shop-page .empty-state {
    color: var(--shop-muted);
}

.shop-page .empty-state h3 {
    color: var(--shop-ink);
}

@media (max-width: 1000px) {
    .shop-hero-inner {
        grid-template-columns: 1fr 220px;
        gap: 40px;
    }

    .shop-hero-mark {
        width: 190px;
        height: 190px;
    }

    .shop-mark-copy { bottom: 36px; }

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

    .shop-page .category-chips {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-content: flex-start;
    }
}

@media (max-width: 720px) {
    .shop-page .shop-hero {
        padding: 62px 0 64px;
    }

    .shop-hero-inner,
    .catalog-heading {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .shop-page .shop-hero h1 {
        font-size: 46px;
    }

    .shop-hero-mark {
        display: none;
    }

    .catalog-heading p {
        margin: 0;
    }

    .shop-page .products-listing {
        padding: 56px 0 72px;
    }

    .shop-page .products-toolbar {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .shop-page .category-chips {
        grid-column: auto;
        grid-row: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 2px 0 6px;
        scrollbar-width: none;
    }

    .shop-page .category-chips::-webkit-scrollbar {
        display: none;
    }

    .shop-page .chip {
        flex: none;
    }

    .shop-page .sort-control {
        justify-content: space-between;
    }
}

@media (max-width: 520px) {
    .shop-page .shop-hero h1 {
        font-size: 39px;
    }

    .shop-page .shop-hero p {
        font-size: 14px;
    }

    .catalog-heading h2 {
        font-size: 34px;
    }

    .shop-page .product-card-listing .product-image {
        aspect-ratio: 4 / 3.35;
    }
}

/* =========================================
   HOME PAGE STYLES
========================================= */

/* ---------- Home Hero ---------- */
.home-hero {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.home-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 70px 0 60px;
    min-height: 560px;
}

.home-hero-copy h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1f1f1f;
    font-weight: 500;
}

.accent-line {
    width: 36px;
    height: 1.5px;
    background: var(--accent-light);
    display: block;
    margin: 0 0 18px;
}

.home-hero-copy p.lead {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin: 0 0 30px;
    max-width: 360px;
}

.home-hero-image {
    position: relative;
    height: 560px;
    background-image: url("https://images.unsplash.com/photo-1531123897727-8f129e1688ce?auto=format&fit=crop&w=1400&q=80");
    background-size: cover;
    background-position: center;
}

.home-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(250, 246, 240, 0.65) 0%,
        rgba(250, 246, 240, 0) 28%
    );
    pointer-events: none;
}

/* ---------- About Section ---------- */
.about-section {
    background: var(--bg-alt);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    width: 100%;
    height: 360px;
    background-image: url("https://images.unsplash.com/photo-1500382017468-9049fed747ef?auto=format&fit=crop&w=1200&q=80");
    background-size: cover;
    background-position: center;
}

.about-copy h2 {
    font-size: 40px;
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.about-copy p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.85;
    margin: 0 0 16px;
    max-width: 460px;
}

.about-copy p strong {
    color: var(--accent-light);
    font-weight: 600;
}

.btn-outline {
    background: transparent;
    color: var(--accent-light);
    border: 1px solid var(--accent);
    padding: 12px 26px;
    margin-top: 14px;
}

.btn-outline:hover {
    background: var(--accent);
    color: var(--bg);
}

.about-decor { display: none; } /* removed: read as wellness, not weight */
.cta-leaf { display: none; }
.philosophy-leaf { display: none; }
.decor-leaf { display: none; }

/* ---------- Services Section ---------- */
.services-section {
    background: var(--bg);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.6px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: "";
    width: 28px;
    height: 1.5px;
    background: var(--accent);
}

.section-title {
    font-size: 36px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
    letter-spacing: -0.5px;
}

.title-underline {
    width: 36px;
    height: 1.5px;
    background: var(--accent-light);
    margin: 14px auto 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 56px;
    border-top: none;
}

.service-card {
    padding: 20px 28px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.service-card:last-child {
    border-right: none;
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #f1e6d4;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.4px;
    color: var(--text);
    margin: 0 0 10px;
}

.service-card p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.7;
}

.services-cta {
    margin-top: 56px;
}

.services-cta .btn {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    padding: 12px 28px;
}

.services-cta .btn:hover {
    background: var(--accent);
    color: #fff;
}

/* ---------- Featured Products ---------- */
.products-section {
    background: var(--bg-alt);
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.products-grid {
    display: grid;
    grid-template-columns: 0.85fr 2.15fr;
    gap: 60px;
    align-items: center;
}

.products-intro h2 {
    font-size: 36px;
    line-height: 1.15;
    margin: 14px 0 10px;
    color: var(--text);
    font-weight: 600;
}

.products-intro p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
    margin: 18px 0 28px;
    max-width: 300px;
}

.products-link {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: var(--accent-light);
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    transition: gap 0.2s ease;
}

.products-link:hover {
    gap: 12px;
    color: var(--text);
}

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

.product-card {
    background: var(--bg-light);
    text-align: center;
    display: block;
    color: var(--text-dark);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    padding: 14px 14px 22px;
    position: relative;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    background: var(--bg-cream);
}

.product-card:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f0e6d6;
    margin-bottom: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.35s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
    filter: brightness(0.78);
}

.product-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(60, 30, 10, 0.35) 100%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(8px);
    gap: 8px;
}

.product-overlay span {
    transition: transform 0.35s ease;
    display: inline-block;
}

.product-card:hover .product-overlay {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover .product-overlay span {
    transform: translateX(4px);
}

.product-card h4 {
    font-family: "Inter", sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 14px 0 4px;
    transition: color 0.25s ease;
    letter-spacing: 0.3px;
}

.product-card:hover h4 {
    color: var(--accent-dark);
}

.product-card .product-sub {
    font-size: 12px;
    color: var(--text-muted-dark);
    margin: 0 0 10px;
    font-style: italic;
}

.product-price {
    font-size: 14px;
    color: var(--accent-dark);
    font-weight: 700;
    margin: 0;
    transition: letter-spacing 0.25s ease;
    letter-spacing: 0.6px;
}

.product-card:hover .product-price {
    letter-spacing: 0.6px;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
    background: var(--bg);
    padding: 100px 0 90px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.testimonial-stage {
    position: relative;
    margin-top: 50px;
    padding: 0 80px;
}

.testimonial-track {
    position: relative;
    min-height: 140px;
    max-width: 720px;
    margin: 0 auto;
}

.quote-mark {
    color: var(--accent);
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    margin-right: 6px;
    vertical-align: top;
    line-height: 1;
}

.testimonial {
    position: absolute;
    inset: 0;
    margin: 0 auto;
    font-family: "Cormorant Garamond", serif;
    font-size: 19px;
    color: var(--text);
    line-height: 1.6;
    font-style: italic;
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

.testimonial.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
    position: relative;
}

.testimonial.leaving {
    opacity: 0;
    transform: translateX(-40px);
}

.testimonial .attr {
    display: block;
    margin-top: 18px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: normal;
    color: var(--text-muted);
}

.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    width: 36px;
    height: 36px;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.testimonial-arrow:hover {
    color: var(--accent);
}

.testimonial-arrow.prev { left: 0; }
.testimonial-arrow.next { right: 0; }

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #d8c9b3;
    border: 0;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
    background: var(--accent);
    transform: scale(1.15);
}

/* ---------- Home CTA (with image bg) ---------- */
.home-cta {
    position: relative;
    background-color: #f3ece1;
    background-image: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    padding: 70px 24px;
    text-align: center;
    overflow: hidden;
}

.home-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(243, 236, 225, 0.85);
}

.home-cta .cta-inner {
    position: relative;
    z-index: 1;
}

/* ---------- Responsive (home page) ---------- */
@media (max-width: 960px) {
    .home-hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
        min-height: unset;
        padding: 50px 0;
    }
    .home-hero-copy h1 { font-size: 38px; }
    .home-hero-image { height: 320px; }

    .about-section { padding: 60px 0; }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-image { height: 240px; }
    .about-copy h2 { font-size: 28px; }
    .about-decor { display: none; }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 28px 16px;
    }
    .service-card:nth-child(2) { border-right: none; }
    .service-card:nth-last-child(-n+2) { border-bottom: none; }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .products-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-stage { padding: 0 50px; }
    .testimonial { font-size: 16px; }
}

@media (max-width: 520px) {
    .home-hero-copy h1 { font-size: 30px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { border-right: none; border-bottom: 1px solid var(--border); }
    .service-card:last-child { border-bottom: none; }
    .products-list { grid-template-columns: 1fr; }
    .testimonial-stage { padding: 0 30px; }
    .testimonial-arrow { width: 28px; height: 28px; }
}

/* =========================================
   AUTH PAGES (login / signup)
========================================= */
.auth-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
    background: var(--bg);
}

.auth-visual {
    position: relative;
    background-image: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1600&q=80");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.auth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(40, 25, 15, 0.15) 0%,
        rgba(40, 25, 15, 0.6) 100%
    );
}

.auth-visual-overlay {
    position: relative;
    color: #fff;
    padding: 60px;
    max-width: 480px;
}

.auth-visual-overlay .eyebrow {
    color: #f4d3b3;
    margin-bottom: 20px;
}

.auth-visual-overlay .eyebrow::after {
    background: #f4d3b3;
}

.auth-visual-overlay h2 {
    font-size: 38px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 500;
}

.auth-visual-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.auth-card-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 32px;
}

.auth-card {
    width: 100%;
    max-width: 440px;
    animation: authFadeUp 0.5s ease both;
}

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

.auth-card h1 {
    font-size: 38px;
    margin: 8px 0 8px;
    line-height: 1.15;
}

.auth-card .auth-sub {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0 0 28px;
}

.password-wrap {
    position: relative;
}

.password-wrap input {
    padding-right: 46px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.2s ease;
}

.toggle-password:hover {
    color: var(--accent);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 4px 0 22px;
    cursor: pointer;
    user-select: none;
}

.checkbox.compact {
    margin: 0;
}

.checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-input);
    background: #fff;
    margin: 2px 0 0;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.checkbox input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 0;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox a {
    color: var(--accent);
    border-bottom: 1px solid currentColor;
}

.auth-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 6px 0 22px;
}

.muted-link {
    font-size: 12px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    transition: color 0.2s ease;
}

.muted-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.auth-alt {
    margin-top: 22px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
}

.auth-alt a {
    color: var(--accent);
    font-weight: 600;
    margin-left: 4px;
    border-bottom: 1px solid currentColor;
}

/* Header session indicator */
.auth-greet {
    color: var(--text) !important;
    font-weight: 600;
}

.auth-greet::after {
    content: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .auth-page {
        grid-template-columns: 1fr;
        min-height: unset;
    }
    .auth-visual {
        min-height: 200px;
        align-items: center;
    }
    .auth-visual-overlay {
        padding: 30px;
        max-width: none;
        text-align: center;
    }
    .auth-visual-overlay h2 { font-size: 26px; }
    .auth-card-wrap { padding: 48px 24px; }
    .auth-card h1 { font-size: 30px; }
}

/* =========================================
   PRODUCTS LISTING PAGE
========================================= */
.page-hero {
    background: var(--bg-alt);
    padding: 90px 0 70px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.page-hero .eyebrow {
    margin-bottom: 18px;
}

.page-hero h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 0 0 16px;
    font-weight: 600;
    letter-spacing: -1px;
    color: var(--text);
}

.page-hero p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.75;
}

.products-listing {
    padding: 70px 0 90px;
    background: var(--bg);
}

.products-toolbar {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1fr;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}

.search-box {
    position: relative;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.search-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(196, 130, 63, 0.10);
}

.search-box input {
    color: var(--text);
}

.search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    width: 18px;
    height: 18px;
}

.search-box input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 0;
    background: transparent;
    font-size: 14px;
    color: var(--text);
    font-family: inherit;
    outline: none;
}

.search-box input::placeholder {
    color: #b3a89a;
}

.category-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.chip {
    appearance: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    padding: 8px 18px;
    font-size: 12.5px;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
    color: var(--text);
    border-color: var(--accent);
}

.chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
    font-weight: 600;
}

.sort-control {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-end;
}

.sort-control label {
    font-size: 12.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

.sort-control select {
    appearance: none;
    -webkit-appearance: none;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    padding: 10px 36px 10px 14px;
    font-size: 13px;
    color: var(--text);
    font-family: inherit;
    cursor: pointer;
    outline: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23d6a36c' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.sort-control select:focus {
    border-color: var(--accent);
}

.results-meta {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0 0 26px;
    letter-spacing: 0.3px;
}

.sort-control label {
    color: var(--text-muted);
}

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

.product-card-listing {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.product-card-listing:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.45);
    border-color: var(--accent);
}

.product-card-listing .product-image {
    aspect-ratio: 1 / 1;
    background: #f0e6d6;
    overflow: hidden;
    margin: 0;
    position: relative;
}

.product-card-listing .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-card-listing .card-link {
    display: block;
    color: inherit;
}

.product-card-listing .card-body {
    padding: 18px 18px 8px;
    text-align: center;
}

.product-card-listing h4 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 4px;
    transition: color 0.2s ease;
    letter-spacing: 0.3px;
}

.product-card-listing .card-link {
    color: var(--text-dark);
}

.product-card-listing .card-link:hover h4 {
    color: var(--accent-dark);
}

.product-card-listing .product-sub {
    font-size: 12px;
    color: var(--text-muted-dark);
    margin: 0 0 8px;
    font-style: italic;
}

.product-card-listing .product-price {
    font-size: 15px;
    color: var(--accent-dark);
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.4px;
}

.product-card-listing .add-btn {
    margin: 14px 18px 18px;
    padding: 12px 14px;
    background: var(--text-dark);
    color: var(--bg-light);
    border: 1px solid var(--text-dark);
    cursor: pointer;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: background 0.2s ease, color 0.2s ease;
    font-family: inherit;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.product-card-listing .add-btn:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: #fff;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-state h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: var(--text);
    margin: 0 0 8px;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 50px;
}

.page-btn {
    appearance: none;
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-muted);
    font-family: inherit;
    font-size: 13px;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover:not(:disabled) {
    border-color: var(--accent);
    color: var(--text);
}

.page-btn.active {
    background: var(--accent);
    color: var(--bg);
    border-color: var(--accent);
}

.page-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-ellipsis {
    color: var(--text-muted);
    padding: 0 6px;
}

/* =========================================
   CART PAGE
========================================= */
.cart-page {
    padding: 70px 0 90px;
    background: var(--bg);
    min-height: 60vh;
}

.cart-page h1 {
    font-size: 38px;
    margin: 0 0 6px;
}

.cart-page .lead {
    color: var(--text-muted);
    margin: 0 0 32px;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.cart-list {
    background: #fff;
    border: 1px solid var(--border);
}

.cart-row {
    display: grid;
    grid-template-columns: 90px 1fr auto auto auto;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-bottom: 1px solid var(--border);
}

.cart-row:last-child {
    border-bottom: 0;
}

.cart-row img {
    width: 90px;
    height: 90px;
    object-fit: cover;
}

.cart-row .row-info h4 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 4px;
    color: var(--text);
}

.cart-row .row-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-style: italic;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--border-input);
}

.qty-control button {
    appearance: none;
    background: transparent;
    border: 0;
    width: 32px;
    height: 32px;
    cursor: pointer;
    color: var(--text);
    font-size: 16px;
    transition: background 0.2s ease;
}

.qty-control button:hover {
    background: #f3ece1;
}

.qty-control input {
    width: 40px;
    text-align: center;
    border: 0;
    border-left: 1px solid var(--border-input);
    border-right: 1px solid var(--border-input);
    height: 32px;
    font-family: inherit;
    font-size: 13px;
    color: var(--text);
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.line-total {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    min-width: 70px;
    text-align: right;
}

.remove-btn {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease;
}

.remove-btn:hover {
    color: var(--accent);
}

.cart-summary {
    background: var(--bg-alt);
    padding: 24px;
}

.cart-summary h3 {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: var(--text);
    margin: 0 0 18px;
    text-transform: uppercase;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.summary-row.total {
    color: var(--text);
    font-size: 18px;
    font-weight: 600;
    border-top: 1px solid var(--border);
    padding-top: 14px;
    margin-top: 14px;
}

.summary-row.total .label {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 20px;
}

.cart-summary .secondary-link {
    display: block;
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.cart-summary .secondary-link:hover {
    color: var(--accent);
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty h2 {
    font-size: 28px;
    margin: 16px 0 8px;
}

.cart-empty p {
    color: var(--text-muted);
    margin: 0 0 24px;
}

/* Product detail Add-to-Cart row */
.product-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 960px) {
    .products-toolbar {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .sort-control { justify-content: flex-start; }
    .category-chips { justify-content: flex-start; }
    .products-grid-listing { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .page-hero h1 { font-size: 34px; }
    .cart-grid { grid-template-columns: 1fr; gap: 30px; }
    .cart-row {
        grid-template-columns: 80px 1fr;
        grid-template-rows: auto auto auto;
        gap: 10px 14px;
    }
    .cart-row img { grid-row: span 3; width: 80px; height: 80px; }
    .qty-control, .line-total, .remove-btn { grid-column: 2; }
    .line-total { text-align: left; }
}

@media (max-width: 520px) {
    .products-grid-listing { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 28px; }
}

/* =========================================
   ABOUT PAGE
========================================= */

/* ---------- About Hero ---------- */
.about-hero {
    background: var(--bg);
    padding: 70px 0 30px;
    position: relative;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-hero-copy .eyebrow {
    margin-bottom: 18px;
}

.about-hero-copy h1 {
    font-size: 44px;
    line-height: 1.15;
    margin: 0 0 22px;
    color: #f3eadc;
    font-weight: 500;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.about-hero-copy .lead {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.85;
    margin: 0 0 24px;
    max-width: 460px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--accent);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    transition: gap 0.25s ease;
}

.text-link:hover {
    gap: 14px;
}

.about-hero-portrait {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #2a2018;
}

.about-hero-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Two staggered images under hero */
.about-secondary-images {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
    margin-top: -60px;
    position: relative;
    z-index: 1;
    padding-bottom: 40px;
}

.img-tile {
    overflow: hidden;
    background: #efe5d6;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.img-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.img-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(60, 40, 20, 0.12);
}

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

.tile-1 {
    aspect-ratio: 4 / 3;
    grid-column: 1;
    margin-top: 20px;
}

.tile-2 {
    aspect-ratio: 4 / 3;
    grid-column: 2;
}

/* ---------- Story Section ---------- */
.story-section {
    background: var(--bg);
    padding: 90px 0;
}

.story-section .eyebrow {
    display: inline-block;
    margin-bottom: 32px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-left h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0 0 28px;
}

.pull-quote {
    position: relative;
    margin: 0;
    padding: 0 0 0 24px;
    border-left: 1px solid var(--border);
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    max-width: 360px;
}

.pull-quote .quote-mark {
    position: absolute;
    left: -2px;
    top: -8px;
    color: var(--accent);
    font-size: 32px;
    line-height: 1;
    font-style: normal;
}

.story-right p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.9;
    margin: 0 0 20px;
}

.story-right p:last-child {
    margin-bottom: 0;
}

/* ---------- Philosophy Section ---------- */
.philosophy-section {
    background: var(--bg-alt);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.philosophy-leaf {
    position: absolute;
    width: 180px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.55;
    pointer-events: none;
}

.philosophy-leaf.leaf-left {
    left: -40px;
    transform: translateY(-50%) rotate(-20deg);
}

.philosophy-leaf.leaf-right {
    right: -40px;
    transform: translateY(-50%) rotate(20deg) scaleX(-1);
}

.philosophy-inner {
    position: relative;
    z-index: 1;
}

.philosophy-head {
    margin-bottom: 50px;
}

.philosophy-head .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
}

.philosophy-head h2 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 18px;
}

.philosophy-statement {
    color: var(--text);
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    line-height: 1.6;
    margin: 0;
    max-width: 520px;
}

.values-list {
    margin: 0;
    padding: 0;
    max-width: 760px;
}

.value-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 40px;
    padding: 22px 0;
    border-bottom: 1px solid #e2d6c1;
}

.value-row:last-child {
    border-bottom: 0;
}

.value-row dt {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--accent);
    text-transform: uppercase;
    margin: 0;
}

.value-row dd {
    margin: 0;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.75;
}

/* ---------- Approach Section ---------- */
.approach-section {
    background: var(--bg);
    padding: 90px 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.approach-copy h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 14px 0 24px;
}

.approach-list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
}

.approach-list li {
    position: relative;
    padding-left: 24px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.approach-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    width: 14px;
    height: 1.5px;
    background: var(--accent);
}

.approach-image {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #efe5d6;
}

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

/* ---------- Big quote variant on testimonials ---------- */
.big-quote {
    text-align: center;
    font-size: 22px;
    line-height: 1.6;
    color: var(--text);
    padding: 0 30px;
}

.big-quote .quote-mark {
    display: inline-block;
    color: var(--accent);
    font-size: 44px;
    line-height: 0.6;
    margin: 0 14px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.big-quote .big-left {
    margin-right: 18px;
    margin-left: -8px;
}

.big-quote .big-right {
    margin-left: 18px;
}

.big-quote .attr {
    display: block;
    margin-top: 20px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-style: normal;
    color: var(--text-muted);
    letter-spacing: 0.4px;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .about-hero-copy h1 { font-size: 32px; }
    .about-hero-portrait { aspect-ratio: 4 / 4; }

    .about-secondary-images {
        grid-template-columns: 1fr 1fr;
        margin-top: 8px;
        gap: 14px;
    }
    .tile-1, .tile-2 { margin-top: 0; }

    .story-section, .philosophy-section, .approach-section {
        padding: 60px 0;
    }
    .story-grid { grid-template-columns: 1fr; gap: 32px; }
    .story-left h2 { font-size: 26px; }
    .philosophy-head h2 { font-size: 28px; }
    .value-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 18px 0;
    }
    .approach-grid { grid-template-columns: 1fr; gap: 32px; }
    .approach-copy h2 { font-size: 26px; }

    .philosophy-leaf { width: 110px; opacity: 0.35; }

    .big-quote { font-size: 17px; padding: 0 10px; }
    .big-quote .quote-mark { font-size: 32px; }
}

@media (max-width: 520px) {
    .about-hero-copy h1 { font-size: 26px; }
    .about-secondary-images { grid-template-columns: 1fr; }
}

/* =========================================
   SERVICES PAGE
========================================= */

.services-detailed {
    background: var(--bg);
    padding: 80px 0;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-detail-card {
    background: #fff;
    border: 1px solid var(--border);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-align: left;
}

.service-detail-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(60, 40, 20, 0.10);
    border-color: transparent;
}

.service-detail-card .service-icon {
    margin-bottom: 18px;
}

.service-detail-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    color: var(--text);
    margin: 0 0 12px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0;
}

.service-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.75;
    margin: 0 0 18px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    flex-grow: 1;
}

.service-list li {
    position: relative;
    padding-left: 22px;
    color: var(--text);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.service-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 1.5px;
    background: var(--accent);
}

.service-meta {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding: 14px 0 18px;
    gap: 12px;
}

.meta-item {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.meta-item strong {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.4px;
    color: var(--text-soft);
    text-transform: uppercase;
}

.meta-item:last-child {
    text-align: right;
    align-items: flex-end;
}

.service-detail-card .btn-outline {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ---------- How it Works ---------- */
.how-it-works {
    background: var(--bg-alt);
    padding: 90px 0;
}

.how-head {
    text-align: center;
    margin-bottom: 60px;
}

.how-head .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
}

.how-head h2 {
    font-size: 34px;
    margin: 0 0 12px;
    line-height: 1.2;
}

.how-head p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 0 8px;
    text-align: center;
}

.step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #fff;
    color: var(--accent);
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 500;
    border: 1px solid var(--border);
    margin-bottom: 18px;
}

.step h4 {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text);
    letter-spacing: 0.2px;
}

.step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

.step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 27px;
    right: -16px;
    width: 32px;
    height: 1px;
    background: var(--border);
}

/* ---------- FAQ ---------- */
.faq-section {
    background: var(--bg);
    padding: 90px 0;
}

.faq-head {
    text-align: center;
    margin-bottom: 50px;
}

.faq-head .eyebrow {
    display: inline-block;
    margin-bottom: 14px;
}

.faq-head h2 {
    font-size: 34px;
    margin: 0;
    line-height: 1.2;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px 4px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    color: var(--accent);
}

.faq-item summary > span {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item[open] summary {
    color: var(--accent);
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-body {
    padding: 0 4px 22px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
    animation: faqSlide 0.3s ease;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
    .services-detail-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 36px; }
    .step:not(:last-child)::after { display: none; }
    .how-head h2, .faq-head h2 { font-size: 28px; }
}

@media (max-width: 520px) {
    .services-detail-grid { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .faq-item summary { font-size: 14px; padding: 18px 4px; }
}

/* =========================================
   HOMEPAGE REFINEMENTS (v2)
========================================= */

/* ---------- Scroll Reveal Utility ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal.reveal-fade {
    transform: none;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* (Old paper grain removed — body::before handles this globally now) */

/* ---------- Hero v2 ---------- */
.home-hero.v2 {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: var(--bg);
}

.home-hero.v2 .home-hero-inner {
    grid-template-columns: 1.1fr 1fr;
    align-items: stretch;
    min-height: 720px;
    padding: 0;
    position: relative;
    max-width: none;
    width: 100%;
}

.home-hero.v2 .home-hero-copy {
    padding: 90px 64px 90px 7%;
    align-self: center;
    background: var(--bg);
    position: relative;
}

/* Vertical hairline divider between left text and right portrait */
.home-hero.v2 .home-hero-copy::after {
    content: "";
    position: absolute;
    right: 0;
    top: 8%;
    bottom: 8%;
    width: 1px;
    background: var(--border);
}

.hero-mark { display: none; } /* removed: read as wellness, not weight */

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.6px;
    color: var(--accent-light);
    text-transform: uppercase;
    margin: 0 0 36px;
    padding-left: 50px;
    position: relative;
}

.hero-tagline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 36px;
    height: 1.5px;
    background: var(--accent);
}

.hero-tagline .dot-mark { display: none; }

.hero-tagline .sep {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1;
}

.home-hero.v2 h1.display {
    font-size: 72px;
    line-height: 1;
    letter-spacing: -1.6px;
    color: var(--text);
    font-weight: 600;
    margin: 0 0 32px;
}

h1.display em,
h2 em,
.section-title em,
.products-intro h2 em,
.home-hero.v2 h1.display em {
    font-style: italic;
    font-weight: 500;
    color: var(--accent-light);
}

h1.display em,
h2 em,
.section-title em,
.products-intro h2 em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    position: relative;
}

.home-hero.v2 .accent-line { display: none; }

.home-hero.v2 .lead {
    color: var(--text-muted);
    max-width: 420px;
    font-size: 15px;
    line-height: 1.85;
    margin: 4px 0 36px;
    font-weight: 400;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    border-bottom: 1px solid var(--accent);
    padding-bottom: 4px;
    transition: gap 0.25s ease, color 0.2s ease;
}

.hero-link:hover {
    gap: 14px;
    color: var(--accent-light);
}

/* Hero image — full-bleed right side, cinematic overlay */
.home-hero-art {
    position: relative;
    align-self: stretch;
    min-height: 720px;
    background: var(--bg-dark);
}

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

.hero-image-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(22,18,16,0.55) 0%,
        rgba(22,18,16,0.10) 50%,
        rgba(22,18,16,0.45) 100%);
    z-index: 1;
    pointer-events: none;
}

.home-hero.v2 .home-hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url("https://images.unsplash.com/photo-1531123897727-8f129e1688ce?auto=format&fit=crop&w=1600&q=85");
    background-size: cover;
    background-position: center top;
    transition: transform 1s ease;
    filter: contrast(1.05) saturate(0.9);
}

.home-hero.v2 .home-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(22,18,16,0.65) 100%);
}

.home-hero-art::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent-warm), transparent);
    z-index: 2;
}

/* Credibility plaque — calm, no float */
.hero-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: rgba(22, 18, 16, 0.78);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(214, 163, 108, 0.25);
    padding: 18px 24px;
    z-index: 3;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    color: #f4ecdc;
}

.hero-badge-num {
    font-family: "Cormorant Garamond", serif;
    font-size: 36px;
    font-weight: 500;
    color: var(--accent-warm);
    line-height: 1;
}

.hero-badge-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #d8c5a8;
    text-transform: uppercase;
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 32px;
    left: 7%;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    z-index: 4;
}

.cue-line {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    position: relative;
    overflow: hidden;
}

.cue-line::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 1px;
    height: 14px;
    background: var(--accent);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { top: -20px; opacity: 0; }
    30% { opacity: 1; }
    100% { top: 36px; opacity: 0; }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
    background: var(--bg-dark);
    color: #f4ecdc;
    padding: 56px 0;
    position: relative;
}

.trust-strip::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(214,163,108,0.04) 1px, transparent 1px);
    background-size: 4px 4px;
    pointer-events: none;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-item {
    text-align: center;
    border-right: 1px solid rgba(214, 163, 108, 0.18);
    padding: 8px 12px;
    position: relative;
    z-index: 1;
}

.trust-item:last-child {
    border-right: 0;
}

.trust-num {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 52px;
    font-weight: 500;
    color: #f4ecdc;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.trust-num .plus {
    color: var(--accent-warm);
    font-size: 30px;
    vertical-align: top;
    margin-left: 2px;
    font-weight: 400;
}

.trust-label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 2.4px;
    color: #c8b89d;
    text-transform: uppercase;
}

/* ---------- About v2 ---------- */
.about-section.v2 .about-grid.v2 {
    grid-template-columns: 0.95fr 1fr;
    gap: 100px;
}

.about-art {
    position: relative;
    height: 480px;
}

.about-image-accent {
    position: absolute;
    inset: -20px -20px 20px 20px;
    border: 1px solid var(--accent);
    z-index: 0;
    opacity: 0.6;
}

.about-section.v2 .about-image {
    position: relative;
    height: 100%;
    z-index: 1;
    background-image: url("assets/about/nhleko-river.jpg");
    background-position: center center;
}

.about-stamp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bg-deep);
    padding: 18px 24px;
    z-index: 2;
    text-align: center;
    border: 1px solid var(--border-strong);
    line-height: 1;
}

.stamp-line {
    display: block;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.4px;
    color: var(--accent-light);
    margin-bottom: 6px;
}

.stamp-year {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 30px;
    font-weight: 500;
    color: var(--text);
}

.about-section.v2 .about-copy h2 {
    font-size: 44px;
    line-height: 1.15;
    margin-bottom: 26px;
}

/* ---------- Services v2 ---------- */
.services-section.v2 {
    padding: 100px 0;
}

.services-head {
    margin-bottom: 60px;
}

.section-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
}

.services-section.v2 .section-title {
    font-size: 38px;
}

.services-grid.v2 {
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.service-card.v2 {
    position: relative;
    padding: 44px 30px 36px;
    text-align: left;
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: transparent;
    transition: background 0.4s ease, transform 0.4s ease;
    overflow: hidden;
}

.service-card.v2:hover {
    background: rgba(214, 163, 108, 0.04);
}

.service-num {
    position: absolute;
    top: 22px;
    right: 24px;
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    line-height: 1;
    letter-spacing: 1.5px;
    transition: color 0.4s ease;
}

.service-num::before {
    content: "—";
    color: var(--accent);
    margin-right: 6px;
}

.service-card.v2:hover .service-num {
    color: var(--accent-dark);
}

.service-card.v2 .service-icon {
    margin-bottom: 26px;
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent-light);
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card.v2:hover .service-icon {
    background: var(--accent);
    color: var(--bg);
}

.service-card.v2 h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 24px;
    font-weight: 600;
    text-align: left;
    color: var(--text);
    margin: 0 0 14px;
    letter-spacing: 0;
}

.service-card.v2 p {
    text-align: left;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.75;
    margin: 0 0 24px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-light);
    transition: gap 0.25s ease, color 0.2s ease;
}

.card-link:hover {
    gap: 14px;
    color: var(--text);
}

.services-section.v2 .services-cta {
    margin-top: 50px;
}

/* ---------- Products v2 ---------- */
.products-section.v2 {
    padding: 100px 0;
}

.products-section.v2 .products-grid.v2 {
    grid-template-columns: 0.75fr 2.25fr;
    align-items: flex-end;
    gap: 70px;
}

.products-section.v2 .products-intro h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 16px 0 18px;
}

.products-section.v2 .products-intro p {
    max-width: 300px;
}

.product-card {
    position: relative;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: var(--accent);
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    padding: 6px 10px;
    line-height: 1;
}

.product-badge.subtle {
    background: var(--text);
}

/* ---------- Manifesto Section (NEW) ---------- */
.manifesto-section {
    position: relative;
    padding: 110px 0;
    background: #1f1612;
    color: #f4ecdc;
    overflow: hidden;
    text-align: center;
}

.manifesto-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(40%);
}

.manifesto-section .container {
    position: relative;
    z-index: 1;
}

.manifesto-eyebrow {
    color: #d6a36c;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    margin: 0 0 32px;
}

.manifesto-quote {
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    font-weight: 400;
    line-height: 1.35;
    margin: 0 auto 36px;
    max-width: 900px;
    color: #f4ecdc;
    position: relative;
}

.manifesto-quote em {
    font-style: italic;
    color: #e0a877;
}

.big-quote-mark {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 80px;
    color: var(--accent-warm);
    line-height: 0.6;
    margin: 0 0 18px;
    font-style: normal;
}

.manifesto-attr {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #c8b89d;
    text-transform: uppercase;
    margin: 0;
}

/* ---------- Testimonials v2 ---------- */
.testimonials-section.v2 {
    padding: 100px 0 90px;
}

.testimonials-head {
    margin-bottom: 50px;
}

.testimonials-section.v2 .section-title {
    font-size: 38px;
}

.testimonial-stage.v2 {
    padding: 0 60px;
}

.testimonial-track.v2 {
    min-height: 220px;
    max-width: 760px;
}

.testimonial-track.v2 .testimonial {
    text-align: center;
    font-style: normal;
    font-size: 15px;
}

.stars {
    display: block;
    color: var(--accent);
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 22px;
}

.t-body {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text);
    margin: 0 auto 22px;
    max-width: 720px;
}

.t-body em {
    font-style: italic;
    color: var(--accent-light);
}

.testimonial-track.v2 .attr {
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.4px;
    color: var(--accent-light);
    text-transform: uppercase;
}

/* ---------- CTA v2 ---------- */
.home-cta.v2 {
    position: relative;
    padding: 110px 24px;
    background: #1f1612;
    color: #f4ecdc;
    text-align: center;
    overflow: hidden;
    background-image: none;
}

.home-cta.v2 .cta-bg {
    position: absolute;
    inset: 0;
    background-image: url("https://images.unsplash.com/photo-1604719312566-8912e9227c6a?auto=format&fit=crop&w=1800&q=80");
    background-size: cover;
    background-position: center;
    opacity: 0.18;
    filter: grayscale(30%);
}

.home-cta.v2::before {
    display: none;
}

.home-cta.v2 .cta-inner {
    position: relative;
    z-index: 1;
}

.home-cta.v2 .cta-inner h2 {
    font-size: 44px;
    color: #f4ecdc;
    line-height: 1.2;
    margin-bottom: 16px;
}

.home-cta.v2 .cta-inner h2 em {
    font-style: italic;
    color: #e0a877;
}

.home-cta.v2 .cta-inner p {
    color: #c8b89d;
    margin-bottom: 32px;
    font-size: 14px;
}

/* ---------- Responsive (v2 overrides) ---------- */
@media (max-width: 960px) {
    .home-hero.v2 .home-hero-inner {
        grid-template-columns: 1fr;
        min-height: unset;
        padding: 40px 0 0;
    }
    .home-hero.v2 .home-hero-copy { padding: 0 24px 50px; }
    .home-hero.v2 h1.display { font-size: 40px; letter-spacing: -0.5px; }
    .home-hero-art { min-height: 420px; height: 420px; }
    .hero-tagline { padding-left: 0; }
    .hero-tagline::before { display: none; }
    .scroll-cue { display: none; }
    .hero-badge { bottom: 20px; left: 20px; padding: 14px 18px; }
    .hero-badge-num { font-size: 28px; }

    .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
    .trust-item:nth-child(2) { border-right: 0; }
    .trust-num { font-size: 36px; }

    .about-section.v2 .about-grid.v2 { grid-template-columns: 1fr; gap: 40px; }
    .about-art { height: 320px; }
    .about-section.v2 .about-copy h2 { font-size: 28px; }
    .about-stamp { bottom: -16px; right: 0; padding: 12px 16px; }
    .stamp-year { font-size: 22px; }

    .services-section.v2 { padding: 60px 0; }
    .services-grid.v2 { grid-template-columns: repeat(2, 1fr); }
    .service-card.v2 { padding: 32px 22px 24px; }
    .service-num { font-size: 42px; top: 16px; right: 16px; }

    .products-section.v2 .products-grid.v2 { grid-template-columns: 1fr; gap: 36px; }
    .products-section.v2 .products-intro h2 { font-size: 30px; }

    .manifesto-section { padding: 70px 0; }
    .manifesto-quote { font-size: 24px; }
    .big-quote-mark { font-size: 48px; }

    .testimonials-section.v2 { padding: 70px 0; }
    .testimonial-stage.v2 { padding: 0 40px; }
    .t-body { font-size: 19px; }

    .home-cta.v2 { padding: 70px 24px; }
    .home-cta.v2 .cta-inner h2 { font-size: 28px; }
}

@media (max-width: 520px) {
    .home-hero.v2 h1.display { font-size: 30px; }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-item { border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 18px; }
    .trust-item:last-child { border-bottom: 0; }
    .services-grid.v2 { grid-template-columns: 1fr; }
    .service-card.v2 { border-right: 0; }
    .manifesto-quote { font-size: 20px; }
    .t-body { font-size: 17px; }
}

/* ---------- Featured products: shop-matched cards ---------- */
.products-section.v2 .products-grid.v2 {
    align-items: center;
}

.products-section.v2 .products-list {
    gap: 22px;
}

.products-section.v2 .product-card {
    display: flex;
    min-width: 0;
    height: 100%;
    padding: 0;
    overflow: hidden;
    flex-direction: column;
    text-align: left;
    color: #241810;
    background: #fffdf8;
    border: 1px solid rgba(214, 163, 108, 0.28);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.products-section.v2 .product-card:hover {
    transform: translateY(-4px);
    background: #fffdf8;
    border-color: rgba(214, 163, 108, 0.7);
    box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.products-section.v2 .product-card .product-image {
    flex: none;
    aspect-ratio: 4 / 3.55;
    margin: 0;
    background: #e9dfcf;
}

.products-section.v2 .product-card .product-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent 60%, rgba(62, 39, 22, 0.08));
}

.products-section.v2 .product-card .product-image img {
    filter: saturate(0.9) contrast(0.98);
}

.products-section.v2 .product-card:hover .product-image img {
    transform: scale(1.025);
    filter: saturate(0.9) contrast(0.98) brightness(0.74);
}

.products-section.v2 .product-overlay {
    z-index: 2;
    background: rgba(31, 20, 13, 0.44);
}

.home-product-info {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px 20px 18px;
}

.home-product-type {
    display: block;
    margin-bottom: 8px;
    color: #a9682c;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.products-section.v2 .product-card h4 {
    margin: 0 0 18px;
    color: #241810;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0;
}

.products-section.v2 .product-card:hover h4 {
    color: #7d4e25;
}

.home-product-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #ebe2d5;
}

.products-section.v2 .product-card .product-sub {
    margin: 0;
    color: #7b6a5b;
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.products-section.v2 .product-card .product-price {
    flex: none;
    color: #a9682c;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 600;
    line-height: 1;
}

.products-section.v2 .product-badge {
    top: 14px;
    left: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 960px) {
    .products-section.v2 .products-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .products-section.v2 .products-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .products-section.v2 .products-list {
        grid-template-columns: 1fr;
    }

    .products-section.v2 .product-card .product-image {
        aspect-ratio: 4 / 3.35;
    }
}

/* ---------- Homepage hero: Nhleko portrait ---------- */
.home-hero.v2 {
    --home-hero-height: clamp(600px, calc(100vh - 82px), 720px);
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
    background: #0c0907;
}

.home-hero.v2 .home-hero-inner {
    height: var(--home-hero-height);
    display: block;
    min-height: var(--home-hero-height);
}

.home-hero.v2 .home-hero-copy {
    position: relative;
    z-index: 3;
    display: flex;
    width: 52%;
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
    padding: 82px 60px 82px 7%;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(90deg, rgba(10, 8, 6, 0.62) 0%, rgba(10, 8, 6, 0.24) 72%, transparent 100%);
}

.home-hero.v2 .home-hero-copy::after {
    display: none;
}

.home-hero.v2 .home-hero-art {
    position: absolute;
    inset: 0;
    z-index: 0;
    height: var(--home-hero-height);
    min-height: var(--home-hero-height);
}

.home-hero.v2 .hero-image-accent {
    background: linear-gradient(
        90deg,
        rgba(8, 6, 5, 0.34) 0%,
        rgba(8, 6, 5, 0.08) 48%,
        rgba(8, 6, 5, 0.12) 100%
    );
}

.home-hero.v2 .home-hero-image {
    height: auto;
    background-image: url("assets/hero/nhleko.png");
    background-color: #0c0907;
    background-repeat: no-repeat;
    background-size: auto 98%;
    background-position: right bottom;
    filter: contrast(1.02) saturate(0.96);
}

.home-hero.v2 .home-hero-image::after {
    background: transparent;
}

.home-hero.v2 .hero-badge {
    display: none;
}

.home-hero.v2 .scroll-cue {
    right: 24px;
    bottom: 24px;
    left: auto;
    align-items: center;
    opacity: 0.72;
    z-index: 4;
}

@media (max-width: 960px) {
    .home-hero.v2 {
        height: auto;
        min-height: 0;
    }

    .home-hero.v2 .home-hero-inner {
        height: auto;
        min-height: 0;
        padding: 0;
    }

    .home-hero.v2 .home-hero-copy {
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 64px 24px 48px;
        background: var(--bg);
    }

    .home-hero.v2 .home-hero-art {
        position: relative;
        inset: auto;
        min-height: 410px;
        height: 410px;
        margin-top: -1px;
    }

    .home-hero.v2 .home-hero-image {
        background-size: auto 96%;
        background-position: 68% bottom;
    }

    .home-hero.v2 .hero-image-accent {
        background:
            linear-gradient(180deg, #0c0907 0%, rgba(12, 9, 7, 0.62) 9%, transparent 29%, transparent 82%, rgba(12, 9, 7, 0.34) 100%),
            linear-gradient(90deg, rgba(8, 6, 5, 0.22), transparent 46%, rgba(8, 6, 5, 0.1));
    }

    .home-hero.v2 .hero-badge {
        right: 20px;
        bottom: 20px;
        left: auto;
    }
}

@media (max-width: 520px) {
    .home-hero.v2 .home-hero-copy {
        padding: 50px 20px 40px;
    }

    .home-hero.v2 .home-hero-art {
        min-height: 390px;
        height: 390px;
    }

    .home-hero.v2 .home-hero-image {
        background-size: auto 96%;
        background-position: 66% bottom;
    }
}

/* =========================================
   HOME CLOSING SECTIONS — DISTINCT RHYTHM
========================================= */

/* 1. Manifesto: light editorial statement */
.manifesto-section {
    padding: 96px 0;
    color: #241810;
    text-align: left;
    background:
        linear-gradient(90deg, rgba(169, 104, 44, 0.055) 1px, transparent 1px),
        #f2eadf;
    background-size: 120px 100%;
    border-top: 1px solid #d9c7af;
    border-bottom: 1px solid #d9c7af;
}

.manifesto-section .container {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 28px 70px;
    align-items: start;
}

.manifesto-eyebrow {
    grid-column: 1;
    grid-row: 1;
    margin: 8px 0 0;
    color: #9c6029;
}

.manifesto-quote {
    position: relative;
    grid-column: 2;
    grid-row: 1 / span 2;
    max-width: 850px;
    margin: 0;
    padding: 0 0 0 76px;
    color: #241810;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.18;
    letter-spacing: -0.5px;
}

.manifesto-quote em {
    color: #a9682c;
}

.big-quote-mark {
    position: absolute;
    top: 4px;
    left: 0;
    color: #b8783e;
    font-size: 88px;
    line-height: 0.75;
}

.manifesto-attr {
    grid-column: 1;
    grid-row: 2;
    align-self: end;
    max-width: 160px;
    margin: 0 0 5px;
    color: #746352;
    font-size: 10px;
    line-height: 1.7;
}

/* 2. Testimonials: split heading with a tangible quote card */
.testimonials-section.v2 {
    padding: 108px 0 100px;
    text-align: left;
    background: #120e0b;
    border-top: 0;
}

.testimonials-section.v2 > .container {
    display: grid;
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    grid-template-rows: auto auto;
    gap: 18px 76px;
    align-items: center;
}

.testimonials-section.v2 .testimonials-head {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    text-align: left;
}

.testimonials-section.v2 .section-eyebrow {
    color: #c78343;
}

.testimonials-section.v2 .section-title {
    max-width: 330px;
    margin-top: 18px;
    font-size: clamp(38px, 4vw, 50px);
    line-height: 1.05;
}

.testimonial-stage.v2 {
    grid-column: 2;
    grid-row: 1;
    min-height: 330px;
    margin: 0;
    padding: 52px 78px 46px;
    background: #f3eadf;
    border: 1px solid #d8c5ae;
    box-shadow: 18px 18px 0 rgba(169, 104, 44, 0.13);
}

.testimonial-track.v2 {
    min-height: 230px;
    max-width: none;
    margin: 0;
}

.testimonial-track.v2 .testimonial {
    text-align: left;
}

.testimonials-section.v2 .stars {
    margin-bottom: 24px;
    color: #a9682c;
}

.testimonials-section.v2 .t-body {
    max-width: 650px;
    margin: 0 0 26px;
    color: #241810;
    font-size: clamp(23px, 2.5vw, 31px);
    line-height: 1.4;
}

.testimonials-section.v2 .t-body em {
    color: #a9682c;
}

.testimonial-track.v2 .attr {
    color: #795736;
    font-size: 10px;
}

.testimonials-section.v2 .testimonial-arrow {
    width: 42px;
    height: 42px;
    color: #6d5c4d;
    border: 1px solid #d1bfaa;
}

.testimonials-section.v2 .testimonial-arrow:hover {
    color: #fffaf2;
    background: #a9682c;
    border-color: #a9682c;
}

.testimonials-section.v2 .testimonial-arrow.prev { left: 20px; }
.testimonials-section.v2 .testimonial-arrow.next { right: 20px; }

.testimonials-section.v2 .testimonial-dots {
    grid-column: 2;
    grid-row: 2;
    justify-content: flex-start;
    margin: 22px 0 0;
}

.testimonials-section.v2 .dot {
    width: 28px;
    height: 3px;
    border-radius: 0;
    background: #5f5146;
}

.testimonials-section.v2 .dot.active {
    background: #c78343;
    transform: none;
}

/* 3. CTA: bold copper closing invitation */
.home-cta.v2 {
    position: relative;
    padding: 84px 0;
    color: #fff8ef;
    text-align: left;
    background: #a9632d;
    border-top: 0;
}

.home-cta.v2::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(255, 245, 232, 0.24);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(255, 245, 232, 0.05), 0 0 0 104px rgba(255, 245, 232, 0.035);
    pointer-events: none;
}

.home-cta.v2 .cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    gap: 80px;
    align-items: center;
}

.home-cta.v2 .cta-copy {
    position: relative;
    padding-left: 34px;
}

.home-cta.v2 .cta-copy::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 1px;
    background: rgba(255, 248, 239, 0.5);
}

.home-cta.v2 .eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #2b1a10;
    letter-spacing: 3px;
}

.home-cta.v2 .cta-inner h2 {
    max-width: 670px;
    margin: 0 0 16px;
    color: #fff8ef;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1px;
}

.home-cta.v2 .cta-inner h2 em {
    color: #2b1a10;
}

.home-cta.v2 .cta-inner p {
    margin: 0;
    color: #f1d7c0;
}

.cta-action {
    position: relative;
    z-index: 1;
    padding: 34px;
    background: #23160f;
    border: 1px solid rgba(255, 248, 239, 0.16);
}

.cta-action-note {
    display: block;
    margin-bottom: 24px;
    color: #cbb29e;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.cta-action .btn {
    width: 100%;
    justify-content: space-between;
    padding: 17px 18px;
    color: #241810;
    background: #f3eadf;
}

.cta-action .btn:hover {
    color: #fff;
    background: #a9682c;
}

@media (max-width: 900px) {
    .manifesto-section .container {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .manifesto-eyebrow,
    .manifesto-quote,
    .manifesto-attr {
        grid-column: 1;
        grid-row: auto;
    }

    .manifesto-quote {
        padding-left: 62px;
    }

    .manifesto-attr {
        max-width: none;
    }

    .testimonials-section.v2 > .container {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .testimonials-section.v2 .testimonials-head,
    .testimonial-stage.v2,
    .testimonials-section.v2 .testimonial-dots {
        grid-column: 1;
        grid-row: auto;
    }

    .testimonials-section.v2 .section-title {
        max-width: 520px;
    }

    .home-cta.v2 .cta-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .cta-action {
        max-width: 440px;
    }
}

@media (max-width: 520px) {
    .manifesto-section {
        padding: 68px 0;
    }

    .manifesto-quote {
        padding-left: 45px;
        font-size: 30px;
    }

    .big-quote-mark {
        font-size: 62px;
    }

    .testimonials-section.v2 {
        padding: 72px 0 68px;
    }

    .testimonial-stage.v2 {
        min-height: 390px;
        padding: 42px 48px 38px;
        box-shadow: 10px 10px 0 rgba(169, 104, 44, 0.13);
    }

    .testimonial-track.v2 {
        min-height: 290px;
    }

    .testimonials-section.v2 .testimonial-arrow {
        width: 34px;
        height: 34px;
    }

    .testimonials-section.v2 .testimonial-arrow.prev { left: 8px; }
    .testimonials-section.v2 .testimonial-arrow.next { right: 8px; }

    .home-cta.v2 {
        padding: 68px 0;
    }

    .home-cta.v2 .cta-copy {
        padding-left: 20px;
    }

    .home-cta.v2 .cta-inner h2 {
        font-size: 40px;
    }

    .cta-action {
        padding: 26px 22px;
    }
}

/* =========================================
   INNER PAGE CLOSING SECTIONS
========================================= */

/* Services: practical guidance panel */
.service-choice-cta {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
    color: #241810;
    background:
        linear-gradient(90deg, rgba(169, 104, 44, 0.055) 1px, transparent 1px),
        #f1e8dc;
    background-size: 112px 100%;
    border-top: 1px solid #dac8b1;
}

.service-choice-cta::before {
    content: "";
    position: absolute;
    top: -150px;
    left: -120px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(169, 104, 44, 0.18);
    border-radius: 50%;
    box-shadow: 0 0 0 52px rgba(169, 104, 44, 0.04);
}

.service-choice-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.82fr);
    gap: 90px;
    align-items: center;
}

.service-choice-copy .eyebrow {
    display: block;
    margin-bottom: 16px;
    color: #9c6029;
}

.service-choice-copy h2 {
    margin-bottom: 20px;
    color: #241810;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.04;
}

.service-choice-copy p {
    max-width: 570px;
    margin: 0;
    color: #6f5f50;
    font-size: 14px;
    line-height: 1.8;
}

.service-choice-card {
    padding: 34px;
    color: #f7efe5;
    background: #211610;
    border: 1px solid rgba(169, 104, 44, 0.42);
    box-shadow: 16px 16px 0 rgba(169, 104, 44, 0.13);
}

.choice-detail {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    padding: 0 0 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid rgba(214, 163, 108, 0.18);
}

.choice-number {
    color: #cf8846;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    line-height: 1;
}

.choice-detail strong {
    display: block;
    margin-bottom: 4px;
    color: #f7efe5;
    font-size: 13px;
    font-weight: 600;
}

.choice-detail p {
    margin: 0;
    color: #b9aa9c;
    font-size: 11px;
}

.service-choice-card .btn {
    width: 100%;
    justify-content: space-between;
    padding: 16px 18px;
    color: #241810;
    background: #f1e8dc;
}

.service-choice-card .btn:hover {
    color: #fff;
    background: #a9682c;
}

/* About: personal, nature-toned invitation */
.about-invitation {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
    color: #f5ecdf;
    background: #42493b;
    border-top: 1px solid rgba(230, 211, 186, 0.16);
}

.about-invitation::after {
    content: "";
    position: absolute;
    top: -210px;
    right: -150px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(231, 213, 190, 0.15);
    border-radius: 50%;
    box-shadow: 0 0 0 70px rgba(231, 213, 190, 0.035), 0 0 0 140px rgba(231, 213, 190, 0.025);
}

.about-invitation-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) auto;
    gap: 58px;
    align-items: center;
}

.invitation-mark {
    width: 128px;
    height: 128px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(232, 209, 180, 0.5);
    border-radius: 50%;
}

.invitation-mark span {
    color: #ead7bd;
    font-family: "Cormorant Garamond", serif;
    font-size: 38px;
    letter-spacing: 2px;
}

.invitation-copy .eyebrow {
    display: block;
    margin-bottom: 13px;
    color: #d8ad7c;
}

.invitation-copy h2 {
    margin: 0 0 15px;
    color: #f5ecdf;
    font-size: clamp(38px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.02;
}

.invitation-copy h2 em {
    color: #dfb17d;
}

.invitation-copy p {
    max-width: 570px;
    margin: 0;
    color: #c8c3b6;
    font-size: 13px;
    line-height: 1.75;
}

.invitation-btn {
    min-width: 235px;
    justify-content: space-between;
    color: #263023;
    background: #f1e5d4;
}

.invitation-btn:hover {
    color: #fff;
    background: #a9682c;
}

@media (max-width: 900px) {
    .service-choice-inner {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .service-choice-card {
        max-width: 560px;
    }

    .about-invitation-inner {
        grid-template-columns: 110px 1fr;
        gap: 34px;
    }

    .invitation-mark {
        width: 100px;
        height: 100px;
    }

    .invitation-btn {
        grid-column: 2;
        width: max-content;
    }
}

@media (max-width: 560px) {
    .service-choice-cta,
    .about-invitation {
        padding: 68px 0;
    }

    .service-choice-copy h2,
    .invitation-copy h2 {
        font-size: 36px;
    }

    .service-choice-card {
        padding: 28px 22px;
        box-shadow: 10px 10px 0 rgba(169, 104, 44, 0.13);
    }

    .about-invitation-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .invitation-mark {
        width: 82px;
        height: 82px;
    }

    .invitation-mark span {
        font-size: 30px;
    }

    .invitation-btn {
        grid-column: 1;
        width: 100%;
    }
}

/* ---------- About page portrait gallery ---------- */
.about-page .about-hero-portrait {
    aspect-ratio: 3 / 4;
}

.about-page .about-hero-portrait img {
    object-position: center 28%;
}

.about-page .approach-image img {
    object-position: center 32%;
}

@media (max-width: 960px) {
    .about-page .about-hero-portrait {
        aspect-ratio: 3 / 4;
    }

}

/* =========================================
   SERVICES CATALOGUE — EDITORIAL ROWS
========================================= */
.services-page .services-detailed {
    padding: 90px 0 100px;
    color: #241810;
    background:
        linear-gradient(90deg, rgba(169, 104, 44, 0.05) 1px, transparent 1px),
        #f2eadf;
    background-size: 120px 100%;
}

.services-collection-head {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    gap: 70px;
    align-items: end;
    padding-bottom: 48px;
}

.services-collection-head .eyebrow {
    display: block;
    margin-bottom: 14px;
    color: #9c6029;
}

.services-collection-head h2 {
    margin: 0;
    color: #241810;
    font-size: clamp(40px, 4.8vw, 58px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1px;
}

.services-collection-head > p {
    max-width: 470px;
    margin: 0 0 4px auto;
    color: #746454;
    font-size: 14px;
    line-height: 1.8;
}

.services-page .services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    counter-reset: service-row;
    border-bottom: 1px solid #d7c6b1;
}

.services-page .service-detail-card {
    position: relative;
    display: grid;
    grid-template-columns: 52px minmax(230px, 1.1fr) minmax(220px, 0.9fr) 180px;
    grid-template-rows: auto 1fr;
    gap: 10px 30px;
    min-height: 230px;
    padding: 36px 20px;
    overflow: hidden;
    color: #241810;
    text-align: left;
    background: rgba(255, 253, 248, 0.58);
    border: 0;
    border-top: 1px solid #d7c6b1;
    counter-increment: service-row;
    transition: background 0.3s ease, padding-left 0.3s ease;
}

.services-page .service-detail-card::before {
    content: "0" counter(service-row);
    grid-column: 1;
    grid-row: 1;
    color: #a9682c;
    font-family: "Cormorant Garamond", serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}

.services-page .service-detail-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(169, 104, 44, 0.065), transparent 42%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services-page .service-detail-card:hover {
    padding-left: 27px;
    transform: none;
    color: #241810;
    background: #fffaf3;
    border-color: #c8aa87;
    box-shadow: none;
}

.services-page .service-detail-card:hover::after {
    opacity: 1;
}

.services-page .service-detail-card > * {
    position: relative;
    z-index: 1;
}

.services-page .service-detail-card .service-icon {
    grid-column: 1;
    grid-row: 2;
    width: 40px;
    height: 40px;
    margin: 3px 0 0;
    color: #a9682c;
    background: transparent;
    border: 1px solid #caa77f;
}

.services-page .service-detail-card .service-icon svg {
    width: 19px;
    height: 19px;
}

.services-page .service-detail-card h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin: -3px 0 5px;
    color: #241810;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.08;
}

.services-page .service-desc {
    grid-column: 2;
    grid-row: 2;
    max-width: 390px;
    margin: 0;
    color: #776656;
    font-size: 13px;
    line-height: 1.75;
}

.services-page .service-list {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: start;
    margin: 0;
    padding: 0;
}

.services-page .service-list li {
    margin-bottom: 10px;
    padding-left: 19px;
    color: #5f5144;
    font-size: 12px;
    line-height: 1.55;
}

.services-page .service-list li::before {
    top: 9px;
    width: 9px;
    background: #a9682c;
}

.services-page .service-meta {
    grid-column: 4;
    grid-row: 1;
    align-self: start;
    padding: 0 0 16px;
    border-top: 0;
    border-bottom: 1px solid #dfd1c0;
}

.services-page .meta-item {
    color: #8a7460;
}

.services-page .meta-item strong {
    color: #6b5847;
}

.services-page .service-detail-card .btn-outline {
    grid-column: 4;
    grid-row: 2;
    align-self: end;
    width: 100%;
    padding: 13px 14px;
    color: #fffaf2;
    background: #241810;
    border: 1px solid #241810;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.services-page .service-detail-card .btn-outline:hover {
    color: #fff;
    background: #a9682c;
    border-color: #a9682c;
}

@media (max-width: 1050px) {
    .services-page .service-detail-card {
        grid-template-columns: 48px minmax(230px, 1fr) minmax(190px, 0.85fr);
        grid-template-rows: auto auto auto;
    }

    .services-page .service-detail-card h3 { grid-column: 2; grid-row: 1; }
    .services-page .service-desc { grid-column: 2; grid-row: 2; }
    .services-page .service-list { grid-column: 3; grid-row: 1 / span 2; }
    .services-page .service-meta { grid-column: 2; grid-row: 3; margin-top: 18px; }
    .services-page .service-detail-card .btn-outline { grid-column: 3; grid-row: 3; }
}

@media (max-width: 760px) {
    .services-page .services-detailed {
        padding: 68px 0 76px;
    }

    .services-collection-head {
        grid-template-columns: 1fr;
        gap: 24px;
        padding-bottom: 38px;
    }

    .services-collection-head > p {
        margin: 0;
    }

    .services-page .service-detail-card {
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 10px 16px;
        padding: 30px 10px;
    }

    .services-page .service-detail-card:hover {
        padding-left: 15px;
    }

    .services-page .service-detail-card::before { grid-column: 1; grid-row: 1; }
    .services-page .service-detail-card .service-icon { grid-column: 1; grid-row: 2; }
    .services-page .service-detail-card h3 { grid-column: 2; grid-row: 1; font-size: 25px; }
    .services-page .service-desc { grid-column: 2; grid-row: 2; }
    .services-page .service-list { grid-column: 2; grid-row: 3; margin-top: 8px; }
    .services-page .service-meta { grid-column: 2; grid-row: 4; margin-top: 12px; }
    .services-page .service-detail-card .btn-outline { grid-column: 2; grid-row: 5; margin-top: 4px; }
}

/* =========================================
   SERVICES DIRECTORY + DETAIL MODAL
========================================= */
.services-page .services-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid #d7c6b1;
    border-bottom: 0;
}

.services-page .service-detail-card {
    display: block;
    min-height: 0;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7c6b1;
    transition: none;
}

.services-page .service-detail-card:nth-child(odd) {
    border-right: 1px solid #d7c6b1;
}

.services-page .service-detail-card::before,
.services-page .service-detail-card::after {
    content: none;
}

.services-page .service-detail-card:hover {
    padding: 0;
    background: transparent;
    border-color: #d7c6b1;
}

.service-card-trigger {
    position: relative;
    display: grid;
    grid-template-columns: 38px 48px minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    width: 100%;
    min-height: 164px;
    padding: 27px 30px;
    color: #241810;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    transition: background 0.28s ease, color 0.28s ease;
}

.service-card-trigger::before {
    content: "0" counter(service-row);
    grid-column: 1;
    grid-row: 1;
    color: #a9682c;
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    font-weight: 600;
}

.service-card-trigger:hover,
.service-card-trigger:focus-visible {
    color: #fffaf2;
    background: #2b1c13;
    outline: 0;
}

.service-card-trigger:focus-visible {
    box-shadow: inset 0 0 0 2px #c77c36;
}

.services-page .service-card-trigger .service-icon {
    grid-column: 2;
    grid-row: 1;
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    margin: 0;
    color: #a9682c;
    background: rgba(169, 104, 44, 0.08);
    border: 1px solid rgba(169, 104, 44, 0.35);
    border-radius: 50%;
}

.services-page .service-card-trigger .service-icon svg {
    width: 19px;
    height: 19px;
}

.service-card-copy {
    display: block;
    grid-column: 3;
    grid-row: 1;
}

.services-page .service-card-copy h3 {
    margin: 0 0 8px;
    color: inherit;
    font-size: clamp(22px, 2vw, 27px);
    font-weight: 600;
    line-height: 1.08;
}

.service-card-copy p {
    max-width: 310px;
    margin: 0;
    color: #766553;
    font-size: 12px;
    line-height: 1.55;
    transition: color 0.28s ease;
}

.service-card-trigger:hover .service-card-copy p,
.service-card-trigger:focus-visible .service-card-copy p {
    color: #cdbca8;
}

.service-card-action {
    display: flex;
    grid-column: 4;
    grid-row: 1;
    gap: 9px;
    align-items: center;
    color: #8a5a2f;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.service-card-action span {
    font-size: 16px;
    transition: transform 0.25s ease;
}

.service-card-trigger:hover .service-card-action,
.service-card-trigger:focus-visible .service-card-action {
    color: #e1a15e;
}

.service-card-trigger:hover .service-card-action span,
.service-card-trigger:focus-visible .service-card-action span {
    transform: translate(2px, -2px);
}

.service-modal-source {
    display: none !important;
}

.service-modal[hidden] {
    display: none;
}

.service-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.22s ease;
}

.service-modal.is-open {
    opacity: 1;
}

.service-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 8, 5, 0.82);
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
}

.service-modal-panel {
    position: relative;
    z-index: 1;
    width: min(640px, 100%);
    max-height: calc(100vh - 48px);
    padding: 54px 58px 52px;
    overflow-y: auto;
    color: #2b1c13;
    background:
        linear-gradient(90deg, rgba(169, 104, 44, 0.05) 1px, transparent 1px),
        #f4ecdf;
    background-size: 96px 100%;
    border: 1px solid rgba(210, 174, 132, 0.55);
    box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
    transform: translateY(18px) scale(0.985);
    transition: transform 0.25s ease;
}

.service-modal.is-open .service-modal-panel {
    transform: translateY(0) scale(1);
}

.service-modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    padding: 0 0 4px;
    color: #5d4938;
    background: transparent;
    border: 1px solid #cdbca7;
    border-radius: 50%;
    font-family: Arial, sans-serif;
    font-size: 25px;
    font-weight: 300;
    cursor: pointer;
}

.service-modal-close:hover,
.service-modal-close:focus-visible {
    color: #fff;
    background: #2b1c13;
    border-color: #2b1c13;
    outline: 0;
}

.service-modal-kicker {
    display: block;
    margin-bottom: 16px;
    color: #a9682c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.4px;
}

.service-modal-panel h2 {
    max-width: 500px;
    margin: 0 0 22px;
    color: #241810;
    font-size: clamp(38px, 5vw, 54px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.8px;
}

.service-modal-description p {
    max-width: 520px;
    margin: 0;
    color: #6f5d4d;
    font-size: 14px;
    line-height: 1.8;
}

.service-modal-includes {
    display: grid;
    grid-template-columns: 145px 1fr;
    gap: 25px;
    margin: 30px 0 24px;
    padding: 25px 0;
    border-top: 1px solid #d8c8b4;
    border-bottom: 1px solid #d8c8b4;
}

.service-modal-includes > span {
    color: #8e5a2b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.4px;
    line-height: 1.5;
    text-transform: uppercase;
}

.service-modal-includes ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.service-modal-includes li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 18px;
    color: #4e3d30;
    font-size: 13px;
    line-height: 1.5;
}

.service-modal-includes li:last-child {
    margin-bottom: 0;
}

.service-modal-includes li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 8px;
    height: 1px;
    background: #a9682c;
}

.service-modal-note {
    margin: 0 0 25px;
    color: #8a7765;
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-style: italic;
}

.service-modal-cta {
    width: 100%;
    justify-content: space-between;
    color: #fffaf2;
    background: #2b1c13;
    border-color: #2b1c13;
}

.service-modal-cta:hover {
    background: #a9682c;
    border-color: #a9682c;
}

body.service-modal-open {
    overflow: hidden;
}

@media (max-width: 900px) {
    .service-card-trigger {
        grid-template-columns: 30px 44px minmax(0, 1fr);
        gap: 16px;
        padding: 24px 22px;
    }

    .service-card-action {
        display: none;
    }
}

@media (max-width: 680px) {
    .services-page .services-detail-grid {
        grid-template-columns: 1fr;
    }

    .services-page .service-detail-card:nth-child(odd) {
        border-right: 0;
    }

    .service-card-trigger {
        min-height: 142px;
        padding: 22px 8px;
    }

    .services-page .service-card-copy h3 {
        font-size: 23px;
    }

    .service-modal {
        align-items: end;
        padding: 0;
    }

    .service-modal-panel {
        width: 100%;
        max-height: 91vh;
        padding: 50px 25px 28px;
        border-right: 0;
        border-bottom: 0;
        border-left: 0;
        transform: translateY(30px);
    }

    .service-modal-includes {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* =========================================
   CONTACT PAGE — EDITORIAL REDESIGN
========================================= */
.contact-page .contact-hero {
    position: relative;
    min-height: 570px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 32%, rgba(169, 104, 44, 0.16), transparent 28%),
        linear-gradient(135deg, #0d0a08 0%, #1a120d 58%, #21150e 100%);
    border-bottom: 1px solid rgba(211, 162, 108, 0.18);
}

.contact-page .contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(214, 163, 108, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(214, 163, 108, 0.025) 1px, transparent 1px);
    background-size: 120px 100%, 100% 120px;
}

.contact-hero-mark {
    position: absolute;
    right: -130px;
    top: 50%;
    width: 620px;
    height: 620px;
    border: 1px solid rgba(214, 163, 108, 0.13);
    border-radius: 50%;
    transform: translateY(-50%);
}

.contact-hero-mark::before,
.contact-hero-mark::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(214, 163, 108, 0.1);
    border-radius: 50%;
}

.contact-hero-mark::before { inset: 82px; }
.contact-hero-mark::after { inset: 166px; }

.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
    gap: 100px;
    align-items: center;
    min-height: 570px;
    padding-top: 80px;
    padding-bottom: 80px;
}

.contact-hero-copy .eyebrow {
    margin-bottom: 25px;
}

.contact-hero-copy h1 {
    max-width: 760px;
    margin: 0 0 28px;
    color: #f4ecdf;
    font-size: clamp(54px, 6.3vw, 78px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1.5px;
}

.contact-hero-copy h1 em {
    color: #d59858;
    font-weight: 400;
}

.contact-hero-copy > p {
    max-width: 540px;
    margin: 0 0 35px;
    color: #aa9b8b;
    font-size: 15px;
    line-height: 1.8;
}

.contact-hero-link {
    display: inline-flex;
    gap: 18px;
    align-items: center;
    padding-bottom: 7px;
    color: #e7d9c6;
    border-bottom: 1px solid #9e6532;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}

.contact-hero-link span {
    color: #d59858;
    font-size: 16px;
}

.contact-hero-note {
    position: relative;
    padding: 38px 36px;
    background: rgba(242, 232, 216, 0.055);
    border: 1px solid rgba(214, 163, 108, 0.2);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.contact-note-label {
    display: block;
    margin-bottom: 19px;
    color: #d59858;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-hero-note > p {
    margin: 0 0 31px;
    color: #d5c8b7;
    font-family: "Cormorant Garamond", serif;
    font-size: 23px;
    line-height: 1.38;
}

.contact-note-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid rgba(214, 163, 108, 0.18);
}

.contact-note-meta span {
    color: #897b6c;
    font-size: 10px;
    line-height: 1.5;
}

.contact-note-meta strong {
    display: block;
    color: #e9ddcb;
    font-size: 9px;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.contact-page .contact-section {
    padding: 110px 0;
    color: #261a12;
    background:
        linear-gradient(90deg, rgba(169, 104, 44, 0.045) 1px, transparent 1px),
        #eee4d6;
    background-size: 120px 100%;
}

.contact-page .contact-grid {
    grid-template-columns: minmax(280px, 0.72fr) minmax(560px, 1.28fr);
    gap: 75px;
    align-items: start;
}

.contact-page .contact-intro {
    padding-top: 18px;
}

.contact-page .contact-intro .eyebrow {
    margin-bottom: 24px;
    color: #9f622b;
}

.contact-page .contact-intro h2 {
    margin: 0 0 24px;
    color: #261a12;
    font-size: clamp(42px, 4.4vw, 57px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1px;
}

.contact-page .contact-intro > p {
    max-width: 370px;
    margin: 0;
    color: #725f4e;
    font-size: 14px;
    line-height: 1.8;
}

.contact-principles {
    margin-top: 44px;
    border-top: 1px solid #cdbca6;
}

.contact-principles > div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid #cdbca6;
}

.contact-principles > div > span {
    color: #a9682c;
    font-family: "Cormorant Garamond", serif;
    font-size: 17px;
    font-weight: 600;
}

.contact-principles p {
    margin: 0;
    color: #8a7766;
    font-size: 11px;
    line-height: 1.55;
}

.contact-principles strong {
    display: block;
    color: #3a2a1e;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-page .contact-form {
    padding: 43px 45px 39px;
    background: #fffaf3;
    border: 1px solid #d5c3ad;
    box-shadow: 0 22px 55px rgba(74, 48, 27, 0.09);
}

.form-header {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
    margin-bottom: 34px;
    padding-bottom: 25px;
    border-bottom: 1px solid #dfd0be;
}

.form-header > div > span {
    display: block;
    margin-bottom: 7px;
    color: #a9682c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.form-header h3 {
    margin: 0;
    color: #2a1c13;
    font-size: 30px;
    font-weight: 600;
    line-height: 1;
}

.form-step {
    color: #9a8876;
    font-family: "Cormorant Garamond", serif;
    font-size: 15px;
    white-space: nowrap;
}

.contact-form-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 23px 20px;
}

.contact-page .form-group {
    margin: 0;
}

.contact-page .form-group-wide {
    grid-column: 1 / -1;
}

.contact-page .form-group label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 8px;
    color: #4d392a;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.25px;
    text-transform: uppercase;
}

.contact-page .form-group label > span {
    color: #b66f30;
}

.contact-page .form-group label .optional {
    color: #a49586;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 1px;
}

.contact-page .form-group input,
.contact-page .form-group select,
.contact-page .form-group textarea {
    width: 100%;
    padding: 15px 16px;
    color: #2d2118;
    background: #f5eee5;
    border: 1px solid #dfd0be;
    border-radius: 0;
    font-size: 13px;
    outline: 0;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-page .form-group input,
.contact-page .form-group select {
    height: 52px;
}

.contact-page .form-group textarea {
    min-height: 138px;
    resize: vertical;
}

.contact-page .form-group input::placeholder,
.contact-page .form-group textarea::placeholder {
    color: #aa9b8d;
}

.contact-page .select-wrap select {
    color: #aa9b8d;
}

.contact-page .select-wrap select.has-value {
    color: #2d2118;
}

.contact-page .select-caret {
    color: #8a7766;
}

.contact-page .form-group input:focus,
.contact-page .form-group select:focus,
.contact-page .form-group textarea:focus {
    background: #fffdf9;
    border-color: #a9682c;
    box-shadow: 0 0 0 3px rgba(169, 104, 44, 0.1);
}

.form-footer {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}

.contact-page .form-note {
    justify-content: flex-start;
    margin: 0;
    color: #887767;
    text-align: left;
    font-size: 10px;
}

.contact-page .form-note svg {
    color: #9f622b;
}

.contact-submit {
    justify-content: space-between;
    min-width: 230px;
    padding: 17px 20px;
    color: #fffaf2;
    background: #291b12;
    border: 1px solid #291b12;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-submit:hover {
    color: #fff;
    background: #a9682c;
    border-color: #a9682c;
}

.contact-page .reach-section {
    padding: 82px 0 90px;
    background: #17110d;
}

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

.contact-page .reach-heading .eyebrow {
    margin: 0 0 8px;
}

.reach-heading h2 {
    color: #f1e8da;
    font-size: 42px;
    font-weight: 500;
}

.contact-page .reach-grid {
    gap: 0;
    margin: 0;
    border-top: 1px solid rgba(214, 163, 108, 0.2);
    border-bottom: 1px solid rgba(214, 163, 108, 0.2);
}

.contact-page .reach-item {
    position: relative;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: 18px;
    align-items: center;
    min-height: 124px;
    padding: 22px 27px;
    border-right: 1px solid rgba(214, 163, 108, 0.2);
    transition: background-color 0.25s ease;
}

.contact-page .reach-item:last-child {
    border-right: 0;
}

.contact-page a.reach-item:hover {
    background: rgba(214, 163, 108, 0.07);
}

.contact-page .reach-icon {
    width: 42px;
    height: 42px;
    color: #d29454;
    background: transparent;
    border: 1px solid rgba(214, 163, 108, 0.35);
}

.contact-page .reach-icon svg {
    width: 17px;
    height: 17px;
}

.contact-page .reach-info h4 {
    color: #e9ddcb;
    font-size: 9px;
}

.contact-page .reach-info p {
    color: #9f8f7f;
    font-size: 12px;
}

.reach-arrow {
    color: #a9682c;
    font-size: 16px;
}

.contact-page .toast {
    color: #fffaf2;
    background: #291b12;
    border: 1px solid rgba(214, 163, 108, 0.35);
}

@media (max-width: 960px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .contact-hero-note {
        max-width: 560px;
    }

    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 58px;
    }

    .contact-page .contact-intro {
        max-width: 620px;
    }

    .contact-principles {
        max-width: 520px;
    }

    .contact-page .reach-grid {
        grid-template-columns: 1fr;
    }

    .contact-page .reach-item {
        border-right: 0;
        border-bottom: 1px solid rgba(214, 163, 108, 0.2);
    }

    .contact-page .reach-item:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 620px) {
    .contact-page .contact-hero,
    .contact-hero-grid {
        min-height: 0;
    }

    .contact-hero-grid {
        gap: 40px;
        padding-top: 68px;
        padding-bottom: 62px;
    }

    .contact-hero-copy h1 {
        font-size: 47px;
    }

    .contact-hero-note {
        padding: 28px 24px;
    }

    .contact-page .contact-section {
        padding: 72px 0;
    }

    .contact-page .contact-form {
        padding: 30px 22px 25px;
    }

    .form-header {
        gap: 12px;
    }

    .contact-form-fields {
        grid-template-columns: 1fr;
    }

    .contact-page .form-group-wide {
        grid-column: auto;
    }

    .form-footer {
        align-items: stretch;
        flex-direction: column-reverse;
        gap: 18px;
    }

    .contact-submit {
        width: 100%;
    }

    .reach-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .reach-heading h2 {
        font-size: 35px;
    }
}

/* =========================================
   LOGIN + SIGNUP — ACCOUNT EXPERIENCE
========================================= */
.auth-body .auth-page {
    display: grid;
    grid-template-columns: minmax(410px, 0.92fr) minmax(520px, 1.08fr);
    min-height: calc(100vh - 82px);
    background: #17100c;
}

.auth-body .auth-visual {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 680px;
    overflow: hidden;
    background:
        radial-gradient(circle at 55% 35%, rgba(179, 109, 49, 0.2), transparent 30%),
        linear-gradient(145deg, #0c0907 0%, #1a110c 62%, #25160e 100%);
}

.auth-body .auth-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(214, 163, 108, 0.045) 1px, transparent 1px),
        linear-gradient(rgba(214, 163, 108, 0.03) 1px, transparent 1px);
    background-size: 115px 100%, 100% 115px;
}

.auth-orbit {
    position: absolute;
    top: 49%;
    left: 50%;
    display: grid;
    place-items: center;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(214, 163, 108, 0.14);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.auth-orbit::before,
.auth-orbit::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(214, 163, 108, 0.12);
    border-radius: 50%;
}

.auth-orbit::before { inset: 66px; }
.auth-orbit::after { inset: 132px; }

.auth-orbit span {
    color: rgba(221, 167, 108, 0.6);
    font-family: "Cormorant Garamond", serif;
    font-size: 29px;
    letter-spacing: 3px;
}

.auth-body .auth-visual-overlay {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 610px;
    padding: 60px 70px 68px;
    color: #f3eadc;
    background: linear-gradient(180deg, transparent, rgba(12, 8, 6, 0.9) 38%);
}

.auth-panel-kicker {
    display: block;
    margin-bottom: 17px;
    color: #d29150;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.auth-body .auth-visual-overlay h2 {
    margin: 0 0 17px;
    color: #f3eadc;
    font-size: clamp(40px, 4.2vw, 55px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.8px;
}

.auth-body .auth-visual-overlay > p {
    max-width: 440px;
    margin: 0;
    color: #aa9b8b;
    font-size: 13px;
    line-height: 1.75;
}

.auth-panel-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 29px;
    padding-top: 22px;
    border-top: 1px solid rgba(214, 163, 108, 0.18);
}

.auth-panel-points span {
    color: #9c8e7f;
    font-size: 10px;
    line-height: 1.45;
}

.auth-panel-points strong {
    display: block;
    margin-bottom: 3px;
    color: #d29150;
    font-family: "Cormorant Garamond", serif;
    font-size: 16px;
}

.auth-body .auth-card-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px 60px;
    color: #2c2018;
    background:
        linear-gradient(90deg, rgba(169, 104, 44, 0.045) 1px, transparent 1px),
        #efe5d7;
    background-size: 110px 100%;
    border-left: 1px solid rgba(214, 163, 108, 0.22);
}

.auth-body .auth-card {
    width: 100%;
    max-width: 455px;
}

.auth-back {
    display: inline-block;
    margin-bottom: 50px;
    color: #887563;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.auth-back:hover {
    color: #9f622b;
}

.auth-kicker {
    display: block;
    margin-bottom: 12px;
    color: #9f622b;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
}

.auth-body .auth-card h1 {
    margin: 0 0 9px;
    color: #2b1d14;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.8px;
}

.auth-body .auth-card .auth-sub {
    margin: 0 0 31px;
    color: #7d6b5a;
    font-size: 13px;
}

.auth-body .contact-form {
    background: transparent;
}

.auth-body .form-group {
    margin-bottom: 20px;
}

.auth-body .form-group label {
    display: block;
    margin: 0 0 8px;
    color: #4f3b2c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.35px;
    text-transform: uppercase;
}

.auth-body .form-group input {
    width: 100%;
    height: 54px;
    padding: 14px 16px;
    color: #2d2118;
    background: rgba(255, 251, 245, 0.72);
    border: 1px solid #d2c0aa;
    border-radius: 0;
    font-size: 13px;
    outline: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-body .form-group input::placeholder {
    color: #aa9a8b;
}

.auth-body .form-group input:focus {
    background: #fffdf9;
    border-color: #a9682c;
    box-shadow: 0 0 0 3px rgba(169, 104, 44, 0.1);
}

.auth-body .toggle-password {
    right: 11px;
    color: #887563;
}

.auth-body .toggle-password:hover,
.auth-body .toggle-password:focus-visible {
    color: #9f622b;
    outline: 0;
}

.auth-body .auth-row {
    margin: 3px 0 22px;
}

.auth-body .checkbox {
    color: #786655;
}

.auth-body .checkbox input[type="checkbox"] {
    background: #fffaf3;
    border-color: #bda992;
}

.auth-body .checkbox input[type="checkbox"]:checked {
    background: #9f622b;
    border-color: #9f622b;
}

.auth-body .muted-link {
    color: #826d5a;
    border-color: #bca991;
}

.auth-submit {
    justify-content: space-between;
    padding: 18px 20px;
    color: #fffaf2;
    background: #2a1b12;
    font-size: 10px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.auth-submit:hover {
    background: #a9682c;
}

.auth-security {
    margin: 14px 0 0;
    color: #9a8978;
    font-size: 9px;
    text-align: center;
}

.auth-body .auth-alt {
    margin-top: 25px;
    color: #786655;
    font-size: 12px;
}

.auth-body .auth-alt a {
    color: #9f622b;
}

.auth-body .toast {
    color: #fffaf2;
    background: #291b12;
    border: 1px solid rgba(214, 163, 108, 0.35);
}

.signup-page .auth-card-wrap {
    padding-top: 48px;
    padding-bottom: 48px;
}

.signup-page .auth-back {
    margin-bottom: 30px;
}

.signup-page .auth-card .auth-sub {
    margin-bottom: 24px;
}

.signup-page .form-group {
    margin-bottom: 15px;
}

.signup-page .checkbox {
    margin: 3px 0 18px;
}

@media (max-width: 960px) {
    .auth-body .auth-page {
        grid-template-columns: 1fr;
    }

    .auth-body .auth-visual {
        min-height: 360px;
    }

    .auth-orbit {
        left: 78%;
        width: 360px;
        height: 360px;
    }

    .auth-body .auth-visual-overlay {
        padding: 70px 40px 45px;
    }

    .auth-body .auth-card-wrap {
        padding: 65px 30px 75px;
    }
}

@media (max-width: 560px) {
    .auth-body .auth-visual {
        min-height: 315px;
    }

    .auth-body .auth-visual-overlay {
        padding: 50px 24px 32px;
    }

    .auth-body .auth-visual-overlay h2 {
        font-size: 38px;
    }

    .auth-panel-points {
        display: none;
    }

    .auth-orbit {
        left: 90%;
        width: 310px;
        height: 310px;
    }

    .auth-body .auth-card-wrap,
    .signup-page .auth-card-wrap {
        padding: 50px 20px 60px;
    }

    .auth-back {
        margin-bottom: 38px;
    }

    .auth-body .auth-card h1 {
        font-size: 45px;
    }

    .auth-body .auth-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px;
    }
}

/* =========================================
   CART — EDITORIAL CHECKOUT
========================================= */
.cart-body .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.14);
}

.cart-body .cart-page {
    min-height: calc(100vh - 82px);
    padding: 86px 0 105px;
    color: #2b1d14;
    background:
        linear-gradient(90deg, rgba(169, 104, 44, 0.045) 1px, transparent 1px),
        #eee4d6;
    background-size: 120px 100%;
}

.cart-page-head {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: end;
    margin-bottom: 43px;
    padding-bottom: 35px;
    border-bottom: 1px solid #d0bda5;
}

.cart-body .cart-page .eyebrow {
    margin-bottom: 16px;
    color: #a1632c;
}

.cart-body .cart-page h1 {
    margin: 0 0 10px;
    color: #281b13;
    font-size: clamp(46px, 5vw, 61px);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -1px;
}

.cart-body .cart-page .lead {
    margin: 0;
    color: #776451;
    font-size: 13px;
}

.cart-shop-link {
    display: inline-flex;
    gap: 14px;
    align-items: center;
    padding-bottom: 7px;
    color: #684d38;
    border-bottom: 1px solid #a9682c;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.cart-shop-link span {
    color: #a9682c;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.cart-shop-link:hover span {
    transform: translateX(3px);
}

.cart-body .cart-grid {
    grid-template-columns: minmax(0, 1.65fr) minmax(300px, 0.75fr);
    gap: 42px;
}

.cart-body .cart-list {
    background: transparent;
    border: 0;
    border-top: 1px solid #cdb99f;
}

.cart-body .cart-row {
    grid-template-columns: 100px minmax(180px, 1fr) 126px 94px 36px;
    gap: 22px;
    min-height: 151px;
    padding: 24px 18px;
    background: rgba(255, 251, 245, 0.52);
    border-bottom: 1px solid #cdb99f;
    transition: background-color 0.25s ease;
}

.cart-body .cart-row:hover {
    background: rgba(255, 251, 245, 0.88);
}

.cart-product-image {
    display: block;
    width: 100px;
    height: 100px;
    overflow: hidden;
    background: #e8dccb;
    border: 1px solid #d4c2ab;
}

.cart-body .cart-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.cart-product-image:hover img {
    transform: scale(1.035);
}

.row-kicker {
    display: block;
    margin-bottom: 7px;
    color: #a9682c;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.35px;
}

.cart-body .cart-row .row-info h4 {
    margin: 0 0 6px;
    color: #2c1e15;
    font-family: "Cormorant Garamond", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.08;
}

.cart-body .cart-row .row-info h4 a:hover {
    color: #9e602a;
}

.cart-body .cart-row .row-info p {
    margin: 0;
    color: #7e6a58;
    font-size: 11px;
    font-style: italic;
}

.cart-quantity > span,
.cart-body .line-total > span {
    display: block;
    margin-bottom: 9px;
    color: #897461;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.cart-body .qty-control {
    border: 1px solid #c6ad90;
    background: rgba(255, 253, 248, 0.65);
}

.cart-body .qty-control button {
    width: 35px;
    height: 35px;
    color: #4c3727;
}

.cart-body .qty-control button:hover,
.cart-body .qty-control button:focus-visible {
    color: #fff;
    background: #a9682c;
    outline: 0;
}

.cart-body .qty-control input {
    width: 42px;
    height: 35px;
    color: #2f2117;
    background: #fffaf3;
    border-color: #c6ad90;
}

.cart-body .line-total {
    min-width: 0;
    color: #2b1d14;
    text-align: left;
}

.cart-body .line-total strong {
    color: #9e602a;
    font-family: "Cormorant Garamond", serif;
    font-size: 21px;
    font-weight: 600;
}

.cart-body .remove-btn {
    width: 36px;
    height: 36px;
    color: #8f7a67;
    border: 1px solid transparent;
}

.cart-body .remove-btn:hover,
.cart-body .remove-btn:focus-visible {
    color: #8d3f2c;
    background: rgba(141, 63, 44, 0.06);
    border-color: rgba(141, 63, 44, 0.25);
    outline: 0;
}

.cart-body .cart-summary {
    position: sticky;
    top: 112px;
    padding: 35px 32px 28px;
    color: #f3eadc;
    background:
        linear-gradient(135deg, rgba(176, 105, 45, 0.09), transparent 50%),
        #211710;
    border: 1px solid rgba(214, 163, 108, 0.2);
    box-shadow: 0 20px 45px rgba(52, 32, 17, 0.13);
}

.summary-kicker {
    display: block;
    margin-bottom: 9px;
    color: #d08d4a;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cart-body .cart-summary h3 {
    margin: 0 0 28px;
    color: #f3eadc;
    font-family: "Cormorant Garamond", serif;
    font-size: 31px;
    font-weight: 500;
    letter-spacing: -0.2px;
    line-height: 1;
    text-transform: none;
}

.cart-body .summary-row {
    margin-bottom: 13px;
    color: #b6a695;
    font-size: 12px;
}

.cart-body .summary-row > span:last-child {
    color: #e5d9c9;
}

.shipping-note {
    margin: 17px 0 4px;
    padding: 12px 13px;
    color: #bba995;
    background: rgba(255, 250, 242, 0.045);
    border-left: 2px solid #9e602a;
    font-size: 9px;
    line-height: 1.45;
}

.shipping-note.is-free {
    color: #d0bda5;
}

.cart-body .summary-row.total {
    margin: 25px 0 0;
    padding-top: 20px;
    color: #f6eee2;
    border-top: 1px solid rgba(214, 163, 108, 0.22);
    font-size: 20px;
}

.cart-body .summary-row.total .label {
    font-size: 20px;
}

.cart-body .cart-summary .btn {
    justify-content: space-between;
    margin-top: 25px;
    padding: 17px 18px;
    color: #211710;
    background: #d08a45;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-body .cart-summary .btn:hover {
    color: #fff;
    background: #a8642d;
}

.summary-secure {
    margin: 13px 0 0;
    color: #827363;
    font-size: 8px;
    text-align: center;
}

.cart-body .cart-summary .secondary-link {
    margin-top: 19px;
    color: #b4a18d;
    font-size: 10px;
}

.cart-body .cart-summary .secondary-link:hover {
    color: #d08d4a;
}

.cart-body .cart-empty {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 88px 30px 94px;
    color: #2b1d14;
    background: rgba(255, 251, 245, 0.56);
    border-top: 1px solid #cdb99f;
    border-bottom: 1px solid #cdb99f;
}

.cart-empty-mark {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin-bottom: 25px;
    color: #a9682c;
    border: 1px solid #c6ad90;
    border-radius: 50%;
}

.cart-empty-kicker {
    color: #a9682c;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.8px;
}

.cart-body .cart-empty h2 {
    margin: 10px 0 8px;
    color: #2b1d14;
    font-size: 39px;
    font-weight: 500;
}

.cart-body .cart-empty p {
    max-width: 370px;
    margin: 0 0 28px;
    color: #7c6855;
    font-size: 12px;
}

.cart-body .cart-empty .btn {
    gap: 30px;
    color: #fffaf2;
    background: #2a1b12;
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-body .cart-empty .btn:hover {
    background: #a9682c;
}

@media (max-width: 980px) {
    .cart-body .cart-grid {
        grid-template-columns: 1fr;
    }

    .cart-body .cart-summary {
        position: relative;
        top: auto;
        max-width: 560px;
        width: 100%;
        margin-left: auto;
    }
}

@media (max-width: 760px) {
    .cart-body .cart-page {
        padding: 66px 0 78px;
    }

    .cart-page-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .cart-body .cart-row {
        grid-template-columns: 88px minmax(0, 1fr) 36px;
        grid-template-rows: auto auto;
        gap: 18px 16px;
        padding: 20px 8px;
    }

    .cart-product-image {
        grid-column: 1;
        grid-row: 1;
        width: 88px;
        height: 88px;
    }

    .cart-body .cart-row .row-info {
        grid-column: 2;
        grid-row: 1;
    }

    .cart-body .remove-btn {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
    }

    .cart-quantity {
        grid-column: 2;
        grid-row: 2;
    }

    .cart-body .line-total {
        grid-column: 3;
        grid-row: 2;
        align-self: end;
        text-align: right;
    }

    .cart-body .line-total > span {
        display: none;
    }
}

@media (max-width: 460px) {
    .cart-body .cart-row {
        grid-template-columns: 78px minmax(0, 1fr) 34px;
        gap: 16px 12px;
    }

    .cart-product-image {
        width: 78px;
        height: 78px;
    }

    .cart-body .cart-row .row-info h4 {
        font-size: 19px;
    }

    .cart-body .qty-control button {
        width: 32px;
    }

    .cart-body .qty-control input {
        width: 35px;
    }

    .cart-body .line-total strong {
        font-size: 18px;
    }

    .cart-body .cart-summary {
        padding: 31px 24px 25px;
    }
}

/* =========================================
   SHARED MOBILE HEADER + NAVIGATION
========================================= */
.mobile-account-panel,
.mobile-nav-backdrop {
    display: none;
}

@media (max-width: 960px) {
    html,
    body {
        overflow-x: hidden;
    }

    .site-header {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(15, 11, 8, 0.97);
        -webkit-backdrop-filter: blur(12px);
        backdrop-filter: blur(12px);
    }

    .header-inner {
        min-height: 74px;
        padding-top: 15px;
        padding-bottom: 15px;
        gap: 12px;
    }

    .brand {
        position: relative;
        z-index: 1202;
        min-width: 0;
        margin-right: auto;
    }

    .brand-name {
        font-size: 11px;
        letter-spacing: 1.65px;
        white-space: nowrap;
    }

    .brand-tag {
        font-size: 7.5px;
        letter-spacing: 1.65px;
    }

    .header-actions {
        position: relative;
        z-index: 1202;
        gap: 5px;
    }

    .header-actions .auth-actions,
    .header-actions .header-cta {
        display: none;
    }

    .cart-btn {
        width: 36px;
        height: 36px;
    }

    .menu-toggle {
        position: relative;
        z-index: 1202;
        display: flex;
        width: 38px;
        height: 34px;
        padding: 7px 4px;
        transition: transform 0.25s ease;
    }

    .menu-toggle span {
        width: 30px;
        height: 1px;
        margin-left: auto;
        background: #f2e8d9;
        border-radius: 0;
        transform-origin: center;
        transition: transform 0.28s ease, opacity 0.2s ease, width 0.25s ease;
    }

    .menu-toggle span:nth-child(2) {
        width: 22px;
    }

    .menu-toggle.is-open span:nth-child(1) {
        width: 28px;
        transform: translateY(9px) rotate(45deg);
    }

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

    .menu-toggle.is-open span:nth-child(3) {
        width: 28px;
        transform: translateY(-9px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 1200;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        width: min(360px, 88vw);
        height: 100dvh;
        gap: 0;
        padding: 101px 30px 30px;
        overflow-y: auto;
        color: #f3eadc;
        background:
            linear-gradient(90deg, rgba(214, 163, 108, 0.045) 1px, transparent 1px),
            #17100c;
        background-size: 92px 100%;
        border-left: 1px solid rgba(214, 163, 108, 0.22);
        box-shadow: -24px 0 60px rgba(0, 0, 0, 0.35);
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: transform 0.32s ease, opacity 0.25s ease, visibility 0.32s ease;
    }

    .main-nav::before {
        content: "NAVIGATION";
        display: block;
        margin-bottom: 13px;
        color: #bd7939;
        font-size: 8px;
        font-weight: 700;
        letter-spacing: 2px;
    }

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

    .main-nav > a {
        display: flex;
        align-items: center;
        min-height: 53px;
        padding: 8px 0;
        color: #e9ddcc;
        border-bottom: 1px solid rgba(214, 163, 108, 0.16);
        font-family: "Cormorant Garamond", serif;
        font-size: 27px;
        font-weight: 500;
        letter-spacing: 0;
        line-height: 1;
    }

    .main-nav > a:hover,
    .main-nav > a.active {
        color: #d7924e;
    }

    .main-nav > a.active::after {
        right: 0;
        left: auto;
        bottom: 50%;
        width: 22px;
        height: 1px;
        background: #c27b39;
    }

    .mobile-account-panel {
        display: block;
        margin-top: auto;
        padding-top: 24px;
    }

    .mobile-account-label {
        display: block;
        margin-bottom: 10px;
        color: #8e7b69;
        font-size: 7px;
        font-weight: 700;
        letter-spacing: 1.8px;
    }

    .mobile-account-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
    }

    .mobile-account-links a,
    .mobile-account-links button,
    .mobile-account-greeting {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 43px;
        padding: 10px 12px;
        color: #e8dccb;
        background: transparent;
        border: 1px solid rgba(214, 163, 108, 0.28);
        font-family: "Inter", sans-serif;
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1px;
        text-align: center;
        text-transform: uppercase;
    }

    .mobile-account-links .mobile-signup {
        color: #21150e;
        background: #d08a45;
        border-color: #d08a45;
    }

    .mobile-account-greeting {
        justify-content: flex-start;
        color: #d6c5b2;
        border-color: transparent;
    }

    .mobile-logout {
        cursor: pointer;
    }

    .mobile-consultation-link {
        display: flex;
        justify-content: space-between;
        margin-top: 10px;
        padding: 15px 16px;
        color: #d9c9b7;
        background: rgba(214, 163, 108, 0.06);
        border: 1px solid rgba(214, 163, 108, 0.18);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.15px;
        text-transform: uppercase;
    }

    .mobile-consultation-link span {
        color: #d08a45;
        font-size: 15px;
    }

    .mobile-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 999;
        display: block;
        width: 100%;
        height: 100%;
        padding: 0;
        pointer-events: none;
        background: rgba(7, 5, 4, 0.72);
        border: 0;
        opacity: 0;
        -webkit-backdrop-filter: blur(4px);
        backdrop-filter: blur(4px);
        transition: opacity 0.28s ease;
    }

    .mobile-nav-backdrop.is-visible {
        pointer-events: auto;
        opacity: 1;
    }

    body.mobile-nav-open {
        overflow: hidden;
    }
}

@media (max-width: 400px) {
    .header-inner {
        padding-right: 16px;
        padding-left: 16px;
    }

    .brand-name {
        font-size: 9.5px;
        letter-spacing: 1.25px;
    }

    .brand-tag {
        font-size: 7px;
        letter-spacing: 1.3px;
    }

    .main-nav {
        width: 90vw;
        padding-right: 25px;
        padding-left: 25px;
    }
}
