* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sage: #afb5a7;
    --dark: #020403;
    --olive: #a6a98a;
    --light-sage: #c9cec2;
    --cream: #f5f5f0;
    --soft-white: #fafaf8;
    --header-height: 60px;
}

html {
    scroll-behavior: smooth;
    background-color: var(--dark);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--soft-white);
    overflow-x: hidden;
    overscroll-behavior-y: contain;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 250, 248, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(175, 181, 167, 0.2);
    transition: all 0.3s ease;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Section */
.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand img {
    flex-shrink: 0;
    border-radius: 7.5%;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text .name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.brand-text .tag {
    font-size: 0.8rem;
    color: var(--olive);
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Primary Navigation */
.primary-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 400;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.25s ease;
    padding: 0.5rem 0;
    -webkit-tap-highlight-color: transparent;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--olive);
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 280ms cubic-bezier(.2, .9, .3, 1);
    will-change: transform;
    pointer-events: none;
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.cta {
    padding: 0.6rem 1.5rem;
    background: var(--olive);
    color: var(--soft-white);
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.cta::after {
    display: none !important;
}

.nav-link.cta:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(166, 169, 138, 0.3);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .brand-text .name {
        font-size: 1.1rem;
    }

    .brand-text .tag {
        font-size: 0.7rem;
    }

    .brand img {
        width: 35px;
        height: 35px;
    }

    .primary-nav {
        position: fixed;
        left: -100%;
        top: var(--header-height, 70px);
        flex-direction: column;
        background: var(--soft-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .primary-nav.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
    }

    .nav-link.cta {
        margin-top: 1rem;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 0.8rem 1rem;
    }

    .brand {
        gap: 0.7rem;
    }

    .brand img {
        width: 32px;
        height: 32px;
    }

    .brand-text .name {
        font-size: 1rem;
    }

    .brand-text .tag {
        font-size: 0.65rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    background: linear-gradient(135deg, var(--soft-white) 0%, var(--cream) 100%);
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

/* Breathing Circle */
.breathing-circle {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 1rem;
}

.circle-outer,
.circle-middle,
.circle-inner {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.circle-outer {
    width: 75%;
    height: 75%;
    border: 2px solid var(--sage);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: breathe-outer 16s ease-in-out infinite;
    opacity: 0.4;
}

.circle-middle {
    width: 58%;
    height: 58%;
    border: 2px solid var(--olive);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: breathe-middle 16s ease-in-out infinite;
    opacity: 0.6;
}

.lotus {
    width: 50%;
    height: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: breathe-inner 16s ease-in-out infinite;
    overflow: visible;
    transform-origin: center center;
}

@keyframes breathe-inner {
    0% {
        transform: translate(-50%, -50%) scale(1);
    }

    25% {
        transform: translate(-50%, -50%) scale(1.5);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.5);
    }

    75% {
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

@keyframes breathe-outer {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }

    25%,
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }

    75% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.4;
    }
}

@keyframes breathe-middle {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    25%,
    50% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0.3;
    }

    75% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
}

/* Hero Text */
.hero-title {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--olive);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.cta-button {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    background: var(--olive);
    color: var(--soft-white);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(166, 169, 138, 0.3);
}

/* Fade In Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in forwards;
}

.fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-in 0.3s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 1s ease-in 0.6s forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Sections */
.section {
    padding: 6rem 0;
    scroll-margin-top: 80px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--olive);
}

/* What Section */
.what-section {
    background: var(--soft-white);
}

.what-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.what-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(175, 181, 167, 0.2);
}

.what-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(175, 181, 167, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--light-sage), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
}

.what-card h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--dark);
}

.what-card p {
    color: #555;
    line-height: 1.8;
}

.what-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.what-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

/* About Section */
.about-section {
    background: var(--cream);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.client-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 20px;
    display: block;
    position: relative;
    z-index: 2;
}

.accent-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--light-sage);
    border-radius: 20px;
    top: 20px;
    left: 20px;
    z-index: 1;
}

.about-text {
    text-align: left;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.about-text .section-title::after {
    left: 0;
    transform: none;
}

.about-intro {
    font-size: 1.2rem;
    color: var(--olive);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 1.5rem;
}

.credentials {
    margin-top: 2.5rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border-left: 4px solid var(--olive);
}

.credentials h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.credentials ul {
    list-style: none;
}

.credentials li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.credentials li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--olive);
    font-size: 1.5rem;
    top: 0;
    line-height: -1;
}

/* Journey section */
.hidden {
    display: none;
}

.journey-section {
    padding-top: 60px;
}

.journey-timeline {
    margin-top: 40px;
    border-left: 3px solid rgba(255, 255, 255, 0.3);
    padding-left: 30px;
}

.journey-item {
    margin-bottom: 40px;
    position: relative;
}

.journey-item::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    position: absolute;
    left: -40px;
    top: 5px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.story-button {
    margin-top: 20px;
    padding: 12px 22px;
    background: white;
    color: #222;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}

.story-button:hover {
    background: #e8e8e8;
}

/* Contact Section */
.contact-section {
    background: var(--soft-white);
}

.contact-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(175, 181, 167, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--olive);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 0.25rem;
}

.form-group input:focus+label,
.form-group textarea:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group textarea:not(:placeholder-shown)+label {
    top: -0.7rem;
    left: 0.8rem;
    font-size: 0.85rem;
    color: var(--olive);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: transparent;
    opacity: 1;
}

