/* ====================================================== */
/* TOKENS */
/* ====================================================== */

:root {
    /* Colors */
    --warm-ivory: #FAF4EF;
    --surface-card: #FBF8F4;
    --blush-pink: #F6EDE4;
    --text-dark: #2B221E;
    --text-light: #5D5148;
    --text-muted: #8E8378;
    --deep-rose: #7A1E4A;
    --emerald-green: #0E5B43;
    --antique-gold: #C49A4C;
    --champagne-gold: #EBD6B2;
    --border-soft: #E9D7BC;
    --glass-bg: rgba(250, 244, 239, 0.9);
    --glass-border: rgba(233, 215, 188, 0.9);
    --hover-gold-border: rgba(196, 154, 76, 0.35);
    --hover-gold-border-soft: rgba(196, 154, 76, 0.28);

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Outfit', sans-serif;
    --font-signature: 'Cormorant Garamond', serif;
    --font-accent: 'Outfit', sans-serif;

    --text-xs: 0.78rem;
    --text-sm: 0.9rem;
    --text-base: 1rem;
    --text-md: 1.05rem;
    --text-lg: 1.1rem;
    --heading-sm: 1.8rem;
    --heading-md: 2rem;
    --heading-lg: clamp(2.2rem, 5vw, 3.3rem);
    --heading-xl: clamp(2.5rem, 6vw, 4rem);

    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-7: 1.75rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-17: 4.25rem;
    --space-18: 4.5rem;
    --space-20: 5rem;

    /* Radii */
    --radius-soft: 20px;
    --radius-pill: 100px;

    /* Motion */
    --transition-fast: 0.3s;
    --transition-normal: 0.35s;
    --transition-slow: 0.8s;
    --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);
    --glass-blur: blur(20px);

    /* Z Index */
    --z-header: 1000;
    --z-overlay: 9999;
    --z-modal: 10000;

    /* Containers */
    --container-sm: 720px;
    --container-md: 960px;
    --container-lg: 1200px;
    --container-xl: 1400px;

    /* Max Widths */
    --content-width: 820px;
    --reading-width: 760px;
    --card-width: 1200px;
    --section-header-width: 650px;

    /* Shadows */
    --shadow-soft: 0 2px 8px rgba(43, 34, 30, 0.05);
    --shadow-medium: 0 4px 12px rgba(43, 34, 30, 0.04);
    --shadow-floating: 0 10px 30px rgba(43, 34, 30, 0.04);
    --shadow-card-hover: 0 12px 24px rgba(43, 34, 30, 0.05);
    --shadow-product-hover: 0 14px 26px rgba(43, 34, 30, 0.06);
    --shadow-whatsapp: 0 10px 20px rgba(14, 91, 67, 0.2);
    --shadow-whatsapp-hover: 0 15px 25px rgba(196, 154, 76, 0.22);

    /* Sizing */
    --touch-target: 44px;

    /* Section spacing */
    --section-padding-mobile: 5rem 1.5rem;
    --section-padding-desktop: 8rem 5%;
    --section-tight-mobile: 4rem 1.5rem;
    --section-tight-desktop: 4rem 5%;
    --section-wide-mobile: 5rem 1.5rem;
    --section-wide-desktop: 8rem 5%;

    /* Shared layout defaults */
    --stack-gap: var(--space-4);
    --cluster-gap: var(--space-4);
    --auto-grid-gap: var(--space-6);
}

/* ====================================================== */
/* RESET */
/* ====================================================== */

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

html {
    scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
blockquote,
figure,
ul {
    margin: 0;
}

ul {
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    opacity: 1;
    transition: none;
}

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

button {
    font: inherit;
}

/* ====================================================== */
/* BASE */
/* ====================================================== */

body {
    position: relative;
    overflow-x: hidden;
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-ivory);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: var(--z-overlay);
    opacity: 0.4;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)" opacity="0.1"/%3E%3C/svg%3E');
}

section {
    padding: var(--section-padding-mobile);
}

h1,
h2,
h3,
h4,
.display-text {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--emerald-green);
}

p {
    font-size: var(--text-base);
    font-weight: 300;
    color: var(--text-light);
}

a,
button,
.btn {
    min-width: var(--touch-target);
    min-height: var(--touch-target);
}

/* ====================================================== */
/* LAYOUT */
/* ====================================================== */

.container {
    width: min(100%, calc(100% - 3rem));
    margin-inline: auto;
}

.container {
    max-width: var(--container-xl);
}

.section {
    padding: var(--section-padding-mobile);
}

.cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--cluster-gap);
}

.center {
    margin-inline: auto;
    text-align: center;
}


.feature-grid,
.collection-grid,
.pricing-grid,
.gallery-grid,
.testimonial-grid {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: 1fr;
}


.feature-grid,
.pricing-grid,
.testimonial-grid {
    gap: var(--space-8);
}

.collection-grid {
    gap: var(--space-8);
    max-width: var(--card-width);
    margin-inline: auto;
    margin-top: 2rem;
}

.gallery-grid {
    gap: var(--space-4);
}

.feature-grid,
.pricing-grid,
.testimonial-grid {
    max-width: var(--card-width);
    margin-inline: auto;
}

.pricing-grid--spaced {
    margin-top: var(--space-12);
}

.audience-grid {
    display: grid;
    gap: var(--space-6);
    grid-template-columns: 1fr;
    margin-bottom: var(--space-8);
}

/* ====================================================== */
/* TYPOGRAPHY */
/* ====================================================== */

.section-title {
    font-family: var(--font-display);
    font-size: var(--heading-lg);
    font-weight: 400;
    line-height: 1.2;
    color: var(--emerald-green);
}

.section-copy {
    max-width: var(--reading-width);
    margin-inline: auto;
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--text-light);
    text-align: center;
}

.section-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.section-kicker {
    display: block;
    margin-bottom: 0.5rem;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--antique-gold);
}

/* ====================================================== */
/* UTILITIES */
/* ====================================================== */

/* ====================================================== */
/* SECTION HEADER */
/* ====================================================== */

.section-header {
    max-width: var(--section-header-width);
    margin: 0 auto var(--space-10);
    text-align: center;
}

.section-header .section-eyebrow {
    display: block;
    margin-bottom: var(--space-2);
}

.section-header .section-title {
    max-width: var(--section-header-width);
    margin-inline: auto;
    margin-bottom: var(--space-4);
}

.section-header .section-intro {
    max-width: var(--section-header-width);
    margin-inline: auto;
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--text-light);
}

.section-header__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.section-followup {
    margin-top: var(--space-12);
    text-align: center;
}

.home-page .section-followup {
    margin-top: var(--space-8);
}

.home-page .section-followup .cluster {
    justify-content: center;
    align-items: center;
    gap: var(--space-4);
}

.home-blog-tease {
    margin-top: var(--space-6);
    font-size: 0.95rem;
    color: var(--text-light);
}

.home-blog-tease a {
    color: var(--deep-rose);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.home-page .section-header__actions {
    margin-top: var(--space-5);
}

.home-page .cta-panel__actions {
    align-items: center;
}

.section-top-standard {
    padding-top: var(--space-16) !important;
}

.section-top-rhythm {
    padding-top: var(--space-17) !important;
}

.section-bottom-standard {
    padding-bottom: var(--space-16) !important;
}

.section-pad-cta {
    padding-top: var(--space-12) !important;
    padding-bottom: var(--space-16) !important;
}

.gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    text-align: center;
}

.gallery-header .display-text {
    font-size: clamp(2.5rem, 8vw, 4rem);
}

/* ====================================================== */
/* BUTTONS */
/* ====================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    white-space: normal;
    cursor: pointer;
    transition:
        transform var(--transition-normal) ease,
        box-shadow var(--transition-normal) ease,
        background-color var(--transition-normal) ease,
        color var(--transition-normal) ease,
        border-color var(--transition-normal) ease;
}

.btn-primary {
    background-color: var(--deep-rose);
    color: var(--warm-ivory);
    border-color: var(--deep-rose);
}

.btn-primary:hover {
    background-color: var(--antique-gold);
    color: var(--emerald-green);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(196, 154, 76, 0.13);
}

.btn-outline {
    background-color: transparent;
    color: var(--emerald-green);
    border-color: var(--emerald-green);
}

.btn-outline:hover {
    background-color: var(--emerald-green);
    color: var(--warm-ivory);
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(14, 91, 67, 0.11);
}

.btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--emerald-green);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color var(--transition-fast) ease;
}

.btn-text::after {
    content: "\2192"; /* right arrow */
    transition: transform var(--transition-fast) ease;
}

.btn-text:hover {
    color: var(--deep-rose);
}

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

.btn-block {
    width: 100%;
}

.visually-hidden,
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0;
    width: 100%;
    max-width: 20rem;
}

.footer-newsletter-form .form-input {
    width: 100%;
    padding: 0.65rem 1rem;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-pill);
    background-color: var(--surface-card);
    color: var(--text-dark);
    outline: none;
}

.footer-newsletter-form .form-input:focus {
    border-color: var(--emerald-green);
}

.footer-newsletter-form .btn {
    padding-block: 0.55rem;
}

.form-status {
    display: none;
    margin-top: 0.5rem;
    font-size: var(--text-sm);
    font-weight: 500;
    text-align: center;
}

.btn-nav {
    padding: 0.45rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.8px;
}

.btn-with-icon {
    gap: 10px;
    padding: 0.8rem 1.8rem;
    font-size: 0.9rem;
}

/* ====================================================== */
/* CARDS */
/* ====================================================== */

.card {
    --card-padding: var(--space-8);

    padding: var(--card-padding);
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
    box-shadow: var(--shadow-soft);
}

/* ====================================================== */
/* COLLECTION CARD */
/* ====================================================== */

.collection-card {
    --card-padding: 0;

    overflow: hidden;
    box-shadow: none;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color var(--transition-fast) ease;
}

.collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-product-hover);
    border-color: var(--hover-gold-border);
}

.collection-card__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--warm-ivory);
}

.collection-card__media picture,
.gallery-item picture,
.home-page .hero-image-main picture {
    display: block;
    width: 100%;
    height: 100%;
}

.collection-card__media img {
    width: 100%;
    height: 100%;
    transition: transform var(--transition-slow) ease;
}

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

.collection-card__body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 1.25rem 1.15rem 1.1rem;
    text-align: center;
}

.collection-card__title {
    margin-bottom: 0.45rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1.15;
    color: var(--emerald-green);
}

.collection-card__copy {
    margin-bottom: auto;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-light);
}

.collection-card__body .btn-text {
    margin-top: var(--space-4);
}

.collection-card:hover .btn-text::after {
    transform: translateX(3px);
}

/* ====================================================== */
/* FEATURE CARD */
/* ====================================================== */

.feature-card {
    --card-padding: 1.8rem;

    box-shadow: none;
}

.home-page .feature-card,
.home-page .audience-card {
    display: flex;
    flex-direction: column;
}

.feature-card__eyebrow {
    margin-bottom: 0.8rem;
    color: var(--antique-gold);
}

.feature-card__title {
    margin-bottom: 0.75rem;
}

.feature-card__body {
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-light);
}

/* ====================================================== */
/* HOME â€” START HERE */
/* ====================================================== */

.home-start-here {
    max-width: 1100px;
}

.home-start-here__intro {
    margin-top: var(--space-4);
    max-width: 36rem;
}

