/* =====================================================
    DESIGN TOKENS — Semantic CSS Custom Properties
    Layout-Component Methodology
    ===================================================== */

:root {
    /* — Color Palette — */
    --color-bg-base:          #F5F3EF;
    --color-bg-surface:       #FFFFFF;
    --color-bg-deep:          #12243A;
    --color-bg-card:          #EEF1F6;
    --color-bg-accent-soft:   #DDE6F0;

    --color-brand-navy:       #12243A;
    --color-brand-blue:       #2B5C8A;
    --color-brand-sky:        #5B9FD4;
    --color-brand-gold:       #B8975A;
    --color-brand-gold-light: #D4B07B;

    --color-text-primary:     #12243A;
    --color-text-secondary:   #4A5D73;
    --color-text-muted:       #8A9BB0;
    --color-text-inverse:     #FFFFFF;
    --color-text-accent:      #B8975A;

    --color-border-subtle:    rgba(18,36,58,0.10);
    --color-border-strong:    rgba(18,36,58,0.25);

    /* — Typography Scale — */
    --font-display:   'Cormorant Garamond', Georgia, serif;
    --font-body:      'DM Sans', sans-serif;

    --text-hero:      clamp(3.2rem, 8vw, 7rem);
    --text-section:   clamp(2rem, 4vw, 3.2rem);
    --text-heading:   clamp(1.4rem, 2.5vw, 2rem);
    --text-subhead:   clamp(1rem, 1.8vw, 1.25rem);
    --text-body:      1rem;
    --text-small:     0.875rem;
    --text-label:     0.75rem;

    /* — Spacing Scale — */
    --space-2xs: 0.25rem;
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* — Layout — */
    --layout-max-width:   1200px;
    --layout-gutter:      clamp(1.25rem, 5vw, 3rem);
    --layout-section-pad: clamp(4rem, 8vw, 8rem);

    /* — Radius — */
    --radius-sm:  6px;
    --radius-md:  14px;
    --radius-lg:  24px;
    --radius-xl:  40px;
    --radius-pill: 999px;

    /* — Shadows — */
    --shadow-card:    0 4px 32px rgba(18,36,58,0.08);
    --shadow-elevated:0 16px 56px rgba(18,36,58,0.14);
    --shadow-float:   0 8px 40px rgba(37,211,102,0.35);

    /* — Transitions — */
    --transition-fast:   150ms ease;
    --transition-base:   300ms ease;
    --transition-slow:   500ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background-color: var(--color-bg-base);
    color: var(--color-text-primary);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* =====================================================
    LAYOUT
    ===================================================== */
.l-container {
    width: 100%;
    max-width: var(--layout-max-width);
    margin-inline: auto;
    padding-inline: var(--layout-gutter);
}
.l-section { padding-block: var(--layout-section-pad); }
.l-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.l-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
@media (max-width: 900px) { .l-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .l-grid-2, .l-grid-3 { grid-template-columns: 1fr; } }

/* =====================================================
    NAV
    ===================================================== */
.c-nav {
    position: fixed; inset-block-start: 0; inset-inline: 0;
    z-index: 100; padding-block: var(--space-md);
    transition: background var(--transition-base), box-shadow var(--transition-base);
}
.c-nav.is-scrolled {
    background: rgba(33, 37, 73, 0.4);
    backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--color-border-subtle);
}
.c-nav__inner { display: flex; align-items: center; justify-content: space-between; }
.c-nav__logo {
    font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
    color: var(--color-brand-navy); letter-spacing: 0.02em; line-height: 1.2;
}
.c-nav__logo img {
    height: 90px; width: auto; display: block;
}
.c-nav__logo span {
    display: block; font-size: var(--text-label); font-family: var(--font-body);
    font-weight: 400; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--color-brand-gold);
}
.c-nav__links { display: flex; align-items: center; gap: var(--space-lg); }
.c-nav__link {
    font-size: var(--text-small); font-weight: 400; letter-spacing: 0.08em;
    text-transform: uppercase; color: var(--color-text-inverse);
    transition: color var(--transition-fast);
}
.c-nav__link:hover { color: var(--color-brand-gold); }
.c-nav__cta {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    padding: 0.6rem 1.4rem; background: var(--color-brand-navy);
    color: white; border-radius: var(--radius-pill);
    font-size: var(--text-small); font-weight: 500; letter-spacing: 0.05em;
    transition: background var(--transition-fast), transform var(--transition-fast);
}
.c-nav__cta:hover { background: var(--color-brand-blue); transform: translateY(-1px); }
.c-nav__hamburger {
    display: none; flex-direction: column; gap: 5px; cursor: pointer;
    background: none; border: none; padding: var(--space-xs);
}
.c-nav__hamburger span {
    display: block; width: 24px; height: 2px; background: var(--color-brand-navy);
    border-radius: 2px; transition: transform var(--transition-base), opacity var(--transition-base);
}
@media (max-width: 768px) {
    .c-nav__hamburger { display: flex; }
    .c-nav__links { display: none; }
    .c-nav.is-open .c-nav__links {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; inset-inline: 0;
    background: var(--color-bg-base);
    padding: var(--space-md) var(--layout-gutter);
    gap: var(--space-md); box-shadow: var(--shadow-card);
    }
}

