:root {
    --navy: #0a1628;
    --navy-mid: #132238;
    --navy-light: #1c3354;
    --gold: #b8954a;
    --gold-bright: #d4b06a;
    --gold-light: #e8d5a8;
    --cream: #f5f1ea;
    --cream-dark: #ebe5da;
    --white: #ffffff;
    --text: #1a2332;
    --text-muted: #3d4a5c;
    --text-soft: #566578;
    --text-on-dark: rgba(255, 255, 255, 0.95);
    --text-on-dark-muted: rgba(255, 255, 255, 0.82);
    --border: #d8d0c4;
    --border-light: #e8e2d8;
    --focus: #2563eb;
    --success-bg: #ecfdf5;
    --success-border: #6ee7b7;
    --error-bg: #fef2f2;
    --error-border: #fca5a5;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', system-ui, sans-serif;
    --radius: 8px;
    --radius-lg: 14px;
    --shadow-sm: 0 4px 16px rgba(10, 22, 40, 0.08);
    --shadow: 0 12px 40px rgba(10, 22, 40, 0.14);
    --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.18);
    --transition: 0.22s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a {
    color: var(--navy-light);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color var(--transition);
}

a:hover { color: var(--gold); }

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: var(--navy);
    color: var(--white);
    padding: 0.75rem 1rem;
    z-index: 9999;
    border-radius: var(--radius);
    font-weight: 600;
}

.skip-link:focus { top: 1rem; outline: 3px solid var(--focus); }

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: 1.375rem; }
p { margin: 0 0 1rem; }

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
    background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 100%);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 4px 14px rgba(184, 149, 74, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 100%);
    color: var(--navy);
    box-shadow: 0 6px 20px rgba(184, 149, 74, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.65);
}

.btn-light:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 241, 234, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--navy);
}

.logo-mark {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    color: var(--gold-bright);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
}

.primary-nav {
    display: flex;
    gap: 0.25rem;
    margin-left: auto;
}

.primary-nav a {
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    color: var(--text-muted);
    padding: 0.5rem 0.875rem;
    border-radius: var(--radius);
    border-bottom: none;
    transition: color var(--transition), background var(--transition);
}

.primary-nav a:hover,
.primary-nav a.is-active {
    color: var(--navy);
    background: rgba(184, 149, 74, 0.12);
}

.header-cta {
    display: none;
    padding: 0.625rem 1.25rem;
    background: var(--navy);
    color: var(--white);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
}

.header-cta:hover {
    background: var(--navy-light);
    color: var(--white);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    margin-left: auto;
}

.nav-toggle-bar { width: 24px; height: 2px; background: var(--navy); }

@media (min-width: 900px) { .header-cta { display: inline-block; } }

@media (max-width: 899px) {
    .nav-toggle { display: flex; }
    .primary-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--cream);
        padding: 1rem 1.5rem 1.5rem;
        border-bottom: 1px solid var(--border);
        display: none;
        box-shadow: var(--shadow);
    }
    .primary-nav.is-open { display: flex; }
    .header-inner { position: relative; flex-wrap: wrap; }
}

