:root {
  /* Replace with your background image path or URL */
  --hero-image: url("./atelier-bg.png");
  --text: #f6f3ef;
  --text-soft: rgba(246, 243, 239, 0.8);
  --card-bg: rgba(17, 20, 26, 0.58);
  --card-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  --radius: 20px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100svh;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: var(--text);
  background: #0f1115;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
}

.page-overlay {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 6, 8, 0.34) 0%, rgba(5, 6, 8, 0.48) 70%, rgba(5, 6, 8, 0.6) 100%);
}

.container {
  width: min(94vw, 980px);
  margin-inline: auto;
}

.landing {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 54px);
  padding: clamp(14px, 2vw, 24px) 0 clamp(20px, 4vw, 34px);
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.2vw, 24px);
}

.hero-head {
  text-align: center;
}

.hero-head h1 {
  margin: 0;
  font-size: clamp(1.6rem, 4.8vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.5);
}

.hero-lead {
  margin: 8px auto 0;
  max-width: 62ch;
  font-size: clamp(0.9rem, 2vw, 1.02rem);
  color: var(--text-soft);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.glass-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.booking {
  display: grid;
  gap: clamp(12px, 2vw, 18px);
}

.booking-card {
  padding: clamp(8px, 1.4vw, 12px);
}

.section-heading {
  margin: 0 0 10px;
  font-size: clamp(1rem, 2vw, 1.14rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.booking-embed {
  min-width: 100%;
  width: 100%;
  height: clamp(560px, 70svh, 760px);
  border-radius: 14px;
  overflow: hidden;
  border: 0;
}

.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 77, 109, 0.94);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(0.82rem, 1.8vw, 0.88rem);
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(255, 77, 109, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 77, 109, 0.5);
  filter: brightness(1.06);
}

.cta-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  color: #ffffff;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.social-link svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.65);
}

.social-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}

.location {
  display: flex;
  justify-content: center;
}

.map-card {
  width: 100%;
  padding: 10px;
  overflow: hidden;
}

.map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
}

.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 8px 14px 14px;
}

.site-footer p {
  margin: 0;
  font-size: clamp(0.75rem, 1.9vw, 0.9rem);
  letter-spacing: 0.02em;
  color: var(--text-soft);
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.45);
}

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

@media (max-width: 420px) {
  .container {
    width: 95vw;
  }

  .landing {
    gap: 12px;
    padding-top: 12px;
  }

  .booking-embed {
    height: 520px;
  }

  .cta-button {
    width: 100%;
    max-width: 245px;
  }
}

@media (min-width: 768px) {
  .landing {
    padding-top: clamp(18px, 3vw, 28px);
  }

  .hero-head h1 {
    font-size: clamp(1.95rem, 3.8vw, 2.45rem);
  }

  .booking-embed {
    height: clamp(600px, 58svh, 660px);
  }

  .map-frame {
    aspect-ratio: 16 / 8;
  }
}

@media (min-width: 1100px) {
  .landing {
    gap: 20px;
  }

  .booking-embed {
    height: 610px;
  }
}

@media (min-width: 900px) {
  body {
    background-attachment: fixed;
  }
}