.home-start-featured {
    display: block;
    margin-top: var(--space-10);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(250, 244, 236, 0.92) 55%, rgba(232, 216, 196, 0.35) 100%),
        var(--warm-ivory);
    border: 1px solid var(--border-soft);
    border-left: 3px solid var(--antique-gold);
}

.home-start-featured__eyebrow {
    margin: 0 0 var(--space-3);
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--antique-gold);
}

.home-start-featured__title {
    margin: 0 0 var(--space-3);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--emerald-green);
}

.home-start-featured__body {
    margin: 0 0 var(--space-6);
    max-width: 38rem;
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--text-light);
}

.home-start-featured__cta {
    display: inline-flex;
    text-decoration: none;
}

.home-start-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.home-start-path {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 1.35rem 1.25rem 1.25rem;
    text-decoration: none;
    color: inherit;
    background: transparent;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s ease;
}

.home-start-path:hover,
.home-start-path:focus-visible {
    border-bottom-color: var(--antique-gold);
    outline: none;
}

.home-start-path:hover .home-start-path__title,
.home-start-path:focus-visible .home-start-path__title {
    color: var(--deep-rose);
}

.home-start-path__eyebrow {
    margin: 0 0 0.55rem;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    color: var(--antique-gold);
}

.home-start-path__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--emerald-green);
    transition: color 0.25s ease;
}

.home-start-path__body {
    margin: 0 0 auto;
    font-size: var(--text-sm);
    line-height: 1.55;
    color: var(--text-light);
}

.home-start-path__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: var(--space-4);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--emerald-green);
}

.home-start-path__link::after {
    content: "\2192"; /* right arrow */
    transition: transform 0.25s ease;
}

.home-start-path:hover .home-start-path__link::after,
.home-start-path:focus-visible .home-start-path__link::after {
    transform: translateX(3px);
}

/* ====================================================== */
/* HOME â€” HOW IT WORKS */
/* ====================================================== */

.home-how-it-works__intro {
    margin-top: var(--space-4);
    max-width: 36rem;
}

.home-process {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin: var(--space-10) 0 0;
    padding: 0;
    list-style: none;
    counter-reset: none;
}

.home-process__step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--space-4);
    align-items: start;
    padding: 0 0 var(--space-5);
    border-bottom: 1px solid var(--border-soft);
}

.home-process__step:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.home-process__num {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.15rem);
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    color: var(--antique-gold);
}

.home-process__title {
    margin: 0 0 var(--space-2);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--emerald-green);
}

.home-process__body {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.55;
    color: var(--text-light);
}

/* ====================================================== */
/* HOME â€” PRICING TEASER */
/* ====================================================== */

.home-pricing-teaser {
    max-width: 1100px;
}

.home-pricing-teaser__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 40rem;
    margin-inline: auto;
    padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 3vw, 2rem);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.35) 0%, rgba(250, 244, 239, 0.55) 100%);
}

.home-pricing-teaser__title {
    margin: 0;
}

.home-pricing-teaser__copy {
    margin: var(--space-4) 0 0;
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--text-light);
}

.home-pricing-teaser__cta {
    margin-top: var(--space-7);
    text-decoration: none;
}

.home-pricing-teaser__paths {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 1.35rem;
    margin-top: var(--space-6);
}

.home-pricing-teaser__paths a {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--emerald-green);
    border-bottom: 1px solid transparent;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.home-pricing-teaser__paths a:hover,
.home-pricing-teaser__paths a:focus-visible {
    color: var(--deep-rose);
    border-bottom-color: var(--antique-gold);
    outline: none;
}

/* ====================================================== */
/* HOME â€” APPROACH */
/* ====================================================== */

.home-approach__intro {
    margin-top: var(--space-4);
    max-width: 36rem;
}

.home-approach {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin: var(--space-10) 0 0;
    padding: 0;
    list-style: none;
    max-width: 980px;
    margin-inline: auto;
}

.home-approach__item {
    padding: var(--space-5) 0;
    border-top: 1px solid var(--border-soft);
}

.home-approach__item:last-child {
    border-bottom: 1px solid var(--border-soft);
}

.home-approach__title {
    margin: 0 0 var(--space-2);
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--emerald-green);
}

.home-approach__body {
    margin: 0;
    max-width: 36rem;
    font-size: var(--text-sm);
    line-height: 1.55;
    color: var(--text-light);
}

.home-gallery__cta {
    display: inline-flex;
    margin-top: var(--space-4);
}

/* ====================================================== */
/* HOME â€” COLLECTIONS TEASER */
/* ====================================================== */

.home-collections-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-top: var(--space-8);
    max-width: 980px;
    margin-inline: auto;
}

.home-collection-tile {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    border-top: 1px solid var(--border-soft);
    transition: border-color 0.25s ease;
}

.home-collection-tile:hover,
.home-collection-tile:focus-visible {
    border-top-color: var(--antique-gold);
    outline: none;
}

.home-collection-tile__media {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--warm-ivory);
}

.home-collection-tile__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-collection-tile__body {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.1rem 0 1.25rem;
}

.home-collection-tile__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.45rem);
    font-weight: 400;
    color: var(--emerald-green);
}

.home-collection-tile__copy {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--text-light);
}

.home-collection-tile__link {
    margin-top: 0.55rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--emerald-green);
}

.home-collection-tile__link::after {
    content: " \2192"; /* right arrow */
    transition: transform 0.25s ease;
    display: inline-block;
}

.home-collection-tile:hover .home-collection-tile__link::after,
.home-collection-tile:focus-visible .home-collection-tile__link::after {
    transform: translateX(3px);
}

.home-page .feature-card .btn-text,
.home-page .audience-card .btn-text,
.home-page .collection-card .btn-text {
    margin-top: auto;
    align-self: flex-start;
}

.audience-card {
    --card-padding: 1.8rem;

    box-shadow: none;
}

.audience-card--accent {
    background: linear-gradient(180deg, rgba(246, 237, 228, 0.75), rgba(251, 248, 244, 1));
}

.audience-card__title {
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: var(--heading-sm);
    line-height: 1.2;
    color: var(--emerald-green);
}

.gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: var(--radius-soft);
    background: var(--blush-pink);
    box-shadow: 0 10px 24px rgba(43, 34, 30, 0.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
}

/* ====================================================== */
/* PROCESS */
/* ====================================================== */

.process-list {
    margin-top: var(--space-12);
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-8) var(--space-6);
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: 30px;
}

.process-num {
    width: auto;
    margin-bottom: var(--space-4);
    font-family: var(--font-display);
    font-size: 3rem;
    font-style: italic;
    line-height: 1;
    color: var(--antique-gold);
}

.process-content {
    flex: 1;
}

.process-title {
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--heading-sm);
    line-height: 1.2;
    color: var(--emerald-green);
}

.process-body {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* ====================================================== */
/* PRICING */
/* ====================================================== */

.pricing-card {
    --card-padding: var(--space-10) var(--space-8);

    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
}

.pricing-card--popular {
    border-color: var(--deep-rose);
    box-shadow: 0 10px 24px rgba(122, 30, 74, 0.08);
}

.pricing-card--featured {
    border-color: var(--antique-gold);
    box-shadow: 0 10px 24px rgba(196, 154, 76, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    background: var(--deep-rose);
    color: var(--warm-ivory);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bridal-pricing-packages__header {
    text-align: center;
    max-width: 46rem;
    margin-inline: auto;
    margin-bottom: var(--space-10);
}

.bridal-pricing-packages__intro {
    margin-top: var(--space-4);
    color: var(--text-light);
}

.bridal-pricing-packages__grid {
    display: grid;
    gap: var(--space-8);
    align-items: stretch;
}

.bridal-pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
    box-shadow: 0 10px 24px rgba(43, 34, 30, 0.04);
}

.bridal-pricing-card--popular {
    border-color: var(--deep-rose);
    box-shadow: 0 14px 32px rgba(122, 30, 74, 0.1);
}

.bridal-pricing-card--destination {
    border-color: var(--antique-gold);
}

.bridal-pricing-card__badge {
    position: absolute;
    z-index: 2;
    top: 1rem;
    left: 1rem;
    margin: 0;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    background: var(--deep-rose);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.bridal-pricing-card--destination .bridal-pricing-card__badge {
    background: var(--emerald-green);
}

.bridal-pricing-card__media {
    margin: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--blush-pink);
}

.bridal-pricing-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bridal-pricing-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-5) var(--space-6);
}

.bridal-pricing-card__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2rem);
    color: var(--emerald-green);
}

.bridal-pricing-card__price {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    color: var(--deep-rose);
}

.bridal-pricing-card__desc {
    margin: 0;
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.55;
}

.bridal-pricing-card__divider {
    width: 100%;
    margin: var(--space-2) 0;
    border: 0;
    border-top: 1px solid var(--border-soft);
}

.bridal-pricing-card__label {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.bridal-pricing-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.bridal-pricing-card__list li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--text-dark);
    font-size: 0.92rem;
}

.bridal-pricing-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--antique-gold);
}

.bridal-pricing-card__body .btn {
    margin-top: auto;
}

.bridal-pricing-trust {
    display: grid;
    gap: var(--space-5);
    margin-top: var(--space-12);
}

.bridal-pricing-trust__card {
    display: flex;
    gap: var(--space-4);
    align-items: flex-start;
    padding: var(--space-6);
    background: var(--surface-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
}

.bridal-pricing-trust__icon {
    display: inline-flex;
    color: var(--emerald-green);
}

.bridal-pricing-trust__title {
    margin: 0 0 var(--space-2);
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--emerald-green);
}

.bridal-pricing-trust__copy {
    margin: 0;
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.bridal-pricing-note {
    margin-top: var(--space-8);
    padding: var(--space-6);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
    background: var(--blush-pink);
}

.bridal-pricing-note__title {
    margin: 0 0 var(--space-3);
    font-family: var(--font-display);
    font-size: 1.35rem;
    color: var(--emerald-green);
}

.bridal-pricing-note p {
    margin: 0 0 var(--space-3);
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.6;
}

.bridal-pricing-note p:last-child {
    margin-bottom: 0;
}

.bridal-pricing-compare {
    margin-top: var(--space-10);
    margin-bottom: var(--space-2);
    padding: var(--space-6);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
    background: var(--surface-card);
}

.bridal-pricing-compare__title {
    margin: 0 0 var(--space-2);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2.5vw, 1.7rem);
    color: var(--emerald-green);
    text-align: center;
}

.bridal-pricing-compare__lead {
    margin: 0 auto var(--space-5);
    max-width: 36rem;
    text-align: center;
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.55;
}

.bridal-pricing-compare__scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.bridal-pricing-compare__table {
    width: 100%;
    min-width: 36rem;
    border-collapse: collapse;
    font-size: var(--text-sm);
}

.bridal-pricing-compare__table th,
.bridal-pricing-compare__table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid var(--border-soft);
    text-align: left;
    vertical-align: top;
    color: var(--text-light);
}

.bridal-pricing-compare__table thead th {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--emerald-green);
    background: var(--blush-pink);
}

.bridal-pricing-compare__table tbody th {
    font-weight: 500;
    color: var(--text-dark);
    white-space: nowrap;
}

.bridal-pricing-compare__table tbody tr:last-child th,
.bridal-pricing-compare__table tbody tr:last-child td {
    border-bottom: 0;
}