.submit-button {
    padding: 1rem 2rem;
    background: var(--olive);
    color: var(--soft-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.submit-button:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(166, 169, 138, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.info-item p {
    color: #555;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-sage);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--olive);
    color: white;
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--sage);
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.footer-logo {
    width: 100px;
    height: auto;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.footer-text-block {
    max-width: 300px;
}

.footer-tagline {
    font-size: 1rem;
    line-height: 1.45;
    opacity: 0.85;
}

.footer-info {
    text-align: right;
    line-height: 1.6;
    opacity: 0.85;
}

.footer-copy {
    font-size: 0.9rem;
}

.footer-credit a {
    color: var(--cream);
    font-weight: 500;
}

@media (max-width: 700px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
    }

    .footer-info {
        text-align: center;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--soft-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem;
        gap: 1.5rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text .section-title {
        text-align: center;
    }

    .about-text .section-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .what-grid {
        grid-template-columns: 1fr;
    }

    .breathing-circle {
        width: 150px;
        height: 150px;
    }

    .circle-outer {
        width: 150px;
        height: 150px;
    }

    .circle-middle {
        width: 110px;
        height: 110px;
    }

    .circle-inner {
        width: 70px;
        height: 70px;
    }
}

/* Journey Section */
.journey-wrapper {
    background: var(--soft-white);
    border-radius: 30px;
    margin-top: 3rem;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: scale(0.98);
    transition:
        max-height 1s ease,
        opacity 0.6s ease 0.2s,
        transform 0.6s ease 0.2s,
        padding 0.6s ease;
    padding: 0 2rem;
}

.journey-wrapper.expanded {
    max-height: 2000px;
    opacity: 1;
    transform: scale(1);
    padding: 3rem 2rem;
}

.journey-section {
    background: transparent;
    padding: 0;
}

.journey-section .section-title {
    margin-bottom: 2.5rem;
}

/* Journey timeline */
.journey-timeline {
    border-left: 3px solid rgba(0, 0, 0, 0.15);
    padding-left: 30px;
    margin-top: 2rem;
}

.journey-item {
    margin-bottom: 2.5rem;
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
}

.journey-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.journey-item::before {
    content: "";
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--olive);
    position: absolute;
    left: -39px;
    top: 8px;
    box-shadow: 0 0 15px rgba(166, 169, 138, 0.5);
}

.story-button {
    margin-top: 25px;
    padding: 12px 28px;
    background: var(--olive);
    color: var(--soft-white);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.story-button:hover {
    background: var(--sage);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(166, 169, 138, 0.3);
}

/* --- Parallax Cloud Layers --- */
.cloud {
    position: absolute;
    pointer-events: none;
    opacity: 0.25;
}

.cloud-top-left {
    width: 300px;
    left: 50px;
    top: 15%;
    opacity: 0.25;
}

.cloud-center-left {
    width: 2000px;
    left: -600px;
    top: 45%;
    transform: translateY(-50%);
    animation-duration: 25s;
}

.cloud-top-right {
    width: 2000px;
    right: -1200px;
    top: 10%;
}

.cloud-bottom-right {
    width: 2080px;
    right: -1500px;
    bottom: 10%;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 10;
}

@media (max-width: 1024px) {
    .cloud-top-left {
        width: 250px;
        left: 40px;
        top: 12%;
    }

    .cloud-center-left {
        left: -600px;
        width: 1500px;
    }

    .cloud-top-right {
        right: -900px;
        width: 1500px;
    }

    .cloud-bottom-right {
        right: -1100px;
        width: 1600px;
    }
}

@media (max-width: 768px) {
    .cloud-top-left {
        width: 200px;
        left: 30px;
        top: 10%;
    }

    .cloud-center-left {
        left: -500px;
        width: 1200px;
    }

    .cloud-top-right {
        right: -700px;
        width: 1200px;
    }

    .cloud-bottom-right {
        right: -900px;
        width: 1300px;
    }
}

@media (max-width: 480px) {
    .cloud-top-left {
        width: 150px;
        left: 20px;
        top: 8%;
    }

    .cloud-center-left {
        left: -400px;
        width: 900px;
    }

    .cloud-top-right {
        right: -500px;
        width: 900px;
    }

    .cloud-bottom-right {
        right: -650px;
        width: 1000px;
    }
}

@media (max-width: 500px) {
    .section {
        padding: 3.5rem 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .client-photo {
        border-radius: 15px;
    }

    .accent-shape {
        top: 12px;
        left: 12px;
    }

    .about-text .section-title {
        font-size: 1.8rem;
    }

    .journey-wrapper {
        padding: 0 1rem;
    }

    .journey-wrapper.expanded {
        padding: 2rem 1rem;
    }

    .journey-item {
        margin-bottom: 1.8rem;
    }

    .journey-timeline {
        padding-left: 20px;
    }

    .journey-item::before {
        left: -28px;
        width: 12px;
        height: 12px;
    }

    .journey-item p {
        font-size: 0.9rem;
        line-height: 1.7;
    }

    .journey-section .section-title {
        font-size: 2rem;
    }

    .breathing-circle {
        width: 130px;
        height: 130px;
    }

    .circle-outer {
        width: 72%;
        height: 72%;
    }

    .circle-middle {
        width: 52%;
        height: 52%;
    }

    .lotus {
        width: 42%;
        height: 42%;
    }
}