/* RESET */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
  line-height: 1.5;
  background: #000;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 74px;
  padding: 10px 28px;
  background: rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  margin: 0 auto;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.logo-image {
  width: 53px;
  height: 54px;
  display: block;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: nowrap;
}

.header-nav a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0.92;
  transition: opacity 0.25s ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #fff;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.header-nav a:hover {
  opacity: 1;
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

/* HERO */
.hero {
  position: relative;
  height: 88vh;
  min-height: 680px;
  overflow: hidden;

  background-image: url("../img/hero_2.png");
  background-size: cover;
  background-position: center 70%;
  background-repeat: no-repeat;
  background-color: #000;
}

/* vignette + readable center */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  box-shadow:
    inset 0 0 180px rgba(0, 0, 0, 0.75),
    inset 0 -120px 120px rgba(0, 0, 0, 0.65);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 28%, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 16%, rgba(255,255,255,0) 34%),
    linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.18) 55%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 180px 24px 120px;
}

.hero-copy {
  max-width: 1000px;
  margin: 0 auto;
  transform: translateY(110px);
}

.hero-kicker {
  margin-bottom: 18px;

  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.hero-title {
  margin: 0;

  font-family: "Inter", sans-serif;
  font-size: 66px;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #fff;

  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

/* CONTENT */
.content {
  position: relative;
  z-index: 5;
  max-width: 1040px;
  margin: -18px auto 0;
  padding: 26px 24px 60px;
  background: #000;
  text-align: center;
}

.content p {
  max-width: 960px;
  margin: 0 auto 22px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.92);
}

.content p:last-child {
  margin-bottom: 0;
}

.content br {
  display: block;
  margin-bottom: 8px;
}

/* LOCATION */
.location {
  position: relative;
  z-index: 5;
  max-width: 1040px;
  margin: 0 auto;
  padding: 8px 24px 28px;
  background: #000;
  text-align: center;
}

.location h2 {
  margin-bottom: 22px;
}

.location h2,
.hero-overlay h1 {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  color: #ffffff;
}

.location p {
  max-width: 1040px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

/* FORM */
.form-wrapper {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px 60px;
  background: #000;
  overflow: visible; 
}

.form-wrapper iframe,
.form-wrapper > div {
  width: 100% !important;
  max-width: 100% !important;
  border: none !important;
  display: block;
}


/* FOOTER */
.footer {
  background: #000;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 28px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-left {
  flex: 0 0 auto;
}

.footer-logo {
  width: 48px;
  opacity: 0.9;
  display: block;
}

.footer-center {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 32px;
  color: #fff;
}

.footer-center a {
  color: #fff;
  text-decoration: none;
}

.footer-center a:hover {
  opacity: 0.7;
}

.footer-right {
  display: flex;
  gap: 14px;
  flex: 0 0 auto;
}

.footer-right a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6px;
}

.footer-right svg {
  width: 18px;
  height: 18px;
  fill: #000;
}

/* TABLET */
@media (max-width: 1200px) {
  .hero {
    min-height: 640px;
    background-position: center 34%;
  }

  .hero-kicker {
    font-size: 16px;
    letter-spacing: 0.42em;
    margin-bottom: 16px;
  }

  .hero-title {
    font-size: 56px;
  }


  .hero-overlay h1 {
    font-size: 34px;
    line-height: 1.3;
  }

  .content p,
  .location p {
    font-size: 18px;
    line-height: 1.9;
  }

  .location h2 {
    font-size: 42px;
  }

  .form-wrapper {
    max-width: 1000px;
    padding: 0 24px 56px;
  }

  .footer-inner {
    padding: 0 24px;
  }
}

/* HEADER TABLET */
@media (max-width: 991px) {
  .header {
    top: 16px;
    width: calc(100% - 32px);
  }

  .header-inner {
    width: 100%;
    gap: 20px;
    padding: 10px 18px;
    min-height: 64px;
    justify-content: space-between;
  }


  .header-nav {
    gap: 18px;
  }

  .header-nav a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .header {
    top: 12px;
    width: calc(100% - 20px);
  }

  .header-inner {
    min-height: 58px;
    padding: 10px 14px;
    gap: 14px;
    justify-content: center;
  }

  .logo-image {
    width: 34px;
    height: 35px;
  }

  .header-nav {
    gap: 12px;
    justify-content: center;
  }

  .header-nav a {
    font-size: 10px;
    letter-spacing: 0.06em;
  }

  .header-nav a::after {
    bottom: -5px;
  }

.hero {
  height: 74vh;
  min-height: 500px;
   background-position: center 65%;
}

.hero-overlay {
  padding: 100px 20px 70px;
}
	
	.hero-copy {
  transform: translateY(55px);
}

  .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.32em;
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: 36px;
    line-height: 0.98;
    letter-spacing: -0.02em;
  }

.content {
  max-width: 100%;
  margin: -8px auto 0;
  padding: 20px 20px 32px;
  text-align: center;
}

.content p {
  font-size: 16px;
  line-height: 1.7;
  margin: 0 auto 18px;
}

  .location {
    max-width: 100%;
    padding: 0 20px 20px;
  }

  .location h2 {
    font-size: 34px;
    margin-bottom: 14px;
  }

  .location p {
    font-size: 16px;
    line-height: 1.7;
  }

  .form-wrapper {
    max-width: 100%;
    padding: 0 0 48px;
  }

  .form-wrapper iframe {
    margin-top: 0 !important;
    min-height: 980px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 18px;
    text-align: center;
  }

  .footer-center {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 560px) {
  .header {
    width: calc(100% - 16px);
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
  }

  .header-nav {
    gap: 10px;
    justify-content: flex-end;
  }

  .header-nav a {
    font-size: 9px;
    letter-spacing: 0.04em;
  }

  .hero-image {
    transform: none;
  }
}

