:root {
    --purple: #a12274;
    --purple-light: #c4459a;
    --purple-dark: #7a1a57;
    --gray: #48484a;
    --off-white: #faf9f7;
    --warm-white: #f5f3ef;
    --text-dark: #2a2a2a;
    --text-mid: #5a5a5a;
    --teal: #71c7ad;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Jost", sans-serif;
    font-weight: 300;
    color: var(--text-dark);
    background: var(--off-white);
    overflow-x: hidden;
    font-size: 1.18rem;
}

/* ---- NAV ---- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    transition:
        background 0.4s,
        box-shadow 0.4s;
}
nav.scrolled {
    background: rgba(250, 249, 247, 0.97);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.08);
}
.nav-logo img {
    height: 100px;
    width: auto;
}
.nav-logo .logo-white {
    display: block;
}
.nav-logo .logo-color {
    display: none;
}
nav.scrolled .nav-logo .logo-white {
    display: none;
}
nav.scrolled .nav-logo .logo-color {
    display: block;
}
.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    transition: color 0.3s;
}
nav.scrolled .nav-links a {
    color: var(--gray);
}
.nav-links a:hover {
    color: var(--purple) !important;
}
.nav-cta {
    background: var(--purple) !important;
    color: white !important;
    padding: 0.5rem 1.4rem;
    border-radius: 2px;
}
.nav-cta:hover {
    background: var(--purple-dark) !important;
}

/* ---- HERO ---- */
#hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
/*
   * HERO BACKGROUND:
   * Replace the CSS below with a real photo by adding:
   * background-image: url('YOUR_IMAGE_URL') to .hero-bg
   * Recommended free image: https://images.pexels.com/photos/14064414/pexels-photo-14064414.jpeg
   * (Rays of Sunlight on Misty Forest by Hugo Sykes, free on Pexels)
   */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url(Images/field-4021971_1920.jpg);
    background-size: cover;
    background-position: center center;
    /*
    background:
      radial-gradient(ellipse at 60% 30%, rgba(42,99,122,0.5) 0%, transparent 55%),
      radial-gradient(ellipse at 15% 75%, rgba(113,199,173,0.18) 0%, transparent 50%),
      radial-gradient(ellipse at 90% 85%, rgba(161,34,116,0.25) 0%, transparent 45%),
      linear-gradient(160deg, #0b1e2c 0%, #162a38 28%, #0d1d28 58%, #140a16 100%);
    */
}
/* Dark overlay — keeps text readable over a real photo */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(10, 16, 22, 0.82) 0%,
        rgba(10, 16, 22, 0.65) 45%,
        rgba(10, 16, 22, 0.25) 100%
    );
    pointer-events: none;
}
.hero-noise {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 3rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%;
}
.hero-ctas-wrap {
    grid-column: 1 / -1;
}
.hero-title-row {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 1rem;
}
.hero-text {
    max-width: 540px;
    animation: fadeUp 1s ease both;
}
.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.8rem;
    display: block;
}
/* Hero right: typographic statement */
.hero-right {
    animation: fadeUp 1s 0.25s ease both;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.hero-statement {
    border-left: 2px solid rgba(113, 199, 173, 0.4);
    padding-left: 1.5rem;
}
.hero-statement p {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.65rem;
    font-weight: 598;
    font-style: italic;
    color: rgba(240, 236, 232, 0.6);
    line-height: 1.65;
}
.hero-pillars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.hero-pillar {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.pillar-line {
    width: 30px;
    height: 1px;
    background: var(--teal);
    flex-shrink: 0;
}
.pillar-text {
    font-size: 0.98rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(240, 236, 232, 0.5);
    font-weight: bold;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240, 236, 232, 0.3);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: bounce 2.5s infinite;
    z-index: 2;
}
.hero-scroll::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(240, 236, 232, 0.3), transparent);
}

/* CLIENT-FOCUSED headline */
.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.1;
    color: #f0ece8;
    margin-bottom: 2rem;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}
