:root {
    --cream: #F5EFE7;
    --cream-dark: #EBE3D5;
    --navy: #2C3E50;
    --navy-light: #34495E;
    --slate-blue: #6B8CAE;
    --slate-blue-dark: #5A7A9A;
    --green: #4A7C59;
    --green-dark: #3D6B4A;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-light: #666666;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Jost', 'Segoe UI', sans-serif;

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-sans);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 62, 80, 0.1);
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy);
}

.logo-icon {
    font-size: 1.5rem;
    transform: rotate(-45deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta):hover {
    color: var(--slate-blue);
}

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--slate-blue);
    transition: var(--transition);
}

.nav-links a:not(.nav-cta):hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    margin-top: 72px;
}

.hero-image {
    position: relative;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 1.2s ease-out;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.1), transparent);
}

.hero-content {
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--slate-blue), transparent);
    opacity: 0.3;
}

.hero-text {
    max-width: 500px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1;
    color: var(--navy);
    margin-bottom: 1rem;
}

.title-line {
    display: block;
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.hero-divider {
    width: 80px;
    height: 2px;
    background: var(--slate-blue);
    margin: 2rem 0;
}

.hero-description {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.hero-btn {
    display: inline-block;
    background: var(--navy);
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.hero-btn:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* About Section */
.about {
    padding: 8rem 3rem;
    background: var(--white);
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 1.5rem;
    animation: fadeIn 0.8s ease-out;
}

.section-subtitle {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* What We Do Section */
.what-we-do {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--cream);
}

.what-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.what-left {
    padding: 6rem 4rem;
    background: var(--cream);
}

.what-right {
    background: var(--slate-blue);
    position: relative;
    overflow: hidden;
}

.what-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
}

.what-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 2rem;
}

.what-intro {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.what-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.what-list li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    padding-left: 1.5rem;
    position: relative;
}

.what-list li:nth-child(odd) {
    font-weight: 500;
    color: var(--navy);
    padding-left: 0;
}

.what-list li:nth-child(even)::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--slate-blue);
}

/* How It Works Section */
.how-it-works {
    background: var(--slate-blue-dark);
    color: var(--white);
}

.how-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 600px;
}

.how-left {
    padding: 6rem 4rem;
}

.how-right {
    position: relative;
    overflow: hidden;
}

.how-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.how-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}

.how-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--cream);
    opacity: 0.5;
}

.step-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

/* Packages Section */
.packages {
    padding: 8rem 3rem;
    background: var(--white);
}

.packages-container {
    max-width: 1400px;
    margin: 0 auto;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.package-card {
    background: var(--white);
    border: 1px solid rgba(44, 62, 80, 0.1);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--navy);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card.pro::before {
    background: var(--slate-blue);
}

.package-card.elite::before {
    background: var(--navy);
}

.package-card.student::before {
    background: var(--green);
}

.package-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.package-name {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--navy);
}

.package-badge {
    background: rgba(255, 193, 7, 0.2);
    color: #F57F17;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.package-icon {
    width: 64px;
    height: 64px;
    color: var(--navy);
    opacity: 0.8;
}

.package-card.pro .package-icon {
    color: var(--slate-blue);
}

.package-card.elite .package-icon {
    color: var(--navy);
}

.package-card.student .package-icon {
    color: var(--green);
}

.package-service {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--navy);
}

.package-desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    flex-grow: 1;
}

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.package-features li {
    font-size: 1rem;
    color: var(--text-light);
}

.package-price {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 600;
    color: var(--green);
    margin: 1rem 0;
}

.package-turnaround {
    font-size: 0.95rem;
    color: var(--text-light);
}

.package-note {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Why Affix Section */
.why-affix {
    background: var(--cream);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.why-left {
    padding: 6rem 4rem;
}

.why-right {
    position: relative;
    overflow: hidden;
}

.why-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-title {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--navy);
    margin-bottom: 3rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-dark);
    padding-left: 2rem;
    position: relative;
}

.why-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--slate-blue);
    font-size: 1.5rem;
    line-height: 1.4;
}

/* Founder Section */
.founder {
    padding: 8rem 3rem;
    background: var(--white);
}

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

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-name {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--navy);
}

.founder-role {
    font-size: 1.1rem;
    color: var(--slate-blue);
    font-weight: 500;
}

.founder-bio {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.founder-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.founder-image {
    overflow: hidden;
}

.founder-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 8rem 3rem;
    background: var(--navy);
    color: var(--white);
    text-align: center;
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.cta-button:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

/* Footer */
.footer {
    padding: 4rem 3rem 3rem;
    background: var(--cream);
    text-align: center;
}

.footer-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
}

.footer-email {
    color: var(--slate-blue);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    margin-top: 1rem;
}

.footer-email:hover {
    color: var(--navy);
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.1);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-image {
        min-height: 50vh;
    }

    .hero-content {
        padding: 4rem 3rem;
    }

    .what-content,
    .how-container,
    .why-container,
    .founder-content {
        grid-template-columns: 1fr;
    }

    .what-right,
    .how-right,
    .why-right {
        min-height: 400px;
    }

    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        gap: 1.5rem;
        transform: translateY(-100%);
        opacity: 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-tagline {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .what-title,
    .how-title,
    .why-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .about,
    .packages,
    .founder,
    .cta-section {
        padding: 5rem 2rem;
    }

    .what-left,
    .how-left,
    .why-left {
        padding: 4rem 2rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .hero-content {
        padding: 3rem 2rem;
    }
}