/* =====================================================
    HERO
    ===================================================== */
    .c-hero__slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    }

    .c-hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    }

    .c-hero__slide.is-active {
    opacity: 1;
    }

    .c-hero__slide img {
    
    position: absolute;
    bottom: -350px;
    }

.c-hero {
    position: relative; min-height: 100svh;
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: end; overflow: hidden;
    background: var(--color-bg-deep); padding-block-start: 0px;
}
.c-hero__bg {
    position: absolute; inset: 0; pointer-events: none;
    background:
    radial-gradient(ellipse 60% 70% at 80% 40%, rgba(91,159,212,0.18) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 20% 80%, rgba(184,151,90,0.12) 0%, transparent 60%);
}
.c-hero__grid {
    position: absolute; inset: 0; pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
}
.c-hero__content {
    position: relative; z-index: 2;
    padding: var(--space-2xl) var(--layout-gutter) var(--space-2xl) var(--space-2xl);
    display: flex; flex-direction: column; gap: var(--space-md);
}
.c-hero__eyebrow {
    display: inline-flex; align-items: center; gap: var(--space-sm);
    font-size: var(--text-label); font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-brand-gold);
}
.c-hero__eyebrow::before {
    content: ''; display: block; width: 28px; height: 1px; background: var(--color-brand-gold);
}
.c-hero__title {
    font-family: var(--font-display); font-size: var(--text-hero);
    font-weight: 300; line-height: 1.05;
    color: var(--color-text-inverse); letter-spacing: -0.02em;
}
.c-hero__title em { font-style: italic; color: var(--color-brand-gold-light); }
.c-hero__subtitle {
    font-size: var(--text-subhead); font-weight: 300;
    color: rgba(255,255,255,0.65); max-width: 38ch; line-height: 1.7;
}
.c-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-sm); margin-block-start: var(--space-sm); }
.c-hero__image-col { position: relative; align-self: stretch; min-height: 600px; }
.c-hero__image-ph {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #2B5C8A 0%, #12243A 60%);
    display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
}
.c-hero__image-ph img {
    position: absolute; top: -180px;
}
.c-hero__image-ph::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, var(--color-bg-deep) 0%, transparent 30%);
}
.c-hero__ph-shape {
    position: relative; z-index: 2;
    width: 70%; opacity: 0.12; margin-bottom: -4px;
}
.c-hero__card {
    position: absolute; bottom: 150px; right: var(--layout-gutter); z-index: 3;
    background: rgba(255,255,255,0.08); backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md); color: white; font-size: var(--text-small);
}
.c-hero__card strong { display: block; font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; }
.c-hero__scroll {
    position: absolute; bottom: var(--space-lg); left: var(--space-2xl); z-index: 3;
    display: flex; align-items: center; gap: var(--space-sm);
    color: rgba(255,255,255,0.4); font-size: var(--text-small);
    letter-spacing: 0.1em; text-transform: uppercase;
}
.c-hero__scroll-line {
    width: 40px; height: 1px; background: rgba(255,255,255,0.25); position: relative; overflow: hidden;
}
.c-hero__scroll-line::after {
    content: ''; position: absolute; inset-block: 0; width: 40%;
    background: var(--color-brand-gold); animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0% { left: -40%; } 100% { left: 140%; } }
