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

body {
  font-family: 'Cormorant Garamond', serif;
  color: #f3e6c8;
}

.hero {
  position: relative;
  min-height: 100vh;
  background-image: url('assets/background-2.jpg');
  background-size: cover;
  background-position: center 20%;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 7vh 24px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.55) 22%,
    rgba(0, 0, 0, 0.1) 45%,
    rgba(0, 0, 0, 0) 65%
  );
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  padding: 0 24px;
}

.title-box {
  position: relative;
  z-index: 1;
  width: max-content;
  max-width: 88%;
  text-align: center;
  background: rgba(15, 10, 3, 0.55);
  backdrop-filter: blur(3px);
  padding: 22px 44px;
  border-radius: 18px;
  border: 1px solid rgba(232, 200, 116, 0.35);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.eyebrow {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #d8b978;
  margin-bottom: 8px;
}

.site-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: clamp(2rem, 6.5vw, 3.4rem);
  line-height: 1.15;
  color: #e8c874;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7);
  margin: 0;
}

.badge {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(1.3rem, 3.6vw, 2.1rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a1305;
  background: linear-gradient(135deg, #e8c874, #b8862f);
  padding: 14px 34px;
  border-radius: 999px;
  margin-bottom: 26px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
  color: #f6e9c9;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
  margin-bottom: 18px;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 4px 0 16px;
  color: rgba(232, 200, 116, 0.7);
  font-size: 0.75rem;
}

.divider::before,
.divider::after {
  content: '';
  width: 44px;
  height: 1px;
  background: rgba(232, 200, 116, 0.4);
}

.contact {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.1rem;
  color: #f0dfb8;
}

.contact a {
  color: #f5cf80;
  text-decoration: none;
  border-bottom: 1px solid rgba(245, 207, 128, 0.7);
  transition: border-color 0.2s ease;
}

.contact a:hover {
  border-color: #f5cf80;
}

.cookie-banner {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  background: rgba(10, 7, 2, 0.95);
  border-top: 1px solid rgba(232, 200, 116, 0.3);
  padding: 16px 24px;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-banner p {
  margin: 0;
  max-width: 560px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: #e9dcc0;
  text-align: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-actions button {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

#cookie-accept {
  background: linear-gradient(135deg, #e8c874, #b8862f);
  color: #1a1305;
}

#cookie-decline {
  background: transparent;
  border: 1px solid rgba(232, 200, 116, 0.4);
  color: #e9dcc0;
}

@media (max-aspect-ratio: 4/3) {
  .hero {
    background-position: center 12%;
  }

  .title-box {
    padding: 26px 36px;
  }

  .eyebrow {
    font-size: 1rem;
  }

  .site-title {
    font-size: 2.8rem;
  }
}

@media (max-height: 700px) {
  .hero {
    gap: 20px;
    padding: 4vh 24px;
  }

  .title-box {
    padding: 16px 28px;
  }

  .eyebrow {
    font-size: 0.8rem;
    margin-bottom: 4px;
  }

  .site-title {
    font-size: 2.1rem;
  }

  .badge {
    padding: 10px 26px;
    margin-bottom: 16px;
  }

  .tagline {
    margin-bottom: 10px;
  }
}
