/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest: #2f3d30;
    --forest-deep: #1c231c;
    --moss: #7d8f6a;
    --moss-dark: #556b45;
    --moss-light: #b9c4a6;
    --cream: #f5f3ec;
    --sand: #e7e2d4;
    --white: #ffffff;
    --dark: #222820;
    --gray: #5c6154;
    --light-gray: #ebe7dc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.75;
    font-size: 17px;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', 'Georgia', serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

h1 { font-size: 4rem; }
h2 { font-size: 2.8rem; }
h3 { font-size: 1.9rem; }

p { margin-bottom: 1rem; }

a {
    color: var(--moss-dark);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover { color: var(--moss); }

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

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

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

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
    padding: 0.4rem 0;
}

.navbar.scrolled {
    background: rgba(245, 243, 236, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--light-gray);
}

.nav-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--white);
    transition: color 0.4s;
}

.logo-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    transition: transform 0.4s;
}

.logo:hover .logo-mark { transform: rotate(-6deg); }

.logo-mark path,
.logo-mark line { transition: stroke 0.4s; }

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text strong {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo-text small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.85;
    margin-top: 3px;
    margin-left: 2px;
}

.navbar.scrolled .logo { color: var(--forest); }
.navbar.scrolled .logo-mark path,
.navbar.scrolled .logo-mark line { stroke: var(--moss-dark); }

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

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    color: var(--white);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    position: relative;
    padding: 0.4rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: color 0.3s;
}

.navbar.scrolled .nav-menu > li > a { color: var(--dark); }

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--moss);
    transition: width 0.3s;
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.nav-menu > li > a.active { color: var(--moss-light); }
.navbar.scrolled .nav-menu > li > a.active { color: var(--moss-dark); }

/* Dropdown */
.has-dropdown .caret {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.3s;
    opacity: 0.8;
}

.dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    background: var(--white);
    min-width: 210px;
    padding: 0.6rem 0;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    border-top: 2px solid var(--moss);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(6px);
}

.has-dropdown:hover .caret { transform: rotate(-135deg); margin-top: 3px; }

.dropdown li a {
    display: block;
    padding: 0.7rem 1.6rem;
    color: var(--dark);
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.25s, color 0.25s, padding-left 0.25s;
}

.dropdown li a:hover {
    background: var(--cream);
    color: var(--moss-dark);
    padding-left: 2rem;
}

.nav-cta {
    background: var(--moss);
    color: var(--white) !important;
    padding: 0.7rem 1.6rem !important;
    border-radius: 2px;
    transition: background 0.3s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--moss-dark); }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 6px;
    z-index: 1100;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span { background: var(--dark); }

/* ===== Hero ===== */
.hero {
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(28, 35, 28, 0.35), rgba(28, 35, 28, 0.55)),
                url('../images/landschap/l02.jpg') center/cover;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 880px;
    padding: 0 2rem;
    animation: fadeUp 1.6s ease;
}

.hero-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 7px;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    color: var(--moss-light);
}

.hero h1 {
    font-size: 5.5rem;
    margin-bottom: 1.4rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}

.hero h1 em {
    font-style: italic;
    color: var(--moss-light);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.6rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-cue {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 1.5px solid rgba(255,255,255,0.6);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-cue span {
    width: 3px;
    height: 8px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translateY(-4px); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 0; }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0;
}

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

.btn-primary {
    background: var(--moss);
    border-color: var(--moss);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--moss-dark);
    border-color: var(--moss-dark);
    color: var(--white);
}

.btn-dark {
    color: var(--forest);
    border-color: var(--moss);
}

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

/* ===== Sections ===== */
section {
    padding: 7rem 0;
}

/* pages without a hero: first section clears the fixed navbar */
.page-header + section,
.navbar + section:not(.hero) {
    padding-top: 7rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.eyebrow,
.section-title small {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--moss);
    display: block;
    margin-bottom: 1.1rem;
}

.section-title h2 { color: var(--forest); }

