@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

:root {
    --sand: #D2BFA8;
    --sand-dark: #B09C87;
    --sand-light: #DDD0C0;
    --dark: #1C1C1A;
    --text: #3A3530;
    --muted: #8A8480;
    --white: #FFFFFF;
    --light: #F5F0EA;
    --border: #E2D9D0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    background: var(--white);
}

/* ─── Navigation ─── */

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: var(--dark);
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

.nav-links > li > a {
    text-decoration: none;
    color: var(--text);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--dark);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: -24px;
    background: white;
    border: 1px solid var(--border);
    min-width: 280px;
    padding: 8px 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: block;
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 24px;
    font-size: 13px;
    letter-spacing: 0;
    text-transform: none;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s;
}

.nav-dropdown-menu a:hover {
    background: var(--light);
    color: var(--dark);
}

.nav-contact {
    padding: 10px 24px;
    border: 1px solid var(--dark);
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s;
}

.nav-links > li > a.nav-contact:hover {
    background: var(--dark);
    color: white;
}

/* ─── Container ─── */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 64px;
}

/* ─── Hero ─── */

.hero {
    background: var(--sand);
    padding: 0 64px;
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

/* Homepage: transparante nav + zachte overloop wit → beige */
.home nav {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
}

.home .hero {
    background: linear-gradient(to bottom, #ffffff 0%, #DDD0BF 100%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}

.hero-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark);
    opacity: 0.65;
    margin-bottom: 40px;
}

.hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.2vw, 48px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--dark);
    max-width: 1100px;
    font-style: italic;
    margin: 0 auto;
}

.hero-quote::before { content: ''; }
.hero-quote::after  { content: ''; }

.hero-sub {
    font-size: 17px;
    color: var(--dark);
    opacity: 0.7;
    margin-top: 20px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.service-card-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 12px;
}

.hero-body {
    font-size: 16px;
    color: var(--dark);
    max-width: 540px;
    margin-top: 40px;
    line-height: 1.85;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 64px;
    left: 0;
    right: 0;
}

/* Page heroes (smaller) */
.page-hero {
    background: var(--sand);
    padding: 140px 64px 80px;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
}

.page-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    max-width: 780px;
}

.page-hero-lead {
    font-size: 16px;
    color: var(--dark);
    max-width: 600px;
    margin-top: 24px;
    opacity: 0.8;
    line-height: 1.8;
}

/* ─── Buttons ─── */

.btn {
    display: inline-block;
    padding: 14px 36px;
    background: var(--dark);
    color: white;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    transition: background 0.2s;
    border: 1px solid var(--dark);
    cursor: pointer;
}

.btn:hover {
    background: var(--text);
    border-color: var(--text);
}

.btn-outline {
    background: transparent;
    color: var(--dark);
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

.btn-light {
    background: white;
    color: var(--dark);
    border-color: white;
}

.btn-light:hover {
    background: var(--light);
    border-color: var(--light);
    color: var(--dark);
}

/* ─── Sections ─── */

section {
    padding: 100px 0;
}

.section-sm {
    padding: 64px 0;
}

.section-page {
    padding: 140px 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-eyebrow {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--dark);
    opacity: 0.65;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--dark);
}

h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--dark);
}

.lead {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text);
    margin-top: 20px;
}

/* ─── Service Cards (Home) ─── */

.services-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 48px;
    gap: 40px;
}

.services-intro p {
    max-width: 440px;
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.service-card {
    background: white;
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
}

.service-card:hover {
    background: var(--light);
}

.service-card-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.85;
    margin-bottom: 40px;
    flex: 1;
}

.service-card-link {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--dark);
    padding-bottom: 3px;
    width: fit-content;
}

.service-card-link::after {
    content: '→';
}

/* ─── Split layouts ─── */

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.split-right-wide {
    grid-template-columns: 4fr 5fr;
}

.split-left-wide {
    grid-template-columns: 5fr 4fr;
}

/* ─── Feature lists ─── */

.feature-list {
    list-style: none;
    margin-top: 32px;
}

.feature-list li {
    padding: 16px 0 16px 24px;
    border-top: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
    line-height: 1.75;
    position: relative;
}

.feature-list li:last-child {
    border-bottom: 1px solid var(--border);
}

.feature-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--sand-dark);
}

/* ─── Quote / callout ─── */

.callout {
    background: var(--light);
    padding: 64px;
}

.callout blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    color: var(--dark);
    max-width: 760px;
}

.callout cite {
    display: block;
    margin-top: 24px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--muted);
    font-style: normal;
}

/* ─── Dark section ─── */

.section-dark {
    background: var(--dark);
    padding: 100px 0;
}

.section-dark h2,
.section-dark h3,
.section-dark .section-eyebrow {
    color: white;
}

.section-dark .section-eyebrow {
    opacity: 0.5;
}

.section-dark p,
.section-dark .lead {
    color: rgba(255, 255, 255, 0.7);
}

.section-dark .feature-list li {
    color: rgba(255, 255, 255, 0.7);
    border-top-color: rgba(255, 255, 255, 0.1);
}

.section-dark .feature-list li:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-dark .feature-list li::before {
    color: var(--sand);
}

/* ─── Background ─── */

.bg-light {
    background: var(--light);
}

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

/* ─── About photo ─── */

.about-photo-wrap {
    position: relative;
}

.about-photo {
    width: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3 / 4;
}

/* ─── CTA Banner ─── */

.cta-banner {
    background: var(--light);
    padding: 100px 64px;
    text-align: center;
}

.cta-banner h2 {
    max-width: 600px;
    margin: 0 auto 16px;
}

.cta-banner p {
    max-width: 480px;
    margin: 0 auto 40px;
    color: var(--text);
    opacity: 0.8;
}

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

.contact-form {
    display: grid;
    gap: 36px;
}

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

.form-group {
    display: grid;
    gap: 10px;
}

.form-group label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
}

.form-group input,
.form-group textarea,
.form-group select {
    background: none;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--dark);
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-bottom-color: var(--dark);
}

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

.form-group select option {
    color: var(--dark);
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.7;
}

/* ─── Stats ─── */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    margin-top: 60px;
}

.stat-block {
    background: white;
    padding: 48px 40px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 300;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* ─── Footer ─── */

footer {
    background: var(--dark);
    padding: 80px 64px 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    color: white;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    max-width: 300px;
}

.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    font-weight: 400;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: white;
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ─── Utilities ─── */

.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

.divider {
    height: 1px;
    background: var(--border);
}

/* ─── Responsive ─── */

@media (max-width: 1024px) {
    nav { padding: 0 32px; }
    .hero { padding: 140px 32px 90px; }
    .page-hero { padding: 140px 32px 64px; }
    .container { padding: 0 32px; }
    .cta-banner { padding: 80px 32px; }
    footer { padding: 64px 32px 0; }
    .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .split { grid-template-columns: 1fr; gap: 48px; }
    .split-right-wide { grid-template-columns: 1fr; }
    .split-left-wide { grid-template-columns: 1fr; }
    .services-intro { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .callout { padding: 40px 32px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
    .nav-links { display: none; }
    .hero { min-height: auto; padding: 120px 24px 72px; }
    .page-hero { min-height: auto; padding: 120px 24px 56px; }
    .container { padding: 0 24px; }
    section { padding: 64px 0; }
    .service-card { padding: 36px 24px; }
    .stat-block { padding: 36px 24px; }
    footer { padding: 48px 24px 0; }
}
