:root {
    --navy: #283149;
    --gold: #DBC078;
    --cream: #FAF6E9;
    --muted: rgba(250, 246, 233, 0.55);
    --gold-muted: rgba(219, 192, 120, 0.55);
    --body-text: #3a4055;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Catamaran', sans-serif;
    background-color: var(--cream);
    color: var(--body-text);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ── Navigation ──────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: var(--navy);
    border-bottom: 1px solid rgba(219, 192, 120, 0.18);
}

.nav-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.nav-logo {
    height: 32px;
    width: auto;
}

.nav-name {
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    color: var(--gold);
    text-transform: uppercase;
}

.nav-login {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    background-color: var(--gold);
    text-decoration: none;
    padding: 0.38rem 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease;
}

.nav-login:hover {
    background-color: #c9ae6a;
}

/* ── Hero ──────────────────────────────── */

.hero {
    background-color: var(--navy);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5rem 2rem 3.5rem;
}

.hero-inner {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo {
    width: 110px;
    height: auto;
    margin-bottom: 1.5rem;
}

.hero-company {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-headline {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 1.1rem;
}

.hero-rule {
    width: 48px;
    height: 1px;
    background: var(--gold);
    border: none;
    margin: 0 auto 1.1rem;
    opacity: 0.6;
}

.hero-tagline {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

/* ── Shared layout ─────────────────────── */

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-heading {
    font-size: clamp(1.3rem, 3vw, 1.9rem);
    font-weight: 300;
    color: var(--navy);
    letter-spacing: 0.06em;
    margin-bottom: 2.75rem;
    text-align: center;
}

.section-heading::after {
    content: '';
    display: block;
    width: 36px;
    height: 1.5px;
    background: var(--gold);
    margin: 0.55rem auto 0;
}

.section-heading.light {
    color: var(--cream);
}

/* ── Services ──────────────────────────── */

.services {
    background-color: var(--cream);
    padding: 4rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 2.5rem;
}

.service-item {
    border-top: 1.5px solid var(--gold);
    padding-top: 1.35rem;
}

.service-diamond {
    color: var(--gold);
    font-size: 0.55rem;
    margin-bottom: 0.8rem;
    display: block;
}

.service-item h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.55rem;
    letter-spacing: 0.03em;
}

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

/* ── Philosophy strip ──────────────────── */

.philosophy {
    background-color: var(--navy);
    padding: 5.5rem 2rem;
    text-align: center;
}

.philosophy-quote {
    font-size: clamp(1.05rem, 2.5vw, 1.4rem);
    font-weight: 300;
    font-style: italic;
    color: var(--cream);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
    border: none;
    position: relative;
}

.philosophy-quote::before,
.philosophy-quote::after {
    color: var(--gold);
    font-style: normal;
    font-size: 1.8em;
    line-height: 0;
    vertical-align: -0.38em;
}

.philosophy-quote::before {
    content: '\201C';
    margin-right: 0.08em;
}

.philosophy-quote::after {
    content: '\201D';
    margin-left: 0.08em;
}

/* ── Contact ───────────────────────────── */

.contact {
    background-color: var(--cream);
    padding: 4rem 0;
    text-align: center;
}

.contact-intro {
    font-size: 0.97rem;
    color: var(--body-text);
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.contact-details a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.contact-details a:hover {
    color: var(--gold);
    border-color: transparent;
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    color: #7a849a;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    margin-top: 0.25rem;
    padding: 0.75rem 2rem;
    background-color: var(--navy);
    color: var(--gold);
    font-family: 'Catamaran', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    border: 1.5px solid var(--gold);
    transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
    background-color: var(--gold);
    color: var(--navy);
}

/* ── Process steps ─────────────────────── */

.process {
    background-color: var(--cream);
    padding: 4rem 0;
}

.process-steps {
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 0 1.5rem;
    position: relative;
}

.process-step:not(:last-child) .step-spine {
    display: block;
}

.step-left {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.step-spine {
    display: none;
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(219,192,120,0.15) 100%);
    margin: 6px auto;
    min-height: 2.5rem;
}

.step-content {
    padding-bottom: 3rem;
}

.process-step:last-child .step-content {
    padding-bottom: 0;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.45rem;
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}

.step-content p {
    font-size: 0.93rem;
    color: var(--body-text);
    line-height: 1.75;
}

.step-note {
    display: inline-block;
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: #7a849a;
    font-style: italic;
}

/* ── Contact form page ─────────────────── */

.contact-form-section {
    background-color: var(--navy);
    padding: 4rem 0;
}

.contact-form-section .section-heading {
    color: var(--cream);
}

.contact-form-section .section-heading::after {
    background: var(--gold);
}

.contact-form-intro {
    text-align: center;
    font-size: 0.93rem;
    color: var(--muted);
    max-width: 520px;
    margin: -1.5rem auto 2.75rem;
    line-height: 1.7;
}

.form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 1.1rem;
}

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

.form-group label {
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Catamaran', sans-serif;
    font-size: 0.93rem;
    background-color: rgba(250, 246, 233, 0.06);
    border: 1px solid rgba(219, 192, 120, 0.25);
    color: var(--cream);
    padding: 0.65rem 0.85rem;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(250, 246, 233, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: rgba(219, 192, 120, 0.65);
    background-color: rgba(250, 246, 233, 0.09);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23DBC078' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2rem;
}

.form-group select option {
    background-color: var(--navy);
    color: var(--cream);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

.contact-method-group {
    margin-bottom: 1.1rem;
}

.contact-method-group label.group-label {
    display: block;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-muted);
    margin-bottom: 0.65rem;
}

.radio-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--cream);
    cursor: pointer;
}

.radio-label input[type="radio"] {
    accent-color: var(--gold);
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

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

.form-submit button {
    font-family: 'Catamaran', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.8rem 2.25rem;
    background-color: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.form-submit button:hover {
    background-color: var(--gold);
    color: var(--navy);
}

.form-privacy {
    margin-top: 1rem;
    font-size: 0.76rem;
    color: rgba(250, 246, 233, 0.3);
    text-align: right;
}

.form-privacy a {
    color: rgba(219, 192, 120, 0.45);
    text-decoration: none;
    border-bottom: 1px solid rgba(219, 192, 120, 0.2);
}

.form-privacy a:hover {
    color: var(--gold-muted);
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .form-submit {
        text-align: center;
    }

    .form-submit button {
        width: 100%;
    }
}

/* ── Footer ────────────────────────────── */

.footer {
    background-color: var(--navy);
    padding: 2.25rem 0;
    border-top: 1px solid rgba(219, 192, 120, 0.15);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    text-align: center;
}

.footer-copy {
    font-size: 0.74rem;
    color: rgba(250, 246, 233, 0.35);
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    font-size: 0.74rem;
    color: var(--gold-muted);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

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

.footer-sep {
    color: rgba(219, 192, 120, 0.25);
    font-size: 0.55rem;
}

/* ── Policy pages ──────────────────────── */

.policy-page {
    padding-top: 60px;
}

.policy-header {
    background-color: var(--navy);
    padding: 4rem 2rem 3.5rem;
    text-align: center;
}

.policy-header h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 300;
    color: var(--cream);
    letter-spacing: 0.06em;
}

.policy-header .policy-date {
    margin-top: 0.6rem;
    font-size: 0.8rem;
    color: var(--gold-muted);
    letter-spacing: 0.06em;
}

.policy-body {
    max-width: 720px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

.policy-body h2 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    margin: 2.5rem 0 0.65rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.82rem;
}

.policy-body h2:first-child {
    margin-top: 0;
}

.policy-body p {
    font-size: 0.93rem;
    color: var(--body-text);
    margin-bottom: 0.85rem;
    line-height: 1.75;
}

.policy-body ul {
    margin: 0.4rem 0 0.85rem 1.4rem;
}

.policy-body ul li {
    font-size: 0.93rem;
    color: var(--body-text);
    margin-bottom: 0.4rem;
    line-height: 1.7;
}

.policy-body a {
    color: var(--navy);
    border-bottom: 1px solid var(--gold);
    text-decoration: none;
}

.policy-body a:hover {
    color: var(--gold);
}

/* ── Responsive ────────────────────────── */

/* 4 columns → 2×2 */
@media (max-width: 860px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 2×2 → single column */
@media (max-width: 500px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* General mobile */
@media (max-width: 600px) {
    .nav-name {
        display: none;
    }

    .nav-logo {
        height: 28px;
    }

    .nav-login {
        font-size: 0.68rem;
    }

    .hero {
        min-height: 70vh;
        padding: 4rem 1.5rem 3rem;
    }

    .hero-logo {
        width: 85px;
    }

    .section-heading {
        margin-bottom: 2rem;
    }

    .footer-inner {
        gap: 0.75rem;
    }

    .policy-header {
        padding: 3rem 1.5rem 2rem;
    }

    .policy-body {
        padding: 2.5rem 1.5rem 4rem;
    }
}
