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

:root {
    --teal: #1a6b6a;
    --teal-light: #238584;
    --teal-dark: #134f4e;
    --teal-pale: #e8f4f4;
    --slate: #2d3748;
    --slate-mid: #4a5568;
    --slate-light: #718096;
    --slate-pale: #a0aec0;
    --bg: #fafbfc;
    --bg-warm: #f5f7f8;
    --white: #ffffff;
    --black: #0f1419;
    --line: rgba(26, 107, 106, 0.12);
    --line-strong: rgba(26, 107, 106, 0.25);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 8px;
    --radius-lg: 12px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--slate);
    background: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

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

/* ─── Typography ─── */
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: 24px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    padding: 14px 28px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    white-space: nowrap;
}

.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(26, 107, 106, 0.2);
}

.btn-ghost {
    background: transparent;
    color: var(--slate);
    border-color: var(--line-strong);
}

.btn-ghost:hover {
    border-color: var(--teal);
    color: var(--teal);
}

.btn-white {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
    font-weight: 500;
}

.btn-white:hover {
    background: var(--teal-pale);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── Header ─── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 251, 252, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow 0.3s var(--ease);
}

header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
}

.logo-mark {
    color: var(--teal);
    display: flex;
    align-items: center;
}

.logo-mark svg {
    width: 20px;
    height: 20px;
}

.logo em {
    font-style: italic;
    color: var(--teal);
    font-weight: 300;
}

/* ─── Navigation ─── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--slate-mid);
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--teal);
    transition: width 0.3s var(--ease);
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: var(--radius);
    text-transform: uppercase !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    transition: all 0.3s var(--ease) !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--slate);
}

.nav-toggle svg {
    width: 20px;
    height: 20px;
}

/* ─── Hero ─── */
.hero {
    padding-top: 72px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
    width: 100%;
}

.hero-content {
    padding-right: 20px;
}

.hero-eyebrow {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--black);
}

.hero-title .accent {
    color: var(--teal);
    font-style: italic;
    font-weight: 300;
}

.hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--slate-mid);
    margin-bottom: 36px;
    max-width: 460px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-details {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.detail {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--slate-light);
    letter-spacing: 0.03em;
}

.detail svg {
    color: var(--teal);
    width: 14px;
    height: 14px;
}

.hero-image {
    position: relative;
}

.hero-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0,0,0,0.1);
}

.hero-img-wrap img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
}

.hero-accent-line {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border-left: 1px solid var(--teal);
    border-bottom: 1px solid var(--teal);
    z-index: -1;
}

/* ─── Divider ─── */
.section-divider {
    display: flex;
    justify-content: center;
    padding: 8px 0;
}

.divider-icon {
    color: var(--teal);
    opacity: 0.4;
    width: 24px !important;
    height: 24px !important;
}

/* ─── Services ─── */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line);
}

.service-card {
    background: var(--white);
    padding: 40px 32px;
    transition: all 0.4s var(--ease);
    position: relative;
}

.service-card:hover {
    background: var(--teal-pale);
}

.service-number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 300;
    color: var(--teal);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 400;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--slate-mid);
    line-height: 1.7;
}

/* ─── About ─── */
.about {
    padding: 100px 0;
    background: var(--bg);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-img-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.about-content .section-title {
    margin-bottom: 28px;
}

.about-text {
    font-size: 0.95rem;
    color: var(--slate-mid);
    line-height: 1.85;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin: 40px 0;
    padding: 32px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.stat {
    flex: 1;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 400;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--slate-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    background: var(--line-strong);
    align-self: stretch;
}

.about-content .btn {
    margin-top: 8px;
}

/* ─── Gallery ─── */
.gallery {
    padding: 100px 0;
    background: var(--white);
}

.gallery .section-header {
    text-align: center;
    margin-bottom: 64px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease);
}

.gallery-item:nth-child(1) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(6) img {
    height: 520px;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(5) img {
    height: 420px;
}

.gallery-item:nth-child(4) img {
    height: 480px;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 25, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--white);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding-bottom: 4px;
}

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

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

.gallery-note {
    text-align: center;
    margin-top: 32px;
}

.gallery-note p {
    font-size: 0.82rem;
    color: var(--slate-pale);
    font-style: italic;
}

/* ─── Process ─── */
.process {
    padding: 100px 0;
    background: var(--teal);
    color: var(--white);
}

.process .section-eyebrow {
    color: rgba(255,255,255,0.6);
}

.process .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 64px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.process-step {
    position: relative;
    padding: 32px 24px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius);
    transition: all 0.3s var(--ease);
}

.process-step:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.2);
}

.step-label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 12px;
}

.process-step h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 400;
}

.process-step p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* ─── CTA ─── */
.cta {
    padding: 100px 0;
    background: var(--bg-warm);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.cta-content {
    flex: 1;
}

.cta-content .section-title {
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1rem;
    color: var(--slate-mid);
    line-height: 1.8;
    max-width: 440px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ─── Contact ─── */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-left .section-title {
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    background: var(--teal-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
}

.contact-item .contact-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-pale);
    margin-bottom: 4px;
}

.contact-item .contact-value {
    display: block;
    font-size: 0.92rem;
    color: var(--slate);
    line-height: 1.6;
}

.contact-link {
    color: var(--teal);
    font-size: 0.92rem;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--teal-dark);
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

/* ─── Contact Form ─── */
.contact-form {
    background: var(--bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
}

.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 6px;
    font-weight: 400;
}

.form-note {
    font-size: 0.82rem;
    color: var(--slate-light);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-mid);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--slate);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(26, 107, 106, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--slate-pale);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* ─── Form Success ─── */
.form-success {
    text-align: center;
    padding: 48px 40px;
    display: none;
}

.success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--slate-mid);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ─── Footer ─── */
.footer {
    padding: 60px 0 32px;
    background: var(--black);
    color: rgba(255,255,255,0.5);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.4);
    max-width: 280px;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
    letter-spacing: 0.04em;
}

.footer-links a:hover {
    color: var(--teal-light);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.3);
}

/* ─── Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    
    .about-inner {
        gap: 48px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(250, 251, 252, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid var(--line);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.4s var(--ease);
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 24px;
    }

    .hero-content {
        padding-right: 0;
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-img-wrap img {
        height: 500px;
    }

    .hero-accent-line {
        display: none;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-img-wrap img {
        height: 400px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .gallery-item:nth-child(1) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(6) img {
        height: 360px;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(5) img {
        height: 280px;
    }

    .gallery-item:nth-child(4) img {
        height: 320px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-desc {
        max-width: 100%;
    }

    .cta-actions {
        justify-content: center;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        justify-content: center;
    }

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

    .gallery-item img {
        height: 360px !important;
    }

    .about-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        justify-content: center;
    }
}
