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

/* GLOBAL */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", Arial, sans-serif;
  background: #f9f7f4;
  color: #2a2a2a;
  line-height: 1.5;
}

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

/* HEADER */
.site-header {
  padding: 1.2rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(250, 248, 245, 0.7);
  backdrop-filter: blur(6px);
  z-index: 20;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.4rem;
  letter-spacing: 0.09em;
  font-weight: 300;
  text-transform: uppercase;
}

.language-switch a {
  margin-left: 1rem;
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.language-switch a:hover {
  opacity: 1;
}

.lang-active {
  opacity: 1 !important;
  font-weight: 500;
}

/* HERO */
.hero {
  position: relative;
  margin-top: 70px;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 78vh;
  object-fit: cover;
}

/* HERO CONTENT (Desktop) */
.hero-content {
  position: absolute;
  bottom: 14%;
  left: 7%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.28);
  color: #222;
  backdrop-filter: blur(7px);
  padding: 1.8rem 2rem;
  border-radius: 10px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 500;
  margin-bottom: 0.9rem;
}

.hero-content p {
  font-size: 1.05rem;
  opacity: 0.95;
  margin-bottom: 1.4rem;
}

/* DISCOUNT NOTE */
.discount-note {
  font-size: 0.85rem;
  opacity: 0.7;
  color: #5a5a5a;
  margin-bottom: 0.6rem;
}

/* NOTIFY FORM */
.notify-form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.notify-row {
  display: flex;
  gap: 0.5rem;
}

.notify-row input[type="email"] {
  flex: 1 1 auto;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.notify-button {
  padding: 0.75rem 1.25rem;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-transform: uppercase;
  background: #c4a272;
  color: #fdfcf9;
  white-space: nowrap;
}

.notify-message {
  font-size: 0.85rem;
}

.notify-message.success {
  color: #2f6e3b;
}

.notify-message.error {
  color: #b03a3a;
}

/* ABOUT */
.about {
  padding: 5rem 1.8rem;
  background: #f9f7f4;
}

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

.about-inner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* VALUES */
.values {
  padding: 4rem 1.8rem 5rem;
  background: #f3f1ed;
}

.values-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
}

.value-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
}

.value-item p {
  opacity: 0.85;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.9rem;
  background: #faf7f4;
  opacity: 0.7;
}

.footer-contact {
  margin-top: 0.4rem;
  font-size: 0.85rem;
}

.footer-contact a {
  color: #2a2a2a;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.2);
}

/* MOBILE LAYOUT */
@media (max-width: 768px) {

  .hero-image {
    height: 55vh;
    object-fit: cover;
    object-position: center top;
  }

  /* Floating card under the image */
  .hero-content {
    position: relative;
    bottom: auto;
    left: auto;
    margin: -40px 5% 0;
    max-width: none;
    padding: 1.6rem 1.6rem;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(7px);
    border-radius: 12px;
  }

  .hero-content h1 {
    font-size: 1.9rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .notify-row {
    flex-direction: column;
  }

  .notify-button {
    width: 100%;
  }
}

/* hidden */
.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;
}