.hero-title em {
    font-style: italic;
    color: #d48ab8;
}
.hero-sub {
    font-size: 1.3rem;
    line-height: 1.85;
    color: rgba(240, 236, 232, 0.72);
    max-width: 620px;
    margin-bottom: 3rem;
    font-weight: 300;
}
.hero-sub strong {
    color: rgba(240, 236, 232, 0.92);
    font-weight: 400;
}
.hero-ctas {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.btn-primary {
    display: inline-block;
    background: var(--purple);
    color: white;
    text-decoration: none;
    padding: 1rem 2.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition:
        background 0.3s,
        transform 0.2s;
}
.btn-primary:hover {
    background: var(--purple-dark);
    transform: translateY(-1px);
}
.btn-second {
    display: inline-block;
    background: transparent;
    color: rgba(161, 34, 116, 0.6);
    text-decoration: none;
    padding: 1rem 2.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(161, 34, 116, 0.6);
    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        transform 0.2s;
}
.btn-second:hover {
    border-color: var(--purple);
    box-shadow: 0 0 20px rgba(161, 34, 116, 0.3);
    transform: translateY(-1px);
}
.btn-ghost {
    display: inline-block;
    border: 1px solid rgba(240, 236, 232, 0.3);
    color: rgba(240, 236, 232, 0.75);
    text-decoration: none;
    padding: 1rem 2.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s;
}
.btn-ghost:hover {
    border-color: rgba(240, 236, 232, 0.75);
    color: #f0ece8;
}

/* Hero trust signals */
.hero-trust {
    margin-top: 4rem;
    display: flex;
    gap: 2.5rem;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp 1s 0.4s ease both;
}
.trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.trust-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: #f0ece8;
    line-height: 1;
}
.trust-label {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    color: rgba(240, 236, 232, 0.4);
    text-transform: uppercase;
}
.trust-divider {
    width: 1px;
    height: 36px;
    background: rgba(240, 236, 232, 0.15);
}

.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(240, 236, 232, 0.3);
    font-size: 0.62rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    animation: bounce 2.5s infinite;
    z-index: 2;
}
.hero-scroll::after {
    content: "";
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(240, 236, 232, 0.3), transparent);
}

/* ---- PROBLEM SECTION (client-focused) ---- */
#problem {
    background: var(--off-white);
    padding: 5rem 3rem;
}
.problem-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}
.problem-card {
    padding: 2.5rem 2rem;
    border-top: 2px solid rgba(161, 34, 116, 0.15);
}
.problem-card:first-child {
    border-top-color: var(--purple);
}
.problem-q {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 400;
    font-style: italic;
    line-height: 1.45;
    color: var(--text-dark);
    margin-bottom: 1rem;
}
.problem-a {
    font-size: 1.18rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ---- VIDEO ---- */
#video {
    background: var(--warm-white);
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.video-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    transition: transform 0.2s ease;
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 960px) {
    .video-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ---- QUOTE ---- */
.quote-section {
    background: var(--purple);
    padding: 5rem 3rem;
    text-align: center;
}
.quote-section blockquote {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 300;
    font-style: italic;
    color: white;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.65;
}
.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-family: "Jost", sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-style: normal;
}

/* ---- SHARED ---- */
section {
    padding: 6rem 3rem;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.section-label {
    font-size: 0.98rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1rem;
    display: block;
}
.section-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.section-title em {
    font-style: italic;
    color: var(--purple);
}
.section-body {
    font-size: 1.18rem;
    line-height: 1.9;
    color: var(--text-mid);
    max-width: 580px;
}
hr.divider {
    border: none;
    border-top: 1px solid rgba(161, 34, 116, 0.2);
    margin: 1.5rem 0;
    max-width: 60px;
}

/* ---- ABOUT ---- */
#about {
    background: var(--warm-white);
}
.about-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: start;
}
.about-photo-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}
.about-photo-wrap::after {
    content: "";
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 55%;
    height: 55%;
    border: 1px solid rgba(161, 34, 116, 0.22);
    border-radius: 2px;
    z-index: 0;
}
.about-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 2px;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}
.stat {
    border-left: 2px solid var(--purple);
    padding-left: 1rem;
}
.stat-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--purple);
    line-height: 1;
}
.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--text-mid);
    margin-top: 0.3rem;
    line-height: 1.4;
}
.about-right {
    padding-top: 0.5rem;
}
.credential {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}
.credential:last-child {
    border-bottom: none;
}
.credential-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--purple);
    margin-top: 0.5rem;
    flex-shrink: 0;
}
.credential-text {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-mid);
}
.credential-text strong {
    color: var(--text-dark);
    font-weight: 500;
}

