/* ============================================
   NAGABA CLINIC — Styles v3
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --cream: #FFF8F0;
    --cream-dark: #F5EDE3;
    --gold: #C4956A;
    --gold-light: #D4A87A;
    --gold-dark: #A07850;
    --green: #2D4A3E;
    --green-light: #3D6354;
    --green-dark: #1E352B;
    --gray: #6B7B7D;
    --gray-light: #9AACAE;
    --gray-dark: #4A5557;
    --white: #FFFFFF;
    --text: #2C2C2C;
    --text-light: #5A5A5A;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);

    --transition: 0.3s ease;
    --transition-slow: 0.6s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Section Headers ---------- */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.15;
    margin-bottom: 48px;
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-header {
    text-align: center;
    margin-bottom: 16px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    text-decoration: none;
}

.btn--primary {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn--primary:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 74, 62, 0.3);
}

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

.btn--outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--ghost {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 248, 240, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(196, 149, 106, 0.15);
    transition: all var(--transition);
}

.nav--scrolled {
    box-shadow: var(--shadow-sm);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav__logo-icon {
    color: var(--gold);
    font-size: 1.6rem;
}

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

.nav__links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav__links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-dark);
    transition: color var(--transition);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.nav__links a:hover { color: var(--green); }
.nav__links a:hover::after { width: 100%; }

.nav__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--green);
    color: var(--white);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--green-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(45, 74, 62, 0.3);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    transition: all var(--transition);
    border-radius: 2px;
}

/* =============================================
   HERO — FULL-SCREEN CINEMATIC
   ============================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(30, 53, 43, 0.15) 0%,
            rgba(30, 53, 43, 0.25) 25%,
            rgba(30, 53, 43, 0.55) 55%,
            rgba(30, 53, 43, 0.88) 80%,
            rgba(30, 53, 43, 0.95) 100%
        );
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px 80px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 48px;
}

.hero__left {
    max-width: 680px;
}

.hero__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.hero__title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--white);
    line-height: 0.95;
    margin-bottom: 36px;
    letter-spacing: -0.02em;
}

.hero__title em {
    display: block;
    font-style: italic;
    color: var(--gold-light);
    font-size: 1.25em;
    margin-top: 0.05em;
}

.hero__card {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
}

.hero__subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__ctas .btn--primary {
    background: var(--gold);
    border-color: var(--gold);
}

.hero__ctas .btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    box-shadow: 0 8px 24px rgba(196,149,106,0.4);
}

/* Side stats */
.hero__side {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.hero__stat-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 100px;
    padding: 12px 20px;
    white-space: nowrap;
}

.hero__stat-num {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.hero__stat-pill--live {
    gap: 10px;
}

.hero__dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

.hero__scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.4);
    animation: bounce 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   ABOUT — PHOTO + OVERLAPPING TEXT
   ============================================= */
.about {
    padding: 120px 0;
    background: var(--white);
    overflow: hidden;
}

.about__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__photo-col {
    position: relative;
}

.about__photo {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.about__photo-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--green);
    color: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.about__photo-badge span {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
    line-height: 1;
}

.about__text-col {
    padding: 20px 0;
}

.about__text-col .section-label,
.about__text-col .section-title {
    text-align: left;
}

.about__text-col .section-title {
    margin-bottom: 28px;
}

.about__lead {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.8;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.about__body {
    margin-bottom: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* =============================================
   BENTO GALLERY
   ============================================= */
.bento {
    padding: 0 0 120px;
    background: var(--white);
}

.bento__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
    gap: 16px;
}

.bento__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

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

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

.bento__item--large {
    grid-row: 1 / 3;
}

.bento__label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.55));
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* =============================================
   APPROACH — ZIGZAG NUMBERED
   ============================================= */
.approach {
    padding: 120px 0;
    background: var(--cream);
}

.approach__list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.approach__row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.approach__row--right {
    justify-content: flex-end;
}

.approach__num {
    font-family: var(--font-serif);
    font-size: 5rem;
    font-weight: 700;
    color: rgba(196, 149, 106, 0.2);
    line-height: 1;
    flex-shrink: 0;
    min-width: 100px;
    text-align: center;
}

.approach__card {
    background: var(--white);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(196, 149, 106, 0.12);
    max-width: 520px;
    transition: all var(--transition);
}

.approach__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(196, 149, 106, 0.3);
}

.approach__title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.approach__text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* =============================================
   PROCESS — DARK TIMELINE
   ============================================= */
