/* ===== nails.mari.be — pastel theme ===== */
:root {
  --bg: #fdf7f4;
  --bg-alt: #faeee9;
  --card: #ffffff;
  --ink: #4a3f3c;
  --ink-soft: #8a7a75;
  --rose: #e8b4b8;
  --rose-deep: #d98e96;
  --rose-ink: #b06a73;
  --gold: #d9bfa4;
  --line: #f0ddd6;
  --radius: 22px;
  --shadow: 0 12px 40px rgba(217, 142, 150, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Jost", "Helvetica Neue", Arial, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1rem, 5vw, 3rem);
  background: rgba(253, 247, 244, 0.97);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-size: 1.5rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo-dot { color: var(--rose-deep); }

.main-nav {
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.2rem);
}
.main-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.main-nav a:hover { color: var(--rose-ink); }

.header-right { display: flex; align-items: center; gap: 0.8rem; }

.account-link {
  text-decoration: none;
  font-size: 1.15rem;
  line-height: 1;
  padding: 0.35rem;
  border-radius: 50%;
  transition: background 0.2s;
}
.account-link:hover { background: var(--bg-alt); }

.lang-switcher {
  display: flex;
  gap: 2px;
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 3px;
}
.lang-switcher button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}
.lang-switcher button:hover { color: var(--rose-ink); }
.lang-switcher button.active {
  background: var(--card);
  color: var(--rose-ink);
  box-shadow: 0 2px 8px rgba(176, 106, 115, 0.18);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.burger span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.25s;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 10vw, 8rem) clamp(1.2rem, 6vw, 4rem);
  text-align: center;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: var(--rose-ink);
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  margin-bottom: 1.2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto 2.2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}
.blob-1 { width: 420px; height: 420px; background: #f6d5d8; top: -140px; left: -120px; }
.blob-2 { width: 360px; height: 360px; background: #f3e3d3; bottom: -120px; right: -80px; }
.blob-3 { width: 260px; height: 260px; background: #fbe4e6; top: 30%; right: 12%; }
.hero-emoji {
  position: absolute;
  font-size: 3rem;
  right: clamp(4%, 10vw, 14%);
  top: 18%;
  opacity: 0.75;
  transform: rotate(12deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 1.9rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: all 0.22s;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-deep), var(--rose));
  color: #fff;
  box-shadow: 0 8px 24px rgba(217, 142, 150, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(217, 142, 150, 0.45); }
.btn-ghost {
  border: 1px solid var(--rose);
  color: var(--rose-ink);
  background: transparent;
}
.btn-ghost:hover { background: rgba(232, 180, 184, 0.14); }

/* ===== Sections ===== */
.section { padding: clamp(3.5rem, 8vw, 6rem) clamp(1.2rem, 6vw, 4rem); }
.section-alt { background: var(--bg-alt); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.7rem; }
.section-head p { color: var(--ink-soft); }

/* ===== Prices ===== */
.price-list { max-width: 720px; margin: 0 auto; }
.price-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0.4rem;
  border-bottom: 1px dashed var(--line);
}
.price-item h3 { font-size: 1.25rem; font-weight: 600; }
.price-item p { font-size: 0.88rem; color: var(--ink-soft); }
.price {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--rose-ink);
  white-space: nowrap;
}
.services-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  font-style: italic;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow);
  transition: transform 0.25s;
}
.gallery-item:hover { transform: translateY(-4px); }
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item figcaption {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: #6d5550;
  background: rgba(255, 255, 255, 0.75);
}
.g1 { background: linear-gradient(150deg, #f9dfe2, #f3c8cd); }
.g2 { background: linear-gradient(150deg, #f7e8dc, #ecd2ba); }
.g3 { background: linear-gradient(150deg, #fbe9ea, #e8b4b8); }
.g4 { background: linear-gradient(150deg, #f4e4e9, #ddb6c6); }
.g5 { background: linear-gradient(150deg, #faf0e3, #e8cdb0); }
.g6 { background: linear-gradient(150deg, #f6dbe0, #d9a1ab); }

.gallery-note { text-align: center; margin-top: 2.2rem; }
.gallery-note a {
  color: var(--rose-ink);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
}
.gallery-note a:hover { color: var(--rose-deep); }

/* ===== Reviews ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto;
}
.review-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.review-stars { color: #d9a441; font-size: 1.05rem; letter-spacing: 0.15em; }
.review-text { color: var(--ink-soft); font-size: 0.95rem; flex: 1; }
.review-meta { font-size: 0.83rem; color: var(--ink-soft); }
.review-meta b { color: var(--ink); font-weight: 500; }

/* ===== About ===== */
.about-wrap {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.about-photo {
  aspect-ratio: 3 / 4;
  border-radius: 40% 60% 55% 45% / 45% 40% 60% 55%;
  background: linear-gradient(160deg, #f6d5d8, #ecd2ba);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo-inner { font-size: 4rem; opacity: 0.8; }
.about-text h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 1rem; }
.about-text p { color: var(--ink-soft); margin-bottom: 0.9rem; }
.about-points { list-style: none; margin-top: 1.4rem; }
.about-points li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
}
.about-points li::before {
  content: "✿";
  position: absolute;
  left: 0;
  color: var(--rose-deep);
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  max-width: 960px;
  margin: 0 auto 2.6rem;
}
.contact-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.contact-icon { font-size: 1.9rem; margin-bottom: 0.7rem; }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 0.4rem; }
.contact-card p { font-size: 0.92rem; color: var(--ink-soft); white-space: pre-line; }

.contact-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== Footer ===== */
.site-footer {
  text-align: center;
  padding: 2rem 1rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}
.footer-link { color: var(--rose-ink); text-decoration: none; }
.footer-link:hover { text-decoration: underline; }

@media (max-width: 1000px) {
  .hero-emoji { display: none; }
}

/* ===== Mobile ===== */
@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    background: rgba(253, 247, 244, 0.97);
    padding: 2rem 0;
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 0.3s ease;
    z-index: 40;
  }
  .main-nav.open { transform: translateY(0); }
  .burger { display: flex; }
  .about-wrap { grid-template-columns: 1fr; }
  .about-photo { max-width: 260px; margin: 0 auto; }
}
