/*
 * Raquel Pimenta — nail, hand & foot care studio
 * Soft, spa-inspired palette: blush, nude, sage and warm cream.
 */

:root {
  --blush:        #f7e3e3;
  --blush-deep:   #e9c4c6;
  --rose:         #d99ca3;
  --rose-deep:    #c47e87;
  --nude:         #f3e7df;
  --cream:        #fdfaf7;
  --sage:         #cdd8c8;
  --sage-deep:    #9fb195;
  --ink:          #5a4a4a;
  --ink-soft:     #8a7878;
  --white:        #ffffff;
  --shadow:       0 18px 50px rgba(180, 130, 130, 0.18);
  --shadow-sm:    0 8px 24px rgba(180, 130, 130, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .4em;
  letter-spacing: .2px;
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.section { padding: 5.5rem 0; }

.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--rose-deep);
  margin-bottom: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .9rem 2.1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .3px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--rose-deep); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--rose-deep);
  border: 1.5px solid var(--blush-deep);
}
.btn-ghost:hover { background: var(--blush); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(253, 250, 247, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(233, 196, 198, 0.4);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}
.brand {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: .5px;
}
.brand span { color: var(--rose-deep); }
.nav { display: flex; gap: 2rem; align-items: center; }
.nav a { font-size: .92rem; font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav a:hover { color: var(--rose-deep); }
.nav .btn { padding: .6rem 1.4rem; }
.lang-switch { font-size: .82rem; font-weight: 700; letter-spacing: .5px; display: inline-flex; gap: .4rem; align-items: center; }
.lang-switch a { color: var(--ink-soft); transition: color .2s; }
.lang-switch a.is-active { color: var(--rose-deep); }
.lang-switch a:hover { color: var(--rose-deep); }
.lang-switch .sep { color: var(--blush-deep); }
@media (max-width: 760px) { .nav a:not(.btn):not(.lang-switch a) { display: none; } .nav .lang-switch { display: inline-flex; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 80% 20%, var(--blush) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, var(--sage) 0%, transparent 40%),
    linear-gradient(160deg, var(--cream) 0%, var(--nude) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
  padding: 6rem 0 6.5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  line-height: 1.05;
}
.hero h1 em { color: var(--rose-deep); font-style: italic; }
.hero p.lead { font-size: 1.15rem; max-width: 30rem; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 25%, var(--white) 0%, transparent 55%),
    linear-gradient(150deg, var(--blush-deep) 0%, var(--rose) 60%, var(--sage-deep) 130%);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 20px;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}
.hero-visual .glyph { font-size: 6rem; filter: drop-shadow(0 8px 16px rgba(0,0,0,.12)); }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; padding: 4rem 0 4.5rem; }
  .hero p.lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 340px; margin: 1rem auto 0; }
}

/* ---------- Keyword band ---------- */
.keywords {
  background: var(--blush);
  text-align: center;
  padding: 1.1rem 0;
}
.keywords .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: .9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-style: italic;
  color: var(--rose-deep);
}
.keywords .dot { color: var(--blush-deep); font-style: normal; }

/* ---------- Gallery ---------- */
.gallery { background: linear-gradient(180deg, var(--cream) 0%, var(--nude) 100%); }
.gallery-grid {
  columns: 4 230px;
  column-gap: 1.1rem;
}
.gallery-item {
  width: 100%;
  display: block;
  margin: 0 0 1.1rem;
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  background: var(--blush);
  transition: transform .25s ease, box-shadow .25s ease;
}
img.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
video.gallery-item { outline: none; }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.section-head { text-align: center; max-width: 38rem; margin: 0 auto 3.2rem; }
.section-head h2 { font-size: clamp(2rem, 4vw, 2.9rem); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.6rem;
}
.card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(243, 231, 223, 0.9);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.7rem;
  margin-bottom: 1.1rem;
  background: var(--blush);
}
.card:nth-child(2) .icon { background: var(--sage); }
.card:nth-child(3) .icon { background: var(--nude); }
.card:nth-child(4) .icon { background: var(--blush); }
.card h3 { font-size: 1.5rem; }
.card .price { color: var(--rose-deep); font-weight: 700; }

/* ---------- About ---------- */
.about { background: linear-gradient(180deg, var(--nude) 0%, var(--cream) 100%); }
.about .container {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-visual {
  aspect-ratio: 1 / 1;
  border-radius: 26px;
  background:
    radial-gradient(circle at 70% 30%, var(--white) 0, transparent 50%),
    linear-gradient(150deg, var(--sage) 0%, var(--blush-deep) 110%);
  box-shadow: var(--shadow);
  display: grid; place-items: center;
  font-size: 5rem;
}
.about h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.feature-list { list-style: none; padding: 0; margin: 1.4rem 0 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: .8rem;
  margin-bottom: .9rem; color: var(--ink-soft);
}
.feature-list .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--blush); color: var(--rose-deep);
  display: grid; place-items: center; font-size: .8rem; font-weight: 800;
  margin-top: 3px;
}
@media (max-width: 800px) {
  .about .container { grid-template-columns: 1fr; }
  .about-visual { max-width: 320px; margin: 0 auto; order: -1; }
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-deep) 100%);
  text-align: center;
}
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 34rem; margin-inline: auto; }
.cta-band .btn-primary { background: var(--white); color: var(--rose-deep); margin-top: 1rem; }
.cta-band .btn-primary:hover { background: var(--cream); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.72);
  padding: 3.5rem 0 2.5rem;
}
.site-footer .container {
  display: flex; flex-wrap: wrap; gap: 2rem;
  justify-content: space-between; align-items: flex-start;
}
.site-footer .brand { color: var(--white); }
.site-footer .brand span { color: var(--blush-deep); }
.site-footer p { color: rgba(255,255,255,.6); margin: .3rem 0; font-size: .92rem; }
.site-footer h4 {
  color: var(--white); font-size: .8rem; text-transform: uppercase;
  letter-spacing: 2px; margin: 0 0 .8rem;
}
.ig-link { color: var(--blush-deep); font-weight: 600; transition: color .2s; }
.ig-link:hover { color: var(--white); }

.footer-bottom {
  text-align: center; margin-top: 2.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem; color: rgba(255,255,255,.45);
}
