﻿:root {
    --amp-cream: #f8f3ea;
    --amp-warm: #efe4d3;
    --amp-charcoal: #262321;
    --amp-muted: #6f665f;
    --amp-gold: #b89b68;
    --amp-gold-dark: #8d7348;
    --amp-white: #fffdf9;
    --amp-line: rgba(38, 35, 33, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--amp-cream);
    color: var(--amp-charcoal);
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.text-center {
    text-align: center;
}

/* Header */

.amp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 18px 40px;
    background: rgba(248, 243, 234, 0.93);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--amp-line);
}

.amp-brand {
    line-height: 1;
    flex: 0 0 auto;
}

.amp-brand-main {
    display: block;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.amp-brand-sub {
    display: block;
    margin-top: 2px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--amp-muted);
}

.amp-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

    .amp-nav a {
        color: var(--amp-muted);
        transition: color 0.18s ease;
    }

        .amp-nav a:hover {
            color: var(--amp-charcoal);
        }

.amp-social,
.amp-footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .amp-social a,
    .amp-footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--amp-line);
        color: var(--amp-muted);
        transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    }

        .amp-social a:hover,
        .amp-footer-social a:hover {
            background: rgba(184, 155, 104, 0.1);
            border-color: var(--amp-gold);
            color: var(--amp-gold-dark);
            transform: translateY(-1px);
        }

/* Common */

.amp-container {
    max-width: 1180px;
    margin: 0 auto;
}

.amp-kicker {
    margin: 0 0 16px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amp-gold);
}

.amp-section {
    padding: 86px 42px;
}

    .amp-section h2 {
        margin: 0;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: clamp(2rem, 4vw, 3.8rem);
        font-weight: 600;
        line-height: 1.05;
        letter-spacing: -0.02em;
    }

    .amp-section p {
        font-size: 0.97rem;
        line-height: 1.9;
        color: var(--amp-muted);
    }

.amp-two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 64px;
    align-items: start;
}

/* Buttons */

.amp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}

    .amp-btn:hover {
        transform: translateY(-1px);
    }

.amp-btn-primary {
    background: var(--amp-gold);
    color: white;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

    .amp-btn-primary:hover {
        background: var(--amp-gold-dark);
        color: white;
    }

.amp-btn-light {
    background: rgba(255, 255, 255, 0.92);
    color: var(--amp-charcoal);
}

    .amp-btn-light:hover {
        background: white;
        color: var(--amp-charcoal);
    }

/* Hero */

.amp-hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    align-items: center;
    padding: 140px 42px 80px;
    background: linear-gradient(to right, rgba(38, 35, 33, 0.64), rgba(38, 35, 33, 0.2)), url("../Images/hero-home.jpg") center center / cover no-repeat;
    color: white;
}

.amp-hero-content {
    position: relative;
    max-width: 780px;
}

.amp-hero h1 {
    margin: 0;
    max-width: 800px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 600;
    line-height: 0.96;
    letter-spacing: -0.035em;
}

.amp-hero-text {
    max-width: 560px;
    margin: 28px 0 0;
    font-size: 1.02rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.88);
}

.amp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

/* Intro */

.amp-intro {
    background: var(--amp-cream);
}

/* Portfolio cards */

.amp-portfolio-strip {
    background: var(--amp-white);
    border-top: 1px solid var(--amp-line);
    border-bottom: 1px solid var(--amp-line);
}

.amp-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 42px;
}

.amp-photo-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 420px;
    border-radius: 28px;
    background: #ddd;
    box-shadow: 0 18px 42px rgba(38, 35, 33, 0.08);
}

    .amp-photo-card img {
        display: block;
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .amp-photo-card:hover img {
        transform: scale(1.045);
    }

    .amp-photo-card::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent 58%);
    }

    .amp-photo-card span {
        position: absolute;
        left: 26px;
        bottom: 24px;
        z-index: 2;
        color: white;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 2rem;
        font-weight: 600;
        letter-spacing: -0.02em;
    }

/* Process */

.amp-process {
    background: var(--amp-cream);
}

.amp-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    margin-top: 42px;
}