.process {
    padding: 120px 0;
    background: var(--green-dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(196, 149, 106, 0.06);
    top: -200px;
    right: -200px;
    filter: blur(80px);
}

.process .section-label { color: var(--gold-light); }
.process .section-title { color: var(--white); }
.process .section-title em { color: var(--gold-light); }

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline__line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--gold-light), rgba(196,149,106,0.15));
    transform: translateX(-50%);
}

.timeline__item {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline__item:last-child { margin-bottom: 0; }

.timeline__item--left {
    justify-content: flex-end;
    padding-right: calc(50% + 32px);
}

.timeline__item--right {
    padding-left: calc(50% + 32px);
}

.timeline__dot {
    position: absolute;
    left: 50%;
    top: 12px;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--green-dark);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.timeline__card {
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition);
}

.timeline__card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(196, 149, 106, 0.3);
}

.timeline__num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(196, 149, 106, 0.4);
    line-height: 1;
    margin-bottom: 12px;
}

.timeline__title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 10px;
}

.timeline__text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* =============================================
   TEAM — WIDE HORIZONTAL CARDS
   ============================================= */
.team {
    padding: 120px 0;
    background: var(--white);
}

.team__card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 48px;
    align-items: center;
    background: var(--cream);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid rgba(196, 149, 106, 0.15);
    transition: all var(--transition);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team__card:last-child { margin-bottom: 0; }

.team__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.team__card--reverse {
    grid-template-columns: 1fr 300px;
}

.team__img-wrap {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.team__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team__name {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.team__role {
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-weight: 600;
    margin-bottom: 20px;
}

.team__bio {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 24px;
}

.team__social {
    display: flex;
    gap: 12px;
}

.team__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--white);
    color: var(--green);
    transition: all var(--transition);
    border: 1px solid rgba(45, 74, 62, 0.15);
}

.team__social a:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

/* ---------- Location ---------- */
.location {
    padding: 120px 0;
    background: var(--cream);
}

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

.location__address {
    display: flex;
    gap: 16px;
    align-items: start;
    margin-bottom: 32px;
    color: var(--green);
}

.location__address div {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
}

.location__address strong {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--green-dark);
}

.location__distances {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.distance {
    display: flex;
    align-items: center;
    gap: 12px;
}

.distance__city {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--green-dark);
    min-width: 100px;
}

.distance__line {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--gray-light) 0, var(--gray-light) 4px, transparent 4px, transparent 8px);
}

.distance__info {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
    white-space: nowrap;
}

.location__note {
    font-size: 0.88rem;
    color: var(--gold-dark);
    font-weight: 500;
    padding: 12px 16px;
    background: rgba(196, 149, 106, 0.08);
    border-radius: var(--radius-sm);
    border-left: 3px solid var(--gold);
}

/* ---------- FAQ ---------- */
.faq {
    padding: 120px 0;
    background: var(--white);
}

.faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--cream);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    border: 1px solid rgba(196, 149, 106, 0.12);
    overflow: hidden;
    transition: all var(--transition);
}

.faq__item:hover { border-color: rgba(196, 149, 106, 0.3); }
.faq__item[open] { border-color: var(--gold); }

.faq__question {
    padding: 20px 24px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq__question::-webkit-details-marker { display: none; }

.faq__question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--gold);
    transition: transform var(--transition);
}

.faq__item[open] .faq__question::after { transform: rotate(45deg); }

.faq__answer {
    padding: 0 24px 20px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* ---------- CTA Section ---------- */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(196, 149, 106, 0.1);
    top: -200px;
    left: -100px;
    filter: blur(80px);
}

.cta-section__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-section__title em {
    font-style: italic;
    color: var(--gold-light);
}