@media (min-width: 768px) {
    .bridal-pricing-packages__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-6);
    }

    .bridal-pricing-card--popular {
        transform: translateY(-0.4rem);
    }

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

@media (max-width: 767px) {
    .bridal-pricing-card__body .btn {
        width: 100%;
    }
}

.pricing-title {
    margin-bottom: var(--space-2);
    font-family: var(--font-display);
    font-size: var(--heading-sm);
    text-align: center;
    color: var(--emerald-green);
}

.pricing-price {
    margin-bottom: var(--space-2);
    font-size: var(--heading-sm);
    font-weight: 600;
    text-align: center;
    color: var(--text-light);
}

.pricing-desc {
    margin-bottom: var(--space-8);
    font-size: 0.95rem;
    text-align: center;
    color: var(--text-light);
}

.pricing-inclusions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: var(--space-8);
    list-style: none;
    flex-grow: 1;
}

.pricing-inclusions li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.pricing-check {
    color: var(--antique-gold);
    font-weight: 700;
}

.pricing-card .btn {
    margin-top: auto;
    padding: 14px 12px;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ====================================================== */
/* TESTIMONIALS */
/* ====================================================== */

.testimonial-card {
    box-shadow: var(--shadow-medium);
    text-align: left;
    transition:
        transform var(--transition-normal) ease,
        box-shadow var(--transition-normal) ease,
        border-color var(--transition-normal) ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: var(--hover-gold-border-soft);
}

.testimonial-head {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-4);
}

.testimonial-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--emerald-green);
    color: var(--warm-ivory);
    font-size: 1.2rem;
    font-weight: 700;
}

.testimonial-name {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-rating {
    font-size: var(--text-base);
    color: var(--antique-gold);
}

.testimonial-meta {
    margin: 0.15rem 0 0;
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: var(--text-muted);
}

.testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
}

/* ====================================================== */
/* FAQ */
/* ====================================================== */

.faq-item {
    padding: var(--space-6) 0;
    border-bottom: 1px solid var(--border-soft);
}

.faq-container {
    max-width: var(--reading-width);
    margin-inline: auto;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--emerald-green);
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--antique-gold);
    transition: transform var(--transition-fast) ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--text-light);
    transition: max-height 0.4s ease-out;
}

.faq-answer p {
    padding-top: var(--space-4);
}

.faq-item.active .faq-answer {
    max-height: 420px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ====================================================== */
/* TRUST */
/* ====================================================== */

.trust-strip {
    padding: var(--space-8) var(--space-6);
    background-color: var(--blush-pink);
}

.trust-strip__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4) var(--space-8);
    max-width: 1100px;
    margin-inline: auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    color: var(--emerald-green);
}

.trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

/* ====================================================== */
/* PILLS AND BADGES */
/* ====================================================== */

.tag-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.1rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: rgba(250, 244, 239, 0.9);
    color: var(--emerald-green);
    font-size: var(--text-sm);
    line-height: 1.4;
}

/* ====================================================== */
/* CTA PANEL */
/* ====================================================== */

.cta-panel {
    padding: var(--space-12) var(--space-8);
    background-color: var(--blush-pink);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
    text-align: center;
}

.cta-panel__copy {
    max-width: var(--section-header-width);
    margin: 0 auto var(--space-8);
    font-size: var(--text-md);
    color: var(--text-dark);
}

.cta-panel__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
}

.cta-panel__meta {
    margin-top: var(--space-4);
    font-size: 0.88rem;
    color: var(--text-light);
}

.studio-showcase {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.8rem, 4vw, 3rem);
    min-height: 320px;
    padding: clamp(2rem, 4vw, 3.25rem);
    scroll-margin-top: calc(var(--promo-bar-height, 0px) + var(--home-nav-height, 0px) + var(--home-nav-gap, 0px) + 1rem);
    border: 1px solid rgba(196, 154, 76, 0.28);
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(214, 181, 123, 0.14), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(250, 244, 239, 0.92)),
        var(--warm-ivory);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.studio-showcase__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.studio-showcase__eyebrow {
    margin-bottom: var(--space-4);
    color: var(--antique-gold);
    letter-spacing: 2px;
}

.studio-showcase__title {
    max-width: 12ch;
    margin-bottom: var(--space-6);
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    line-height: 1.02;
    color: var(--emerald-green);
}

.studio-showcase__copy {
    max-width: 60ch;
    margin-bottom: var(--space-6);
    font-size: var(--text-md);
    color: var(--text-light);
}

.studio-showcase__copy:last-of-type {
    margin-bottom: var(--space-8);
}

.studio-showcase__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.studio-showcase__tag {
    padding: 0.78rem 1.12rem;
    border-color: rgba(196, 154, 76, 0.3);
    background: rgba(250, 244, 239, 0.86);
    color: var(--emerald-green);
    font-size: var(--text-sm);
}

.studio-showcase__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: var(--space-6);
}

.studio-showcase__cta {
    min-width: 0;
    padding-inline: 1.4rem;
}

.studio-showcase__media {
    position: relative;
    min-height: 560px;
    padding: 0.5rem 0.25rem 0.25rem;
}

.studio-card {
    position: absolute;
    margin: 0;
    border: 1px solid rgba(196, 154, 76, 0.24);
    border-radius: 18px;
    background: rgba(255, 251, 247, 0.92);
    box-shadow: 0 18px 40px rgba(43, 34, 30, 0.12);
    overflow: hidden;
}

.studio-card__media,
.studio-card__media img,
.studio-card__media video,
.studio-proof__media,
.studio-proof__media img {
    display: block;
    width: 100%;
    height: 100%;
}

.studio-card__media img,
.studio-card__media video,
.studio-proof__media img {
    object-fit: cover;
}

.studio-card__video {
    background: #d4c0ab;
}

.studio-card__caption {
    margin: 0;
    padding: 0.75rem 1rem 0.95rem;
    font-family: var(--font-display);
    font-size: 0.98rem;
    line-height: 1.1;
    text-align: center;
    color: rgba(82, 61, 45, 0.92);
    background: linear-gradient(180deg, rgba(255, 251, 247, 0.94), rgba(246, 237, 228, 0.96));
}

.studio-card--hero {
    inset: 0 auto auto 0;
    width: min(100%, 460px);
    height: 378px;
    border-radius: 20px;
    background: #d9cab5;
}

.studio-card--hero .studio-card__media img {
    object-position: center 28%;
}

.studio-card--product {
    top: 0.5rem;
    right: 0.75rem;
    width: 170px;
    transform: rotate(1.2deg);
}

.studio-card--product .studio-card__media {
    aspect-ratio: 0.88;
}

.studio-card--campaign {
    right: 11rem;
    bottom: 1rem;
    width: 158px;
    transform: rotate(1.6deg);
}

.studio-card--campaign .studio-card__media {
    aspect-ratio: 0.82;
}

.studio-card--campaign .studio-card__media img {
    object-position: center 18%;
}

.studio-card--detail {
    left: 1.1rem;
    bottom: 1.4rem;
    width: 188px;
    transform: rotate(-3deg);
}

.studio-card--detail .studio-card__media {
    aspect-ratio: 0.88;
}

.studio-proof {
    position: absolute;
    right: 0;
    bottom: 0.85rem;
    width: 158px;
    padding: 1.1rem 1rem 1.15rem;
    border: 1px solid rgba(196, 154, 76, 0.26);
    border-radius: 18px;
    background: rgba(253, 247, 241, 0.96);
    box-shadow: 0 12px 30px rgba(43, 34, 30, 0.1);
    text-align: center;
}

.studio-proof__media {
    aspect-ratio: 0.84;
    margin-bottom: 0.9rem;
    border-radius: 14px;
    overflow: hidden;
    background: #d9cab5;
}

.studio-proof__eyebrow,
.studio-proof__value,
.studio-proof__copy {
    margin: 0;
}

.studio-proof__eyebrow {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--antique-gold);
}

.studio-proof__value {
    margin-top: 0.45rem;
    font-family: var(--font-display);
    font-size: 2.6rem;
    line-height: 0.95;
    color: var(--emerald-green);
}

.studio-proof__copy {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-light);
}

.cluster-tight {
    --cluster-gap: 0.75rem;
}

.narrative-section {
    padding: 5rem 1.5rem;
    text-align: left;
    background-color: var(--warm-ivory);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.narrative-shell {
    max-width: var(--reading-width);
    margin-inline: auto;
}

.narrative-title {
    margin-bottom: 2rem;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.3;
    color: var(--emerald-green);
}

.pull-quote {
    max-width: 760px;
    margin: 0 0 1.75rem;
    border: 0;
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.3rem);
    font-style: italic;
    line-height: 1.3;
    color: var(--deep-rose);
}

.narrative-copy {
    margin-bottom: 1.25rem;
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.92;
}

.narrative-copy:last-of-type {
    margin-bottom: 2rem;
}

/* ====================================================== */
/* FORMS */
/* ====================================================== */

/* ====================================================== */
/* NAVIGATION */
/* ====================================================== */

#navbar {
    position: fixed;
    top: var(--space-4);
    left: 0;
    right: 0;
    width: calc(100% - 2rem);
    max-width: var(--container-lg);
    height: 60px;
    margin-inline: auto;
    padding: 0 var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
    z-index: var(--z-header);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-floating);
    transition: background 0.4s ease, top 0.4s ease;
    transform: none;
}

#navbar.scrolled {
    top: var(--space-3);
    background: rgba(250, 244, 239, 0.95);
}

#navbar:has(.nav-explore[open]) {
    z-index: calc(var(--z-header) + 5);
    background: rgba(250, 244, 239, 0.99);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: auto;
    position: relative;
    white-space: nowrap;
    color: var(--emerald-green);
    flex-shrink: 0;
}

.logo-text {
    display: inline-block;
    font-family: var(--font-signature);
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: 0.34rem;
    text-transform: uppercase;
    color: var(--emerald-green);
    text-shadow: 0 1px 0 rgba(250, 244, 239, 0.7);
    transition: color var(--transition-fast) ease, transform var(--transition-fast) ease;
}

.logo::after {
    content: "";
    width: 32px;
    height: 1px;
    margin-left: 0.9rem;
    background: linear-gradient(90deg, rgba(196, 154, 76, 0.95), rgba(235, 214, 178, 0.25));
    transform-origin: left center;
    transition: transform var(--transition-fast) ease, opacity var(--transition-fast) ease;
}

.logo:hover .logo-text {
    transform: translateY(-1px);
}

.logo:hover::after {
    transform: scaleX(1.08);
}

.mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    min-width: 48px;
    margin-right: 10px;
    flex-shrink: 0;
}

.btn.btn-nav.mobile-nav-cta,
.btn-nav.mobile-nav-cta {
    box-sizing: border-box;
    min-height: 44px;
    min-width: 44px;
    padding-block: 0.65rem;
    padding-inline: 0.9rem;
    line-height: 1.2;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 48px;
    height: 48px;
    min-width: 48px;
    min-height: 48px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: calc(var(--z-header) + 3);
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--emerald-green);
    transition: all var(--transition-fast) ease-in-out;
    transform-origin: center;
}

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

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

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

.nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100vw, 21rem);
    height: 100dvh;
    margin-top: 0;
    padding: calc(var(--space-8) + 3.5rem) var(--space-6) var(--space-8);
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
    list-style: none;
    background: var(--warm-ivory);
    border: 0;
    border-left: 1px solid var(--glass-border);
    border-radius: 0;
    box-shadow: -12px 0 36px rgba(43, 34, 30, 0.12);
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform var(--transition-fast) ease, visibility var(--transition-fast) ease;
    z-index: calc(var(--z-header) + 2);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
}

.nav-links.active {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

body.nav-open::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(43, 34, 30, 0.35);
    z-index: calc(var(--z-header) - 1);
    pointer-events: auto;
}

@media (max-width: 1023px) {
    body.nav-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
        left: 0;
        right: 0;
    }

    .nav-links[aria-hidden="true"] {
        visibility: hidden;
        pointer-events: none;
    }

    .nav-links[aria-hidden="false"].active {
        visibility: visible;
        pointer-events: auto;
    }

    body.nav-open .whatsapp-widget {
        opacity: 0;
        pointer-events: none;
    }

    body.nav-open .mobile-nav-cta {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        position: absolute;
        width: 0;
        min-width: 0;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    body.nav-open .menu-toggle.active {
        position: fixed;
        top: var(--space-4);
        right: var(--space-4);
        z-index: calc(var(--z-header) + 13);
    }

    body.home-page.nav-open .menu-toggle.active {
        top: calc(var(--promo-bar-height, 0px) + var(--home-nav-gap, 10px) + var(--space-2));
    }

    body.nav-open::before {
        background: rgba(43, 34, 30, 0.5);
    }

    body.nav-open #navbar {
        z-index: calc(var(--z-header) + 12);
    }

    #navbar {
        gap: 0.35rem;
        padding-inline: var(--space-3);
    }

    .logo-text {
        font-size: clamp(0.82rem, 3.4vw, 1rem);
        letter-spacing: clamp(0.18rem, 1.2vw, 0.28rem);
    }

    .mobile-nav-cta {
        margin-right: 0;
        padding-inline: 0.7rem;
        font-size: 0.62rem;
        letter-spacing: 0.8px;
    }

    .nav-links {
        z-index: calc(var(--z-header) + 10);
        padding-top: calc(var(--promo-bar-height, 0px) + var(--home-nav-height, 60px) + var(--space-8));
    }

    body:not(.home-page) .nav-links {
        padding-top: calc(4.5rem + var(--space-8));
    }

    .nav-links > li > a:not(.btn-primary) {
        font-size: 0.88rem;
        letter-spacing: 1.1px;
    }

    .nav-item--explore,
    .nav-explore {
        display: block;
        width: 100%;
        height: auto;
    }

    .nav-explore__summary {
        min-height: 48px;
        font-size: 0.88rem;
        letter-spacing: 1.1px;
    }

    .nav-explore__menu {
        padding: var(--space-2) 0 0;
        margin: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .nav-explore__group {
        display: block;
        width: 100%;
    }

    .nav-links .nav-explore__menu a,
    .nav-links .nav-explore__group-list a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.35rem 0;
        font-family: var(--font-sans);
        font-size: 0.92rem;
        font-weight: 400;
        letter-spacing: 0.15px;
        text-transform: none;
        color: var(--text-dark);
    }

    .nav-links .nav-explore__menu a::after,
    .nav-links .nav-explore__group-list a::after {
        display: none;
    }

    .nav-explore__group-label {
        font-family: var(--font-sans);
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 1.25px;
        text-transform: uppercase;
        color: var(--antique-gold);
    }

    .nav-support-mobile {
        display: flex;
        flex-direction: column;
        gap: 0;
        margin-top: var(--space-4);
        padding-top: var(--space-4);
        border-top: 1px solid var(--border-soft);
    }

    .nav-links .nav-support-mobile__link {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.35rem 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        font-size: 0.92rem;
        font-weight: 400;
        letter-spacing: 0.15px;
        text-align: left;
        text-transform: none;
        color: var(--text-dark);
    }

    .nav-links .nav-support-mobile__link:hover,
    .nav-links .nav-support-mobile__link:focus-visible {
        color: var(--deep-rose);
        border-color: transparent;
    }

    .nav-links .mobile-only-cta {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: auto;
        padding-top: var(--space-5);
        border-top: 1px solid var(--border-soft);
    }

    .nav-links .mobile-only-cta .btn-primary {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        font-size: 0.72rem;
        letter-spacing: 1px;
    }

    .nav-explore__group + .nav-explore__group {
        margin-top: var(--space-3);
        padding-top: var(--space-3);
        border-top: 1px solid var(--border-soft);
    }

    .nav-explore__group-label {
        margin-bottom: var(--space-1);
    }
}

@media (max-width: 767px) {
    .nav-links {
        width: 100%;
        max-width: none;
        border-left: 0;
        padding-inline: var(--space-6);
        gap: var(--space-2);
    }

    body.home-page.nav-open .menu-toggle.active {
        top: calc(var(--promo-bar-height, 0px) + var(--home-nav-gap, 10px) + var(--space-3));
        right: var(--space-5);
    }
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: var(--space-2) 0;
    font-size: var(--text-base);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--deep-rose);
}

.nav-links a:focus-visible,
.nav-explore__summary:focus-visible,
.menu-toggle:focus-visible {
    outline: 2px solid var(--emerald-green);
    outline-offset: 3px;
}

.nav-links a.is-active,
.nav-explore__menu a.is-active {
    color: var(--emerald-green);
}

.nav-links a.is-active::after,
.nav-explore__menu a.is-active::after {
    width: 100%;
}

.nav-links a.btn-primary {
    justify-content: center;
    color: var(--warm-ivory);
}

.nav-item--explore {
    width: 100%;
}

.nav-explore {
    width: 100%;
}

.nav-explore__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    list-style: none;
    cursor: pointer;
    font-size: var(--text-base);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--deep-rose);
}

.nav-explore__summary::-webkit-details-marker {
    display: none;
}

.nav-explore__summary::after {
    content: "+";
    font-size: 1rem;
    line-height: 1;
    color: var(--antique-gold);
}

.nav-explore[open] > .nav-explore__summary::after {
    content: "\2013"; /* en dash */
}

.nav-explore__menu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 var(--space-4);
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.nav-explore__menu a {
    font-size: var(--text-sm);
    letter-spacing: 1px;
    color: var(--text-light);
    text-transform: none;
    min-height: 44px;
}

.nav-explore__group {
    list-style: none;
}

.nav-explore__group + .nav-explore__group {
    margin-top: var(--space-4);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-soft);
}

.nav-explore__group-label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--antique-gold);
}

.nav-explore__group-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.nav-explore__group-list a {
    font-size: var(--text-sm);
    letter-spacing: 0.4px;
    text-transform: none;
    color: var(--text-dark);
}

.nav-cta {
    display: none;
    flex-shrink: 0;
    min-width: 7.25rem;
    white-space: nowrap;
}

.mobile-only-cta {
    display: flex;
    justify-content: center;
    margin-top: var(--space-4);
}

.nav-item--support a {
    font-weight: 500;
}

.nav-support-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    width: 100%;
}

.nav-support-mobile__link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.35rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--text-dark);
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 0.92rem;
    font-weight: 400;
    letter-spacing: 0.15px;
    text-align: left;
    text-transform: none;
    text-decoration: none;
}

.nav-support-mobile__link:hover,
.nav-support-mobile__link:focus-visible {
    color: var(--deep-rose);
    outline: none;
}

.promo-bar {
    display: none;
}

/* ====================================================== */
/* FOOTER */
/* ====================================================== */

.modern-footer {
    padding: var(--space-12) var(--space-5) var(--space-6);
    background: var(--warm-ivory);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    margin-bottom: var(--space-6);
    text-align: left;
    align-items: start;
}

.footer-grid > * {
    min-width: 0;
    align-self: start;
}

.footer-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-3);
}

.footer-lead {
    max-width: 36rem;
    margin: 0;
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    line-height: 1.5;
    color: var(--text-light);
}

.footer-intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer-whatsapp-cta {
    min-width: 11.5rem;
    justify-content: center;
}

.footer-util {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.footer-logo picture {
    display: block;
}

.footer-giant-text {
    display: inline-block;
    margin-bottom: 0;
}

.footer-logo img {
    width: min(100%, 240px);
    height: auto;
    object-fit: contain;
    opacity: 1;
}

.footer-address-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 320px;
    margin-inline: 0;
    gap: 0.45rem;
}

.footer-contact-lines {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin: 0;
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    line-height: 1.45;
}

.footer-contact-lines a {
    color: var(--emerald-green);
    text-decoration: none;
    transition: color var(--transition-fast) ease;
}

.footer-contact-lines a:hover {
    color: var(--deep-rose);
}

.footer-map {
    width: 100%;
    max-width: 320px;
    margin-top: 0;
    aspect-ratio: 16 / 10;
    max-height: 160px;
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
    overflow: hidden;
    background: var(--blush-pink);
}

.footer-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-address-wrapper .btn:hover {
    background-color: var(--antique-gold) !important;
    color: var(--emerald-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(196, 154, 76, 0.14);
}

.footer-heading {
    margin-bottom: 0.85rem;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--emerald-green);
    line-height: 1.2;
}

.footer-heading::after {
    content: "";
    display: block;
    width: 2.75rem;
    height: 1px;
    margin-top: 0.55rem;
    background: var(--border-soft);
}

.footer-newsletter-note {
    margin: 0 0 0.15rem;
    font-size: var(--text-sm);
    line-height: 1.45;
    color: var(--text-light);
}

.footer-tagline {
    width: 100%;
    margin-bottom: 0.15rem;
    font-family: var(--font-accent);
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 1.45;
    color: var(--emerald-green);
}

.footer-address {
    margin-bottom: 0.15rem;
    font-size: var(--text-sm);
    line-height: 1.45;
    color: var(--text-dark);
}

.footer-address-wrapper .btn {
    width: auto;
    min-width: 160px;
    justify-content: center;
    margin-top: 0.15rem;
    padding-block: 0.55rem;
}

.footer-link-icon {
    margin-right: 8px;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-soft);
    font-size: var(--text-sm);
    color: var(--text-light);
    text-align: left;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-1);
    text-align: left;
}

.footer-signoff {
    margin-top: 0;
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    font-weight: 600;
    color: var(--deep-rose);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 2.1rem;
    padding: 0.25rem 0;
    font-size: var(--text-md);
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-light);
}

.social-links a .footer-link-icon {
    color: currentColor;
}

/* ====================================================== */
/* COOKIE CONSENT */
/* ====================================================== */

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 10050;
    max-width: 42rem;
    margin-inline: auto;
    padding: 1.15rem 1.25rem;
    border-radius: var(--radius-soft);
    border: 1px solid var(--border-soft);
    background: var(--text-dark);
    color: var(--warm-ivory);
    box-shadow: 0 16px 40px rgba(43, 34, 30, 0.22);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.cookie-content p {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.55;
    color: var(--warm-ivory);
}

