/* Custom Theme Styles for LFA Purpose */

/* ========================================
   COLOR PALETTE (from index.html brand)
   ======================================== */
:root {
    /* Colors */
    --primary-teal: #0B7A8F;
    --primary-green: #7AC143;
    --dark-text: #2C3E50;
    --light-bg: #F5F5F0;
    --white: #FFFFFF;
    --light-teal: #4A9AA8;
    --muted-teal: #5A7A80;
    --light-green: #8BCF4D;
    --soft-sage: #A8D5A8;
    --charcoal: #5A5A52;
    --gentle-gray: #E8E8E0;

    /* Typography Scale */
    --font-serif-display: 'Cormorant Garamond', serif;
    --font-serif-body: 'Crimson Text', serif;
    --font-sans: 'Lato', sans-serif;
    --font-script: 'Italianno', cursive;

    --font-size-hero: clamp(5em, 12vw, 12em);
    --font-size-h1: clamp(2.2em, 4vw, 3em);
    --font-size-h2: clamp(1.8em, 3vw, 2.2em);
    --font-size-body: clamp(1.05em, 1.5vw, 1.15em);

    --line-height-tight: 0.9;
    --line-height-heading: 1.3;
    --line-height-body: 1.8;

    /* Spacing */
    --gap-small: 20px;
    --gap-medium: 40px;
    --gap-large: 60px;
    --gap-section: 100px;

    /* Shadows */
    --shadow-card: 0 3px 15px rgba(0,0,0,0.08);
    --shadow-card-hover: 0 6px 25px rgba(0,0,0,0.12);
    --shadow-card-large: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-card-large-hover: 0 12px 40px rgba(0,0,0,0.2);

    /* Border Radius */
    --radius-small: 4px;
    --radius-medium: 8px;
    --radius-large: 12px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-teal), var(--light-teal));
    --gradient-secondary: linear-gradient(135deg, var(--primary-green), var(--light-green));
    --gradient-muted: linear-gradient(135deg, var(--muted-teal), #4A6A70);
}

/* Header & Navigation Overrides */
.gh-head-menu .nav,
.gh-head a,
.gh-head-actions .gh-search {
    color: white;
}

.nav-links a {
    font-family: "Playfair Display", serif;
}

.gh-head {
    margin: 0;
    background: none;
    background-color: transparent;
    border: none;
    border-bottom: none;
    position: relative;
    overflow: hidden;
    padding-top: 30px;
}

.gh-head::after,
.gh-dropdown::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.8),
        transparent,
        rgba(255, 255, 255, 0.3)
    );
}

.gh-dropdown {
    overflow: unset;
}

/* Fade Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

.fade-up.delay-3 {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typography Utility Classes */
.cursive {
    font-family: "Imperial Script", cursive;
    font-size: 48px;
    line-height: normal;
    font-weight: normal;
    text-wrap-mode: wrap;
}

.italianno-regular {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: italic;
}