/* ---- WORK / SERIES ---- */
#work {
    background: var(--off-white);
}
.work-intro {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 4rem;
}
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.article-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 2px;
    border-top: 3px solid var(--purple);
    transition:
        transform 0.3s,
        box-shadow 0.3s;
    cursor: pointer;
}
.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.article-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 3rem;
    font-weight: 300;
    color: rgba(161, 34, 116, 0.12);
    line-height: 1;
    margin-bottom: 1rem;
}
.article-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.35;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}
.article-sub {
    font-size: 0.78rem;
    color: var(--purple);
    letter-spacing: 0.06em;
    font-style: italic;
    margin-bottom: 1rem;
}
.article-body {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--text-mid);
}
.read-more {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--purple);
    text-decoration: none;
    border-bottom: 1px solid rgba(161, 34, 116, 0.3);
    padding-bottom: 2px;
    transition: border-color 0.3s;
}

/* ---- SERVICES ---- */
#services {
    background: var(--gray);
}
#services .section-title {
    color: white;
}
#services .section-label {
    color: var(--teal);
}
.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 3rem;
}
.services-intro p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.service-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 2.5rem;
    border-radius: 2px;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.service-card:hover {
    border-color: rgba(161, 34, 116, 0.45);
    background: rgba(161, 34, 116, 0.04);
}
.service-icon {
    width: 36px;
    height: 2px;
    background: var(--purple);
    margin-bottom: 1.5rem;
}
.service-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.8rem;
}
.service-desc {
    font-size: 1.18rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.5);
}

/* ---- FAQ ---- */
#faq {
    background: var(--warm-white);
}
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: start;
}
.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    padding: 1.5rem 0;
    cursor: pointer;
}
.faq-item:first-child {
    padding-top: 0;
}
.faq-q {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-q::after {
    content: "+";
    font-size: 1.2rem;
    color: var(--purple);
    flex-shrink: 0;
    transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
    transform: rotate(45deg);
}
.faq-a {
    font-size: 0.9rem;
    line-height: 1.85;
    color: var(--text-mid);
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.3s;
}
.faq-item.open .faq-a {
    max-height: 400px;
    padding-top: 1rem;
}

/* ---- CONTACT ---- */
#contact {
    background: linear-gradient(155deg, #0d1f2d 0%, #1a2e3a 35%, #0f1e28 65%, #160b18 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}
#contact::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(161, 34, 116, 0.18) 0%, transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}
#contact .section-title {
    color: #f0ece8;
}
#contact .section-label {
    color: var(--teal);
}
.contact-sub {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(240, 236, 232, 0.55);
    max-width: 540px;
    margin: 0 auto 2.8rem;
}
.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}
.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
}
.contact-item-label {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(240, 236, 232, 0.3);
}
.contact-item-value {
    font-size: 0.88rem;
    color: rgba(240, 236, 232, 0.65);
    text-decoration: none;
    transition: color 0.3s;
}
.contact-item-value:hover {
    color: #f0ece8;
}

/* ---- FOOTER ---- */
footer {
    background: #080006;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-logo img {
    height: 30px;
    width: auto;
    opacity: 0.35;
    transition: opacity 0.3s;
}
.footer-logo img:hover {
    opacity: 0.65;
}
.footer-copy {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.05em;
}
.footer-social {
    display: flex;
    gap: 1.2rem;
}
.footer-social a {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.22);
    text-decoration: none;
    transition: color 0.3s;
}
.footer-social a:hover {
    color: var(--purple-light);
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes bounce {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(7px);
    }
}
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Safety fallback — if JS observer fails, still show content */
@media (max-width: 960px) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* ---- MODALS ---- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(5px);
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.modal {
    background: var(--off-white);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3rem;
    border-radius: 2px;
    position: relative;
    transform: translateY(18px);
    transition: transform 0.3s;
}
.modal-overlay.open .modal {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-mid);
    line-height: 1;
}
.modal-label {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 0.8rem;
    display: block;
}
.modal-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.15rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.modal-sub {
    font-size: 1.15rem;
    color: var(--purple);
    font-style: italic;
    margin-bottom: 1.5rem;
}
.modal-body {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-mid);
}
.modal-body p {
    margin-bottom: 1rem;
}
.modal-body h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--text-dark);
    margin: 1.5rem 0 0.5rem;
}

