﻿:root {
    --black: #000000;
    --gold-dark: #a27d28;
    --gold: #f0b743;
    --gold-gradient: linear-gradient(135deg, #a27d28, #f0b743);
    --sand: #f8f2e3;
    --gray: #5c5c5c;
    --body: #1f1f1f;
    --radius: 1rem;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, sans-serif;
    color: var(--body);
    background-color: #ffffff;
    line-height: 1.6;
    font-size: 16px;
}

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

ul {
    list-style: none;
}

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

.container {
    width: min(1200px, 90vw);
    margin: 0 auto;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    color: var(--gold-dark);
    font-weight: 600;
}

h1, h2, h3 {
    font-weight: 600;
    line-height: 1.2;
    color: var(--black);
}

p {
    color: var(--gray);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 600;
    transition: transform var(--transition), background-color var(--transition), color var(--transition);
    cursor: pointer;
}

.btn.primary {
    background-image: var(--gold-gradient);
    color: #fff;
    border: none;
    background-size: 200% auto;
}

.btn.primary:hover {
    transform: translateY(-2px);
    background-position: right center;
}

.btn.secondary {
    background-image: var(--gold-gradient);
    color: #201503;
    border: none;
    background-size: 200% auto;
    box-shadow: 0 12px 28px rgba(162, 125, 40, 0.25);
}

.btn.secondary:hover {
    background-position: right center;
}

.btn.ghost {
    border-color: rgba(0,0,0,0.15);
    color: var(--black);
}

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

.hero .btn.ghost {
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.hero .btn.ghost:hover {
    border-color: #fff;
}

.btn.full {
    width: 100%;
}

.site-header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.brand img {
    width: 144px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.95rem;
}

.main-nav a {
    padding: 0.25rem 0;
    position: relative;
}

.main-nav a::after {
    content: '✓';
    position: absolute;
    left: 0;
    bottom: -0.3rem;
    width: 100%;
    height: 2px;
    background-color: var(--gold-dark);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    color: var(--gold-dark);
    font-weight: 600;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--black);
    display: block;
}

.hero {
    position: relative;
    min-height: 80vh;
    color: #fff;
    overflow: hidden;
}

.hero-media,
.hero-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: relative;
    background: linear-gradient(110deg, rgba(0,0,0,0.94), rgba(0,0,0,0.35));
    min-height: inherit;
    display: flex;
    align-items: center;
}

.hero-shell {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding: 0 clamp(1rem, 5vw, 2rem);
}

.hero-content {
    padding: clamp(4rem, 8vw, 7rem) 0;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-text h1,
.hero-content h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 3.2rem);
}

.hero-text .lead,
.hero-content .lead {
    margin: 1rem 0 0.75rem;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-shell .hero-cta {
    justify-content: flex-start;
}

.hero-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    padding-bottom: clamp(2rem, 5vw, 3rem);
}

.hero-meta div {
    border-top: 1px solid rgba(255,255,255,0.25);
    padding-top: 1rem;
}

.hero-meta span {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.5rem;
}

.hero-meta p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.section {
    padding: 4rem 0;
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
}

.grid {
    display: grid;
    gap: 1.5rem;
}

.services-grid article,
.package-card,
.highlight-card,
.values-list article {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0.9rem;
    padding: 1rem 1.25rem;
    background-color: #fffef8;
    box-shadow: 0 10px 18px rgba(0,0,0,0.04);
}

.services-flow {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.service-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: stretch;
    background: #fffdf7;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
}

.service-row:nth-child(even) .service-media {
    order: 2;
}

.service-row:nth-child(even) .service-copy {
    order: 1;
}

.service-media,
.service-copy {
    flex: 1 1 320px;
    min-height: 240px;
}

.service-media {
    max-width: 420px;
    min-height: 280px;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.service-copy {
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-step {
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--gold-dark);
    text-transform: uppercase;
}

.service-copy p {
    color: var(--body);
    font-weight: 500;
}

.service-copy h3,
.package-card h3,
.values-list h3 {
    margin-bottom: 0.75rem;
}

.service-points li,
.package-card ul li {
    padding-left: 1.2rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.service-points li::before,
.package-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 0.45rem;
    height: 0.45rem;
    background: var(--gold-dark);
    border-radius: 50%;
}

.service-points li {
    color: var(--gray);
    font-size: 0.95rem;
}

.highlight {
    background: var(--sand);
}

.highlight-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: stretch;
}