.inter {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.playfair-display {
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
}

.lisu-bosa-light-italic {
    font-family: "Playfair Display", serif;
    font-weight: 300;
    font-style: normal;
}

.jomolhari-regular {
    font-family: "Playfair Display", serif;
    font-weight: 400;
    font-style: normal;
}

.Montserrat {
    font-family: "Montserrat", sans-serif;
    font-weight: 300;
}

/* ========================================
   HOMEPAGE SPECIFIC STYLES (from index.hbs)
   ======================================== */

/* Hero Section */
.home-hero-h1 .italianno-regular {
    color: black;
    font-size: 210px;
}

.home-hero-video {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.home-hero-video video {
    max-width: 300px;
}

/* Home Second Section */
.home-second {
    position: relative;
    padding: 10%;
    display: flex;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    color: black;
    overflow: hidden;
}

.home-second-section {
    overflow-x: hidden;
    padding-bottom: 5%;
}

.second-span-1 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: bold;
}

.second-span-2 {
    font-size: 40px;
}

.second-span-3 {
    font-size: 50px;
}

.second-span-4 {
    font-size: 150px;
    font-weight: 900;
    line-height: 1.2;
}

/* Slanted Banner */
.slanted-banner {
    background: var(--primary-green);
    color: var(--dark-text);
    font-weight: bold;
    font-size: 60px;
    padding: 40px 0;
    text-align: center;
    display: none;
    transform-origin: center;
    margin: 40px 0;
    width: 105vw;
    text-wrap-mode: nowrap;
    overflow: hidden;
}

.slanted-track {
    display: flex;
    width: max-content;
    animation: scroll 15s linear infinite;
}

.slanted-text {
    padding-right: 2rem;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Button Styles */
button {
    padding: 20px 40px;
    background: transparent;
    border-radius: 100px;
    border: solid 1px var(--dark-text);
    color: var(--dark-text);
}

.view-btn {
    position: absolute;
    bottom: -1.2rem;
    left: 1.5rem;
    background: var(--dark-text);
    color: var(--white);
    font-weight: 600;
    border: none;
    border-radius: 999px;
    padding: 0.6rem 1.4rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.view-btn:hover {
    transform: scale(1.05);
}

.button-2 {
    color: var(--white);
    background: var(--dark-text);
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.button-fifth {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: end;
    transform: translateY(-400px);
}

.button-2 img {
    width: 22px;
    margin: auto auto;
    filter: invert(1);
}

.header {
    font-weight: 800;
    font-size: 1.2rem;
}

/* CSS Variables */
:root {
    --bg: #213844;
    --accent: #7a9a83;
    --muted: rgba(255,255,255,0.85);
    --thin: 300;
}

* {
    box-sizing: border-box;
}

/* Page Header - Blog Collection */
.page-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 280px;
}

.title-big {
    font-family: "Playfair Display", serif;
    font-size: 130px;
    line-height: 0.9;
    color: black;
    margin: 0;
    padding: 0;
    letter-spacing: 1px;
    font-weight: 700;
}

.nav-links {
    margin-top: 6px;
    align-self: flex-start;
    text-align: start;
}

.nav-links a {
    display: inline-block;
    color: black;
    text-decoration: none;
    margin-left: 22px;
    padding-bottom: 4px;
    font-family: "Playfair Display", serif;
}

.view-all {
    font-size: 50px !important;
    font-family: "Playfair Display", serif;
}

/* Collection Section - Slider */
.collection {
    display: grid;
    grid-template-columns: 680px 1fr;
    gap: 48px;
    align-items: center;
    min-height: 420px;
    padding: 60px 0 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(59, 130, 246, 0.02) 50%, rgba(168, 213, 168, 0.03) 100%);
}

.meta-left {
    padding-right: 24px;
    padding-left: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#metaLink {
    color: #1a1a1a;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

#metaLink:hover {
    transform: translateY(-2px);
    color: var(--primary-teal);
}

.meta-small {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: white;
    font-family: "Playfair Display", serif;
    border-radius: 24px;
    width: fit-content;
    box-shadow: 0 4px 14px rgba(11, 122, 143, 0.25);
    transition: all 0.3s ease;
}

.meta-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(11, 122, 143, 0.35);
}

.meta-date {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.3px;
    font-family: "Playfair Display", serif;
}

.meta-date::before {
    content: '• ';
    color: var(--primary-teal);
    font-weight: bold;
    margin-right: 6px;
}

.collection-title {
    font-size: 52px;
    line-height: 1.15;
    margin: 0;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.collection-desc {
    font-size: 18px;
    color: #555;
    max-width: 560px;
    line-height: 1.7;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

/* Slider Styles */
.slider-wrap {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border-radius: 12px;
}

.slides {
    display: flex;
    transition: transform .5s cubic-bezier(.2,.9,.2,1);
    gap: 18px;
    align-items: center;
    max-height: 500px;
}

.slide {
    flex: 0 0 100%;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.slide:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #1a1a1a;
    padding: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.arrow:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 24px rgba(11, 122, 143, 0.25), 0 0 0 3px rgba(11, 122, 143, 0.1);
    border-color: var(--primary-teal);
    color: var(--primary-teal);
}

.arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow.left {
    left: 24px;
}

.arrow.right {
    right: 24px;
}

/* Dots */
.dots {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0;
    border: 2px solid rgba(11, 122, 143, 0.3);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.dots button:hover {
    transform: scale(1.2);
    border-color: var(--primary-teal);
    background: rgba(11, 122, 143, 0.2);
}

.dots button.active {
    width: 32px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    border-color: var(--primary-teal);
    box-shadow: 0 2px 8px rgba(11, 122, 143, 0.3);
}

.dots button.active:hover {
    transform: scale(1.1);
}

.slide-data.visually-hidden {
    display: none;
}

/* Mission Section */
.mission-section {
    position: relative;
    background: linear-gradient(135deg, rgba(168, 213, 168, 0.06) 0%, rgba(11, 122, 143, 0.04) 100%);
    padding: 60px 0 80px 0;
    display: flex;
    align-items: center;
}

.mission-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.mission-text {
    text-align: center;
    color: black;
    margin-bottom: 60px;
}

p.mission-subtitle {
    font-size: 50px;
    line-height: 1.2;
    font-family: "inter", cursive;
    font-style: italic;
    font-weight: 900;
}

.mission-subtitle span {
    color: var(--light-green);
}

h2.mission-title {
    margin: 0;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 80px;
    color: var(--dark-text);
    position: relative;
    display: inline-block;
}

h2.mission-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--primary-green) 100%);
    border-radius: 2px;
}

.mission-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-video {
    width: 100%;
    position: relative;
}

.mission-video iframe {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
}

.mission-video iframe:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-4px);
}

blockquote {
    font-size: 48px;
    line-height: 1.35;
    padding: 0;
    margin: 0 0 50px 0;
    font-weight: 600;
    color: var(--dark-text);
    font-family: "Playfair Display", serif;
    font-style: italic;
    position: relative;
    padding-left: 50px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    letter-spacing: -0.5px;
}