.cta-section__text {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 500px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-section__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn--primary {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.cta-section .btn--primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.cta-section .btn--outline {
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.cta-section .btn--outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

/* ---------- Footer ---------- */
.footer {
    padding: 64px 0 32px;
    background: var(--green-dark);
    color: rgba(255,255,255,0.7);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.footer__desc { font-size: 0.88rem; line-height: 1.7; }

.footer h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__contact p, .footer__links p {
    font-size: 0.88rem;
    margin-bottom: 8px;
}

.footer__contact a, .footer__links a { transition: color var(--transition); }
.footer__contact a:hover, .footer__links a:hover { color: var(--gold-light); }

.footer__social-links { display: flex; gap: 12px; }

.footer__social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    transition: all var(--transition);
}

.footer__social-links a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 0.82rem;
}

/* ---------- Floating CTA ---------- */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    background: var(--green);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 32px rgba(45, 74, 62, 0.4);
    transition: all var(--transition);
    animation: pulse-cta 3s ease-in-out infinite;
}

.floating-cta:hover {
    background: var(--green-light);
    transform: translateY(-2px);
}

@keyframes pulse-cta {
    0%, 100% { box-shadow: 0 8px 32px rgba(45, 74, 62, 0.4); }
    50% { box-shadow: 0 8px 48px rgba(45, 74, 62, 0.6); }
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    background: var(--white);
    border-top: 1px solid rgba(196, 149, 106, 0.2);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.1);
    padding: 20px 24px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner--visible { transform: translateY(0); }

.cookie-banner__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner__text {
    font-size: 0.88rem;
    color: var(--text-light);
    flex: 1;
}

.cookie-banner__text a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all var(--transition);
    font-family: var(--font-sans);
}

.cookie-banner__btn--accept {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.cookie-banner__btn--accept:hover { background: var(--green-light); }

.cookie-banner__btn--reject {
    background: transparent;
    color: var(--green);
    border-color: var(--green);
}

.cookie-banner__btn--reject:hover { background: var(--cream); }

.cookie-banner__btn--settings {
    background: transparent;
    color: var(--gray);
    border-color: transparent;
}

.cookie-banner__btn--settings:hover { color: var(--green); }

.cookie-banner__btn--save {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
    margin-top: 12px;
}

.cookie-banner__details {
    display: none;
    max-width: 1200px;
    margin: 16px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(196, 149, 106, 0.15);
}

.cookie-banner__details--visible { display: block; }

.cookie-banner__option { margin-bottom: 8px; }

.cookie-banner__option label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text);
    cursor: pointer;
}

.cookie-banner__option small { color: var(--gray); }

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in--visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .about__wrapper { grid-template-columns: 1fr 1fr; gap: 40px; }
    .bento__grid { grid-template-rows: 200px 200px; }
    .team__card { grid-template-columns: 240px 1fr; gap: 32px; padding: 32px; }
    .team__card--reverse { grid-template-columns: 1fr 240px; }
    .footer__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav__links { display: none; }
    .nav__cta { display: none; }
    .nav__hamburger { display: flex; }

    .nav__links--open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(196, 149, 106, 0.15);
        box-shadow: var(--shadow-md);
    }

    .nav__links--open a { font-size: 1.1rem; }

    /* Hero mobile */
    .hero__content {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 60px;
    }

    .hero__title { font-size: clamp(2.5rem, 10vw, 3.5rem); }

    .hero__side {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero__stat-pill { padding: 8px 14px; }
    .hero__stat-num { font-size: 1.2rem; }
    .hero__stat-label { font-size: 0.75rem; }

    /* About mobile */
    .about__wrapper { grid-template-columns: 1fr; gap: 32px; }
    .about__photo { height: 300px; }
    .about__photo-badge { bottom: -16px; right: 16px; }

    /* Bento mobile */
    .bento__grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 200px 180px 180px;
    }

    .bento__item--large {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    /* Approach mobile */
    .approach__row,
    .approach__row--right {
        flex-direction: column;
        text-align: center;
    }

    .approach__row--right { flex-direction: column; }
    .approach__num { font-size: 3.5rem; min-width: auto; }
    .approach__card { max-width: 100%; }

    /* Timeline mobile */
    .timeline__line { left: 24px; }

    .timeline__item--left,
    .timeline__item--right {
        padding-left: 56px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline__dot {
        left: 24px;
    }

    /* Team mobile */
    .team__card,
    .team__card--reverse {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 24px;
    }

    .team__card--reverse .team__img-wrap {
        order: -1;
    }

    .team__img-wrap {
        max-width: 280px;
        margin: 0 auto;
    }

    .team__social { justify-content: center; }

    /* Location mobile */
    .location__grid { grid-template-columns: 1fr; }

    /* Footer mobile */
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }

    .floating-cta { display: flex; }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero { min-height: 100svh; }
    .hero__content { padding-bottom: 48px; }
    .hero__card { padding: 20px; }
    .hero__ctas { flex-direction: column; }
    .hero__ctas .btn { width: 100%; justify-content: center; }

    .bento__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 180px);
    }

    .bento__item--large {
        grid-column: 1;
        grid-row: 1;
    }

    .cta-section__buttons { flex-direction: column; align-items: center; }
    .btn--large { width: 100%; justify-content: center; }
}
