:root {
    --teal-dark: #1a5c5e;
    --teal-mid: #2a7f7f;
    --teal-light: #7fc5c5;
    --teal-pale: #b8dede;
    --teal-whisper: #e8f4f4;
    --cream: #faf9f7;
    --warm-white: #fffefb;
    --charcoal: #1c2a2a;
    --text-body: #3a4f4f;
    --gold-accent: #b8986e;
    --gold-light: #d4b896;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: "Outfit", sans-serif;
    background: var(--warm-white);
    color: var(--text-body);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ── Navigation ── */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s ease;
    background: transparent;
}

nav.scrolled {
    background: rgba(250, 249, 247, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    box-shadow: 0 1px 0 rgba(26, 92, 94, 0.08);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 100px;
    width: auto;
    object-fit: contain;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--teal-dark);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 0.3s;
}

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

.nav-cta {
    background: var(--teal-dark) !important;
    color: var(--warm-white) !important;
    padding: 0.65rem 1.6rem;
    border-radius: 2px;
    transition: background 0.3s !important;
}

.nav-cta:hover {
    background: var(--teal-mid) !important;
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        165deg,
        #f4f8fb 0%,
        #dcedf2 35%,
        #b5d8e0 65%,
        var(--teal-pale) 100%
    );
}

.hero-bg-shape {
    position: absolute;
    right: -10%;
    top: -20%;
    width: 70vw;
    height: 140vh;
    background: radial-gradient(
        ellipse at center,
        rgba(22, 78, 110, 0.06) 0%,
        transparent 70%
    );
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(2deg);
    }
}

.hero-line-accent {
    position: absolute;
    left: 8%;
    top: 30%;
    width: 1px;
    height: 200px;
    background: linear-gradient(
        to bottom,
        transparent,
        var(--gold-accent),
        transparent
    );
    animation: fadeSlideDown 1.8s ease 0.5s both;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
        height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        height: 200px;
    }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 11rem 4rem 4rem;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeUp 1s ease 0.2s both;
}

.hero-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--charcoal);
    max-width: 750px;
    margin-bottom: 2rem;
    animation: fadeUp 1s ease 0.4s both;
}

.hero-title em {
    font-style: italic;
    color: var(--teal-dark);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 560px;
    color: var(--text-body);
    margin-bottom: 3rem;
    animation: fadeUp 1s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    animation: fadeUp 1s ease 0.8s both;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--teal-dark);
    color: var(--warm-white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--teal-mid);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 0;
}

.btn-primary:hover::after {
    transform: translateX(0);
}
.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--teal-dark);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: gap 0.3s ease;
}

.btn-secondary:hover {
    gap: 0.8rem;
}
.btn-secondary svg {
    transition: transform 0.3s;
}
.btn-secondary:hover svg {
    transform: translateX(3px);
}

/* ── Section Divider ── */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1rem 0;
}

.divider-line {
    width: 60px;
    height: 1px;
    background: var(--gold-accent);
}
.divider-diamond {
    width: 6px;
    height: 6px;
    border: 1px solid var(--gold-accent);
    transform: rotate(45deg);
}

/* ── Introduction ── */
.intro {
    padding: 7rem 4rem;
    background: var(--warm-white);
}

.intro-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.intro-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto;
}

/* ── Services ── */
.services {
    padding: 7rem 4rem;
    background: linear-gradient(
        180deg,
        var(--teal-whisper) 0%,
        var(--warm-white) 100%
    );
}

.services-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.services-header {
    text-align: center;
    margin-bottom: 5rem;
}

.services-title {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-body);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--warm-white);
    padding: 2.8rem 2.2rem;
    border: 1px solid rgba(26, 92, 94, 0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-accent), var(--teal-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(26, 92, 94, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--teal-dark);
}

.service-card h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-body);
}

/* ── Promise ── */
.promise {
    padding: 7rem 4rem;
    background: var(--teal-dark);
    color: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.promise::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60vw;
    height: 100vh;
    background: radial-gradient(
        ellipse,
        rgba(184, 152, 110, 0.08) 0%,
        transparent 60%
    );
    border-radius: 50%;
}