.cookie-link {
    color: var(--champagne-gold);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.cookie-link:hover {
    color: var(--antique-gold);
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.btn-cookie {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-pill);
    font-family: var(--font-sans);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-cookie-primary {
    border: 1px solid var(--deep-rose);
    background: var(--deep-rose);
    color: var(--warm-ivory);
}

.btn-cookie-primary:hover {
    background: #6a1840;
    border-color: #6a1840;
}

.btn-cookie-secondary {
    border: 1px solid rgba(250, 244, 239, 0.35);
    background: transparent;
    color: var(--warm-ivory);
}

.btn-cookie-secondary:hover {
    border-color: var(--warm-ivory);
}

@media (min-width: 600px) {
    .cookie-banner {
        left: 1.5rem;
        right: auto;
        bottom: 1.5rem;
        width: min(28rem, calc(100vw - 3rem));
        margin-inline: 0;
    }

    .cookie-content {
        gap: 1rem;
    }
}

/* ====================================================== */
/* INTERACTIONS */
/* ====================================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow) var(--ease-standard);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.whatsapp-widget {
    position: fixed;
    right: var(--space-6);
    bottom: var(--space-6);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--emerald-green);
    color: var(--warm-ivory);
    box-shadow: var(--shadow-whatsapp);
    z-index: var(--z-overlay);
    transition: transform var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.whatsapp-widget:hover {
    transform: translateY(-5px) scale(1.05);
    background-color: var(--antique-gold);
    color: var(--emerald-green);
    box-shadow: var(--shadow-whatsapp-hover);
}

.whatsapp-widget svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* ====================================================== */
/* SUPPORT PAGES */
/* ====================================================== */

/* ====================================================== */
/* RESPONSIVE: 768PX */
/* ====================================================== */

@media (min-width: 768px) {
    section,
    .section {
        padding: var(--section-padding-desktop);
    }

    .container {
        width: min(100%, 90%);
    }

    
    .feature-grid,
    .collection-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }

    .home-page .brides-gallery .gallery-grid {
        display: flex;
        grid-template-columns: none;
        gap: var(--space-5);
    }

    .home-start-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--space-2) var(--space-8);
    }

    .home-start-path {
        padding: 1.5rem 1rem 1.4rem;
    }

    .home-process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-12);
    }

    .home-process__step {
        display: flex;
        flex-direction: column;
        gap: var(--space-3);
        padding: 0;
        border-bottom: 0;
        border-top: 1px solid var(--border-soft);
        padding-top: var(--space-6);
    }

    .home-process__step:last-child {
        padding-bottom: 0;
    }

    .home-process__num {
        font-size: 2.35rem;
    }

    .home-approach {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 var(--space-10);
        margin-top: var(--space-12);
    }

    .home-approach__item {
        padding: var(--space-6) 0;
    }

    .home-collections-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-8);
        margin-top: var(--space-10);
    }

    .home-collection-tile {
        border-top: 0;
    }

    .home-collection-tile:hover,
    .home-collection-tile:focus-visible {
        border-top-color: transparent;
    }

    .home-collection-tile__body {
        padding-top: 1.25rem;
    }

    .collection-card__body {
        padding: 1.35rem 1.25rem 1.2rem;
    }

    .process-list {
        margin-top: var(--space-16);
    }

    .process-item {
        flex-direction: row;
        text-align: left;
        padding: var(--space-10);
        border-radius: var(--radius-pill);
    }

    .process-num {
        width: 100px;
        margin-bottom: 0;
        font-size: 4rem;
    }

    .process-title {
        font-size: var(--heading-md);
    }

    .faq-question {
        align-items: flex-start;
        gap: var(--space-4);
    }

    .gallery-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
        text-align: left;
        margin-bottom: var(--space-8);
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "intro intro"
            "util util"
            "services support"
            "connect legal";
        gap: var(--space-5) var(--space-5);
        margin-bottom: var(--space-6);
        text-align: left;
    }

    .footer-grid > :nth-child(1) {
        grid-area: intro;
    }

    .footer-grid > :nth-child(2) {
        grid-area: util;
    }

    .footer-grid > :nth-child(3) {
        grid-area: services;
    }

    .footer-grid > :nth-child(4) {
        grid-area: support;
    }

    .footer-grid > :nth-child(5) {
        grid-area: connect;
    }

    .footer-grid > :nth-child(6) {
        grid-area: legal;
    }

    .footer-giant-text {
        letter-spacing: -2px;
    }

    .footer-util {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: var(--space-4);
        align-items: start;
    }

    .footer-address-wrapper {
        max-width: none;
        margin: 0;
        align-items: flex-start;
    }

    .footer-map {
        max-width: none;
        max-height: 180px;
        margin-top: 0;
        align-self: stretch;
    }

    .footer-newsletter-form {
        grid-column: 1 / -1;
        max-width: 28rem;
    }

    .footer-address-wrapper .btn {
        width: auto;
        min-width: 160px;
    }

    .social-links {
        align-items: flex-start;
    }

    .social-links a {
        justify-content: flex-start;
        padding: 0.12rem 0;
        transition: color var(--transition-fast) ease;
    }

    .social-links a:hover {
        color: var(--deep-rose);
    }

    .social-links a:hover svg {
        color: var(--antique-gold);
    }

    .reveal {
        transform: translateY(60px);
        transition-duration: 1s;
    }

    .trust-strip {
        padding: 1.65rem 1.2rem;
    }

    .whatsapp-widget {
        left: 1.25rem;
        right: auto;
        bottom: 1.25rem;
    }

    .whatsapp-widget svg {
        width: 32px;
        height: 32px;
    }
}

/* ====================================================== */
/* RESPONSIVE: 1024PX */
/* ====================================================== */

@media (min-width: 1024px) {
    #navbar {
        top: var(--space-8);
        width: 95%;
        height: 70px;
        padding: 0 var(--space-8);
        display: grid;
        grid-template-columns: max-content 1fr max-content;
        align-items: center;
        column-gap: 1.25rem;
    }

    .logo {
        margin-right: 0;
        justify-self: start;
    }

    .logo-text {
        font-size: clamp(1.24rem, 1.12rem + 0.38vw, 1.34rem);
        letter-spacing: clamp(0.38rem, 0.34rem + 0.12vw, 0.44rem);
    }

    .logo::after {
        width: clamp(38px, 28px + 1vw, 46px);
        margin-left: 0.85rem;
    }

    .menu-toggle,
    .mobile-nav-cta,
    .btn.btn-nav.mobile-nav-cta,
    .btn-nav.mobile-nav-cta {
        display: none;
    }

    .nav-links {
        grid-column: 2;
        position: static;
        width: auto;
        max-height: none;
        height: 100%;
        margin-top: 0;
        padding: 0;
        flex-direction: row;
        align-items: center;
        justify-self: center;
        gap: clamp(0.65rem, 1.1vw, 1.35rem);
        background: transparent;
        border: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        overflow: visible;
    }

    .nav-links > li {
        display: flex;
        align-items: center;
        height: 100%;
    }

    .nav-links > li > a {
        position: relative;
        height: 100%;
        min-height: 0;
        padding: 0;
        font-size: 0.78rem;
        font-weight: 500;
        letter-spacing: 0.75px;
        white-space: nowrap;
        color: var(--text-dark);
        text-transform: uppercase;
    }

    .nav-links > li > a::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: calc(50% - 12px);
        width: 0;
        height: 1px;
        background-color: var(--antique-gold);
        transform: translateX(-50%);
        transition: all var(--transition-fast) ease;
    }

    .nav-links > li > a:hover::after,
    .nav-links > li > a.is-active::after {
        width: 100%;
    }

    .nav-item--explore {
        position: relative;
        width: auto;
        height: 100%;
    }

    .nav-explore {
        position: relative;
        height: 100%;
        width: auto;
    }

    .nav-explore__summary {
        position: relative;
        height: 100%;
        min-height: 0;
        padding: 0;
        font-size: 0.78rem;
        letter-spacing: 0.75px;
        color: var(--text-dark);
    }

    .nav-explore__summary::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: calc(50% - 12px);
        width: 0;
        height: 1px;
        background-color: var(--antique-gold);
        transform: translateX(-50%);
        transition: all var(--transition-fast) ease;
        font-size: 0;
        color: transparent;
    }

    .nav-explore[open] > .nav-explore__summary::after,
    .nav-explore:hover > .nav-explore__summary::after,
    .nav-item--explore:focus-within .nav-explore__summary::after {
        width: 100%;
        content: "";
    }

    .nav-explore__menu {
        position: absolute;
        top: calc(100% + 0.35rem);
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        min-width: 15.5rem;
        width: max-content;
        max-width: 17.5rem;
        padding: var(--space-4) var(--space-5);
        gap: 0;
        background: var(--warm-ivory);
        border: 1px solid var(--glass-border);
        border-radius: var(--radius-soft);
        box-shadow: 0 14px 28px rgba(43, 34, 30, 0.08);
        z-index: calc(var(--z-header) + 2);
    }

    .nav-explore__menu li {
        display: block;
        height: auto;
        width: 100%;
    }

    .nav-explore__group {
        display: block;
        width: 100%;
    }

    .nav-explore__group-label {
        font-family: var(--font-sans);
        font-size: 0.68rem;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--antique-gold);
        margin-bottom: var(--space-2);
    }

    .nav-explore__group-list {
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .nav-explore__group + .nav-explore__group {
        margin-top: var(--space-3);
        padding-top: var(--space-3);
        border-top: 1px solid var(--border-soft);
    }

    .nav-explore__menu a {
        display: block;
        position: static;
        height: auto;
        min-height: 0;
        padding: 0.35rem 0;
        font-size: 0.82rem;
        font-weight: 400;
        letter-spacing: 0.2px;
        text-transform: none;
        color: var(--text-dark);
        white-space: nowrap;
    }

    .nav-explore__menu a:hover {
        color: var(--emerald-green);
    }

    .nav-explore__menu a::after {
        display: none;
    }

    .mobile-only-cta {
        display: none !important;
    }

    body.nav-open {
        overflow: auto;
    }

    
    .feature-grid,
    .gallery-grid,
    .collection-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .home-page .brides-gallery .gallery-grid {
        display: flex;
        grid-template-columns: none;
        gap: var(--space-6);
    }

    .collection-grid {
        gap: 2.5rem;
        margin-top: 3rem;
    }

    .gallery-grid {
        gap: var(--space-8);
    }

    .home-page .brides-gallery .gallery-grid {
        gap: var(--space-6);
    }

    .audience-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-page .feature-grid,
    .home-page .audience-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 980px;
        margin-inline: auto;
    }

    .process-item {
        transition: all 0.4s ease;
    }

    .process-num {
        width: 120px;
    }

    .process-item:hover {
        background: var(--blush-pink);
        transform: translateX(20px);
    }


    .modern-footer {
        padding: 4.5rem 5% var(--space-6);
    }

    .footer-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-areas:
            "intro intro intro intro"
            "util util util util"
            "services support connect legal";
        gap: var(--space-6) var(--space-5);
        margin-bottom: var(--space-6);
    }

    .footer-intro {
        display: grid;
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr) auto;
        gap: var(--space-4) var(--space-6);
        align-items: end;
    }

    .footer-logo {
        grid-column: 1;
    }

    .footer-lead {
        grid-column: 2;
        max-width: 32rem;
        margin-bottom: 0.15rem;
    }

    .footer-intro-actions {
        grid-column: 3;
        justify-self: end;
        align-self: end;
    }

    .footer-util {
        display: grid;
        grid-template-columns: minmax(0, 1.15fr) minmax(260px, 1fr) minmax(240px, 0.95fr);
        gap: var(--space-4) var(--space-6);
        align-items: start;
    }

    .footer-address-wrapper {
        max-width: 28rem;
    }

    .footer-map {
        max-width: none;
        max-height: 190px;
        min-height: 150px;
    }

    .footer-newsletter-form {
        grid-column: auto;
        max-width: none;
        justify-self: stretch;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

/* ====================================================== */
/* RESPONSIVE: 1280PX */
/* ====================================================== */

@media (min-width: 1280px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .nav-cta {
        grid-column: 3;
        display: inline-flex;
        align-items: center;
        justify-self: end;
        height: var(--touch-target);
        padding: 0 1.45rem;
        font-size: var(--text-xs);
        letter-spacing: 0.85px;
        white-space: nowrap;
    }

    .logo-text {
        font-size: 1.42rem;
        letter-spacing: 0.5rem;
    }

    .logo::after {
        width: 54px;
    }

    .nav {
        column-gap: var(--space-6);
    }

    .whatsapp-widget {
        left: auto;
        right: var(--space-6);
        bottom: var(--space-6);
    }
}

/* ====================================================== */
/* ACCESSIBILITY AND MOTION */
/* ====================================================== */

@media (pointer: coarse) {
    * {
        cursor: auto;
    }
}

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

    body::after {
        display: none;
    }
}