/* Hero */
.hero {
    background:
        radial-gradient(ellipse 80% 60% at 90% 20%, rgba(184, 149, 74, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 80%, rgba(28, 51, 84, 0.4) 0%, transparent 50%),
        linear-gradient(155deg, var(--navy-mid) 0%, var(--navy) 55%, #060e1a 100%);
    color: var(--white);
    padding: 5.5rem 1.5rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero h1 { color: var(--white); margin-bottom: 1.25rem; }

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.75;
    color: var(--text-on-dark-muted);
    margin-bottom: 2rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image,
.media-frame {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.split .media-frame,
.split > img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image { order: -1; }
}

/* Sections */
.section { padding: 5rem 1.5rem; }

.section-inner { max-width: 1200px; margin: 0 auto; }

.section-alt {
    background: var(--white);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.section-header { max-width: 680px; margin-bottom: 3rem; }

.section-header p,
.split > div > p:not(.card-body p) {
    color: var(--text-muted);
    font-size: 1.0625rem;
}

.section-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.section-alt .section-label { color: #8a6d2e; }

/* Cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
    border-color: var(--gold-light);
}

.card-body { padding: 1.75rem; }

.card-body h2,
.card-body h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.card-body p {
    color: var(--text-muted);
    font-size: 0.9875rem;
    line-height: 1.65;
}

.card-body p strong,
.card-price {
    color: var(--navy);
    font-weight: 600;
}

.card-body a:not(.btn) {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--navy-light);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

.card-body a:not(.btn):hover { color: var(--gold); }

.card img {
    aspect-ratio: 16/10;
    object-fit: cover;
    width: 100%;
}

.card .btn { margin-top: 0.75rem; }

/* Stats */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stats-row > div {
    padding: 2rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-muted);
}

@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

/* Split layout */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) { .split { grid-template-columns: 1fr; } }

/* Process */
.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.process-list li {
    counter-increment: step;
    padding: 1.75rem 1.75rem 1.75rem 5rem;
    margin-bottom: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    position: relative;
    transition: box-shadow var(--transition);
}

.process-list li:hover { box-shadow: var(--shadow-sm); }

.process-list li::before {
    content: counter(step, decimal-leading-zero);
    position: absolute;
    left: 1.5rem;
    top: 1.75rem;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.process-list li h3 { margin-top: 0; margin-bottom: 0.5rem; }

.process-list li p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9875rem;
}

/* CTA */
.cta-band {
    background:
        radial-gradient(ellipse 70% 80% at 50% 120%, rgba(184, 149, 74, 0.2) 0%, transparent 60%),
        linear-gradient(165deg, var(--navy-mid) 0%, var(--navy) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 1.5rem;
}

.cta-band h2 { color: var(--white); margin-bottom: 1rem; }

.cta-band p {
    color: var(--text-on-dark-muted);
    max-width: 560px;
    margin: 0 auto 2rem;
    font-size: 1.0625rem;
}

/* Page hero */
.page-hero {
    background:
        radial-gradient(ellipse 60% 80% at 80% 0%, rgba(184, 149, 74, 0.15) 0%, transparent 50%),
        linear-gradient(165deg, var(--navy-mid) 0%, var(--navy) 100%);
    color: var(--white);
    padding: 4.5rem 1.5rem;
    text-align: center;
}

.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }

.page-hero p {
    color: var(--text-on-dark-muted);
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.125rem;
}

.page-hero .page-meta {
    font-size: 0.9375rem;
    color: var(--gold-light);
    font-weight: 500;
}

/* Prose */
.prose { max-width: 760px; }

.prose-wide { max-width: 900px; margin: 0 auto; }

.prose h2 { margin-top: 2.5rem; margin-bottom: 1rem; }

.prose h3 { margin-top: 2rem; margin-bottom: 0.75rem; font-size: 1.25rem; }

.prose p,
.prose li {
    color: var(--text-muted);
    line-height: 1.75;
}

.prose strong { color: var(--navy); }

.prose ul,
.prose ol { margin-bottom: 1rem; padding-left: 1.5rem; }

.prose a { color: var(--navy-light); font-weight: 500; }

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-layout > div > h2 { margin-top: 0; }

.contact-layout > div > p { color: var(--text-muted); }

@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; } }

.contact-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
    color: var(--navy);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    margin-bottom: 1.25rem;
    background: var(--white);
    color: var(--text);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-soft); }

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy-light);
    box-shadow: 0 0 0 3px rgba(28, 51, 84, 0.15);
}

.contact-form textarea { min-height: 150px; resize: vertical; }

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-success {
    background: var(--success-bg);
    border: 1px solid var(--success-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
    color: #065f46;
}

.form-error {
    background: var(--error-bg);
    border: 1px solid var(--error-border);
    border-radius: var(--radius-lg);
    padding: 1rem;
    margin-bottom: 1.5rem;
    color: #991b1b;
}

.contact-details {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.contact-details h2 {
    margin-top: 0;
    font-size: 1.375rem;
    margin-bottom: 1.25rem;
}

.contact-details address {
    font-style: normal;
    line-height: 1.85;
    color: var(--text-muted);
}

.contact-details strong { color: var(--navy); }

.contact-details a {
    color: var(--navy-light);
    font-weight: 500;
}

.contact-visual {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.contact-visual img {
    aspect-ratio: 21/9;
    object-fit: cover;
    width: 100%;
}

.map-wrapper {
    margin-top: 3rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: var(--white);
    color: var(--text-muted);
}

.map-frame { width: 100%; height: 400px; border: 0; }

.is-hidden { display: none !important; }

/* Work grid */
.work-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.work-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--white);
    transition: box-shadow var(--transition), transform var(--transition);
}

.work-item:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.work-item img {
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.work-caption { padding: 1.75rem; }

.work-caption h2 {
    font-size: 1.375rem;
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.work-caption p {
    color: var(--text-muted);
    margin-bottom: 0;
    font-size: 0.9875rem;
}

.work-footer {
    margin-top: 2.5rem;
    text-align: center;
    color: var(--text-muted);
}

.work-footer a { font-weight: 600; }

@media (max-width: 768px) { .work-grid { grid-template-columns: 1fr; } }

/* Footer */
.site-footer {
    background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
    color: rgba(255, 255, 255, 0.85);
    padding: 4rem 1.5rem 0;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin: 0 0 1rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    font-size: 0.9375rem;
    line-height: 2.1;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover { color: var(--white); }

.footer-contact address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.78);
}

.footer-contact a { color: rgba(255, 255, 255, 0.85); }

.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    text-align: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }

@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 32px rgba(10, 22, 40, 0.12);
    z-index: 1000;
    padding: 1.5rem;
}

.cookie-inner { max-width: 900px; margin: 0 auto; }

.cookie-inner h2 {
    font-family: var(--font-body);
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
    color: var(--navy);
}

.cookie-inner p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.cookie-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* Error page */
.error-page { text-align: center; padding: 6rem 1.5rem; }

.error-page h1 {
    font-size: 6rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.error-page h2 { margin-bottom: 1rem; }

.error-page p { color: var(--text-muted); max-width: 420px; margin: 0 auto 2rem; }