/* ---- MOBILE ---- */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    width: 22px;
    height: 1.5px;
    background: rgba(240, 236, 232, 0.8);
    display: block;
    transition: background 0.4s;
}
nav.scrolled .hamburger span {
    background: var(--gray);
}
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 0, 6, 0.97);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
}
.mobile-menu.open {
    display: flex;
}
.mobile-menu a {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    color: #f0ece8;
    text-decoration: none;
    font-weight: 300;
}
.mobile-menu a:hover {
    color: var(--purple-light);
}
.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: #f0ece8;
    font-size: 1.8rem;
    cursor: pointer;
}
/* ---- TABLET ---- */
@media (max-width: 960px) {
    nav {
        padding: 1rem 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .hero-content {
        padding: 100px 1.5rem 4rem;
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hero-title-row {
        text-align: left;
    }
    .hero-trust {
        gap: 1.5rem;
    }
    .trust-divider {
        display: none;
    }
    section {
        padding: 4rem 1.5rem;
    }
    #problem {
        padding: 3rem 1.5rem;
    }
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-photo {
        max-width: 300px;
        aspect-ratio: 1/1;
    }
    .faq-grid,
    .work-intro {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .articles-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .services-intro {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    footer {
        flex-direction: column;
        text-align: center;
    }
    .contact-details {
        gap: 1.5rem;
    }
    .modal {
        padding: 2rem;
    }
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
}


  /* ---- TESTIMONIAL SLIDER ---- */
  .t-slider-outer {
    position: relative;
    overflow: hidden;
    padding: 0 3rem;
    user-select: none;
  }
  .t-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
  }
  .t-card {
    background: white;
    border-radius: 2px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    border-top: 3px solid var(--purple);
    box-shadow: 0 4px 24px rgba(0,0,0,0.05);
    flex: 0 0 calc(33.333% - 1rem);
    min-width: calc(33.333% - 1rem);
    box-sizing: border-box;
    transition: box-shadow 0.3s;
  }
  .t-card:hover { box-shadow: 0 8px 36px rgba(0,0,0,0.1); }
  .t-quote {
    font-size: 3.5rem;
    font-family: 'Cormorant Garamond', serif;
    color: rgba(161,34,116,0.15);
    line-height: 1;
    margin-bottom: 1rem;
  }
  .t-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.75;
    color: var(--text-dark);
    flex: 1;
    margin-bottom: 1.8rem;
  }
  .t-author {
    border-top: 1px solid rgba(0,0,0,0.07);
    padding-top: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
  }
  .t-author strong { font-size: 0.88rem; font-weight: 500; color: var(--text-dark); }
  .t-author span   { font-size: 0.78rem; color: var(--text-mid); letter-spacing: 0.05em; }

  /* Arrows */
  .t-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    background: white;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    width: 44px; height: 44px;
    font-size: 1.1rem;
    cursor: pointer;
    color: var(--purple);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: background 0.25s, color 0.25s, border-color 0.25s;
    z-index: 10;
  }
  .t-arrow:hover { background: var(--purple); color: white; border-color: var(--purple); }
  .t-prev { left: 0; }
  .t-next { right: 0; }
  .t-arrow:disabled { opacity: 0.25; cursor: default; }
  .t-arrow:disabled:hover { background: white; color: var(--purple); border-color: rgba(0,0,0,0.1); }

  /* Dots */
  .t-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 0 3rem;
  }
  .t-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(161,34,116,0.2);
    border: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    padding: 0;
  }
  .t-dot.active {
    background: var(--purple);
    transform: scale(1.3);
  }

  @media (max-width: 960px) {
    .t-slider-outer { padding: 0 3rem; }
    .t-card {
      flex: 0 0 calc(100% - 0rem);
      min-width: calc(100% - 0rem);
      padding: 2rem 1.75rem;
    }
    .t-prev { left: 0; }
    .t-next { right: 0; }
  }

  @media (max-width: 540px) {
    .t-slider-outer { padding: 0 2.75rem; }
    .t-card {
      flex: 0 0 100%;
      min-width: 100%;
      padding: 1.75rem 1.25rem;
    }
    .t-text {
      font-size: 1rem;
      line-height: 1.7;
    }
    .t-quote {
      font-size: 2.75rem;
      margin-bottom: 0.75rem;
    }
    .t-arrow {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }
    .t-dots { padding: 0 2.75rem; margin-top: 1.5rem; }
  }

  @media (min-width: 961px) and (max-width: 1200px) {
    .t-card { flex: 0 0 calc(50% - 0.75rem); min-width: calc(50% - 0.75rem); }
  }