blockquote::before {
    content: '"';
    position: absolute;
    left: -20px;
    top: -35px;
    font-size: 160px;
    color: var(--primary-teal);
    opacity: 0.3;
    font-family: "Playfair Display", serif;
    line-height: 1;
    font-weight: 700;
}

.mission-description {
    width: 627px;
    font-size: 20px;
}

.mission-btn {
    color: var(--dark-text);
    padding: 16px 40px;
    border: 2px solid var(--dark-text);
    border-radius: 200px;
    max-width: fit-content;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.mission-btn:hover {
    background: var(--dark-text);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.mission-wrap > div {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Meet Capi Section - Modern Redesign */
.meetCapi {
    width: 100%;
    background: linear-gradient(135deg, rgba(168, 213, 168, 0.08) 0%, rgba(11, 122, 143, 0.06) 100%);
    padding: 80px 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.capi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.capi-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.capi-video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.capi-video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.capiImg {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.capiContent {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.capi-badge {
    display: inline-block;
    width: fit-content;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(11, 122, 143, 0.25);
}

.capi-name {
    font-family: "Playfair Display", serif;
    font-size: 120px;
    line-height: 1;
    margin: 0;
    color: var(--dark-text);
    font-weight: 700;
    font-style: normal;
    letter-spacing: 2px;
}

.capi-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 36px;
    line-height: 1.3;
    margin: 0;
    color: var(--dark-text);
    font-weight: 700;
}

.capi-description {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.capi-description em {
    color: var(--primary-teal);
    font-style: italic;
    font-weight: 600;
}

.capi-btn {
    display: inline-block;
    width: fit-content;
    padding: 18px 45px;
    background: var(--dark-text);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--dark-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(44, 62, 80, 0.25);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.capi-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.capi-btn:hover::before {
    width: 100%;
}

.capi-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(11, 122, 143, 0.35);
    border-color: var(--primary-teal);
}

.capi-btn span {
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(168, 213, 168, 0.06) 0%, rgba(11, 122, 143, 0.04) 100%);
    position: relative;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
}

.contact-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(11, 122, 143, 0.25);
}

.contact-title-main {
    font-family: "Playfair Display", serif;
    font-size: 120px;
    line-height: 1;
    margin: 0;
    color: var(--dark-text);
    font-weight: 700;
    font-style: normal;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-image-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
}

.contact-image-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.contact-mascot-large {
    width: 100%;
    max-width: 400px;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.contact-image-card:hover .contact-mascot-large {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.2));
}

.contact-mascot-small {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    transition: all 0.3s ease;
    z-index: 10;
}

.contact-image-card:hover .contact-mascot-small {
    transform: scale(1.1) rotate(-5deg);
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
}

.contact-text-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-heading {
    font-family: "Playfair Display", serif;
    font-size: 42px;
    line-height: 1.3;
    margin: 0;
    color: var(--dark-text);
    font-weight: 700;
}

.contact-description {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.contact-cta-btn {
    display: inline-block;
    width: fit-content;
    padding: 18px 45px;
    background: var(--dark-text);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--dark-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(44, 62, 80, 0.25);
    margin-top: 12px;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.contact-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.contact-cta-btn:hover::before {
    width: 100%;
}

.contact-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(11, 122, 143, 0.35);
    border-color: var(--primary-teal);
}

.contact-cta-btn span {
    position: relative;
    z-index: 1;
}

/* About Hero Section */
.about-hero-h1 {
    height: 100%;
    text-align: center;
    align-items: center;
    align-self: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-h1 h1 {
    color: black;
    font-size: 150px;
    text-wrap-mode: nowrap;
}

.about-hero-h1 p {
    font-size: 30px;
    color: black;
    max-width: 458px;
    text-align: start;
    align-self: start;
    line-height: 1.2;
}

.about-hero-h1 .italianno-regular {
    color: black;
    font-size: 310px;
    display: flex;
    letter-spacing: normal;
}

.about-hero-video {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.about-hero-video video {
    max-width: 300px;
}

/* Founder Note Section */
.founder-note {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(168, 213, 168, 0.05) 0%, rgba(11, 122, 143, 0.03) 100%);
    position: relative;
}

.founder-note-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.founder-note-header {
    text-align: center;
    margin-bottom: 60px;
}

.note-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: white;
    font-family: "Playfair Display", serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(11, 122, 143, 0.25);
}

.founder-note-title {
    font-family: "Playfair Display", serif;
    font-size: 100px;
    line-height: 1;
    margin: 0;
    color: var(--dark-text);
    font-weight: 700;
    font-style: normal;
}

.founder-note-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    align-items: center;
}

.founder-quote-card {
    background: white;
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    max-width: 900px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.founder-quote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.quote-mark {
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 200px;
    line-height: 1;
    color: var(--primary-teal);
    opacity: 0.15;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    pointer-events: none;
}

.founder-quote-text {
    position: relative;
    z-index: 1;
}

.quote-paragraph {
    font-family: "Playfair Display", serif;
    font-size: 26px;
    line-height: 1.7;
    color: var(--dark-text);
    margin: 0 0 30px 0;
    font-style: italic;
}

.quote-paragraph:last-of-type {
    margin-bottom: 40px;
}

.quote-paragraph.emphasis {
    font-weight: 700;
    color: var(--primary-teal);
    font-size: 28px;
}

.founder-signature {
    border-top: 2px solid rgba(11, 122, 143, 0.2);
    padding-top: 30px;
    text-align: left;
}

.signature-line {
    width: 100px;
    height: 2px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    margin-bottom: 15px;
}

.signature-name {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    line-height: 1;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-weight: 700;
    font-style: normal;
}

.signature-title {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.founder-cta-section {
    text-align: center;
    max-width: 600px;
}

.founder-cta-text {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 1.6;
    color: #555;
    margin: 0 0 25px 0;
}

.founder-cta-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--dark-text);
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    border: 2px solid var(--dark-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 14px rgba(44, 62, 80, 0.25);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.founder-cta-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.founder-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(11, 122, 143, 0.35);
    border-color: var(--primary-teal);
}

.founder-cta-btn:hover::before {
    width: 100%;
}

.founder-cta-btn:focus {
    outline: 3px solid var(--primary-teal);
    outline-offset: 3px;
}

.founder-cta-btn span {
    position: relative;
    z-index: 1;
}

.notebook {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    mix-blend-mode: lighten;
}

.pen {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 600px;
    mix-blend-mode: lighten;
    display: none;
}

/* Subscribe Benefits Section */
.subscribe-benefits {
    width: 100%;
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(168, 213, 168, 0.04) 0%, rgba(11, 122, 143, 0.03) 100%);
    position: relative;
}

.subscribe-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.subscribe-header {
    text-align: center;
    margin-bottom: 80px;
}

.subscribe-title {
    font-family: "Playfair Display", serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 30px 0;
    line-height: 1.2;
}

.subscribe-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 22px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.benefit-card {
    background: white;
    border-radius: 16px;
    padding: 45px 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: white;
    font-size: 24px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    margin-bottom: 25px;
    box-shadow: 0 4px 14px rgba(11, 122, 143, 0.25);
    transition: all 0.3s ease;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: white;
    margin-bottom: 25px;
    box-shadow: 0 4px 14px rgba(11, 122, 143, 0.25);
    transition: all 0.3s ease;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    stroke: white;
}

.benefit-card:hover .benefit-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(11, 122, 143, 0.35);
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(11, 122, 143, 0.35);
}

.benefit-title {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.benefit-description {
    font-family: "Playfair Display", serif;
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.subscribe-cta {
    text-align: center;
    margin-top: 20px;
}

.subscribe-btn {
    display: inline-block;
    padding: 20px 50px;
    background: var(--dark-text);
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    border: 2px solid var(--dark-text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.25);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
}

.subscribe-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(11, 122, 143, 0.35);
    border-color: var(--primary-teal);
}

.subscribe-btn:hover::before {
    width: 100%;
}

.subscribe-btn:focus {
    outline: 3px solid var(--primary-teal);
    outline-offset: 3px;
}

.subscribe-btn span {
    position: relative;
    z-index: 1;
}

/* Button Slide Styles */
.btn-slide {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 16px 40px;
    border: 2px solid var(--dark-text);
    background: var(--dark-text);
    color: white;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 200px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    margin-top: 20px;
    box-shadow: 0 4px 14px rgba(44, 62, 80, 0.25);
    opacity: 1 !important;
}

.btn-slide::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    z-index: 0;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-slide:hover {
    border-color: var(--primary-teal);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(11, 122, 143, 0.35);
}

.btn-slide:hover::before {
    width: 100%;
}

.btn-slide:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(11, 122, 143, 0.3);
}

.btn-slide:focus {
    outline: 3px solid var(--primary-teal);
    outline-offset: 3px;
}

.btn-slide span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-slide:hover span {
    color: white;
}

.btn-slide1 {
    display: inline-block;
    position: relative;
    overflow: hidden;
    padding: 12px 28px;
    border: 2px solid var(--dark-text);
    color: var(--dark-text);
    font-size: 16px;
    border-radius: 200px;
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
}

.btn-slide1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0%;
    height: 100%;
    background: var(--dark-text);
    z-index: 0;
    transition: width 0.3s ease;
}

.btn-slide1:hover::before {
    width: 100%;
    color: var(--white);
    content: "About Us";
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-slide1 span {
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.btn-slide1:hover span {
    color: var(--white);
}

/* Section Separator */
.section-separator {
    width: 100%;
    height: 60px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03) 0%, rgba(59, 130, 246, 0.03) 50%, rgba(168, 213, 168, 0.05) 100%);
}

.separator-wave {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Prevent overlap with hero cards */
.hero-cards {
    margin-top: 60px;
}

/* CTA Section with Wave */
.cta-section {
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    color: white;
    padding: 100px 20px 130px;
    text-align: center;
    position: relative;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--dark-text);
    clip-path: ellipse(100% 100% at 50% 100%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.2em;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.3;
}

.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-button-white {
    background: white;
    color: var(--primary-teal);
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.2em;
    font-weight: 400;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button-white:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.3);
}

/* Footer Styles - Based on index.html design */
.site-footer {
    background: var(--dark-text);
    color: white;
    padding: 80px 20px 40px;
    margin-top: 0;
}

.site-footer .inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-explore {
    flex: 0 0 auto;
}

.footer-connect {
    flex: 0 0 auto;
}

.footer-section h3.footer-title,
.footer-section h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5em;
    margin-bottom: 20px;
    color: var(--primary-green);
    font-weight: 500;
}

