/* Reset-ish */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: #1f1f1f; background: #ffffff; }

/* Helpers */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: #111; color: #fff; padding: .5rem .75rem; z-index: 1000; }
.skip-link:focus { left: .5rem; }

/* Layout */
.container { width: min(960px, 92vw); margin-inline: auto; }
.section { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section h2 { font-size: clamp(1.35rem, 3.5vw, 1.75rem); letter-spacing: .02em; margin: 0 0 1rem; }
.muted { color: #666; }
.tiny { font-size: .85rem; }

/* Nav */
.site-header { position: relative; }
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem min(4vw, 1rem); border-bottom: 1px solid #eee; position: sticky; top: 0; background: rgba(255,255,255,.8); backdrop-filter: blur(8px); z-index: 10; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand-mark { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; border: 1px solid #ddd; font-weight: 700; }
.brand-name { text-decoration: none; color: #000; font-weight: 600; letter-spacing: .02em; }

.nav-toggle { border: 0; background: transparent; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 10px; }
.nav-toggle:hover { background: #f5f5f5; }
.burger, .burger::before, .burger::after { content: ""; display: block; width: 22px; height: 2px; background: #111; border-radius: 1px; position: relative; }
.burger::before { position: absolute; transform: translateY(-6px); }
.burger::after  { position: absolute; transform: translateY(6px); }

.navmenu { list-style: none; margin: 0; padding: 0; display: none; gap: 1rem; align-items: center; }
.navmenu a { text-decoration: none; color: #111; }
.navmenu a:hover { text-decoration: underline; }
.lang-switch { display: flex; gap: .25rem; }
.lang-switch button { padding: .35rem .5rem; border-radius: 8px; border: 1px solid #e0e0e0; background: #fff; cursor: pointer; }
.lang-switch button[aria-current="true"] { background: #111; color: #fff; border-color: #111; }

@media (min-width: 880px) {
  .nav-toggle { display: none; }
  .navmenu { display: flex; }
}

/* Hero */
.hero { position: relative; }
.hero img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.hero-overlay { position: absolute; inset: auto 0 12%; display: grid; justify-items: center; gap: .25rem; text-align: center; color: #fff; text-shadow: 0 2px 14px rgba(0,0,0,.42); }
.hero-title { font-size: clamp(1.75rem, 6vw, 3rem); font-weight: 700; letter-spacing: .02em; }
.hero-subtitle { font-size: clamp(1rem, 3vw, 1.25rem); opacity: .95; }
.credit { position: absolute; bottom: 6px; right: 8px; background: rgba(0,0,0,.45); color: #eee; padding: .25rem .5rem; border-radius: 8px; font-size: .75rem; }

/* About */
.section-about p { max-width: 65ch; }

/* Works */
.section-works .work-card { display: grid; gap: 1rem; padding: 1rem; border: 1px solid #eee; border-radius: 16px; background: #fafafa; margin-bottom: 1rem; }
.section-works .work-text h3 { margin: 0 0 .4rem; }
.section-works .work-media img { width: 100%; border-radius: 12px; }

@media (min-width: 720px) {
  .section-works .work-card { grid-template-columns: 1.2fr .8fr; align-items: center; }
}

/* Gallery */
.section-gallery .grid { display: grid; gap: .8rem; grid-template-columns: 1fr 1fr; }
.section-gallery .card { margin: 0; overflow: hidden; border-radius: 14px; border: 1px solid #eee; background: #fff; }
.section-gallery .card img { width: 100%; display: block; aspect-ratio: 4/5; object-fit: cover; }
.section-gallery figcaption { padding: .5rem .75rem; font-size: .9rem; color: #444; }

@media (min-width: 880px) {
  .section-gallery .grid { grid-template-columns: repeat(3, 1fr); }
}

/* Press */
.section-press .press-list { margin: 0; padding-left: 1rem; }
.section-press .press-list li { margin: .4rem 0; }
.section-press .press-list li::marker { color: #bbb; }

/* Contact */
.section-contact .cta { display: inline-block; background: #111; color: #fff; padding: .6rem 1rem; border-radius: 10px; text-decoration: none; }
.section-contact .cta:hover { background: #000; }

/* Footer */
.site-footer { padding: 2rem 0; border-top: 1px solid #eee; color: #555; }
