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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  color: #fff;
  background: #000;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Honeypot — off-screen for bots */
.hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-send:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Header brand (accessible link; visually mirrored in hero) */
.site-header {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Hero */
.hero {
  position: relative;
  min-height: 702px;
  height: 70vh;
  max-height: 900px;
  background-color: #161616;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)),
    url("assets/hero.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.hero__brand {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: Montserrat, sans-serif;
  font-size: clamp(18px, 2.2vw, 29px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.2;
}

.hero__title {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1100px, calc(100% - 48px));
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}

/* Contact */
.contact {
  background: #000;
  padding: 56px 24px 72px;
}

.contact__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.contact__title {
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.4;
  color: #969696;
}

.contact__rule {
  width: 50px;
  height: 0;
  margin: 0 auto 40px;
  border: 0;
  border-bottom: 2px solid #1b1b1b;
}

.contact__subtitle {
  margin: 0 0 24px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
  color: #e2e2e2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
  text-align: left;
}

.field {
  position: relative;
}

.field__label {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #ababab;
  font-size: 18px;
  pointer-events: none;
  transition: top 0.15s ease, font-size 0.15s ease, transform 0.15s ease;
}

.field.is-focused .field__label,
.field.is-filled .field__label {
  top: 10px;
  transform: none;
  font-size: 12px;
}

.field__input,
.field__textarea {
  width: 100%;
  display: block;
  background: transparent;
  color: #e2e2e2;
  border: 1px solid #fff;
  border-radius: 4px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  outline: none;
}

.field__input {
  padding: 23px 16px 7px;
  min-height: 56px;
}

.field__textarea {
  padding: 16px;
  min-height: 140px;
  line-height: 1.75;
  resize: vertical;
}

.field__input::placeholder,
.field__textarea::placeholder {
  color: #ababab;
}

.field__input:focus,
.field__textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 1px #fff;
}

.required {
  color: #ababab;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 4px;
  color: #e2e2e2;
  font-size: 16px;
  line-height: 1.4;
  cursor: pointer;
}

.checkbox input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: #fff;
}

.btn-send {
  align-self: center;
  margin-top: 8px;
  padding: 8px 32px;
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: #000;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.btn-send:hover {
  background: #e8e8e8;
}

.btn-send:active {
  transform: translateY(1px);
}

.form-status {
  margin: 8px 0 0;
  min-height: 1.4em;
  text-align: center;
  font-size: 16px;
  color: #e2e2e2;
}

.form-status.is-error {
  color: #ff8a8a;
}

.form-status.is-success {
  color: #9be7a4;
}

/* Footer — no GoDaddy / "Powered by" branding */
.site-footer {
  background: #000;
  padding: 40px 24px 56px;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: #969696;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  max-width: 320px;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__card {
  background: #9a9a9a;
  color: #1a1a1a;
  padding: 20px 18px;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.cookie-banner__card h4 {
  margin: 0 0 10px;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.cookie-banner__card p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner__accept {
  display: block;
  width: 100%;
  padding: 10px 16px;
  border: 0;
  border-radius: 2px;
  background: #fff;
  color: #000;
  font-family: "Source Sans Pro", Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-banner__accept:hover {
  background: #f2f2f2;
}

@media (max-width: 700px) {
  .hero {
    min-height: 520px;
    height: 65vh;
  }

  .hero__content {
    padding: 36px 16px 48px;
  }

  .hero__brand {
    letter-spacing: 0.1em;
  }

  .contact {
    padding: 48px 16px 56px;
  }

  .cookie-banner {
    right: 12px;
    left: 12px;
    bottom: 12px;
    max-width: none;
  }
}
