/* ====================================================== */
/* 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: 'Cinzel', serif;
    --font-accent: 'Poppins', 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,
h5,
h6,
p,
blockquote,
figure,
ul,
ol {
    margin: 0;
}

ul,
ol {
    padding: 0;
}

img {
    display: block;
    max-width: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

img.loaded {
    opacity: 1 !important;
}

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

button,
input,
textarea,
select {
    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,
.container-sm,
.container-lg,
.container-xl {
    width: min(100%, calc(100% - 3rem));
    margin-inline: auto;
}

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

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

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

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

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

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

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

.section-light {
    background-color: var(--warm-ivory);
}

.section-accent {
    background-color: var(--blush-pink);
}

.stack {
    display: flex;
    flex-direction: column;
    gap: var(--stack-gap);
}

.stack-sm {
    --stack-gap: var(--space-2);
}

.stack-md {
    --stack-gap: var(--space-4);
}

.stack-lg {
    --stack-gap: var(--space-6);
}

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

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

.split-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    text-align: center;
}

.auto-grid {
    display: grid;
    gap: var(--auto-grid-gap);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, var(--auto-grid-min, 220px)), 1fr));
}

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

.grid-2 {
    gap: var(--space-6);
}

.grid-3,
.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 */
/* ====================================================== */

.display-heading {
    font-family: var(--font-display);
    font-size: var(--heading-xl);
    font-weight: 400;
    line-height: 1;
    color: var(--emerald-green);
}

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

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

.body-text {
    font-family: var(--font-sans);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-light);
}

.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-copy--narrow {
    max-width: 720px;
}

.section-copy--wide {
    max-width: 820px;
}

.section-copy--dark {
    color: var(--text-dark);
}

.section-copy--left {
    margin-inline: 0;
    text-align: left;
}

.section-copy--small {
    font-size: 0.95rem;
}

.section-copy--emphasis {
    font-style: italic;
    font-weight: 500;
}

.section-copy--top-spaced {
    margin-top: var(--space-12);
}

.caption-text {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    line-height: 1.5;
    color: var(--text-muted);
}

.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);
}

.section-kicker--spaced {
    margin-bottom: 1rem;
}

.section-kicker--soft {
    margin-bottom: 0.75rem;
}

.section-note {
    font-size: 0.85rem;
    color: var(--text-light);
}

.list-clean {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

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

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

.hidden {
    display: none !important;
}

.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;
}

.mt-auto {
    margin-top: auto;
}

.w-full {
    width: 100%;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-small {
    gap: var(--space-2);
}

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

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

.rounded {
    border-radius: var(--radius-soft);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.border-soft {
    border: 1px solid var(--border-soft);
}

.italic {
    font-style: italic;
}

.gold-accent {
    color: var(--antique-gold);
}

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

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

.section-header--compact {
    margin-bottom: var(--space-7);
}

.section-header--left {
    margin-left: 0;
    margin-right: auto;
    text-align: left;
}

.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-header--left .section-title,
.section-header--left .section-intro {
    margin-inline: 0;
}

.section-header--left .section-header__actions {
    justify-content: flex-start;
}

.section-header--left .section-copy {
    margin-inline: 0;
    text-align: left;
}

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

.section-followup .section-note {
    margin-top: var(--space-4);
}

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

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

.section-top-spacious {
    padding-top: var(--space-18) !important;
}

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

.section-bottom-spacious {
    padding-bottom: var(--space-18) !important;
}

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

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

.section-top-soft {
    padding-top: var(--space-3) !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: "→";
    transition: transform var(--transition-fast) ease;
}

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

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

.btn-block {
    width: 100%;
}

.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;
}

.icon-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--touch-target);
    height: var(--touch-target);
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
}

