:root {
  --bg: #fff7d8;
  --surface: #fffdf7;
  --text: #34234a;
  --muted: #6f5f78;
  --accent: #ff5f8f;
  --accent-dark: #d93169;
  --accent-soft: #78dbe2;
  --sunny: #ffd166;
  --border: #ffd0df;
  --shadow: 0 18px 50px rgba(255, 95, 143, 0.16);
  --radius: 24px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(120, 219, 226, 0.45), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 209, 102, 0.48), transparent 26%),
    linear-gradient(135deg, #fff7d8 0%, #ffe8f0 48%, #e8fbff 100%);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 10%, rgba(120, 219, 226, 0.3), transparent 28%),
    radial-gradient(circle at 90% 18%, rgba(255, 209, 102, 0.32), transparent 26%),
    radial-gradient(circle at 16% 74%, rgba(255, 95, 143, 0.18), transparent 30%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 247, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent), var(--sunny));
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--accent-dark);
}

.menu-button {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--surface);
  color: var(--text);
  font: inherit;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px clamp(20px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: start;
  min-height: auto;
  padding-top: 32px;
  padding-bottom: 32px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.hero-text,
.section-heading p,
.policy-card p,
.contact-card p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--accent), #ff8c42);
  box-shadow: 0 12px 28px rgba(255, 95, 143, 0.28);
}

.button.primary:hover {
  background: linear-gradient(135deg, var(--accent-dark), #ef6c26);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid var(--border);
}

.icon-button {
  gap: 8px;
  min-width: 52px;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.icon-button:hover {
  transform: translateY(-1px);
}

.brand-icon {
  width: 24px;
  height: 24px;
  display: block;
}

.icon-button.instagram {
  border-color: rgba(255, 95, 143, 0.35);
}

.icon-button.tiktok {
  border-color: rgba(120, 219, 226, 0.55);
}

.hero-card,
.service-card,
.policy-card,
.contact-card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.9);
  box-shadow: var(--shadow);
}

.hero-card-title {
  font-weight: 800;
}

.hero-card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 18px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card p {
  color: var(--muted);
}

.service-card strong {
  color: var(--accent-dark);
}

.gallery-section code {
  padding: 2px 6px;
  border-radius: 8px;
  background: rgba(255, 209, 102, 0.35);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--surface);
}

.gallery-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.gallery-grid figcaption {
  padding: 12px 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.policy-card {
  text-align: left;
}

.policy-section ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.policy-section li + li {
  margin-top: 8px;
}

.contact-card {
  text-align: center;
}

.booking-fallback a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 20px 44px;
  color: var(--muted);
  text-align: center;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

@media (max-width: 800px) {
  body {
    background:
      linear-gradient(160deg, #fff4c4 0%, #ffe2ef 52%, #ddfbff 100%);
  }

  body::before {
    background:
      radial-gradient(ellipse 260px 220px at -12% 6%, rgba(120, 219, 226, 0.9), transparent 70%),
      radial-gradient(ellipse 260px 240px at 112% 18%, rgba(255, 209, 102, 0.88), transparent 70%),
      radial-gradient(ellipse 220px 260px at 8% 72%, rgba(255, 95, 143, 0.38), transparent 72%);
  }

  .site-header {
    align-items: flex-start;
  }

  .menu-button {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