@media (max-width: 768px) {
    .c-hero { grid-template-columns: 1fr; min-height: auto; }
    .c-hero__content { padding: var(--space-xl) var(--layout-gutter) var(--space-lg); }
    .c-hero__image-col { min-height: 360px; }
    .c-hero__scroll { display: none; }
        .c-hero__slide img {
    
    position: absolute;
    bottom:-150px;
    }
    .c-hero__card {
    position: absolute; bottom: 10px; right: var(--layout-gutter); z-index: 3;
    
}
.c-hero__eyebrow {
    display: none; 
}
.c-hero__title {
    margin-top: 90px;
}
}

/* =====================================================
    BADGE STRIP
    ===================================================== */
.c-strip { background: var(--color-brand-gold); padding-block: var(--space-sm); overflow: hidden; }
.c-strip__track {
    display: flex; gap: var(--space-xl); align-items: center;
    animation: marquee 22s linear infinite; white-space: nowrap;
}
.c-strip__item {
    display: flex; align-items: center; gap: var(--space-sm);
    font-size: var(--text-small); font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: white; flex-shrink: 0;
}
.c-strip__dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* =====================================================
    INTRO
    ===================================================== */
.c-intro__inner {
    display: grid; grid-template-columns: 1fr 2fr;
    gap: var(--space-2xl); align-items: center;
}
.c-intro__label {
    font-size: var(--text-label); font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-brand-gold); margin-bottom: var(--space-sm);
}
.c-intro__h {
    font-family: var(--font-display); font-size: var(--text-section);
    font-weight: 300; line-height: 1.2; color: var(--color-brand-navy);
}
.c-intro__h em { font-style: italic; }
.c-intro__body p {
    font-size: var(--text-subhead); font-weight: 300;
    color: var(--color-text-secondary); line-height: 1.8; margin-bottom: var(--space-md);
}
.c-intro__stats {
    display: flex; gap: var(--space-xl); margin-top: var(--space-lg);
    padding-top: var(--space-lg); border-top: 1px solid var(--color-border-subtle);
}
.c-intro__stat-val {
    font-family: var(--font-display); font-size: 2.8rem;
    font-weight: 300; color: var(--color-brand-navy); line-height: 1;
}
.c-intro__stat-lbl { font-size: var(--text-small); color: var(--color-text-muted); margin-top: var(--space-2xs); }
@media (max-width: 768px) {
    .c-intro__inner { grid-template-columns: 1fr; gap: var(--space-lg); }
    .c-intro__stats { flex-wrap: wrap; gap: var(--space-md); }
}

/* =====================================================
    SECTION HEADER
    ===================================================== */
.c-sh { margin-bottom: var(--space-2xl); }
.c-sh--center { text-align: center; max-width: 600px; margin-inline: auto; margin-bottom: var(--space-2xl); }
.c-sh__eye {
    font-size: var(--text-label); font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-brand-gold); margin-bottom: var(--space-sm);
}
.c-sh__h {
    font-family: var(--font-display); font-size: var(--text-section);
    font-weight: 300; line-height: 1.15; color: var(--color-brand-navy);
}
.c-sh__h em { font-style: italic; }
.c-sh__desc {
    margin-top: var(--space-md); font-size: var(--text-body);
    font-weight: 300; color: var(--color-text-secondary); line-height: 1.8;
}

/* =====================================================
    TREATMENT CARD
    ===================================================== */
.c-card {
    background: var(--color-bg-surface); border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-card);
    display: flex; flex-direction: column;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.c-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-elevated); }
