/* ============================================================
   ORRENAUVIO — MODERN GHIBLI STYLE (Simplified)
   Logo Colors: Sky Azure #38BDEF · Ocean #1A3FA0 · Navy #0C1D78
   Ghibli Warmth: Cream #F0EAD8 · Gold #C9A44A
   Fonts: Cormorant Garamond (headings) · Nunito (body)
   ============================================================ */

:root {
    --sky-azure:   #38BDEF;
    --sky-light:   #82CEED;
    --sky-pale:    #C4E8F7;
    --ocean:       #1A3FA0;
    --ocean-mid:   #2451B8;
    --navy:        #0C1D78;

    --cream:       #F0EAD8;
    --cream-light: #FAF7EF;
    --gold:        #C9A44A;
    --gold-light:  #E8C97A;

    --text-dark:   #1A2848;
    --text-mid:    #3A5578;
    --text-soft:   #6A85A0;

    --card-bg:         rgba(255, 253, 248, 0.93);
    --card-border:     rgba(201, 164, 74, 0.22);
    --card-shadow:     0 6px 24px rgba(26, 63, 160, 0.09), 0 2px 6px rgba(56, 189, 239, 0.05);
    --card-shadow-hover: 0 18px 48px rgba(26, 63, 160, 0.14), 0 6px 16px rgba(56, 189, 239, 0.10);

    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --radius: 20px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* ── Body — Ghibli sky gradient ── */
body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background: linear-gradient(180deg,
        #B8D4E8 0%,
        #C4DDF0 15%,
        #D0E8F4 35%,
        #DCF0F8 58%,
        #C8D8B8 80%,
        #B4C8A0 100%
    );
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ── Ghibli Scene Background ── */
.ghibli-scene {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Cloud layer — drifting SVG clouds */
.clouds-layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 62%;
}

.cloud {
    position: absolute;
    filter: drop-shadow(0 6px 14px rgba(100, 160, 200, 0.18));
    opacity: 0.94;
}

/* Each cloud: different size, speed, vertical position, start offset */
.cloud-a {
    top: 7%;
    width: clamp(150px, 18vw, 280px);
    animation: cloudDrift 52s linear infinite;
}
.cloud-b {
    top: 19%;
    width: clamp(110px, 14vw, 200px);
    animation: cloudDrift 40s linear infinite;
    animation-delay: -16s;
}
.cloud-c {
    top: 4%;
    width: clamp(180px, 22vw, 340px);
    animation: cloudDrift 64s linear infinite;
    animation-delay: -34s;
}
.cloud-d {
    top: 26%;
    width: clamp(90px, 11vw, 170px);
    animation: cloudDrift 36s linear infinite;
    animation-delay: -8s;
}
.cloud-e {
    top: 12%;
    width: clamp(130px, 16vw, 240px);
    animation: cloudDrift 46s linear infinite;
    animation-delay: -27s;
}

/* Continuous left → right drift, seamlessly looping */
@keyframes cloudDrift {
    from { transform: translateX(-100%); }
    to   { transform: translateX(110vw); }
}

/* Hills wrap — 3 stacked landscape layers at viewport bottom */
.hills-wrap {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    pointer-events: none;
}

.land-layer {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: auto;
}

.land-mtn { bottom: 130px; }
.land-mid { bottom: 55px; }
.land-fg  { bottom: 0; }

/* Hide scene on mobile to save performance */
@media (max-width: 768px) {
    .ghibli-scene { display: none; }
}

/* ── Scroll reveal (IntersectionObserver) ── */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Header ── */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--transition);
    background: rgba(240, 234, 216, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 164, 74, 0.15);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(250, 247, 239, 0.94);
    box-shadow: 0 4px 20px rgba(26, 63, 160, 0.07);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer;
}

.logo img {
    height: 36px;
    width: auto;
}

.logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.55rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: linear-gradient(135deg, var(--sky-azure), var(--ocean));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.desktop-nav a {
    font-family: 'Nunito', sans-serif;
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.3s ease;
    padding: 4px 0;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--sky-azure));
    border-radius: 2px;
    transition: width 0.32s ease;
}

.desktop-nav a:hover { color: var(--ocean); }
.desktop-nav a:hover::after { width: 100%; }

/* ── Hamburger ── */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.hamburger div {
    width: 24px;
    height: 2.5px;
    background-color: var(--ocean);
    margin: 5px 0;
    transition: 0.4s;
    border-radius: 4px;
}

.hamburger.active .bar1 { transform: translate(0, 7.5px) rotate(-45deg); }
.hamburger.active .bar2 { opacity: 0; transform: scaleX(0); }
.hamburger.active .bar3 { transform: translate(0, -7.5px) rotate(45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: rgba(250, 247, 235, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -8px 0 32px rgba(26, 63, 160, 0.10);
    border-left: 1px solid rgba(201, 164, 74, 0.18);
}

.mobile-menu.active { right: 0; }

.mobile-menu ul {
    list-style: none;
    text-align: center;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.4s ease 0.15s;
}

.mobile-menu.active ul {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu li { margin: 26px 0; }

.mobile-menu a {
    font-family: 'Cormorant Garamond', serif;
    text-decoration: none;
    color: var(--navy);
    font-size: 1.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: color 0.3s ease;
}

.mobile-menu a:hover { color: var(--sky-azure); }

/* ── Main Layout ── */
main {
    position: relative;
    z-index: 10;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 24px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

/* ── Cards ── */
.card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 44px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Soft shimmer overlay */
.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.38) 0%, transparent 55%);
    pointer-events: none;
    border-radius: inherit;
}

.card > * { position: relative; z-index: 1; }

.card:hover,
.3d-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--card-shadow-hover);
}

/* Keep class names so HTML doesn't break */
.3d-card  { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.3d-text  { display: block; }
.3d-btn   { display: inline-block; }

/* ── Hero Section ── */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    text-align: center;
}

.main-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 28px;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.accent-word {
    color: var(--sky-azure);
    font-style: italic;
}

.sub-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.12rem;
    color: var(--text-mid);
    max-width: 760px;
    margin: 0 auto 44px auto;
    line-height: 1.80;
    font-weight: 400;
}

/* ── Buttons ── */
.btn {
    display: inline-block;
    padding: 15px 42px;
    background: linear-gradient(135deg, var(--sky-azure) 0%, var(--ocean) 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Nunito', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    box-shadow: 0 6px 24px rgba(56, 189, 239, 0.30);
    transition: var(--transition);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201, 164, 74, 0.35), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(56, 189, 239, 0.40);
    color: #fff;
}

.btn:hover::after { opacity: 1; }

.primary-btn { /* alias */ }

.glow-btn:hover {
    box-shadow: 0 0 20px 4px rgba(56, 189, 239, 0.30), 0 12px 32px rgba(56, 189, 239, 0.35);
}

/* ── Section Titles ── */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.7rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 32px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.01em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 0;
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--sky-azure));
    border-radius: 3px;
}

/* ── About Section ── */
.about .card-content p {
    font-size: 1.08rem;
    line-height: 1.88;
    margin-bottom: 20px;
    color: var(--text-mid);
}

.about .card-content .highlight {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-style: italic;
    color: var(--ocean);
    font-size: 1.18rem;
}

/* ── Services ── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 44px;
}

.service-card {
    text-align: center;
    padding: 40px 28px;
}

.service-icon {
    font-size: 2.6rem;
    color: var(--sky-azure);
    margin-bottom: 20px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: translateY(-4px) scale(1.08);
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card p { color: var(--text-mid); line-height: 1.72; font-size: 0.96rem; }

/* ── Why Choose Us ── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
    margin-top: 40px;
}

.feature-item { padding: 28px 22px; }

.feature-icon {
    font-size: 1.9rem;
    color: var(--sky-azure);
    margin-bottom: 14px;
    display: block;
}

.feature-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.feature-item p { font-size: 0.93rem; color: var(--text-soft); line-height: 1.65; }

/* ── Clients / Testimonials ── */
.section-subtitle { font-size: 1.04rem; color: var(--text-soft); margin-bottom: 40px; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    padding: 30px;
    border-left: 4px solid var(--gold);
    position: relative;
}

