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

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

:root {
    --bg: #f7f5f0;
    --surface: #f0ece4;
    --accent-green: #b8ccb0;
    --accent-purple: #c4b8d0;
    --accent-warm: #d4c4a8;
    --text-dark: #3a3630;
    --text-mid: #6b6358;
    --text-light: #9a9188;
    --border: #ddd8ce;
    --shadow: rgba(90, 80, 70, 0.08);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'EB Garamond', Georgia, serif;
    background-color: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* ─── HEADER / NAV ─── */
header {
    background-color: var(--surface);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 2rem;
}

nav {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-mid);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2.2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-mid);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    font-style: italic;
    transition: color 0.25s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-green);
    transition: width 0.3s;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* ─── PAGES ─── */
.page {
    display: none;
    max-width: 960px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.page.active {
    display: block;
}

/* ─── HOME ─── */
.home-hero {
    text-align: center;
    padding: 4rem 1rem 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 3rem;
}

.home-hero .eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-style: normal;
}

.home-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.home-hero h1 em {
    font-style: italic;
    color: var(--text-mid);
}

.home-hero .subtitle {
    font-size: 1.1rem;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    font-style: italic;
}

.home-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.4rem;
    margin-top: 1rem;
}

.home-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.home-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
    border-color: var(--accent-green);
}

.home-card .card-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
}

.home-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.4rem;
    color: var(--text-dark);
}

.home-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    font-style: italic;
}

.home-about {
    margin-top: 3.5rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    align-items: start;
}

.home-about .label {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    padding-top: 0.3rem;
}

.home-about p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* ─── SECTION HEADERS ─── */
.page-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.page-header .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.6rem;
}

.page-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.page-header .desc {
    font-size: 0.98rem;
    color: var(--text-mid);
    font-style: italic;
    max-width: 560px;
}

/* ─── GALLERY ─── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
}

.gallery-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    filter: saturate(0.85);
    transition: filter 0.3s;
}

.gallery-item:hover img {
    filter: saturate(1.05);
}

.gallery-item-info {
    padding: 0.9rem 1rem 1rem;
}

.gallery-item-info h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    font-style: italic;
}

.gallery-item-info span {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
}

/* ─── LIGHTBOX ─── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(40, 35, 30, 0.82);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 780px;
    width: 100%;
    background: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.lightbox-inner img {
    width: 100%;
    max-height: 70vh;
    object-fit: contain;
    display: block;
    background: var(--surface);
}

.lightbox-caption {
    padding: 1rem 1.4rem 1.2rem;
    border-top: 1px solid var(--border);
}

.lightbox-caption h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 0.2rem;
}

.lightbox-caption p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.lightbox-close {
    position: absolute;
    top: 0.7rem;
    right: 0.9rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    color: var(--text-mid);
    cursor: pointer;
    line-height: 1;
    z-index: 10;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--text-dark);
}

/* ─── CONTACT ─── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 1.5rem;
}

.contact-detail a,
.contact-detail span {
    font-size: 0.9rem;
    color: var(--text-mid);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.2s;
}

.contact-detail a:hover {
    color: var(--text-dark);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

label {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

input, textarea {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 0.65rem 0.9rem;
    font-family: 'EB Garamond', serif;
    font-size: 0.98rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

input:focus, textarea:focus {
    border-color: var(--accent-green);
}

textarea {
    resize: vertical;
    min-height: 130px;
}

button[type="submit"] {
    background: var(--text-dark);
    color: var(--bg);
    border: none;
    border-radius: 3px;
    padding: 0.75rem 1.8rem;
    font-family: 'EB Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
    margin-top: 0.3rem;
}

button[type="submit"]:hover {
    background: var(--text-mid);
}

.form-note {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.2rem;
}

/* ─── FOOTER ─── */
footer {
    border-top: 1px solid var(--border);
    padding: 1.8rem 2rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-light);
    letter-spacing: 0.06em;
    font-style: italic;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 640px) {
    .home-about {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        gap: 1.2rem;
    }
}