/* ====================================================== */
/* HOME + BRIDAL PAGE LAYOUTS */
/* ====================================================== */

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

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

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

.marquee-wrapper {
    background-color: var(--deep-rose);
    color: var(--warm-ivory);
    padding: 1rem 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-item {
    padding: 0 1rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-style: italic;
}

.hero-image-container--delayed {
    transition-delay: 0.1s;
}

.home-page {
    --page-radius-arch: 100px 100px 16px 16px;
    --home-transition-gap: var(--space-10);
    --home-hero-panel: #f8f1e8;
    --home-hero-border: rgba(196, 154, 76, 0.24);
    --home-hero-shadow: 0 22px 50px rgba(43, 34, 30, 0.08);
    --promo-bar-height: 38px;
    --home-nav-height: 82px;
    --home-nav-gap: 10px;
    --home-hero-top-space: 2rem;
}

.home-page .promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: block;
    z-index: calc(var(--z-header) + 2);
    background: linear-gradient(90deg, rgba(6, 61, 51, 1), rgba(11, 72, 60, 0.98), rgba(6, 61, 51, 1));
    color: rgba(250, 244, 239, 0.92);
    border-bottom: 1px solid rgba(235, 214, 178, 0.15);
    height: var(--promo-bar-height);
}

.home-page .promo-bar__inner {
    width: min(calc(100% - 2rem), 1400px);
    height: 100%;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-page .promo-bar__copy {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2.4px;
    text-transform: uppercase;
    color: inherit;
    text-align: center;
    padding-inline: 1rem;
}
.home-page .hero-value-item svg,
.home-page .trust-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.home-page #navbar {
    top: calc(var(--promo-bar-height) + var(--home-nav-gap));
    width: min(calc(100% - 2rem), 1400px);
    max-width: none;
    height: var(--home-nav-height);
    padding: 0 1.75rem;
    background: rgba(250, 244, 239, 0.97);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid rgba(233, 215, 188, 0.92);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 16px 36px rgba(43, 34, 30, 0.06);
}

.home-page #navbar.scrolled {
    top: calc(var(--promo-bar-height) + var(--home-nav-gap));
    background: rgba(250, 244, 239, 0.985);
}

.home-page .logo {
    gap: 0.5rem;
}

.home-page .logo::after {
    width: 64px;
    margin-left: 0.45rem;
}

.home-page .btn-nav {
    min-height: 46px;
    padding-inline: 1.35rem;
    gap: 0.4rem;
    font-size: 0.7rem;
    letter-spacing: 1.15px;
}

.home-page .btn-nav span {
    transition: transform var(--transition-fast) ease;
}

.home-page .btn-nav:hover span {
    transform: translateX(2px);
}

.home-page .trust-strip {
    padding: 0 var(--space-6) var(--space-8);
    background-color: transparent;
}

.home-page .trust-strip__inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 1400px;
    padding: 1.35rem 0;
    background: rgba(250, 244, 239, 0.95);
    border-top: 1px solid rgba(233, 215, 188, 0.8);
    border-bottom: 1px solid rgba(233, 215, 188, 0.8);
}

.home-page .trust-item {
    min-width: 0;
    padding: 0.6rem 1.55rem;
    gap: 0.95rem;
    color: var(--emerald-green);
}

.home-page .trust-item + .trust-item {
    border-left: 1px solid rgba(233, 215, 188, 0.9);
}

.home-page .trust-item--detailed {
    align-items: flex-start;
}

.home-page .trust-icon {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    color: var(--antique-gold);
}

.home-page .trust-item__copy a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.home-page .trust-item__copy a:hover {
    color: var(--deep-rose);
}

.home-page .gbp-trust {
    margin-top: 0;
}

.gbp-trust .trust-item__title {
    margin: 0 0 0.2rem;
}

.gbp-trust .trust-item__copy {
    margin: 0;
}

.home-page .trust-item__title {
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-dark);
}

.home-page .trust-item__copy {
    margin-top: 0.15rem;
    font-size: 0.84rem;
    line-height: 1.45;
    color: var(--text-light);
}

.home-page .marquee-wrapper {
    padding: 0.65rem 0;
}

.home-page .marquee-wrapper + .section-top-standard {
    padding-top: var(--home-transition-gap) !important;
}

.home-page .marquee-wrapper + .section-top-standard .section-header {
    margin-bottom: var(--space-8);
}

.home-page .hero-content p strong {
    color: var(--deep-rose);
    font-weight: 600;
}

.home-page .hero {
    min-height: auto;
    display: flex;
    align-items: center;
    padding-top: calc(var(--promo-bar-height) + var(--home-nav-gap) + var(--home-nav-height) + var(--home-hero-top-space));
    padding-bottom: var(--space-8);
}

.home-page .hero-grid {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
    align-items: center;
    column-gap: clamp(2rem, 4vw, 4rem);
    row-gap: clamp(1.75rem, 3vw, 2.5rem);
    text-align: left;
}

.home-page .hero-grid > * {
    width: 100%;
    min-width: 0;
}

.home-page .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.home-page .hero-content-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(2rem, 4vw, 3.4rem);
    border: 1px solid var(--home-hero-border);
    border-radius: 34px 0 0 34px;
    background:
        radial-gradient(circle at 16% 18%, rgba(235, 214, 178, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(251, 248, 244, 0.96), rgba(246, 237, 228, 0.94)),
        var(--home-hero-panel);
    box-shadow: var(--home-hero-shadow);
}

.home-page .hero-content-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(235, 214, 178, 0.14), transparent 42%),
        radial-gradient(circle at 86% 28%, rgba(196, 154, 76, 0.08), transparent 24%);
    pointer-events: none;
}

.home-page .hero-content-panel::after {
    content: "";
    position: absolute;
    top: 12%;
    right: -2%;
    width: 240px;
    height: 360px;
    opacity: 0.14;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23d6b57b' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M111 11c-10 20-14 38-13 57 18-15 37-21 58-19-8 16-20 29-35 39 23 5 41 17 55 35-22 1-41-4-57-16 10 25 12 49 4 74-14-18-22-39-24-64-7 23-21 41-43 55-1-25 4-48 17-68-20 9-39 12-58 8 11-18 28-31 51-39-17-9-31-21-40-37 21-2 40 2 58 14 1-20-4-39-13-57Z'/%3E%3Cpath d='M111 151c-8 16-12 30-11 45 14-12 29-17 45-16-7 12-16 23-29 30 18 4 32 14 44 28-17 1-32-3-45-13 7 19 9 38 2 57-10-13-17-30-18-50-6 18-17 32-34 43-1-20 3-37 13-53-16 7-31 10-45 6 9-14 22-24 40-30-14-8-24-17-32-29 16-1 31 2 45 11 1-15-2-30-10-44Z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.home-page .hero-content h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.95rem, 5.5vw, 5.15rem);
    line-height: 0.95;
    margin-bottom: 0;
    letter-spacing: -1.2px;
    overflow: hidden;
}

.home-page .hero-content p {
    position: relative;
    z-index: 1;
    max-width: 27rem;
    line-height: 1.7;
    text-wrap: pretty;
}

.home-page .hero-content h1 span.word {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: textReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.home-page .hero-content h1 span.word:nth-child(1) { animation-delay: 0.1s; }
.home-page .hero-content h1 span.word:nth-child(2) { animation-delay: 0.2s; }
.home-page .hero-content h1 span.word:nth-child(3) { animation-delay: 0.3s; }
.home-page .hero-content h1 span.word:nth-child(4) { animation-delay: 0.4s; }
.home-page .hero-content h1 span.word:nth-child(5) { animation-delay: 0.5s; }

.home-page .hero-content .subtitle {
    display: block;
    position: relative;
    z-index: 1;
    margin-bottom: 1.3rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--antique-gold);
}

.home-page .hero-word-accent {
    color: var(--antique-gold);
}

.home-page .home-hero-divider {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    margin: 1.6rem 0 1.35rem;
    color: var(--antique-gold);
}

.home-page .home-hero-divider__line {
    display: inline-block;
    width: 86px;
    height: 1px;
    background: rgba(196, 154, 76, 0.78);
}

.home-page .home-hero-divider__ornament {
    font-size: 0.82rem;
    line-height: 1;
}

.home-page .hero-buttons {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 0.95rem;
    margin-top: 1.7rem;
}

.home-page .hero-buttons .btn {
    min-width: 0;
    padding: 12px 22px;
    font-size: 0.72rem;
    letter-spacing: 1.05px;
}

.home-page .hero-image-container {
    position: relative;
    width: 100%;
    min-width: 0;
    height: clamp(380px, 54vw, 760px);
    margin: 0;
    overflow: hidden;
    border-radius: 0 34px 34px 0;
    box-shadow: var(--home-hero-shadow);
    background: #32190f;
}

.home-page .hero-image-main {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: inherit;
    z-index: 0;
}

.home-page .hero-image-main::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(21, 12, 7, 0.12), rgba(21, 12, 7, 0.22)),
        linear-gradient(90deg, rgba(28, 16, 10, 0.18), transparent 26%, transparent 74%, rgba(28, 16, 10, 0.28));
    pointer-events: none;
}

.home-page .hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 82% 16%;
}

.home-page .hero-product-card {
    position: absolute;
    top: auto;
    right: clamp(1.45rem, 2.8vw, 2.35rem);
    bottom: clamp(1rem, 2.1vw, 1.55rem);
    width: clamp(170px, 18.2vw, 214px);
    padding: 0.78rem;
    border: 1px solid rgba(250, 244, 239, 0.45);
    border-radius: 20px;
    background: rgba(250, 244, 239, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 48px rgba(24, 12, 8, 0.25);
    z-index: 2;
}

.home-page .hero-product-card__media {
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 0.74;
    background: rgba(250, 244, 239, 0.08);
}

.home-page .hero-product-card__media picture,
.home-page .hero-product-card__media img {
    width: 100%;
    height: 100%;
}

.home-page .hero-product-card__media img {
    object-fit: cover;
}

.home-page .hero-product-card__body {
    padding: 1.05rem 0.35rem 0.08rem;
    text-align: center;
}

.home-page .hero-product-card__title,
.home-page .hero-product-card__number,
.home-page .hero-product-card__label {
    margin: 0;
}

.home-page .hero-product-card__title {
    font-family: var(--font-display);
    font-size: 1.58rem;
    color: var(--warm-ivory);
}

.home-page .hero-product-card__number,
.home-page .hero-product-card__label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 1.55px;
    text-transform: uppercase;
}

