
:root {
  --bg: #f4efe7;
  --surface: #fffaf2;
  --surface-2: #f8f4ec;
  --text: #243126;
  --muted: #58675b;
  --accent: #536b2e;
  --accent-2: #8d5d34;
  --border: #ded4c4;
  --shadow: 0 14px 36px rgba(23, 29, 23, 0.08);
  --radius: 18px;
  --maxw: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: linear-gradient(180deg, #f6f2ea 0%, #f9f7f1 100%); color: var(--text); line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
.container { width: min(calc(100% - 2rem), var(--maxw)); margin: 0 auto; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(249,247,241,.92); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(83,107,46,.09); }
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { font-weight: 800; text-transform: uppercase; letter-spacing: .05em; font-size: .95rem; }
.main-nav { display: flex; gap: .95rem; flex-wrap: wrap; justify-content: center; }
.main-nav a { color: var(--muted); font-size: .95rem; }
.main-nav a:hover { color: var(--accent); }
.language-switcher { display: flex; gap: .45rem; flex-wrap: wrap; }
.language-switcher a, .language-switcher span { padding: .34rem .65rem; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--muted); font-size: .87rem; }
.language-switcher .active { background: var(--accent); border-color: var(--accent); color: #fff; }
.hero { padding: 2rem 0 1.25rem; }
.hero-grid { display: grid; grid-template-columns: minmax(280px,430px) minmax(300px,1fr); gap: 1.35rem; align-items: stretch; }
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-image { overflow: hidden; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; min-height: 520px; }
.hero-copy { padding: clamp(1.4rem, 3.8vw, 3rem); display: flex; flex-direction: column; justify-content: center; }
.kicker { color: var(--accent-2); text-transform: uppercase; letter-spacing: .12em; font-size: .79rem; font-weight: 700; }
.hero h1 { margin: .35rem 0 .2rem; font-size: clamp(2.1rem, 6vw, 4rem); line-height: 1.05; }
.subtitle { font-size: clamp(1.05rem, 2.4vw, 1.45rem); color: var(--muted); margin: .2rem 0 1rem; }
.lead { font-size: 1.05rem; max-width: 42rem; }
.badges, .feature-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; }
.badge, .feature-pill { padding: .42rem .74rem; border-radius: 999px; font-size: .92rem; }
.badge { background: #edf2e6; color: var(--accent); }
.feature-pill { background: #f4ede3; border: 1px solid #e7d8c3; color: #3f4a35; }
.section { padding: 1rem 0; }
.section h2 { font-size: clamp(1.55rem, 3vw, 2.35rem); margin: 0 0 .55rem; }
.section-intro { color: var(--muted); max-width: 58rem; }
.grid-2, .video-grid, .contact-grid, .mini-grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.video-grid { grid-template-columns: minmax(260px,380px) 1fr; }
.contact-grid { grid-template-columns: 1.2fr 1fr; }
.mini-grid { grid-template-columns: repeat(3,1fr); }
.info-card, .mini-card, .location-card, .contact-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow); }
.info-card { overflow: hidden; }
.info-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.info-card .body, .mini-card, .location-card, .contact-card { padding: 1.25rem; }
.info-card p, .mini-card p, .location-card p, .contact-card p { color: var(--muted); }
.video-box { padding: 1rem; }
.video-frame { width: min(100%, 360px); margin: 0 auto; border-radius: 16px; overflow: hidden; background: #101010; }
.video-frame video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }
.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; padding: .74rem 1rem; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 650; }
.button.secondary { background: #efe8dc; border: 1px solid #dbcdb4; color: #445435; }
.gallery-wrap { margin-top: 1rem; column-count: 3; column-gap: 1rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1rem; overflow: hidden; border-radius: 16px; border: 1px solid var(--border); background: #fff; box-shadow: var(--shadow); }
.gallery-item .caption { padding: .68rem .9rem; font-size: .92rem; color: var(--muted); }
.contact-methods { display: grid; gap: .7rem; margin-top: .8rem; }
.contact-method { padding: .85rem 1rem; background: var(--surface-2); border: 1px dashed #cfbea2; border-radius: 14px; display: grid; gap: .1rem; }
.note { font-size: .92rem; color: var(--muted); }
.footer { padding: 2rem 0 3rem; color: var(--muted); }
@media (max-width: 980px) { .hero-grid, .grid-2, .video-grid, .contact-grid, .mini-grid { grid-template-columns: 1fr; } .gallery-wrap { column-count: 2; } .header-inner { flex-direction: column; align-items: flex-start; padding: .8rem 0; } }
@media (max-width: 640px) { .gallery-wrap { column-count: 1; } .hero-image img { min-height: 380px; } .container { width: min(calc(100% - 1rem), var(--maxw)); } }
