* { box-sizing: border-box; }
:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --text: #333333;
  --muted: #858584;
  --brand: #fdb819;
  --brand-dark: #333333;
  --hero-logo-clearance: 340px;
}
html, body { margin: 0; padding: 0; font-family: "Poppins", Inter, system-ui, Arial, sans-serif; background: var(--bg); color: var(--text); }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 20; padding: 20px 0; text-align: center; }
.site-logo { height: 309px; width: auto; pointer-events: none; user-select: none; -webkit-user-drag: none; }
.lang-toggle { position: absolute; top: 24px; right: 20px; border: 1px solid rgba(255,255,255,.7); background: rgba(51,51,51,.9); color: #ffffff; border-radius: 10px; padding: 8px 12px; font-weight: 700; cursor: pointer; }
.lang-toggle:hover { background: rgba(51,51,51,1); }
.hero { position: relative; min-height: 100svh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: background-image 700ms ease; }
.hero-overlay { position: absolute; inset: 0; background: rgba(3,3,3,.74); }
.hero-content { position: relative; z-index: 10; min-height: 100svh; display: flex; align-items: center; padding-top: var(--hero-logo-clearance); }
.hero h1 { font-size: clamp(2rem, 5vw, 4rem); margin: 0 0 12px; line-height: 1.08; }
.hero p { max-width: 760px; color: #ffffff; font-size: clamp(1rem, 2.3vw, 1.2rem); }
.hero h1 { color: #ffffff; }
.hero h1, .hero p, .site-logo { filter: drop-shadow(0 2px 10px rgba(0,0,0,.55)); }
.section { padding: 72px 0; }
.section h2 { margin: 0 0 12px; font-size: clamp(1.6rem, 3vw, 2.2rem); }
.section .lead { color: var(--muted); margin: 0 0 22px; }
.grid { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { background: #fff; color: #111827; border-radius: 12px; padding: 20px; border: 1px solid #e5e7eb; }
.card p { color: #374151; margin-bottom: 0; }
.area-link { border: 1px solid #e5e7eb; background: #ffffff; border-radius: 10px; padding: 10px 12px; display: block; color: #333333; }
.area-link:hover { background: #fdb819; color: #333333; border-color: #fdb819; }
.gallery-btn { border: 1px solid #e5e7eb; border-radius: 12px; overflow: hidden; background: #ffffff; padding: 0; }
.gallery-btn img { width: 100%; height: 230px; object-fit: cover; display: block; }
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); z-index: 70; display: none; align-items: center; justify-content: center; padding: 20px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1100px, 100%); max-height: 90svh; border-radius: 12px; }
.lightbox .close { position: fixed; top: 16px; right: 16px; background: rgba(51,51,51,.95); color: #fff; border: 1px solid rgba(255,255,255,.3); border-radius: 8px; padding: 8px 12px; }
.cta-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 80; padding: 10px 12px 14px; }
.cta-wrap { width: min(1100px, 96%); margin: 0 auto; background: rgba(51,51,51,.97); border: 1px solid rgba(255,255,255,.22); border-radius: 14px; padding: 10px; backdrop-filter: blur(4px); }
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; font-weight: 700; border-radius: 10px; padding: 12px 14px; }
.btn-call { background: var(--brand); color: #333333; }
.btn-text { border: 1px solid rgba(255,255,255,.7); color: #fff; }
.btn-call:hover { background: #e6a300; }
.page-top { padding-top: 110px; }
.breadcrumb { color: #666666; font-size: .94rem; margin-bottom: 14px; }
.breadcrumb a { color: #333333; }
.pill { display: inline-block; border: 1px solid #fdb819; border-radius: 999px; padding: 6px 12px; margin: 0 8px 10px 0; color: #333333; background: rgba(253,184,25,.14); }
.legal-links { padding: 0 0 14px; }
.legal-links .links { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; font-weight: 600; color: #333333; }
.legal-links .sep { color: #777777; }
.legal-links a:hover { color: var(--brand); }
.footer-space { height: 94px; }
.built-by { padding: 28px 0 10px; text-align: center; }
.built-by .built-inner { display: inline-flex; align-items: center; gap: 10px; }
.built-by .built-label { font-weight: 600; color: #333333; }
.built-by .built-logo { height: 40px; width: auto; display: inline-block; }
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  :root { --hero-logo-clearance: 270px; }
  .site-logo { height: 243px; }
}