/* ====================================================== */
/* 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);
}

.card--soft {
    background: var(--blush-pink);
}

.card--bordered {
    box-shadow: none;
}

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

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

/* ====================================================== */
/* 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 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;
}

.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);
}

.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;
}

.card--featured .pricing-badge {
    background: var(--antique-gold);
    color: var(--text-dark);
}

.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;
}

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

.bundle-card__title {
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--emerald-green);
}

.bundle-card__lead {
    margin-bottom: 0.5rem;
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--text-dark);
}

.bundle-card__copy {
    margin-bottom: 1rem;
    font-size: var(--text-lg);
    color: var(--text-dark);
}

.bundle-card__accent {
    color: var(--deep-rose);
    font-weight: 600;
}

/* ====================================================== */
/* 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-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-container--left {
    margin-inline: 0;
}

.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;
}

.trust-icon--text {
    font-family: var(--font-sans);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
    transform: translateY(-1px);
}

.trust-label {
    color: inherit;
}

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

.trust-strip__note-inner {
    max-width: var(--section-header-width);
    margin-inline: auto;
    text-align: center;
}

.trust-strip__note-title {
    margin-bottom: 0.35rem;
    color: var(--emerald-green);
}

.trust-strip__note-copy {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ====================================================== */
/* 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__eyebrow {
    margin-bottom: var(--space-2);
}

.cta-panel__title {
    max-width: var(--section-header-width);
    margin: 0 auto var(--space-4);
}

.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);
}

.rating-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.rating-label {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--text-dark);
}

.section-frame {
    margin-top: var(--space-4);
    margin-bottom: 3.5rem;
}

.cluster-start {
    justify-content: flex-start;
}

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

.mb-space-8 {
    margin-bottom: var(--space-8);
}

.spotlight-panel {
    padding: 2.5rem;
    text-align: left;
    background: linear-gradient(180deg, rgba(251, 248, 244, 1), rgba(246, 237, 228, 0.85));
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-soft);
}

.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;
}

.narrative-signoff {
    margin: 0;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--antique-gold);
}

.left-content-panel {
    max-width: var(--reading-width);
}

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

.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-dark);
}

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

.form-input:focus,
input:focus,
textarea:focus,
select:focus {
    border-color: var(--emerald-green);
    box-shadow: 0 0 0 3px rgba(14, 91, 67, 0.08);
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-hidden {
    display: none;
}

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

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

nav {
    position: fixed;
    top: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 2rem);
    max-width: var(--container-lg);
    height: 60px;
    padding: 0 var(--space-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    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: all 0.4s ease;
}

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

.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;
    margin-right: 10px;
}

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

.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: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: 10px;
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
    list-style: none;
    background: var(--warm-ivory);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-soft);
    box-shadow: 0 18px 36px rgba(43, 34, 30, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-fast) ease;
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

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

.nav-links a {
    display: flex;
    align-items: center;
    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.btn-primary {
    justify-content: center;
    color: var(--warm-ivory);
}

.nav-cta {
    display: none;
}

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

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

.modern-footer {
    padding: var(--space-16) var(--space-6) var(--space-8);
    background: var(--warm-ivory);
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-12);
    margin-bottom: var(--space-12);
    text-align: center;
}

.footer-logo picture {
    display: block;
}

.footer-giant-text {
    display: inline-block;
    margin-bottom: var(--space-6);
}

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

.footer-address-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 350px;
    margin-inline: auto;
}

.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: var(--space-4);
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--emerald-green);
}

.footer-tagline {
    width: 100%;
    margin-bottom: var(--space-6);
    font-family: var(--font-accent);
    font-size: var(--text-md);
    font-weight: 400;
    line-height: 1.6;
    color: var(--emerald-green);
}

.footer-address {
    margin-bottom: var(--space-4);
    font-size: var(--text-md);
    line-height: 1.6;
    color: var(--text-dark);
}

.footer-contact-link {
    display: inline-flex;
    align-items: center;
    margin-bottom: var(--space-6);
    font-weight: 500;
    color: var(--emerald-green);
}

.footer-link-icon {
    margin-right: 8px;
}

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

.footer-meta-accent {
    color: var(--deep-rose);
    font-weight: 500;
}

.footer-heading--minor {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-subtext {
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--text-dark);
}

.footer-divider {
    margin-top: var(--space-8);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-soft);
}

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

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

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-4);
    font-size: 0.85rem;
}

.footer-legal-links a {
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast) ease;
}

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

.footer-signoff {
    margin-top: var(--space-4);
    font-family: var(--font-display);
    font-size: var(--text-lg);
    font-style: italic;
    color: var(--antique-gold);
}

.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2);
    font-size: var(--text-lg);
    color: var(--emerald-green);
}

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

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

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

.cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-modal);
    background-color: var(--deep-rose);
    transform: translate(-50%, -50%);
    transition: width var(--transition-fast), height var(--transition-fast), background-color var(--transition-fast);
}

.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--antique-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-overlay);
    transform: translate(-50%, -50%);
    transition:
        width var(--transition-fast),
        height var(--transition-fast),
        background-color var(--transition-fast),
        transform 0.1s ease-out;
}

.cursor-hover .cursor-dot {
    width: 12px;
    height: 12px;
    background-color: var(--warm-ivory);
    mix-blend-mode: difference;
}

.cursor-hover .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(235, 214, 178, 0.2);
    border-color: transparent;
}

.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;
}

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

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

    .section-tight {
        padding: var(--section-tight-desktop);
    }

    .section-wide {
        padding: var(--section-wide-desktop);
    }

    .container,
    .container-sm,
    .container-lg,
    .container-xl {
        width: min(100%, 90%);
    }

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

    .grid-4 {
        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);
    }

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

    .split-layout {
        justify-content: space-between;
    }

    .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);
    }

    nav {
        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 {
        display: none;
    }

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

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

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

    .nav-links 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 a:hover::after {
        width: 100%;
    }

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

    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-16);
        text-align: left;
    }

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

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

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

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

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

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

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

    .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) {
    .grid-3,
    .feature-grid,
    .gallery-grid,
    .collection-grid,
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

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

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

    .process-num {
        width: 120px;
    }

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

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

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: var(--space-8);
        margin-bottom: 6rem;
    }
}

/* ====================================================== */
/* 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;
    }

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

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

    body::after {
        display: none;
    }
}