.divider {
    width: 64px;
    height: 1px;
    background: var(--moss);
    margin: 1.6rem auto;
}

.section-title p {
    color: var(--gray);
    margin-top: 1rem;
}

/* ===== Intro / About Preview ===== */
.about-preview { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 620px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 22px;
    right: -22px;
    bottom: -22px;
    border: 1px solid var(--moss);
    z-index: -1;
}

.about-text small { display: block; }
.about-text .eyebrow { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 0.5rem; color: var(--forest); }
.about-text .divider { margin: 1.5rem 0; }
.about-text p { color: var(--gray); margin-bottom: 1.4rem; }

.signature {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--moss-dark);
    margin-top: 1.5rem;
}

/* ===== Discipline Cards ===== */
.disciplines { background: var(--cream); }

.discipline-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.discipline-card {
    position: relative;
    height: 460px;
    overflow: hidden;
    display: block;
    color: var(--white);
}

.discipline-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.1s ease;
}

.discipline-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,26,20,0.82) 0%, rgba(20,26,20,0.15) 55%, rgba(20,26,20,0.05) 100%);
    transition: background 0.4s;
}

.discipline-card:hover img { transform: scale(1.07); }
.discipline-card:hover::after { background: linear-gradient(to top, rgba(20,26,20,0.85) 0%, rgba(47,61,48,0.35) 60%, rgba(20,26,20,0.1) 100%); }

.discipline-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.2rem;
    z-index: 2;
}

.discipline-content small {
    font-size: 0.68rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--moss-light);
    display: block;
    margin-bottom: 0.6rem;
}

.discipline-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.discipline-content .go {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.discipline-card:hover .go { opacity: 1; transform: translateY(0); }

/* ===== Featured Gallery Strip ===== */
.gallery-strip { background: var(--white); }

/* ===== Masonry Gallery ===== */
.gallery {
    columns: 3;
    column-gap: 1.2rem;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.2rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--sand);
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.9s ease;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(47, 61, 48, 0);
    transition: background 0.4s;
}

.gallery-item::before {
    content: '\002B';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    z-index: 3;
    color: var(--white);
    font-size: 2rem;
    font-weight: 200;
    opacity: 0;
    transition: all 0.4s;
    font-family: 'Montserrat', sans-serif;
}

.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover::after { background: rgba(28, 35, 28, 0.3); }
.gallery-item:hover::before { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ===== Quote Banner ===== */
.quote-banner {
    background: linear-gradient(rgba(28, 35, 28, 0.68), rgba(28, 35, 28, 0.72)),
                url('../images/landschap/l03.jpg') center/cover fixed;
    color: var(--white);
    text-align: center;
    padding: 9rem 0;
}

.quote-banner .quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--moss-light);
    line-height: 0.5;
    margin-bottom: 1.5rem;
    display: block;
}

.quote-banner h2 {
    font-style: italic;
    font-weight: 400;
    font-size: 2.6rem;
    max-width: 860px;
    margin: 0 auto 1.5rem;
    color: var(--white);
}

.quote-banner small {
    color: var(--moss-light);
    letter-spacing: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    text-transform: uppercase;
}

/* ===== Value / Why items ===== */
.values { background: var(--cream); }

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

.value-item { text-align: center; }

.value-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 1.5rem;
    border: 1px solid var(--moss);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--moss-dark);
}

.value-icon svg { width: 34px; height: 34px; }

.value-item h4 {
    color: var(--forest);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
}

.value-item p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===== CTA Section ===== */
.cta-section {
    background: var(--forest);
    color: var(--white);
    text-align: center;
    padding: 6rem 0;
}

.cta-section .eyebrow { color: var(--moss-light); }
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.2rem;
    font-size: 1.15rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Page Header ===== */
.page-header {
    height: 62vh;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-header::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(28,35,28,0.4), rgba(28,35,28,0.6));
}

.page-header-content {
    position: relative;
    z-index: 2;
    padding: 6rem 2rem 0;
    animation: fadeUp 1.4s ease;
}