.promise-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.promise .section-eyebrow {
    color: var(--gold-light);
}

.promise-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3rem;
    color: var(--warm-white);
}

.promise-heading em {
    font-style: italic;
    color: var(--gold-light);
}

.promise-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.promise-step {
    text-align: center;
}

.step-number {
    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
    opacity: 0.7;
}

.step-title {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    color: var(--teal-pale);
}

.step-desc {
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Location ── */
.location {
    padding: 7rem 4rem;
    background: var(--warm-white);
}

.location-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: stretch;
}

.location-text .section-eyebrow {
    text-align: left;
}

.location-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.location-desc {
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-body);
}

.location-visual {
    position: relative;
    min-height: 280px;
    overflow: hidden;
    border-radius: 4px;
}

.location-visual iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.location-visual .pin {
    position: absolute;
    top: 45%;
    left: 52%;
    width: 12px;
    height: 12px;
    background: var(--gold-accent);
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(184, 152, 110, 0.2),
        0 0 0 8px rgba(184, 152, 110, 0.08);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow:
            0 0 0 4px rgba(184, 152, 110, 0.2),
            0 0 0 8px rgba(184, 152, 110, 0.08);
    }
    50% {
        box-shadow:
            0 0 0 8px rgba(184, 152, 110, 0.15),
            0 0 0 16px rgba(184, 152, 110, 0.05);
    }
}

/* ── CTA / Contact ── */
.cta {
    padding: 7rem 4rem;
    background: linear-gradient(
        180deg,
        var(--warm-white) 0%,
        var(--teal-whisper) 100%
    );
    text-align: center;
}

.cta-inner {
    max-width: 700px;
    margin: 0 auto;
}

.cta-heading {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-heading em {
    font-style: italic;
    color: var(--teal-dark);
}

.cta-text {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 2.5rem;
}

.cta .btn-primary {
    font-size: 0.82rem;
    padding: 1.1rem 3rem;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-body);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.6;
}

.contact-item svg {
    color: var(--gold-accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: var(--teal-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--gold-accent);
}

/* ── Contact Form ── */
.contact-form {
    margin-top: 3rem;
    text-align: left;
}

.form-input {
    width: 100%;
    padding: 0.9rem 1.2rem;
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 300;
    color: var(--charcoal);
    background: #ffffff;
    border: 1.5px solid rgba(26, 92, 94, 0.35);
    outline: none;
    transition: border-color 0.3s;
    margin-bottom: 1rem;
}

.form-input:focus {
    border-color: var(--teal-mid);
}

.form-input::placeholder {
    color: rgba(58, 79, 79, 0.45);
}

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

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

.form-submit {
    text-align: center;
    margin-top: 1.5rem;
}

/* ── Messages (Django) ── */
.messages-container {
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    width: 90%;
    max-width: 500px;
}

.message-alert {
    padding: 1rem 1.5rem;
    background: var(--teal-dark);
    color: var(--warm-white);
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    animation: fadeUp 0.5s ease both;
    margin-bottom: 0.5rem;
}

/* ── Footer ── */
footer {
    padding: 3rem 4rem 2rem;
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.5);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--teal-pale);
    letter-spacing: 0.15em;
}

.footer-info {
    font-size: 0.78rem;
    text-align: right;
    line-height: 1.8;
    letter-spacing: 0.04em;
}

/* ── Responsive ── */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }
    nav.scrolled {
        padding: 0.8rem 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .hero-content {
        padding: 7rem 1.5rem 3rem;
    }
    .intro,
    .services,
    .promise,
    .location,
    .cta {
        padding: 4rem 1.5rem;
    }
    .promise-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .location-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .footer-inner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .footer-info {
        text-align: center;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .hero-line-accent {
        display: none;
    }
    .contact-details {
        flex-direction: column;
        align-items: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}