.c-card__img {
    height: 220px;
    background: linear-gradient(135deg, var(--color-bg-accent-soft) 0%, #C8D8E8 100%);
    position: relative; display: flex; align-items: center; justify-content: center;
}
.c-card__img-ph {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: var(--space-xs); color: var(--color-brand-navy); opacity: 0.3;
    font-size: var(--text-small); font-weight: 400; letter-spacing: 0.05em;
}
.c-card__img-icon { font-size: 2.5rem; line-height: 1; }
.c-card__badge {
    position: absolute; top: var(--space-md); right: var(--space-md);
    background: var(--color-brand-navy); color: white;
    font-size: var(--text-label); font-weight: 500; letter-spacing: 0.08em;
    padding: 0.3rem 0.8rem; border-radius: var(--radius-pill);
}
.c-card__body { padding: var(--space-lg); flex: 1; display: flex; flex-direction: column; }
.c-card__tag {
    font-size: var(--text-label); font-weight: 500; letter-spacing: 0.15em;
    text-transform: uppercase; color: var(--color-brand-gold); margin-bottom: var(--space-xs);
}
.c-card__title {
    font-family: var(--font-display); font-size: var(--text-heading);
    font-weight: 400; color: var(--color-brand-navy); margin-bottom: var(--space-sm); line-height: 1.25;
}
.c-card__desc {
    font-size: var(--text-body); font-weight: 300;
    color: var(--color-text-secondary); line-height: 1.75; flex: 1;
}
.c-card__areas { margin-top: var(--space-md); padding-top: var(--space-md); border-top: 1px solid var(--color-border-subtle); }
.c-card__areas-lbl {
    font-size: var(--text-label); font-weight: 500; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--color-text-muted); margin-bottom: var(--space-xs);
}
.c-card__chips { display: flex; flex-wrap: wrap; gap: var(--space-xs); }
.c-chip {
    background: var(--color-bg-card); color: var(--color-brand-navy);
    font-size: var(--text-label); font-weight: 400;
    padding: 0.3rem 0.75rem; border-radius: var(--radius-pill);
    border: 1px solid var(--color-border-subtle);
}
.c-card__dur {
    margin-top: var(--space-md); display: flex; align-items: center;
    gap: var(--space-xs); font-size: var(--text-small); color: var(--color-text-muted);
}
.c-card__dur-dot { width: 6px; height: 6px; background: var(--color-brand-gold); border-radius: 50%; flex-shrink: 0; }

/* =====================================================
    FEATURED TREATMENT
    ===================================================== */
.c-feat {
    background: var(--color-brand-navy); border-radius: var(--radius-xl);
    overflow: hidden; display: grid; grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-elevated); margin-block: var(--space-xl);
}
.c-feat__media {
    background: linear-gradient(135deg, #1E3A5A 0%, #2B5C8A 100%);
    min-height: 460px; display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.c-feat__media::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, transparent 60%, var(--color-brand-navy));
}
.c-feat__media-text {
    font-size: 4rem; opacity: 0.12; color: white;
    font-family: var(--font-display); letter-spacing: -0.05em;
    line-height: 1.1; text-align: center; position: relative; z-index: 1;
}
.c-feat__content {
    padding: var(--space-2xl) var(--space-xl);
    color: white; display: flex; flex-direction: column;
    justify-content: center; gap: var(--space-md);
}
.c-feat__tag {
    font-size: var(--text-label); font-weight: 500;
    letter-spacing: 0.2em; text-transform: uppercase; color: var(--color-brand-gold);
}
.c-feat__title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 300; line-height: 1.15;
}
.c-feat__title em { font-style: italic; color: var(--color-brand-gold-light); }
.c-feat__desc { font-size: var(--text-body); font-weight: 300; color: rgba(255,255,255,0.7); line-height: 1.8; }
.c-feat__products { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-sm); }
.c-feat__product {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md); padding: var(--space-md);
}
.c-feat__product-name { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; margin-bottom: var(--space-xs); }
.c-feat__product-desc { font-size: var(--text-small); color: rgba(255,255,255,0.6); line-height: 1.6; }
@media (max-width: 768px) {
    .c-feat { grid-template-columns: 1fr; }
    .c-feat__media { min-height: 240px; }
    .c-feat__content { padding: var(--space-xl) var(--layout-gutter); }
}

