:root {
    --color-primary: #5a3e28;
    --color-secondary: #b8926a;
    --color-bg: #faf7f3;
    --color-surface: #efe8dd;
    --color-text: #2a1f15;
    --color-text-muted: #7d6c5a;
    --color-border: #ddd2c3;
    --font-heading: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Karla', 'Helvetica', sans-serif;
    --max-width: 1140px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); }

/* Masthead */
.masthead {
    border-bottom: 3px double var(--color-border);
    padding: 28px 24px;
}

.masthead-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.site-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
}

.site-title a { color: var(--color-text); text-decoration: none; }

.site-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 4px;
}

.masthead-nav { display: flex; gap: 24px; }
.masthead-nav a {
    font-size: 14px;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
}
.masthead-nav a:hover { color: var(--color-primary); }

/* Hero Banner */
.hero-banner {
    position: relative;
    max-height: 480px;
    overflow: hidden;
}

.hero-banner img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.banner-caption {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 40px 24px 20px;
    color: white;
    font-size: 13px;
    font-style: italic;
}

/* Main Content */
.main-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
}

.content-primary h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 48px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--color-primary);
}

.content-primary h2:first-child { margin-top: 0; }

.content-primary p {
    margin-bottom: 18px;
    font-size: 16px;
}

/* Highlights */
.highlights-list {
    display: grid;
    gap: 20px;
}

.highlight-item {
    padding: 20px;
    background: var(--color-surface);
    border-left: 4px solid var(--color-primary);
    border-radius: 0 4px 4px 0;
}

.highlight-item h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 8px;
}

.highlight-item p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

/* Gallery Mosaic */
.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-mosaic img {
    border-radius: 4px;
    aspect-ratio: 4/3;
    object-fit: cover;
    width: 100%;
}

.gallery-mosaic img:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* Sidebar */
.content-sidebar { display: flex; flex-direction: column; gap: 24px; }

.sidebar-card {
    padding: 24px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: 6px;
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--color-border);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sidebar-card dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    font-size: 14px;
}

.sidebar-card dt { font-weight: 600; color: var(--color-text-muted); }

.sidebar-card iframe { border-radius: 4px; }

.nearby-card ul { list-style: none; }
.nearby-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}
.nearby-card li:last-child { border-bottom: none; }
.nearby-card a { text-decoration: none; }
.nearby-card a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
    border-top: 3px double var(--color-border);
    padding: 24px;
    margin-top: 48px;
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-links { display: flex; gap: 16px; }
.footer-links a { color: var(--color-text-muted); text-decoration: none; font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
    .masthead-inner { flex-direction: column; gap: 12px; }
    .main-content { grid-template-columns: 1fr; }
    .gallery-mosaic { grid-template-columns: repeat(2, 1fr); }
    .gallery-mosaic img:first-child { grid-column: span 2; grid-row: auto; }
    .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