.amp-step {
    padding: 28px;
    border-radius: 24px;
    background: var(--amp-white);
    border: 1px solid var(--amp-line);
}

    .amp-step span {
        display: inline-flex;
        width: 38px;
        height: 38px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--amp-warm);
        color: var(--amp-gold-dark);
        font-weight: 700;
    }

    .amp-step h3 {
        margin: 22px 0 8px;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 1.6rem;
        font-weight: 600;
    }

    .amp-step p {
        margin: 0;
        font-size: 0.92rem;
    }

/* Client gallery CTA */

.amp-client-gallery-cta {
    padding-top: 20px;
}

.amp-cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    padding: 48px;
    border-radius: 34px;
    background: var(--amp-charcoal);
    color: white;
}

    .amp-cta-panel h2 {
        color: white;
    }

    .amp-cta-panel p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.74);
    }

/* Instagram strip */

.amp-instagram-strip {
    padding: 76px 42px;
    background: var(--amp-white);
    border-top: 1px solid var(--amp-line);
}

    .amp-instagram-strip h2 {
        margin: 0;
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: clamp(2rem, 4vw, 3.4rem);
        font-weight: 600;
    }

    .amp-instagram-strip p {
        max-width: 520px;
        margin: 16px auto 0;
        font-size: 0.96rem;
        line-height: 1.8;
        color: var(--amp-muted);
    }

    .amp-instagram-strip a {
        color: var(--amp-gold-dark);
        font-weight: 600;
    }

    .amp-instagram-strip h2 a {
        color: var(--amp-charcoal);
        transition: color .2s ease;
    }

        .amp-instagram-strip h2 a:hover {
            color: var(--amp-gold-dark);
        }

.amp-instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    padding: 12px 24px;
    border-radius: 999px;
    background: var(--amp-gold);
    color: white;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: all .2s ease;
}

    .amp-instagram-btn:hover {
        background: var(--amp-gold-dark);
        color: white;
        transform: translateY(-1px);
    }

    .amp-instagram-btn i {
        font-size: 1rem;
    }

/* Footer */

.amp-footer {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 34px;
    padding: 34px 42px;
    background: var(--amp-charcoal);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9rem;
    line-height: 1.7;
}

    .amp-footer strong {
        color: white;
        font-weight: 600;
    }

.amp-footer-links {
    display: flex;
    align-items: center;
    gap: 22px;
}

.amp-footer a {
    color: rgba(255, 255, 255, 0.72);
    transition: color 0.18s ease;
}

    .amp-footer a:hover {
        color: white;
    }

.amp-footer-social a {
    border-color: rgba(255, 255, 255, 0.22);
    color: rgba(255, 255, 255, 0.72);
}

    .amp-footer-social a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: white;
    }

/* Responsive */

@media (max-width: 1050px) {
    .amp-header {
        gap: 20px;
        padding: 16px 24px;
    }

    .amp-nav {
        gap: 18px;
        font-size: 0.78rem;
    }

    .amp-brand-main {
        font-size: 1.75rem;
    }
}

@media (max-width: 900px) {
    .amp-header {
        position: static;
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .amp-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 18px;
        padding-bottom: 4px;
    }

    .amp-social {
        align-self: flex-start;
    }

    .amp-hero {
        min-height: 78vh;
        padding: 78px 24px;
    }

    .amp-section,
    .amp-instagram-strip {
        padding: 62px 24px;
    }

    .amp-two-col,
    .amp-card-grid,
    .amp-steps {
        grid-template-columns: 1fr;
    }

    .amp-photo-card,
    .amp-photo-card img {
        min-height: 340px;
    }

    .amp-cta-panel {
        flex-direction: column;
        align-items: flex-start;
        padding: 34px;
    }

    .amp-footer {
        grid-template-columns: 1fr;
        align-items: flex-start;
        padding: 30px 24px;
    }

    .amp-footer-links {
        flex-wrap: wrap;
        gap: 16px;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 15px;
    }

    .amp-brand-main {
        font-size: 1.55rem;
    }

    .amp-brand-sub {
        font-size: 0.68rem;
    }

    .amp-hero h1 {
        font-size: clamp(2.6rem, 16vw, 4rem);
    }

    .amp-hero-text {
        font-size: 0.96rem;
    }

    .amp-btn {
        width: 100%;
    }

    .amp-photo-card,
    .amp-photo-card img {
        min-height: 300px;
    }
}
