:root {
    --color-primary: #8b6f47;
    --color-bg: #fafaf9;
    --color-surface: #f3f1ec;
    --color-text: #2a2520;
    --color-muted: #7d7467;
    --color-border: #e2ddd4;
    --font-main: 'IBM Plex Sans', 'Arial', sans-serif;
    --width: 680px;
}

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

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

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

/* Nav */
.top-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--color-bg);
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.brand {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.nav-right { display: flex; gap: 20px; }
.nav-right a {
    font-size: 13px;
    color: var(--color-muted);
}
.nav-right a:hover { color: var(--color-text); text-decoration: none; }

/* Intro */
.intro {
    max-width: var(--width);
    margin: 60px auto 32px;
    padding: 0 24px;
}

.label {
    display: inline-block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.intro h1 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.03em;
    font-weight: 700;
    margin-bottom: 16px;
}

.subtitle {
    font-size: 17px;
    color: var(--color-muted);
    max-width: 520px;
}

/* Hero Image */
.hero-img {
    max-width: 960px;
    margin: 0 auto 48px;
    padding: 0 24px;
}

.hero-img img {
    border-radius: 8px;
    aspect-ratio: 16/9;
    object-fit: cover;
    width: 100%;
}

/* Text */
.text-section {
    max-width: var(--width);
    margin: 0 auto 48px;
    padding: 0 24px;
}

.text-section p {
    font-size: 16px;
    margin-bottom: 16px;
}

.text-section h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

/* Details Grid */
.details-grid {
    max-width: 960px;
    margin: 0 auto 48px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.detail-card {
    padding: 24px;
    background: var(--color-surface);
    border-radius: 8px;
}

.detail-card .detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-muted);
    margin-bottom: 6px;
}

.detail-card .detail-value {
    font-size: 16px;
    font-weight: 600;
}

/* Image Grid */
.image-grid {
    max-width: 960px;
    margin: 0 auto 48px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.image-grid img {
    border-radius: 6px;
    aspect-ratio: 1;
    object-fit: cover;
    width: 100%;
}

/* Location */
.location-section {
    max-width: 960px;
    margin: 0 auto 48px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}

.loc-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.loc-text p {
    font-size: 15px;
    color: var(--color-muted);
    margin-bottom: 12px;
}

.loc-map iframe { border-radius: 8px; }

/* Links */
.links-section {
    max-width: var(--width);
    margin: 0 auto 48px;
    padding: 0 24px;
}

.links-section a {
    display: inline-block;
    margin: 4px 8px 4px 0;
    padding: 6px 14px;
    background: var(--color-surface);
    border-radius: 20px;
    font-size: 13px;
    color: var(--color-text);
}
.links-section a:hover { background: var(--color-border); text-decoration: none; }

/* Footer */
footer {
    max-width: 960px;
    margin: 0 auto;
    padding: 32px 24px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--color-muted);
}

footer a { color: var(--color-muted); margin-left: 16px; }

/* Responsive */
@media (max-width: 640px) {
    .image-grid { grid-template-columns: repeat(2, 1fr); }
    .location-section { grid-template-columns: 1fr; }
    footer { flex-direction: column; gap: 8px; }
}