/* =====================================================
    PROCESS STEPS
    ===================================================== */
.s-process { background: var(--color-bg-surface); }
.c-steps {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0; position: relative;
}
.c-steps::before {
    content: ''; position: absolute; top: 28px;
    left: calc(12.5% + 16px); right: calc(12.5% + 16px);
    height: 1px; background: var(--color-border-strong);
}
.c-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: var(--space-md); }
.c-step__num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--color-brand-navy); color: white;
    font-family: var(--font-display); font-size: 1.4rem; font-weight: 300;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-md); position: relative; z-index: 1; flex-shrink: 0;
}
.c-step:nth-child(even) .c-step__num { background: var(--color-brand-gold); }
.c-step__title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400; color: var(--color-brand-navy); margin-bottom: var(--space-xs); }
.c-step__desc { font-size: var(--text-small); color: var(--color-text-muted); line-height: 1.7; }
@media (max-width: 768px) {
    .c-steps { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
    .c-steps::before { display: none; }
}
@media (max-width: 480px) { .c-steps { grid-template-columns: 1fr; } }

/* =====================================================
    GALLERY
    ===================================================== */
.s-gallery { background: var(--color-bg-base); }
.c-gallery {
    display: grid; grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px; gap: var(--space-sm);
    border-radius: var(--radius-xl); overflow: hidden;
}
.c-gallery__item {
    background: var(--color-bg-accent-soft);
    display: flex; align-items: center; justify-content: center;
}
.c-gallery__item  img {
    object-fit: cover; width: 100%; height: 100%;
    
}
.c-gallery__item:first-child { grid-row: 1 / 3; background: linear-gradient(160deg, #C8D8E8, #A8C0D8); }
.c-gallery__item:nth-child(2) { background: linear-gradient(160deg, #DDE6F0, #C8D8E8); }
.c-gallery__item:nth-child(3) { background: linear-gradient(160deg, #EEF1F6, #DDE6F0); }
.c-gallery__item:nth-child(4) { background: linear-gradient(160deg, #C8D8E8, #B8C8D8); }
.c-gallery__item:nth-child(5) { background: linear-gradient(160deg, #A8C0D8, #98B0C8); }
.c-gallery__ph {
    font-family: var(--font-display); font-size: 0.85rem;
    color: var(--color-brand-navy); opacity: 0.3; text-align: center;
    letter-spacing: 0.1em; text-transform: uppercase;
}
@media (max-width: 768px) {
    .c-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .c-gallery__item:first-child { grid-row: auto; height: 180px; grid-column: 1 / 3; }
    .c-gallery__item { height: 150px; }
}

/* =====================================================
    TESTIMONIALS
    ===================================================== */
.s-testimonials { background: var(--color-bg-card); }
.c-testi {
    background: var(--color-bg-surface); border-radius: var(--radius-lg);
    padding: var(--space-lg); box-shadow: var(--shadow-card);
}
.c-testi__stars { color: var(--color-brand-gold); font-size: 1rem; margin-bottom: var(--space-sm); letter-spacing: 2px; }
.c-testi__quote {
    font-family: var(--font-display); font-size: 1.1rem; font-weight: 300;
    font-style: italic; color: var(--color-brand-navy); line-height: 1.7; margin-bottom: var(--space-md);
}
.c-testi__author { display: flex; align-items: center; gap: var(--space-sm); }
.c-testi__avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-bg-accent-soft);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1rem;
    color: var(--color-brand-navy); flex-shrink: 0;
}
.c-testi__name { font-size: var(--text-small); font-weight: 500; color: var(--color-brand-navy); }
.c-testi__loc { font-size: var(--text-label); color: var(--color-text-muted); }

/* =====================================================
    CTA BANNER
    ===================================================== */
.c-cta {
    background: var(--color-brand-navy); border-radius: var(--radius-xl);
    padding: var(--space-2xl); display: grid;
    grid-template-columns: 1fr auto; gap: var(--space-xl);
    align-items: center; position: relative; overflow: hidden;
}
.c-cta::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(184,151,90,0.15) 0%, transparent 65%);
}
.c-cta__eye {
    font-size: var(--text-label); font-weight: 500; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--color-brand-gold); margin-bottom: var(--space-sm);
}
.c-cta__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 300; color: white; line-height: 1.2; }
.c-cta__title em { font-style: italic; color: var(--color-brand-gold-light); }
.c-cta__desc { font-size: var(--text-body); color: rgba(255,255,255,0.6); margin-top: var(--space-sm); font-weight: 300; }
.c-cta__actions { display: flex; flex-direction: column; gap: var(--space-sm); align-items: flex-end; }
@media (max-width: 768px) {
    .c-cta { grid-template-columns: 1fr; text-align: center; }
    .c-cta__actions { align-items: center; }
}

/* =====================================================
    BUTTONS
    ===================================================== */
.c-btn {
    display: inline-flex; align-items: center; gap: var(--space-xs);
    padding: 0.85rem 2rem; border-radius: var(--radius-pill);
    font-family: var(--font-body); font-size: var(--text-small); font-weight: 500;
    letter-spacing: 0.05em; cursor: pointer; border: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    text-decoration: none;
}
.c-btn:hover { transform: translateY(-2px); }
.c-btn--primary { background: var(--color-brand-gold); color: white; box-shadow: 0 4px 20px rgba(184,151,90,0.4); }
.c-btn--primary:hover { background: var(--color-brand-gold-light); box-shadow: 0 8px 30px rgba(184,151,90,0.5); }
.c-btn--ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.3); }
.c-btn--ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }
.c-btn--dark { background: var(--color-brand-navy); color: white; box-shadow: var(--shadow-card); }
.c-btn--dark:hover { background: var(--color-brand-blue); }

/* =====================================================
    CONTACT
    ===================================================== */
.s-contact { background: var(--color-bg-surface); }

/* Desktop: 2-column grid — info left, form right */
.c-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: start;
}

/* Info column */
.c-contact__info-col {
    display: flex;
    flex-direction: column;
}

.c-contact__intro {
    margin-bottom: var(--space-md);
    font-size: var(--text-body);
    font-weight: 300;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.c-contact__item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding-block: var(--space-md);
    border-bottom: 1px solid var(--color-border-subtle);
}

.c-contact__item:first-of-type { border-top: 1px solid var(--color-border-subtle); }

.c-contact__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--color-bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.c-contact__text { display: flex; flex-direction: column; gap: 2px; }

.c-contact__lbl {
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.c-contact__val {
    font-size: var(--text-body);
    color: var(--color-brand-navy);
    font-weight: 400;
    line-height: 1.6;
}

/* Form card */
.c-form {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--color-border-subtle);
}

.c-form__h {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: var(--space-lg);
    color: var(--color-brand-navy);
    line-height: 1.2;
}

.c-form__group { margin-bottom: var(--space-md); }

.c-form__label {
    display: block;
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: var(--space-xs);
}

.c-form__input {
    width: 100%;
    padding: 0.85rem var(--space-md);
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--color-text-primary);
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    appearance: none;
    -webkit-appearance: none;
}

