:root {
  --bg: #0d0d0f;
  --surface: #17171b;
  --surface-2: #222228;
  --text: #f7f4ef;
  --muted: #bcb7ae;
  --accent: #d9a441;
  --line: rgba(255, 255, 255, .12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  padding: .8rem 1rem;
  background: white;
  color: black;
  border-radius: .5rem;
}
.skip-link:focus { top: 1rem; }

.geo-banner {
  position: relative;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem max(1rem, calc((100vw - var(--max)) / 2));
  background: #f1e7d3;
  color: #201b14;
  border-bottom: 1px solid rgba(0,0,0,.12);
}
.geo-banner[hidden] { display: none; }
.geo-banner strong, .geo-banner span { display: block; }
.geo-banner span { font-size: .88rem; opacity: .8; }
.geo-actions { display: flex; gap: .6rem; flex: 0 0 auto; }

.site-header {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.brand img { width: 178px; height: auto; }
nav { display: flex; gap: 1.5rem; }
nav a { color: var(--muted); text-decoration: none; font-weight: 700; }
nav a:hover, nav a:focus-visible { color: var(--text); }

.hero {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 7rem) 0;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
}
.hero h1, .section h2 {
  margin: .45rem 0 1.1rem;
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero h1 { font-size: clamp(3rem, 7vw, 6.4rem); }
.hero-copy > p:not(.eyebrow) { max-width: 59ch; color: var(--muted); font-size: 1.08rem; }
.eyebrow { margin: 0; color: var(--accent); font-weight: 900; letter-spacing: .13em; text-transform: uppercase; font-size: .77rem; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }
.hero-media { position: relative; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: 12% -5% -8% 18%;
  background: rgba(217,164,65,.16);
  filter: blur(42px);
  border-radius: 50%;
  z-index: -1;
}
.hero-media img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; border-radius: 1.2rem; box-shadow: 0 35px 90px rgba(0,0,0,.45); }

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 46px;
  padding: .75rem 1.15rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  background: var(--accent);
  color: #17120b;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button:hover, .button:focus-visible { transform: translateY(-1px); filter: brightness(1.05); }
.button-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.geo-banner .button-ghost { color: #201b14; border-color: rgba(0,0,0,.22); }
.button-small { min-height: 38px; padding: .55rem .85rem; font-size: .84rem; }

.trust-strip {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1rem;
  overflow: hidden;
}
.trust-strip > div { padding: 1.2rem 1.4rem; }
.trust-strip > div + div { border-left: 1px solid var(--line); }
.trust-strip strong, .trust-strip span { display: block; }
.trust-strip span { color: var(--muted); font-size: .9rem; }

.section {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}
.section-heading { max-width: 760px; margin-bottom: 2rem; }
.section h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
.section-heading > p:last-child, .split-section p, .contact-panel p { color: var(--muted); }

.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.card { margin: 0; background: var(--surface); border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; }
.card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .35s ease; }
.card:hover img { transform: scale(1.025); }
.card figcaption { padding: .9rem 1rem 1rem; font-weight: 800; }
.card-wide { grid-column: span 2; }
.card-wide img { aspect-ratio: 16 / 10; }

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(2rem, 8vw, 8rem);
  border-top: 1px solid var(--line);
}
.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-inline: clamp(1.2rem, 4vw, 3rem);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; align-items: center; gap: .7rem; color: var(--text); font-weight: 900; }
.footer-brand img { width: 48px; height: auto; border-radius: .25rem; }
.site-footer p { max-width: 720px; margin: 0; font-size: .86rem; text-align: right; }

@media (max-width: 900px) {
  .geo-banner { align-items: flex-start; flex-direction: column; }
  .hero, .split-section { grid-template-columns: 1fr; }
  .hero { padding-top: 4rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 620px) {
  .site-header { min-height: 72px; }
  .brand img { width: 142px; }
  nav { gap: .8rem; font-size: .88rem; }
  nav a:nth-child(2) { display: none; }
  .hero h1 { font-size: clamp(2.8rem, 16vw, 4.4rem); }
  .trust-strip { grid-template-columns: 1fr; }
  .trust-strip > div + div { border-left: 0; border-top: 1px solid var(--line); }
  .gallery { grid-template-columns: 1fr; }
  .card-wide { grid-column: auto; }
  .card-wide img, .card img { aspect-ratio: 4 / 4.3; }
  .geo-actions { width: 100%; flex-wrap: wrap; }
  .geo-actions .button { flex: 1; }
  .site-footer { align-items: flex-start; flex-direction: column; }
  .site-footer p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