.timeline {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.timeline div {
    border-left: 2px solid var(--gold-dark);
    padding-left: 1rem;
}

.timeline span {
    font-weight: 600;
    color: var(--gold-dark);
}

.highlight-card {
    background: linear-gradient(140deg, rgba(162, 125, 40, 0.08), rgba(240, 183, 67, 0.2));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1rem;
}

.highlight-note {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.85rem;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.highlight-figure {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 0;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: inset 0 0 40px rgba(0,0,0,0.15);
}

.highlight-figure img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.highlight-card ul li {
    position: relative;
    padding-left: 1.5rem;
}

.highlight-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0.1rem;
    color: var(--gold-dark);
    font-size: 0.9rem;
}

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

.package-card .package-label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--gold-dark);
    margin-bottom: 0.4rem;
}

.package-card .package-target {
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.package-card.premium {
    border-color: rgba(162, 125, 40, 0.5);
    background: linear-gradient(150deg, rgba(162, 125, 40, 0.15), rgba(240, 183, 67, 0.3));
}

.inner-hero {
    background: var(--sand);
    padding: 4rem 0 2.5rem;
}

.inner-hero .container {
    max-width: 800px;
}

.privacy-body {
    padding: 3rem 0 4rem;
}

.privacy-body .container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.privacy-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.75rem;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.04);
}

.privacy-card h2,
.privacy-card h3 {
    margin-top: 1rem;
}

.privacy-card ul {
    list-style: disc;
    padding-left: 1.2rem;
    margin: 0.6rem 0 1rem;
}

.privacy-card ul li {
    color: var(--gray);
    margin-bottom: 0.35rem;
}

.privacy-cta {
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: var(--radius);
    padding: 1.5rem;
    background: #fffdf7;
}

.privacy-cta a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.values-layout {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
}

.values-media {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border: 1px solid rgba(0,0,0,0.08);
    min-height: 320px;
}

.values-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.values-list {
    display: grid;
    gap: 0.75rem;
}

.contact {
    background: #fafafa;
}

.contact-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: start;
}

.contact-info li {
    margin-bottom: 0.65rem;
}

.contact-info span {
    font-weight: 600;
    color: var(--black);
}

.contact-form {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group.full {
    grid-column: 1 / -1;
}

label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--black);
}

input, select, textarea {
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 0.6rem;
    padding: 0.75rem 1rem;
    font-family: inherit;
    background: #fff;
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 2px rgba(162,125,40,0.2);
}

.form-feedback {
    grid-column: 1 / -1;
    font-size: 0.9rem;
    min-height: 1.4rem;
    color: var(--gold-dark);
}

.form-feedback.error {
    color: #b3261e;
}

.form-feedback.success {
    color: #1f7a3d;
}

.consent-check {
    grid-column: 1 / -1;
    display: flex;
    gap: 0.6rem;
    font-size: 0.85rem;
    color: var(--gray);
    align-items: flex-start;
}

.consent-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 0.2rem;
}

.consent-check a {
    color: var(--gold-dark);
    text-decoration: underline;
}

.btn[disabled] {
    cursor: not-allowed;
    opacity: 0.6;
}

input.has-error,
select.has-error,
textarea.has-error {
    border-color: #b3261e;
}

.site-footer {
    background: #050505;
    color: rgba(255,255,255,0.85);
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.footer-brand img {
    width: 140px;
    margin-bottom: 1rem;
}

.footer-grid h4 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.footer-nav a,
.footer-contact a {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.2rem 0;
}

.footer-bottom-layout {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--gold);
    font-weight: 500;
}

.footer-links a:hover {
    text-decoration: underline;
}

body.modal-open {
    overflow: hidden;
}

.privacy-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
    z-index: 2000;
}

.privacy-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.privacy-modal__overlay {
    position: absolute;
    inset: 0;
    cursor: pointer;
}

.privacy-modal__dialog {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    width: min(720px, 92vw);
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}

.privacy-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    border: none;
    background: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
}

.privacy-modal__content h3 {
    margin-top: 1.25rem;
}

.privacy-modal__content ul {
    padding-left: 1.25rem;
    margin: 0.5rem 0 1rem;
}

.privacy-modal__content ul li {
    margin-bottom: 0.35rem;
    color: var(--gray);
}

@media (max-width: 900px) {
    .main-nav {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .main-nav.is-open {
        max-height: 400px;
        padding-bottom: 1.5rem;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 640px) {
    .hero {
        text-align: left;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.6rem;
    }

    .hero-cta .btn {
        width: 60%;
        padding: 0.75rem 1.2rem;
        font-size: 0.9rem;
        align-self: flex-start;
    }

    .site-header .container {
        padding: 1rem;
    }

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