.testimonial-card::after {
    content: '\201C';
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: rgba(56, 189, 239, 0.07);
    position: absolute;
    top: -6px; right: 14px;
    line-height: 1;
    pointer-events: none;
}

.stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; letter-spacing: 3px; }

.client-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.client-quote { font-style: italic; color: var(--text-mid); line-height: 1.70; font-size: 0.94rem; }

/* ── Contact ── */
.connect-card {
    text-align: center;
    padding: 60px 44px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(56, 189, 239, 0.08);
    color: var(--ocean-mid);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: 1px solid rgba(56, 189, 239, 0.18);
}

.pulse-dot {
    width: 9px; height: 9px;
    background-color: #3EBF75;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%   { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(62, 191, 117, 0.6); }
    70%  { transform: scale(1);    box-shadow: 0 0 0 10px rgba(62, 191, 117, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(62, 191, 117, 0); }
}

.contact .section-title { margin-bottom: 20px; }
.contact .section-title::after { left: 50%; transform: translateX(-50%); }

.contact-desc {
    color: var(--text-mid);
    margin: 0 auto 34px auto;
    font-size: 1.06rem;
    max-width: 560px;
    line-height: 1.78;
}

/* ── Reveal Animation (GSAP hook) ── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Footer ── */
footer {
    background: rgba(210, 235, 228, 0.96);
    padding: 34px 0;
    border-top: 1px solid rgba(114, 168, 152, 0.30);
    position: relative;
    z-index: 10;
    backdrop-filter: blur(12px);
}

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

.footer-left p { color: var(--text-soft); font-size: 0.88rem; }
.footer-left a { color: var(--ocean-mid); text-decoration: none; margin-left: 10px; transition: color 0.3s; }
.footer-left a:hover { color: var(--gold); }

.footer-right { display: flex; gap: 12px; }

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px; height: 40px;
    background: rgba(255, 255, 255, 0.55);
    color: var(--ocean);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(201, 164, 74, 0.20);
    font-size: 0.95rem;
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--sky-azure), var(--ocean));
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(56, 189, 239, 0.35);
    border-color: transparent;
}

/* ── Responsive ── */
.mobile-break  { display: none; }
.desktop-space { display: inline; }

@media (min-width: 769px) { .mobile-break { display: none !important; } }

@media (max-width: 992px) {
    .main-text { font-size: 3.6rem; }
    .section-title { font-size: 2.3rem; }
}

@media (max-width: 768px) {
    .mobile-break  { display: block; }
    .desktop-space { display: none; }
    .desktop-nav   { display: none; }
    .hamburger     { display: block; }

    .main-text     { font-size: 2.6rem; }
    .sub-text      { font-size: 1rem; }
    .section-title { font-size: 1.9rem; }
    .section       { padding: 80px 18px; }
    .hero          { padding-top: 110px; }

    .services-grid    { grid-template-columns: 1fr; gap: 20px; }
    .features-grid    { grid-template-columns: 1fr 1fr; gap: 16px; }
    .testimonials-grid { grid-template-columns: 1fr; }

    .connect-card  { padding: 44px 24px; }

    .footer-container { flex-direction: column; text-align: center; }

    /* Hide clouds on mobile to save paint */
    .ghibli-clouds { display: none; }
}

@media (max-width: 480px) {
    .main-text { font-size: 2.1rem; }
    .card      { padding: 26px 18px; }
    .features-grid { grid-template-columns: 1fr; }
}

/* ── About Page — Arrow ── */
.title-with-arrow { position: relative; display: inline-block; }