.c-form__input:focus {
    border-color: var(--color-brand-blue);
    box-shadow: 0 0 0 3px rgba(43,92,138,0.10);
}

textarea.c-form__input { resize: vertical; min-height: 120px; }

select.c-form__input {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238A9BB0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.c-form__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    width: 100%;
    padding: 1rem var(--space-lg);
    background: var(--color-brand-navy);
    color: white;
    border: none;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: var(--shadow-card);
}

.c-form__submit:hover {
    background: var(--color-brand-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

@media (max-width: 900px) {
    .c-contact { grid-template-columns: 1fr; gap: var(--space-xl); }
    .c-form { padding: var(--space-lg); }
}

/* =====================================================
    FOOTER
    ===================================================== */
.c-footer {
    background: var(--color-brand-navy);
    color: white;
    padding-block: var(--space-2xl);
}

.c-footer__inner {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
    align-items: start;
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(255,255,255,0.10);
    margin-bottom: var(--space-lg);
}

/* Brand column */
.c-footer__brand { display: flex; flex-direction: column; gap: 0; }
.c-footer__brand img { width: 300px; }

.c-footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.c-footer__brand-tag {
    font-size: var(--text-label);
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-brand-gold);
    margin-bottom: var(--space-md);
}

.c-footer__brand-desc {
    font-size: var(--text-small);
    color: rgba(255,255,255,0.50);
    line-height: 1.75;
    max-width: 30ch;
}

.c-footer__brand-wa {
    margin-top: var(--space-md);
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(37,211,102,0.15);
    border: 1px solid rgba(37,211,102,0.3);
    color: #6DEBA0;
    font-size: var(--text-small);
    font-weight: 400;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    transition: background var(--transition-fast);
    width: fit-content;
}

.c-footer__brand-wa:hover { background: rgba(37,211,102,0.25); }

/* Nav columns */
.c-footer__col { display: flex; flex-direction: column; }

.c-footer__col-title {
    font-size: var(--text-label);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-brand-gold);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.c-footer__link {
    display: block;
    font-size: var(--text-small);
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.65rem;
    line-height: 1.4;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.c-footer__link:hover { color: white; padding-left: 4px; }

/* Bottom bar */
.c-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.c-footer__copy {
    font-size: var(--text-small);
    color: rgba(255,255,255,0.30);
}

@media (max-width: 1024px) {
    .c-footer__inner { grid-template-columns: 1.8fr 1fr 1fr; }
    .c-footer__inner > *:last-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
    .c-footer__inner { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
    .c-footer__brand { grid-column: 1 / -1; }
    .c-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 380px) {
    .c-footer__inner { grid-template-columns: 1fr; }
}

/* =====================================================
    FAB — WhatsApp
    ===================================================== */
.c-fab {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    background: #25D366;
    color: #ffffff;
    border-radius: var(--radius-pill);
    padding: 0.75rem 1.25rem 0.75rem 0.85rem;
    box-shadow: 0 8px 32px rgba(37,211,102,0.40), 0 2px 8px rgba(0,0,0,0.15);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: var(--text-small);
    font-weight: 500;
    white-space: nowrap;
    /* No overflow:hidden — keeps pulse ring visible */
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.c-fab:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 48px rgba(37,211,102,0.50), 0 4px 12px rgba(0,0,0,0.15);
    color: #ffffff;
}

/* Pulse ring — sibling of .c-fab, not a child, so overflow doesn't clip */
.c-fab-pulse-ring {
    position: fixed;
    bottom: calc(var(--space-lg) + 4px);
    right: calc(var(--space-lg) + 4px);
    z-index: 199;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(37,211,102,0.35);
    pointer-events: none;
    animation: fabRingPulse 2.4s ease-out infinite;
}

@keyframes fabRingPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    70%  { transform: scale(2.2); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

.c-fab__icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}

.c-fab__label {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.c-fab__label-sub {
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.85;
    letter-spacing: 0.01em;
}

.c-fab__label-main {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

/* On small screens — shrink to icon-only */
@media (max-width: 480px) {
    .c-fab { padding: 0.9rem; border-radius: 50%; }
    .c-fab__label { display: none; }
    .c-fab__icon { width: 28px; height: 28px; }
}

/* =====================================================
    SCROLL REVEAL
    ===================================================== */
.js-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.js-reveal.is-visible { opacity: 1; transform: none; }
.js-reveal-d1 { transition-delay: 0.1s; }
.js-reveal-d2 { transition-delay: 0.2s; }
.js-reveal-d3 { transition-delay: 0.3s; }
.js-reveal-d4 { transition-delay: 0.4s; }

.u-center { text-align: center; }
.u-mt-md { margin-top: var(--space-md); }
.u-mt-lg { margin-top: var(--space-lg); }