.page-header small {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--moss-light);
    display: block;
    margin-bottom: 1rem;
}

.page-header h1 {
    font-size: 4.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.page-header .breadcrumb {
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.8rem;
}

.page-header .breadcrumb a { color: rgba(255,255,255,0.85); }
.page-header .breadcrumb a:hover { color: var(--moss-light); }

/* ===== Editorial / Story blocks ===== */
.story-section { background: var(--white); }

.story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: center;
    margin-bottom: 6rem;
}

.story:last-child { margin-bottom: 0; }

.story:nth-child(even) .story-img { order: 2; }

.story-img {
    position: relative;
    height: 560px;
}

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

.story-img .frame {
    position: absolute;
    top: 20px; left: 20px; right: -20px; bottom: -20px;
    border: 1px solid var(--moss-light);
    z-index: -1;
}

.story:nth-child(even) .story-img .frame {
    left: -20px; right: 20px;
}

.story-text .eyebrow { margin-bottom: 1rem; }
.story-text h2 { color: var(--forest); margin-bottom: 0.5rem; }
.story-text .divider { margin: 1.5rem 0; }
.story-text p { color: var(--gray); margin-bottom: 1.3rem; }

/* Check list (benefits) */
.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.check-list li {
    display: flex;
    gap: 1.1rem;
    align-items: flex-start;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.6;
}

.check-list li svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    color: var(--moss-dark);
    margin-top: 3px;
}

/* Centered form wrapper (used on info pages) */
.form-wrap {
    max-width: 720px;
    margin: 0 auto;
}

.form-lead {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: var(--gray);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.5;
}

@media (max-width: 640px) {
    .check-list { grid-template-columns: 1fr; gap: 1.2rem; }
}

/* Prose block (text-heavy pages) */
.prose { color: var(--gray); }
.prose h2, .prose h3 { color: var(--forest); margin: 2.5rem 0 1rem; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 1.3rem; }
.prose .lead {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--forest);
    margin-bottom: 2rem;
}

.text-placeholder {
    background: var(--cream);
    border-left: 3px solid var(--moss-light);
    padding: 1.2rem 1.5rem;
    color: var(--gray);
    font-style: italic;
    font-size: 0.95rem;
    margin: 1.5rem 0;
}

/* ===== Contact ===== */
.contact-section { background: var(--white); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4.5rem;
}

.contact-info h3 { margin-bottom: 0.5rem; color: var(--forest); }
.contact-info .divider { margin: 1.5rem 0 2.2rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2.2rem; }

.contact-detail {
    display: flex;
    gap: 1.3rem;
    margin-bottom: 1.8rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 50px;
    height: 50px;
    border: 1px solid var(--moss);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--moss-dark);
    flex-shrink: 0;
}

.contact-detail-icon svg { width: 22px; height: 22px; }

.contact-detail h4 {
    color: var(--dark);
    margin-bottom: 0.2rem;
    font-size: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-detail p { color: var(--gray); margin: 0; font-size: 1.02rem; }
.contact-detail a { color: var(--moss-dark); }

/* ===== Form ===== */
.contact-form {
    background: var(--cream);
    padding: 3rem;
}

.form-group { margin-bottom: 1.4rem; }

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid var(--light-gray);
    background: var(--white);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--dark);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--moss);
}

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

.form-status { min-height: 1.2rem; font-size: 0.9rem; margin-top: 0.4rem; }

