*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: 'Outfit', sans-serif;
}

/* ── VIDEO BACKGROUND ── */
.video-container {
  position: fixed;
  inset: 0;
  z-index: 0;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* heavy vignette / darkening overlay */
.video-container::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 20%, rgba(0,0,0,0.75) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.20) 50%, rgba(0,0,0,0.75) 100%);
}

/* ── MAIN LAYOUT ── */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

/* ── LOGO MARK ── */
.logo-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeDown 1s ease 0.3s forwards;
}

.logo-mark .bar {
  width: 3px;
  height: 42px;
  background: linear-gradient(to bottom, #c9a84c, #f5d68a);
  border-radius: 2px;
}

.logo-mark span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.35em;
  color: #c9a84c;
  text-transform: uppercase;
}

/* ── HEADLINE ── */
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.5rem, 10vw, 8.5rem);
  line-height: 0.92;
  color: #ffffff;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 60px rgba(201,168,76,0.25),
    0 4px 30px rgba(0,0,0,0.8);
  opacity: 0;
  animation: fadeUp 1s ease 0.55s forwards;
}

h1 .gold {
  color: #c9a84c;
  background: linear-gradient(90deg, #c9a84c, #f5d68a, #c9a84c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SERVICES LABEL ── */
.services-label {
  margin-top: 0.15rem;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.45em;
  color: rgba(201,168,76,0.75);
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 0.7s forwards;
}

/* ── TAGLINE ── */
.tagline {
  margin-top: 1.4rem;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s ease 0.8s forwards;
}

/* ── DIVIDER ── */
.divider {
  margin: 2.4rem auto;
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #c9a84c, transparent);
  opacity: 0;
  animation: fadeIn 1s ease 1s forwards;
}

/* ── CONTACT BUTTON ── */
.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2.8rem;
  background: transparent;
  border: 1.5px solid #c9a84c;
  color: #c9a84c;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  opacity: 0;
  animation: fadeUp 1s ease 1.15s forwards;
}

.btn-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c9a84c, #f5d68a);
  transform: translateX(-105%);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: 0;
}

.btn-contact:hover::before {
  transform: translateX(0);
}

.btn-contact:hover {
  color: #000;
  border-color: #f5d68a;
  box-shadow: 0 0 30px rgba(201,168,76,0.4);
}

.btn-contact span,
.btn-contact svg {
  position: relative;
  z-index: 1;
}

/* ── TOP-LEFT LOGO ── */
.site-logo {
  position: fixed;
  top: 22px;
  left: 28px;
  z-index: 10;
  height: 72px;
  width: auto;
  opacity: 0;
  animation: fadeDown 1s ease 0.2s forwards;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.6));
}

/* ── CORNER ACCENTS ── */
.corner {
  position: fixed;
  width: 60px;
  height: 60px;
  border-color: rgba(201,168,76,0.4);
  border-style: solid;
  opacity: 0;
  animation: fadeIn 1.2s ease 1.4s forwards;
}
.corner.tl { top: 30px; left: 30px; border-width: 2px 0 0 2px; }
.corner.tr { top: 30px; right: 30px; border-width: 2px 2px 0 0; }
.corner.bl { bottom: 30px; left: 30px; border-width: 0 0 2px 2px; }
.corner.br { bottom: 30px; right: 30px; border-width: 0 2px 2px 0; }

/* ── FOOTER NOTE ── */
.footer-note {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  animation: fadeIn 1s ease 1.6s forwards;
}

/* ── CONTACT MODAL ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: #0d0d0d;
  border: 1px solid rgba(201,168,76,0.3);
  width: min(480px, 92vw);
  padding: 3rem 2.8rem;
  position: relative;
  transform: translateY(24px);
  transition: transform 0.35s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: #c9a84c; }

.modal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: #fff;
  margin-bottom: 0.4rem;
}
.modal h2 .gold-text { color: #c9a84c; }

.modal p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  padding: 0.9rem 1rem;
  outline: none;
  transition: border-color 0.25s;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #c9a84c;
}

.form-group textarea {
  height: 110px;
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #c9a84c, #f5d68a);
  border: none;
  color: #000;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  margin-top: 0.4rem;
}

.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