.about-arrow {
    position: absolute;
    left: 100%; top: 30%;
    width: 700px; height: 250px;
    margin-left: 10px;
    overflow: visible;
    pointer-events: none;
    z-index: 10;
}

.arrow-path {
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    animation: drawArrow 2s ease-out forwards;
    animation-delay: 0.5s;
}

.arrow-head {
    opacity: 0;
    animation: fadeInArrowHead 0.5s ease-out forwards;
    animation-delay: 2.3s;
}

@keyframes drawArrow       { to { stroke-dashoffset: 0; } }
@keyframes fadeInArrowHead { to { opacity: 1; } }

@media (max-width: 992px) { .about-arrow { width: 300px; height: 120px; margin-left: 5px; } }
@media (max-width: 768px) { .about-arrow { display: none; } }

/* ── Team Cards ── */
.team-list { display: flex; flex-direction: column; gap: 36px; margin-top: 40px; }

.team-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    padding: 40px;
    gap: 40px;
}

.team-card.reverse { flex-direction: row-reverse; }

.team-card-profile {
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.team-card-info { flex: 1; display: flex; flex-direction: column; justify-content: center; }

.team-image-wrapper {
    width: 170px; height: 170px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 18px;
    border: 3px solid rgba(201, 164, 74, 0.30);
    box-shadow: 0 6px 28px rgba(26, 63, 160, 0.12);
    transition: transform 0.35s ease, border-color 0.35s ease;
}

.team-card:hover .team-image-wrapper {
    transform: scale(1.05);
    border-color: var(--sky-azure);
}

.team-image { width: 100%; height: 100%; object-fit: cover; }

.team-card h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy) !important;
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 0.82rem;
    color: var(--sky-azure) !important;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.team-card .team-desc {
    font-size: 0.95rem;
    line-height: 1.78;
    margin-bottom: 16px;
    color: var(--text-mid) !important;
    flex-grow: 1;
}

.team-card .focus {
    font-size: 0.88rem;
    color: var(--text-mid) !important;
    background: rgba(56, 189, 239, 0.06) !important;
    padding: 10px 14px;
    border-radius: 10px;
    width: 100%;
    border: 1px solid rgba(201, 164, 74, 0.14);
}

@media (max-width: 768px) {
    .team-card, .team-card.reverse { flex-direction: column; text-align: center; }
    .team-card-profile { flex: auto; }
    .team-card-info    { text-align: center; }
}

/* ── Portfolio ── */
.portfolio-gallery { margin-bottom: 72px; }

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.portfolio-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--card-shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(201, 164, 74, 0.14);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--card-shadow-hover);
}

.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img { transform: scale(1.05); }

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 63, 160, 0.68), transparent);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.portfolio-item:hover .portfolio-overlay { opacity: 1; }

@media (max-width: 768px) {
    .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

@media (max-width: 480px) {
    .portfolio-grid { grid-template-columns: 1fr; }
}

/* ── Case Studies ── */
.case-studies-section { margin-top: 56px; }

.case-study-list { display: flex; flex-direction: column; gap: 36px; margin-top: 40px; }

.case-study-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(12px);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

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

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 5px; height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--sky-azure));
}

.case-study-header { margin-bottom: 20px; }

.case-study-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.case-study-goal {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.03rem;
    font-weight: 600;
    font-style: italic;
    color: var(--ocean-mid);
    margin-top: 22px;
    padding-top: 18px;
    border-top: 1px solid rgba(201, 164, 74, 0.18);
}

.case-study-content ul  { list-style: none; }

.case-study-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 26px;
    color: var(--text-mid);
    line-height: 1.65;
    font-size: 0.96rem;
}

.case-study-content li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: var(--sky-azure);
    font-size: 1rem;
}

.case-study-content strong { color: var(--navy); font-weight: 700; }

@media (max-width: 768px) {
    .case-study-card  { padding: 26px 18px; }
    .case-study-title { font-size: 1.4rem; }
}