.home-page .hero-product-card__number {
    margin-top: 0.35rem;
    color: rgba(235, 214, 178, 0.9);
}

.home-page .hero-product-card__label {
    margin-top: 0.55rem;
    color: rgba(250, 244, 239, 0.76);
}

.home-page .home-hero-copy {
    margin: 0;
    max-width: min(100%, 460px);
    font-size: 1.02rem;
    color: var(--text-light);
}

.home-page .hero-value-strip {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.2rem;
    margin-top: 1.7rem;
    padding-top: 1.35rem;
    border-top: 1px solid rgba(196, 154, 76, 0.25);
}

.home-page .hero-value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: 0;
}

.home-page .hero-value-item svg {
    flex: 0 0 22px;
    width: 22px;
    height: 22px;
    margin-top: 0.1rem;
    color: var(--antique-gold);
}

.home-page .hero-value-item__title,
.home-page .hero-value-item__copy {
    margin: 0;
}

.home-page .hero-value-item__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
}

.home-page .hero-value-item__copy {
    margin-top: 0.1rem;
    font-size: 0.78rem;
    color: var(--text-light);
}

.home-page .home-gallery-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 2.8rem);
}

.home-page .home-testimonials-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.home-page .home-faq-title {
    font-size: 3rem;
}

.home-page .home-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.3rem);
}

.home-page .home-gallery-section {
    padding-top: var(--space-8) !important;
}

.home-page .home-how-it-works,
.home-page .home-approach-section,
.home-page .home-gallery-section,
.home-page .home-collections-section,
.home-page .home-pricing-teaser,
.home-page .home-testimonials-section,
.home-page .home-about-section,
.home-page .home-faq-section,
.home-page .home-final-cta-section {
    content-visibility: auto;
    contain-intrinsic-size: 1px 960px;
}

.home-page .home-seo-band {
    padding-bottom: var(--space-12);
}

.home-seo-band__inner {
    max-width: 52rem;
    margin-inline: auto;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-soft);
}

.home-seo-band__title {
    margin: 0 0 var(--space-5);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 3.2vw, 2.05rem);
    font-weight: 500;
    line-height: 1.25;
    color: var(--emerald-green);
    text-wrap: balance;
}

.home-seo-band__copy {
    display: grid;
    gap: var(--space-3);
    margin-bottom: 0;
}

.home-seo-band__copy p {
    margin: 0;
    font-size: var(--text-sm);
    line-height: 1.65;
    color: var(--text-light);
}

.home-seo-band__copy a {
    color: var(--emerald-green);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    text-decoration-thickness: 1px;
}

.home-seo-band__copy a:hover {
    color: var(--deep-rose);
}

@media (min-width: 768px) {
    .home-seo-band__inner {
        max-width: min(100%, 920px);
    }
}

.home-page .brides-gallery {
    margin-top: 0;
    overflow: visible;
}

.home-page .brides-gallery .gallery-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-5);
    margin-bottom: var(--space-8);
    text-align: center;
}

.home-page .brides-gallery .gallery-header__copy {
    max-width: 38rem;
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.home-page .brides-gallery .gallery-header .section-copy {
    margin-bottom: 0;
}

.home-page .brides-gallery .gallery-nav {
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    gap: 0.55rem;
    margin-bottom: 0;
}

.home-page .brides-gallery .gallery-nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    background: var(--surface-card);
    color: var(--emerald-green);
    font-size: 1.05rem;
    line-height: 1;
    cursor: pointer;
    transition: background-color var(--transition-fast) ease, border-color var(--transition-fast) ease, transform var(--transition-fast) ease;
}

.home-page .brides-gallery .gallery-nav-btn:hover {
    border-color: var(--antique-gold);
    background: var(--blush-pink);
}

.home-page .brides-gallery .gallery-nav-btn:disabled {
    opacity: 0.35;
    cursor: default;
}

.home-page .brides-gallery .gallery-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-bottom: var(--space-5);
    scroll-snap-type: x mandatory;
    scroll-padding-inline: max(1.25rem, calc((100vw - min(100vw - 2.5rem, var(--container-xl, 1400px))) / 2));
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
}

.home-page .brides-gallery .gallery-scroll.is-dragging {
    cursor: grabbing;
    scroll-snap-type: none;
    user-select: none;
}

.home-page .brides-gallery .gallery-scroll::-webkit-scrollbar {
    display: none;
}

.home-page .brides-gallery .gallery-grid {
    display: flex;
    align-items: flex-end;
    gap: clamp(0.85rem, 1.6vw, 1.35rem);
    width: max-content;
    min-width: 100%;
    padding-inline: max(1.25rem, calc((100vw - min(100vw - 2.5rem, var(--container-xl, 1400px))) / 2));
    padding-right: max(1.25rem, calc((100vw - min(100vw - 2.5rem, var(--container-xl, 1400px))) / 2 + 8vw));
    grid-template-columns: none;
}

.home-page .brides-gallery .gallery-item {
    flex: 0 0 min(22rem, 78vw);
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-soft);
    background: var(--blush-pink);
    box-shadow: none;
    scroll-snap-align: start;
    aspect-ratio: 4 / 5;
}

.home-page .brides-gallery .gallery-item picture,
.home-page .brides-gallery .gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
}

.home-page .brides-gallery .gallery-item img {
    object-fit: cover;
    transition: transform 1s ease;
}

.home-page .brides-gallery .gallery-item:hover img {
    transform: scale(1.04);
}

@media (min-width: 768px) {
    .home-page .brides-gallery .gallery-scroll {
        scroll-padding-inline: max(5vw, calc((100vw - min(90vw, var(--container-xl, 1400px))) / 2));
    }

    .home-page .brides-gallery .gallery-grid {
        gap: clamp(1rem, 1.8vw, 1.6rem);
        padding-inline: max(5vw, calc((100vw - min(90vw, var(--container-xl, 1400px))) / 2));
        padding-right: max(5vw, calc((100vw - min(90vw, var(--container-xl, 1400px))) / 2 + 10vw));
    }

    .home-page .brides-gallery .gallery-item {
        flex-basis: min(26rem, 42vw);
    }

    .marquee-item {
        padding: 0 2rem;
        font-size: 2rem;
    }

    .home-page {
        --page-radius-arch: 150px 150px 20px 20px;
        --home-transition-gap: var(--space-12);
        --promo-bar-height: 40px;
        --home-nav-gap: 10px;
        --home-hero-top-space: 2.4rem;
    }

    .home-page #navbar {
        padding-inline: 2.1rem;
    }

    .home-page .hero {
        padding-bottom: var(--space-8);
    }

    .home-page .hero-grid {
        grid-template-columns: minmax(0, 0.43fr) minmax(0, 0.57fr);
        column-gap: clamp(1.4rem, 2.6vw, 2.25rem);
        row-gap: 2rem;
    }

    .home-page .hero-content-panel {
        min-height: clamp(520px, 62vw, 700px);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .home-page .hero-image-container {
        height: clamp(520px, 62vw, 700px);
    }

    .studio-showcase {
        grid-template-columns: minmax(0, 0.96fr) minmax(280px, 0.9fr);
        align-items: center;
        min-height: 520px;
    }

    .studio-showcase__media {
        min-height: 470px;
    }

    .studio-card--hero {
        width: min(100%, 320px);
        height: 280px;
    }

    .studio-card--product {
        top: 0.15rem;
        right: 0.2rem;
        width: 132px;
    }

    .studio-card--detail {
        left: 0;
        bottom: 0.6rem;
        width: 138px;
    }

    .studio-card--campaign {
        right: 8.6rem;
        bottom: 0.75rem;
        width: 126px;
    }

    .studio-proof {
        right: 0;
        bottom: 0.4rem;
        width: 128px;
        padding: 0.9rem 0.8rem 0.95rem;
    }

    .studio-proof__media {
        aspect-ratio: 1;
        margin-bottom: 0.7rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    .studio-showcase {
        grid-template-columns: minmax(0, 0.94fr) minmax(250px, 0.86fr);
        align-items: start;
        min-height: 980px;
        padding-top: clamp(2.5rem, 4vw, 3.25rem);
    }

    .studio-showcase__content {
        padding-top: 0.25rem;
    }

    .studio-showcase__media {
        min-height: 560px;
        padding-top: 0.35rem;
    }

    .studio-card--hero {
        inset: 0 auto auto 0;
        width: min(100%, 300px);
        height: 310px;
        z-index: 1;
    }

    .studio-card--product {
        top: 0.5rem;
        right: 0.45rem;
        width: 126px;
        z-index: 3;
    }

    .studio-card--detail {
        left: 0.35rem;
        bottom: 0.35rem;
        width: 136px;
        z-index: 2;
    }

    .studio-card--campaign {
        right: 8.7rem;
        bottom: 0.45rem;
        width: 122px;
        z-index: 2;
    }

    .studio-proof {
        right: 0;
        bottom: 0.45rem;
        width: 126px;
        padding: 0.9rem 0.75rem 0.95rem;
        z-index: 2;
    }

    .studio-proof__media {
        aspect-ratio: 1;
        margin-bottom: 0.7rem;
    }
}

@media (min-width: 1024px) {

    .home-page .hero {
        min-height: auto;
        padding-top: 11.6rem;
        padding-bottom: var(--space-7);
    }

    .home-page .hero-grid {
        grid-template-columns: minmax(0, 0.415fr) minmax(0, 0.585fr);
        gap: clamp(1.45rem, 2.4vw, 2.35rem);
        text-align: left;
    }

    .home-page .nav-links {
        gap: clamp(1.1rem, 1.5vw, 1.8rem);
    }


    .home-page .nav-links > li > a {
        font-size: 0.77rem;
        letter-spacing: 0.95px;
    }


    .home-page .hero-content h1 {
        max-width: 11ch;
        font-size: clamp(3.2rem, 3.95vw, 4.7rem);
        line-height: 0.955;
    }

    .home-page .hero-content p {
        max-width: 27.5rem;
    }

    .home-page .hero-buttons {
        justify-content: flex-start;
    }

    .home-page .hero-content-panel {
        padding-inline: clamp(2.15rem, 2.4vw, 2.85rem);
    }

    .home-page .hero-image-container {
        height: clamp(590px, 54vw, 770px);
        margin-top: 0;
    }

    .studio-showcase {
        grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.92fr);
        align-items: start;
        min-height: 610px;
        padding-top: clamp(4.5rem, 6vw, 5.4rem);
        padding-bottom: clamp(2.8rem, 4vw, 3.4rem);
    }

    .studio-showcase__content {
        padding-top: 1rem;
    }

    .studio-showcase__title {
        margin-bottom: 1.9rem;
    }

    .studio-showcase__copy:last-of-type {
        margin-bottom: 2.2rem;
    }

    .studio-showcase__actions {
        margin-top: 1.25rem;
    }

    .studio-showcase__media {
        min-height: 560px;
        padding-top: 1rem;
    }

    .studio-card--hero {
        inset: 1rem auto auto 0.5rem;
        width: min(100%, 356px);
        height: 320px;
    }

    .studio-card--product {
        top: 0.1rem;
        right: 0;
        width: 122px;
    }

    .studio-card--detail {
        left: 0.35rem;
        bottom: 0;
        width: 150px;
    }

    .studio-card--campaign {
        right: 9.6rem;
        bottom: 0.15rem;
        width: 134px;
    }

    .studio-proof {
        right: 0;
        bottom: -0.1rem;
        width: 152px;
        padding: 1rem 0.95rem 1.05rem;
    }

    .studio-proof__media {
        aspect-ratio: 0.96;
        margin-bottom: 0.85rem;
    }

    .home-page .hero-product-card {
        top: auto;
        right: clamp(1.15rem, 1.7vw, 1.8rem);
        bottom: clamp(1.05rem, 1.8vw, 1.45rem);
        width: clamp(148px, 12vw, 176px);
        animation: float 7s ease-in-out infinite;
    }

    .home-page .brides-gallery .gallery-item {
        flex-basis: min(28rem, 34vw);
    }

    .home-page .brides-gallery .gallery-item:nth-child(even) {
        transform: translateY(-1.15rem);
    }

    .home-page .home-gallery-section {
        padding-top: var(--space-10) !important;
    }
}