.contact-section .footer-heading {
    font-size: 1.3em;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-cta {
    margin-bottom: 32px;
    display: flex;
    justify-content: flex-start;
}

.footer-cta a {
    color: var(--primary-teal);
}

.footer-email {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-email a:hover {
    color: var(--primary-green);
}

.email-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.email-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.email-link:hover {
    color: var(--primary-green);
}

.email-icon {
    color: white;
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s;
}

.footer-nav a:hover,
.footer-section a:hover {
    color: var(--primary-green);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

li::marker {
    display: none;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 40px;
    width: 100%;
}

.footer-bottom-left {
    text-align: left;
}

.footer-tagline {
    font-family: 'Crimson Text', serif;
    font-style: italic;
    color: var(--primary-green);
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: left;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.95em;
    text-align: left;
    margin: 0 0 10px 0;
}

.copyright {
    font-size: 0.95em;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
    margin: 0;
}

.copyright a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 20px;
    list-style: none !important;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    align-items: center;
}

.social-links li {
    margin-bottom: 0 !important;
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.social-links li::before {
    content: none !important;
    display: none !important;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.social-links .icon {
    width: 20px;
    height: 20px;
    color: white;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
}

svg.social-icon {
    color: var(--white);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--white);
    color: var(--dark-text);
}

.btn-primary:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
}

/* Navigation Hover Animations */
.custom-nav-animate .nav-links {
    display: flex;
    gap: 2rem;
}

.custom-nav-animate .nav-links a {
    position: relative;
    text-decoration: none;
    padding: 0.5rem 0;
    overflow: hidden;
    transition: color 0.3s ease;
}

.custom-nav-animate .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background-color: var(--primary-green);
    transition: left 0.3s ease;
}

.custom-nav-animate .nav-links a:hover::before {
    left: 0;
}

.custom-nav-animate .nav-links a:hover {
    color: var(--primary-green);
}

/* Alternative: Bar slides from center outward */
.custom-nav-animate.center-expand .nav-links a::before {
    left: 50%;
    width: 0;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.custom-nav-animate.center-expand .nav-links a:hover::before {
    width: 100%;
}

/* Animated Buttons */
.button {
    border-radius: 50px;
    padding: 10px;
    width: 150px;
    background-color: var(--dark-text);
    text-decoration: none;
    color: var(--white);
    overflow: hidden;
    margin: 10px auto;
    position: relative;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
    border: 2px solid var(--dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 50px;
    box-sizing: border-box;
}

.button .fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
    transform: translateX(-100%);
    z-index: 1;
}

.button span {
    display: inline-block;
    position: relative;
    z-index: 2;
}

.button-v2 {
    background-color: var(--dark-text);
    border-color: var(--dark-text);
}

.button-v2 .fill {
    background: var(--gradient-secondary);
}

.button-v3 {
    background-color: var(--primary-teal);
    border-color: var(--primary-teal);
}

.button-v3 .fill {
    background: var(--gradient-primary);
}

.variation {
    text-align: center;
}

.variation h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
}

/* Ghost Head Button */
.gh-head-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--dark-text), #1a1a1a);
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: none;
    min-width: 140px;
    letter-spacing: 0.5px;
}

