@import url('https://fonts.googleapis.com/css2?family=Archivo+Condensed:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  --ink: #131315;
  --gray: #6d6e71;
  --yellow: #ebea70;
  --font-display: 'Archivo Condensed', ui-sans-serif, system-ui, sans-serif;
  --font-serif: 'Instrument Serif', ui-serif, Georgia, serif;
  --ease: cubic-bezier(.16,.84,.44,1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-display);
  color: #fff;
  background: var(--ink);
  -webkit-font-smoothing: antialiased;
}
.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; }

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  overflow-x: hidden;
}
a { -webkit-tap-highlight-color: transparent; }
button { -webkit-tap-highlight-color: transparent; }
.bg-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page::after {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(10,10,8,.55) 0%, rgba(10,10,8,.35) 40%, rgba(10,10,8,.85) 100%);
}

header, main, footer { position: relative; z-index: 2; }

header {
  display: flex; align-items: center; justify-content: space-between;
  padding: calc(1.6rem + env(safe-area-inset-top)) calc(1.75rem + env(safe-area-inset-right)) 1.6rem calc(1.75rem + env(safe-area-inset-left));
  flex-shrink: 0;
}
.brand-logo { height: 28px; width: auto; display: block; }
.lang-toggle {
  width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08); color: #fff; font-size: .72rem; font-weight: 700;
  letter-spacing: .04em; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem 1.75rem;
  min-height: 0;
}
.content { max-width: 640px; margin: 0 auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: rgba(255,255,255,.75);
  margin-bottom: 1.4rem;
}
.eyebrow::before, .eyebrow::after { content: ''; width: 20px; height: 1px; background: var(--yellow); }

h1 {
  font-weight: 600; letter-spacing: -.01em; margin: 0;
  font-size: clamp(2.2rem, 6vw, 3.6rem); line-height: 1.1;
}
.lede {
  margin: 1.5rem auto 0; max-width: 34em;
  font-size: 1.08rem; line-height: 1.6; color: rgba(255,255,255,.82);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 600; text-transform: uppercase; letter-spacing: .05em; font-size: .85rem;
  padding: .95em 1.8em; background: var(--yellow); color: var(--ink);
  border: 1px solid var(--yellow); border-radius: 999px; cursor: pointer;
  text-decoration: none;
  transition: transform .3s var(--ease);
}
.btn:hover, .btn:active { transform: translateY(-2px); }
.instagram-btn { margin: 2.4rem auto 0; }

footer {
  padding: 1.6rem calc(1.75rem + env(safe-area-inset-right)) calc(1.6rem + env(safe-area-inset-bottom)) calc(1.75rem + env(safe-area-inset-left));
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.65);
  flex-shrink: 0;
}
.socials { display: flex; gap: 1.4rem; }
.socials a { color: rgba(255,255,255,.85); text-transform: uppercase; letter-spacing: .05em; font-size: .78rem; }
.socials a:hover { color: var(--yellow); }
footer a { text-decoration: none; }
.contact-email { color: rgba(255,255,255,.85); }

@media (max-width: 560px) {
  footer { flex-direction: column; text-align: center; }
  h1 { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .lede { font-size: 1rem; }
  .eyebrow { margin-bottom: 1.1rem; }
  .instagram-btn { margin-top: 1.8rem; }
  .btn { padding: .9em 1.5em; font-size: .8rem; }
}

/* short / landscape phones: keep everything on screen without clipping */
@media (max-height: 480px) {
  header { padding-top: calc(1rem + env(safe-area-inset-top)); padding-bottom: 1rem; }
  main { padding-top: .75rem; padding-bottom: .75rem; }
  .eyebrow { margin-bottom: .8rem; }
  h1 { font-size: clamp(1.6rem, 5.5vw, 2.2rem); line-height: 1.15; }
  .lede { margin-top: .8rem; font-size: .92rem; }
  .instagram-btn { margin-top: 1.2rem; }
  footer { padding-top: .9rem; padding-bottom: calc(.9rem + env(safe-area-inset-bottom)); }
}