@media (max-width: 767px) {
    body.home-page::after {
        display: none;
    }

    .home-page .brides-gallery .gallery-header {
        flex-direction: column;
        align-items: center;
        gap: var(--space-5);
    }

    .home-page .brides-gallery .gallery-nav {
        align-self: center;
    }

    .home-page {
        --home-transition-gap: var(--space-8);
        --promo-bar-height: 32px;
        --home-nav-height: 56px;
        --home-nav-gap: 8px;
        --home-hero-top-space: 2rem;
    }

    .home-page .promo-bar__inner {
        width: calc(100% - 1.25rem);
    }

    .home-page .promo-bar__copy {
        font-size: 0.55rem;
        letter-spacing: 1.1px;
        text-align: center;
    }

    .home-page .hero {
        padding-bottom: var(--space-6);
    }

    .home-page .hero-grid {
        grid-template-columns: 1fr;
        row-gap: 1rem;
    }

    .home-page #navbar {
        width: calc(100% - 1rem);
        padding-inline: 0.95rem;
        border-radius: 18px;
    }

    .home-page #navbar.scrolled {
        top: calc(var(--promo-bar-height) + var(--home-nav-gap));
    }

    .home-page .logo-text {
        font-size: 1rem;
        letter-spacing: 0.28rem;
    }

    .home-page .logo::after {
        width: 34px;
        margin-left: 0.3rem;
    }

    .home-page .mobile-nav-cta {
        min-height: 44px;
        padding-inline: 0.95rem;
        font-size: 0.68rem;
    }

    .home-page .hero-content {
        order: 1;
    }

    .home-page .hero-image-container {
        order: 2;
        height: clamp(360px, 96vw, 470px);
        border-radius: 26px;
    }

    .home-page .hero-content-panel {
        padding: 1.85rem 1.2rem 1.5rem;
        border-radius: 26px;
        box-shadow: 0 12px 24px rgba(43, 34, 30, 0.05);
    }

    .home-page .hero-content-panel::after {
        right: -16%;
        top: auto;
        bottom: -6%;
        width: 180px;
        height: 240px;
    }

    .home-page .hero-content h1 {
        max-width: none;
        font-size: clamp(2.85rem, 12.2vw, 4.25rem);
        line-height: 0.96;
    }

    .home-page .hero-content h1 span.word {
        transform: none;
        opacity: 1;
        animation: none;
    }

    .home-page .hero-content p {
        max-width: 100%;
    }

    .home-page .hero-buttons {
        flex-direction: column;
        gap: 0.85rem;
    }

    .home-page .hero-buttons .btn {
        width: 100%;
    }

    .home-page .home-hero-divider {
        margin: 1.25rem 0 1.1rem;
    }

    .home-page .home-hero-divider__line {
        width: 62px;
    }

    .home-page .hero-value-strip {
        grid-template-columns: 1fr 1fr;
        gap: 0.95rem 0.85rem;
        margin-top: 1.4rem;
        padding-top: 1.15rem;
    }

    .home-page .hero-value-item {
        gap: 0.65rem;
    }

    .home-page .hero-value-item__title {
        font-size: 0.8rem;
    }

    .home-page .hero-value-item__copy {
        font-size: 0.72rem;
    }

    .home-page .hero-product-card {
        top: auto;
        right: 0.55rem;
        bottom: 0.55rem;
        width: min(30%, 128px);
        padding: 0.32rem;
        border-radius: 16px;
    }

    .home-page .hero-image-main img {
        object-position: 78% 12%;
    }

    .home-page .hero-product-card__body {
        padding: 0.5rem 0.08rem 0.04rem;
    }

    .home-page .hero-product-card__title {
        font-size: 0.92rem;
    }

    .home-page .hero-product-card__number,
    .home-page .hero-product-card__label {
        font-size: 0.44rem;
        letter-spacing: 0.9px;
    }

    .home-page .trust-strip {
        padding: 0 var(--space-4) var(--space-6);
    }

    .home-page .trust-strip__inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 0.5rem 0;
        border-radius: 22px;
    }

    .home-page .trust-item {
        padding: 1rem 1rem 0.95rem;
    }

    .home-page .trust-item + .trust-item {
        border-left: 0;
    }

    .home-page .trust-item:nth-child(2n) {
        border-left: 1px solid rgba(233, 215, 188, 0.9);
    }

    .home-page .trust-item:nth-child(n + 3) {
        border-top: 1px solid rgba(233, 215, 188, 0.9);
    }

    .home-page .trust-item__title {
        font-size: 0.84rem;
    }

    .home-page .trust-item__copy {
        font-size: 0.74rem;
    }

    .studio-showcase {
        grid-template-columns: 1fr;
        gap: 1.4rem;
        padding: 1.25rem 1rem 1.5rem;
        min-height: auto;
    }

    .studio-showcase__title {
        max-width: none;
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .studio-showcase__copy {
        margin-bottom: var(--space-5);
    }

    .studio-showcase__copy:last-of-type {
        margin-bottom: var(--space-6);
    }

    .studio-showcase__actions {
        flex-direction: column;
    }

    .studio-showcase__actions .btn {
        width: 100%;
    }

    .studio-showcase__media {
        min-height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.85rem;
        padding: 0;
        align-items: start;
    }

    .studio-card,
    .studio-proof {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        left: auto;
        top: auto;
        width: 100%;
        transform: none;
    }

    .studio-card--hero {
        grid-column: 1 / -1;
    }

    .studio-card--hero .studio-card__media {
        aspect-ratio: 1.02;
    }

    .studio-card--product,
    .studio-card--campaign,
    .studio-card--detail {
        height: auto;
    }

    .studio-card--product .studio-card__media,
    .studio-card--campaign .studio-card__media,
    .studio-card--detail .studio-card__media {
        aspect-ratio: 0.82;
    }

    .studio-card--product {
        order: 2;
    }

    .studio-card--campaign {
        order: 3;
    }

    .studio-card--detail {
        order: 4;
    }

    .studio-proof {
        order: 5;
        grid-column: 1 / -1;
        padding: 1rem 0.95rem 1.05rem;
    }

    .studio-proof__media {
        aspect-ratio: 1.18;
        margin-bottom: 0.75rem;
    }

    .home-page .trust-strip {
        padding-top: var(--space-4);
        padding-bottom: var(--space-4);
    }

    .home-page .marquee-wrapper {
        padding: 0.55rem 0;
    }

    .home-page .marquee-wrapper + .section-top-standard .section-header {
        margin-bottom: var(--space-7);
    }
}

@media (max-width: 479px) {
    .home-page .hero-product-card {
        right: 0.45rem;
        bottom: 0.45rem;
        width: min(26%, 112px);
        padding: 0.26rem;
        border-radius: 14px;
    }

    .home-page .hero-image-main img {
        object-position: 80% 11%;
    }

    .home-page .hero-product-card__body {
        padding: 0.42rem 0.06rem 0.03rem;
    }

    .home-page .hero-product-card__title {
        font-size: 0.82rem;
    }

    .home-page .hero-product-card__number,
    .home-page .hero-product-card__label {
        font-size: 0.4rem;
        letter-spacing: 0.8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .marquee-content,
    .home-page .hero-content h1 span.word {
        animation: none;
    }
}

.home-page .home-hero-addons,
.home-page .home-hero-studio {
    margin: 0.85rem 0 0;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.45;
}

.home-page .home-hero-addons a,
.home-page .home-hero-studio a {
    color: var(--emerald-green);
    text-decoration: none;
    border-bottom: 1px solid rgba(14, 91, 67, 0.28);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.home-page .home-hero-addons a:hover,
.home-page .home-hero-addons a:focus-visible,
.home-page .home-hero-studio a:hover,
.home-page .home-hero-studio a:focus-visible {
    color: var(--deep-rose);
    border-bottom-color: rgba(122, 30, 74, 0.45);
    outline: none;
}

.home-page .home-pricing-teaser__actions {
    margin-top: 0.25rem;
    margin-bottom: 0.75rem;
}

/* ====================================================== */
/* HK-CARD â€” unboxed media-first product card contract */
/* ====================================================== */

.hk-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.hk-card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    width: 100%;
    overflow: hidden;
    background-color: #f9f6f0;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hk-card-media a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.hk-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hk-card:hover .hk-card-media img {
    transform: scale(1.03);
}

.hk-card-context-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
    pointer-events: none;
}

.hk-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
    padding: 14px 0 0 0;
}

.hk-card-header {
    margin-bottom: 0;
}

.hk-card-title {
    font-family: var(--font-display, var(--font-serif, "Cormorant Garamond", Georgia, serif));
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 4px 0;
}

.hk-card-title a {
    color: inherit;
    text-decoration: none;
}

.hk-card-title a:hover,
.hk-card-title a:focus-visible {
    color: var(--deep-rose, #7A1E4A);
    outline: none;
}

.hk-card-subtitle {
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 0.75rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px 0;
}

.hk-card-commercial {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.hk-card-price {
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark, #2B221E);
    margin: 0 0 4px;
    line-height: 1.3;
}

.hk-card-tier,
.hk-card-duration {
    font-weight: 500;
}

.hk-card-floor {
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-dark, #2B221E);
    margin: 0 0 6px;
    line-height: 1.35;
}

.hk-card-price-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
}

.hk-card-price-link {
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--deep-rose, #8b263e);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hk-card-price-link:hover,
.hk-card-price-link:focus-visible {
    color: #5a1727;
    text-decoration: underline;
    outline: none;
}

.hk-card-meta {
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 0.72rem;
    color: #888888;
    margin-top: 4px;
    margin-bottom: 12px;
}

.hk-card-action {
    margin-top: 0;
}

.hk-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 44px;
    font-family: var(--font-sans, "Outfit", sans-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--deep-rose, #8b263e);
    text-decoration: none;
    transition: gap 0.25s ease, color 0.2s ease;
    padding: 2px 0;
}

.hk-card-cta:hover,
.hk-card-cta:focus-visible {
    gap: 10px;
    color: #5a1727;
    outline: none;
}

.hk-cta-icon {
    flex-shrink: 0;
}

.home-collections-grid .hk-card {
    min-width: 0;
}

@media (min-width: 768px) {
    .home-collections-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: var(--space-6);
        max-width: 1100px;
    }
}