.button-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
    opacity: 0;
    border-radius: inherit;
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    border-radius: 50px;
    opacity: 0;
    animation: rotate 3s linear infinite;
}

.button-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transform: skewX(-20deg);
}

.button-text {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.button-icon {
    width: 16px;
    height: 16px;
    transform: translateX(-10px);
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: scale(0);
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
}

.magnetic-area {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    pointer-events: none;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Canvas Elements */
canvas {
    position: absolute;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

/* ========================================
   MEDIA QUERIES - RESPONSIVE STYLES
   ======================================== */

@media (max-width: 1440px) {
    .home-hero-h1 h1 {
        font-size: 130px;
    }

    .home-hero-h1 .italianno-regular {
        font-size: 280px;
    }

    .home-hero-h1 p {
        font-size: 25px;
    }

    .second-span-4 {
        font-size: 130px;
    }

    .second-span-3 {
        font-size: 40px;
    }

    .capi-content-wrapper {
        gap: 60px;
    }

    .capi-name {
        font-size: 100px;
    }

    .capi-subtitle {
        font-size: 32px;
    }

    .capi-description {
        font-size: 17px;
    }

    h2.mission-title {
        font-size: 60px;
    }

    .a-note {
        font-size: 150px;
    }

    .ffl {
        font-size: 60px;
    }

    blockquote {
        font-size: 35px;
    }
}

@media (max-width: 1140px) {
    .home-hero-h1 h1 {
        font-size: 100px;
    }

    .home-hero-h1 .italianno-regular {
        font-size: 210px;
    }

    .home-hero-h1 p {
        font-size: 22px;
    }

    .second-span-4 {
        font-size: 100px;
    }

    .second-span-3 {
        font-size: 30px;
    }

    .slanted-banner {
        font-size: 40px;
    }

    .card-content h3 {
        font-size: 30px;
    }

    .bg-gradient p {
        font-size: 20px;
    }

    .bg-gradient span {
        font-size: 20px;
    }

    .button-red button {
        font-size: 20px;
    }

    .capi-content-wrapper {
        gap: 50px;
    }

    .capi-name {
        font-size: 90px;
    }

    .capi-subtitle {
        font-size: 28px;
    }

    .capi-description {
        font-size: 16px;
    }

    .capi-btn {
        padding: 16px 38px;
        font-size: 15px;
    }

    h2.mission-title {
        font-size: 60px;
    }

    p.mission-subtitle {
        font-size: 30px;
    }

    blockquote {
        font-size: 36px;
        padding-left: 40px;
        margin-bottom: 40px;
    }

    blockquote::before {
        font-size: 120px;
        left: -15px;
        top: -28px;
    }

    .mission-wrap {
        gap: 40px;
    }

    .mission-description {
        width: 100%;
        max-width: 427px;
    }

    .collection {
        grid-template-columns: 480px 1fr;
        gap: 36px;
        padding: 48px 0 32px 0;
    }

    .section-separator {
        height: 100px;
    }

    .collection-title {
        font-size: 46px;
    }

    .collection-desc {
        font-size: 16px;
    }

    .founder-note-title {
        font-size: 80px;
    }

    .quote-paragraph {
        font-size: 24px;
    }

    .quote-paragraph.emphasis {
        font-size: 26px;
    }

    .founder-quote-card {
        padding: 50px 40px;
    }

    .founder-cta-btn {
        padding: 16px 40px;
        font-size: 15px;
    }

    .mission-wrap {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 920px) {
    .collection {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 24px 0;
    }

    .section-separator {
        height: 80px;
    }

    .meta-left {
        order: 2;
        padding-left: 20px;
        padding-right: 20px;
    }

    .slider-wrap {
        order: 1;
    }

    .collection-title {
        font-size: 42px;
    }

    .collection-desc {
        font-size: 16px;
    }

    .arrow {
        width: 44px;
        height: 44px;
    }

    .arrow.left {
        left: 12px;
    }

    .arrow.right {
        right: 12px;
    }

    .page-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .title-big {
        font-size: 56px;
    }

    .subscribe-title {
        font-size: 60px;
    }

    .subscribe-subtitle {
        font-size: 20px;
    }

    .benefits-grid {
        gap: 30px;
    }

    .benefit-card {
        padding: 40px 30px;
    }

    .benefit-title {
        font-size: 26px;
    }

    .subscribe-btn {
        padding: 18px 45px;
        font-size: 17px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        padding: 0 30px;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-heading {
        font-size: 36px;
    }

    .contact-mascot-large {
        max-width: 350px;
    }

    .mission-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-section {
        padding: 80px 0;
    }

    h2.mission-title {
        font-size: 56px;
    }

    blockquote {
        font-size: 30px;
        padding-left: 35px;
        margin-bottom: 35px;
    }

    blockquote::before {
        font-size: 100px;
        left: -12px;
        top: -25px;
    }
}

@media (max-width: 864px) {
    .home-hero-section {
        padding: 10%;
    }

    .home-hero-h1 h1 {
        font-size: 70px;
    }

    .home-hero-h1 .italianno-regular {
        font-size: 150px;
    }

    .home-hero-h1 p {
        font-size: 22px;
    }

    .second-span-4 {
        font-size: 70px;
    }

    .second-span-3 {
        font-size: 20px;
    }

    .home-third-img {
        max-width: 250px;
    }

    .second-span-1,
    .second-span-2 {
        font-size: 30px;
    }

    .pen {
        width: 300px;
    }

    .notebook {
        width: 200px;
    }

    .slanted-banner {
        font-size: 30px;
        padding: 20px 0;
    }

    .second-span-5 {
        font-size: 50px;
    }

    .button-red button {
        font-size: 20px;
        padding: 20px 20px;
    }

    .capi-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .capi-video-card {
        max-width: 500px;
        margin: 0 auto;
        padding: 30px;
    }

    .meetCapi {
        padding: 80px 0;
    }

    .capi-container {
        padding: 0 30px;
    }

    .mission-wrap {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .mission-wrap > div:first-child {
        order: 2;
    }

    .mission-video {
        order: 1;
    }

    .mission-btn {
        text-align: center;
        align-items: center;
        margin: 0 auto;
        padding: 14px 32px;
    }

    .mission-description {
        width: 100%;
    }

    .mission-section {
        padding: 60px 0;
    }

    h2.mission-title {
        font-size: 50px;
    }

    blockquote {
        font-size: 28px;
        padding-left: 30px;
        margin-bottom: 30px;
    }

    blockquote::before {
        font-size: 90px;
        left: -8px;
        top: -22px;
    }

    .contact-title-main {
        font-size: 100px;
    }

    .contact-heading {
        font-size: 32px;
    }

    .contact-description {
        font-size: 17px;
    }

    .contact-mascot-large {
        max-width: 320px;
    }

    .subscribe-title {
        font-size: 56px;
    }

    .subscribe-subtitle {
        font-size: 19px;
    }

    .subscribe-container {
        padding: 0 30px;
    }

    .subscribe-benefits {
        padding: 80px 0;
    }

    .founder-note {
        padding: 80px 0;
    }

    .founder-note-container {
        padding: 0 30px;
    }

    .founder-note-title {
        font-size: 70px;
    }

    .quote-paragraph {
        font-size: 22px;
    }

    .quote-paragraph.emphasis {
        font-size: 24px;
    }

    .founder-quote-card {
        padding: 45px 35px;
    }

    .signature-name {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .home-hero-h1 h1 {
        font-size: 50px;
    }

    .home-hero-h1 .italianno-regular {
        font-size: 105px;
    }

    .home-hero-h1 p {
        font-size: 22px;
    }

    .second-span-4 {
        font-size: 50px;
    }

    .second-span-3 {
        font-size: 20px;
    }

    blockquote {
        font-size: 26px;
        text-align: left;
        padding-left: 25px;
        margin-bottom: 25px;
    }

    blockquote::before {
        font-size: 75px;
        left: -5px;
        top: -18px;
    }

    .button-fifth {
        transform: translateY(-200px) translateX(-100px);
    }

    .mission-container {
        padding: 0 20px;
    }

    .mission-text {
        margin-bottom: 40px;
    }

    h2.mission-title {
        font-size: 42px;
    }

    h2.mission-title::after {
        width: 60px;
        height: 2px;
    }

    .capi-name {
        font-size: 80px;
    }

    .capi-subtitle {
        font-size: 26px;
    }

    .capi-description {
        font-size: 16px;
    }

    .capi-video-card {
        max-width: 100%;
        padding: 25px;
    }

    .capi-btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-container {
        padding: 0 20px;
    }

    .contact-header {
        margin-bottom: 60px;
    }

    .contact-title-main {
        font-size: 80px;
    }

    .contact-heading {
        font-size: 28px;
    }

    .contact-description {
        font-size: 16px;
    }

    .contact-cta-btn {
        padding: 14px 32px;
        font-size: 14px;
    }

    .contact-image-card {
        padding: 30px;
    }

    .contact-mascot-large {
        max-width: 280px;
    }

    .contact-mascot-small {
        width: 80px;
        bottom: -15px;
        right: -15px;
    }

    .meta-left {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .collection {
        padding: 32px 0 20px 0;
    }

    .section-separator {
        height: 60px;
    }

    .collection-title {
        font-size: 38px;
    }

    .collection-desc {
        font-size: 15px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .founder-note-title {
        font-size: 60px;
    }

    .quote-paragraph {
        font-size: 20px;
    }

    .quote-paragraph.emphasis {
        font-size: 22px;
    }

    .founder-quote-card {
        padding: 40px 30px;
    }

    .signature-name {
        font-size: 40px;
    }

    /* Footer responsive styles */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section .footer-heading {
        font-size: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-cta {
        justify-content: center;
    }

    .footer-cta a {
        justify-content: center;
    }

    .email-link {
        justify-content: center;
    }

    .subscribe-title {
        font-size: 48px;
    }

    .subscribe-subtitle {
        font-size: 18px;
    }

    .subscribe-header {
        margin-bottom: 60px;
    }

    .subscribe-container {
        padding: 0 20px;
    }

    .benefits-grid {
        gap: 25px;
    }

    .benefit-card {
        padding: 35px 28px;
    }

    .benefit-number {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .benefit-icon {
        width: 55px;
        height: 55px;
    }

    .benefit-icon svg {
        width: 28px;
        height: 28px;
    }

    .benefit-title {
        font-size: 24px;
    }

    .benefit-description {
        font-size: 16px;
    }

    .subscribe-btn {
        padding: 16px 40px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {
    .subscribe-title {
        font-size: 40px;
    }

    .subscribe-subtitle {
        font-size: 17px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .subscribe-benefits {
        padding: 60px 0;
    }

    .mission-quote br {
        display: none;
    }

    .founder-note-title {
        font-size: 55px;
    }

    .quote-paragraph {
        font-size: 19px;
    }

    .quote-paragraph.emphasis {
        font-size: 21px;
    }
}

@media (max-width: 520px) {
    .title-big {
        font-size: 40px;
    }

    .collection-title {
        font-size: 44px;
    }

    .slides {
        gap: 12px;
    }

    .slide {
        min-width: 260px;
        height: 170px;
    }
}

@media (max-width: 425px) {
    button {
        padding: 10px 20px;
    }

    .home-hero-h1 h1 {
        font-size: 50px;
    }

    .home-hero-h1 .italianno-regular {
        font-size: 105px;
    }

    .home-hero-h1 p {
        font-size: 18px;
    }

    .second-span-5 {
        font-size: 30px;
    }

    .second-span-4 {
        font-size: 30px;
    }

    .bg-gradient span {
        font-size: 12px;
    }

    .bg-gradient p {
        font-size: 14px;
    }

    .button-red button {
        padding: 10px 20px;
    }

    h2.mission-title {
        font-size: 30px;
    }

    blockquote {
        font-size: 24px;
        padding-left: 20px;
        margin-bottom: 20px;
    }

    blockquote::before {
        font-size: 70px;
        left: -5px;
        top: -15px;
    }

    .mission-description {
        font-size: 14px;
    }

    .mic1, .mic2 {
        max-width: 120px;
    }

    .capi-name {
        font-size: 60px;
    }

    .capi-subtitle {
        font-size: 22px;
    }

    .capi-description {
        font-size: 15px;
    }

    .capi-video-card {
        padding: 20px;
    }

    .capi-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .subscribe-title {
        font-size: 34px;
    }

    .subscribe-subtitle {
        font-size: 16px;
    }

    .subscribe-header {
        margin-bottom: 50px;
    }

    .benefit-card {
        padding: 30px 25px;
    }

    .benefit-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 20px;
    }

    .benefit-icon svg {
        width: 26px;
        height: 26px;
    }

    .benefit-title {
        font-size: 22px;
    }

    .benefit-description {
        font-size: 15px;
    }

    .subscribe-btn {
        padding: 14px 35px;
        font-size: 15px;
        letter-spacing: 1px;
    }

    .founder-note-title {
        font-size: 50px;
    }

    .quote-paragraph {
        font-size: 18px;
    }

    .quote-paragraph.emphasis {
        font-size: 20px;
    }

    .founder-quote-card {
        padding: 35px 25px;
    }

    .signature-name {
        font-size: 38px;
    }

    .founder-cta-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .contact-title-main {
        font-size: 70px;
    }

    .contact-heading {
        font-size: 24px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-cta-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .contact-image-card {
        padding: 25px;
    }

    .contact-mascot-large {
        max-width: 240px;
    }

    .contact-mascot-small {
        width: 70px;
        bottom: -10px;
        right: -10px;
    }
}

@media (max-width: 325px) {
    .home-hero-h1 h1 {
        font-size: 30px;
    }

    .home-hero-h1 .italianno-regular {
        font-size: 50px;
    }

    .home-hero-h1 p {
        font-size: 18px;
    }

    .home-fourth-section .second-span-4 {
        font-size: 20px;
    }

    .home-fourth-img {
        width: 20px;
        height: 40px;
    }

    .second-span-5 {
        font-size: 20px;
    }

    .second-span-4 {
        font-size: 30px;
    }

    .second-span-3 {
        font-size: 15px;
    }

    .slanted-banner {
        font-size: 20px;
        padding: 10px 0;
    }

    .capi-container {
        padding: 0 20px;
    }

    .capi-content-wrapper {
        gap: 40px;
    }

    .capi-name {
        font-size: 50px;
    }

    .capi-subtitle {
        font-size: 20px;
    }

    .meetCapi {
        padding: 60px 0;
        min-height: auto;
    }

    .page-head {
        padding-left: 0;
        padding-right: 0;
    }

    .subscribe-title {
        font-size: 28px;
    }

    .subscribe-subtitle {
        font-size: 15px;
    }

    .subscribe-benefits {
        padding: 50px 0;
    }

    .subscribe-header {
        margin-bottom: 40px;
    }

    .benefit-card {
        padding: 25px 20px;
    }

    .benefit-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefit-title {
        font-size: 20px;
    }

    .benefit-description {
        font-size: 14px;
    }

    .subscribe-btn {
        padding: 12px 30px;
        font-size: 14px;
    }

    .founder-note {
        padding: 50px 0;
    }

    .founder-note-container {
        padding: 0 20px;
    }

    .founder-note-title {
        font-size: 45px;
    }

    .quote-paragraph {
        font-size: 16px;
    }

    .quote-paragraph.emphasis {
        font-size: 18px;
    }

    .founder-quote-card {
        padding: 30px 20px;
    }

    .quote-mark {
        font-size: 150px;
        top: -25px;
        left: 20px;
    }

    .signature-name {
        font-size: 35px;
    }

    .signature-title {
        font-size: 14px;
    }

    .founder-cta-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .founder-cta-text {
        font-size: 16px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-title-main {
        font-size: 60px;
    }

    .contact-heading {
        font-size: 22px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-cta-btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .contact-image-card {
        padding: 20px;
    }

    .contact-mascot-large {
        max-width: 200px;
    }

    .contact-content-wrapper {
        gap: 40px;
    }
}