/* ===== Footer ===== */
footer {
    background: var(--forest-deep);
    color: var(--cream);
    padding: 4.5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

footer h4 {
    color: var(--moss-light);
    margin-bottom: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

footer p, footer li {
    color: rgba(245, 243, 236, 0.65);
    font-size: 0.95rem;
}

footer ul { list-style: none; }
footer ul li { padding: 0.35rem 0; }
footer a { color: rgba(245, 243, 236, 0.65); }
footer a:hover { color: var(--moss-light); }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.footer-logo .logo-mark { width: 32px; height: 32px; }

.footer-logo strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.footer-brand p { max-width: 320px; }

.footer-bottom {
    border-top: 1px solid rgba(185, 196, 166, 0.15);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: rgba(245, 243, 236, 0.45);
    font-size: 0.82rem;
}

.footer-bottom a { color: var(--moss-light); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(18, 22, 18, 0.94);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox img {
    max-width: 90vw;
    max-height: 86vh;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: lbZoom 0.4s ease;
}

@keyframes lbZoom { from { transform: scale(0.94); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.lightbox-close,
.lightbox-nav {
    position: absolute;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    transition: color 0.3s;
    user-select: none;
}

.lightbox-close {
    top: 1.6rem;
    right: 2rem;
    font-size: 2.4rem;
    line-height: 1;
}

.lightbox-nav {
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding: 1rem;
}

.lightbox-nav.prev { left: 1.5rem; }
.lightbox-nav.next { right: 1.5rem; }

.lightbox-close:hover,
.lightbox-nav:hover { color: var(--white); }

.lightbox-counter {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 3px;
}

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

.fade-in {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== Responsive ===== */
@media (max-width: 968px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.2rem; }
    .hero h1 { font-size: 3.4rem; }
    .page-header h1 { font-size: 3rem; }

    .nav-container { padding: 0.5rem 1.25rem; }

    .hamburger { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--cream);
        width: 82%;
        max-width: 340px;
        height: 100vh;
        padding: 6rem 2rem 2rem;
        transition: right 0.4s ease;
        gap: 0.4rem;
        align-items: flex-start;
        box-shadow: -12px 0 40px rgba(0,0,0,0.12);
        overflow-y: auto;
    }

    .nav-menu.active { right: 0; }

    .nav-menu > li { width: 100%; }

    .nav-menu > li > a {
        color: var(--dark) !important;
        font-size: 1rem;
        letter-spacing: 2px;
        width: 100%;
        padding: 0.9rem 0;
        border-bottom: 1px solid var(--light-gray);
    }

    .nav-menu > li > a::after { display: none; }

    .has-dropdown .caret { margin-left: auto; }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border-top: none;
        min-width: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        background: transparent;
    }

    .has-dropdown.open .dropdown { max-height: 320px; }
    .has-dropdown:hover .dropdown { transform: none; }

    .dropdown li a {
        padding: 0.7rem 0 0.7rem 1.2rem;
        color: var(--gray);
        border-bottom: 1px solid var(--light-gray);
    }
    .dropdown li a:hover { padding-left: 1.6rem; background: transparent; }

    .nav-menu .nav-cta {
        display: inline-block;
        margin-top: 1rem;
        text-align: center;
        border-bottom: none !important;
        color: var(--white) !important;
        width: 100%;
    }

    .about-grid,
    .contact-grid,
    .story {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story:nth-child(even) .story-img { order: 0; }
    .story-img .frame,
    .story:nth-child(even) .story-img .frame { left: 16px; right: -16px; top: 16px; bottom: -16px; }
    .about-image::before { top: 16px; left: 16px; right: -16px; bottom: -16px; }

    .discipline-grid,
    .values-grid { grid-template-columns: 1fr; }

    .gallery { columns: 2; }

    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }

    .about-image, .story-img { height: 440px; }

    section { padding: 4.5rem 0; }
    .quote-banner { padding: 6rem 0; background-attachment: scroll; }
    .quote-banner h2 { font-size: 2rem; }

    .container { padding: 0 1.5rem; }
}

@media (max-width: 540px) {
    .hero h1 { font-size: 2.6rem; }
    .hero p { font-size: 1.05rem; }
    .gallery { columns: 1; }
    .values-grid { gap: 2.5rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 2rem 1.4rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .lightbox-nav { font-size: 2.2rem; padding: 0.5rem; }
    .lightbox-nav.prev { left: 0.3rem; }
    .lightbox-nav.next { right: 0.3rem; }
}
