:root {
  --cream: #fff8f0;
  --porcelain: #fffdf9;
  --blush: #f5d7d9;
  --rose: #c97883;
  --rose-deep: #8f4d5d;
  --champagne: #d9b875;
  --gold-soft: #f3dfad;
  --ink: #271f22;
  --muted: #75676a;
  --blue: #8fb2d6;
  --sage: #9aac9b;
  --line: rgba(82, 54, 61, 0.12);
  --shadow: 0 18px 45px rgba(89, 54, 59, 0.13);
  --shadow-soft: 0 10px 28px rgba(89, 54, 59, 0.09);
  --radius: 8px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(245, 215, 217, 0.42), transparent 32rem),
    linear-gradient(180deg, var(--cream) 0%, #fff 48%, #fff7f2 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 248, 240, 0.84);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: min(100% - 32px, var(--container));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(69, 107, 150, 0.2);
}

.brand-copy {
  display: grid;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav {
  display: none;
}

.main-nav a,
.language-switch button,
.menu-toggle {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover,
.language-switch button:hover,
.menu-toggle:hover {
  transform: translateY(-1px);
}

.language-switch {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.language-switch button {
  min-width: 36px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.language-switch button.is-active {
  background: linear-gradient(135deg, var(--ink), var(--rose-deep));
  color: white;
  box-shadow: 0 8px 16px rgba(143, 77, 93, 0.2);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: grid;
  place-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: var(--ink);
}

.section-pad {
  padding: 72px 0;
}

.hero {
  padding-top: 34px;
}

.hero-shell,
.trust-grid,
.section-heading,
.service-grid,
.campaign-grid,
.about-layout,
.gallery-grid,
.appointment-layout,
.site-footer {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.hero-shell {
  display: grid;
  gap: 28px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.98;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(3.2rem, 18vw, 5.8rem);
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.3rem, 11vw, 4.2rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-text,
.section-heading p,
.about-copy p,
.appointment-info p {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 24px;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn,
.contact-chip,
.link-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn {
  padding: 0 22px;
}

.btn:hover,
.contact-chip:hover,
.link-button:hover,
.service-card:hover,
.campaign-card:hover,
.gallery-card:hover,
.trust-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  border: 0;
  background: linear-gradient(135deg, var(--rose-deep), #c67b88 52%, var(--champagne));
  color: white;
  box-shadow: 0 14px 30px rgba(143, 77, 93, 0.25);
}

.btn-soft {
  border: 1px solid rgba(143, 77, 93, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--rose-deep);
}

.hero-visual {
  min-height: 380px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(28, 58, 92, 0.18), rgba(255, 255, 255, 0.18)),
    linear-gradient(135deg, #eaf2fb 0%, #f6d7da 48%, #fff3d4 100%);
  box-shadow: var(--shadow);
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-visual::before {
  width: 160px;
  height: 160px;
  right: -50px;
  top: -50px;
  background: rgba(217, 184, 117, 0.45);
}

.hero-visual::after {
  width: 140px;
  height: 140px;
  left: -34px;
  bottom: 28px;
  background: rgba(143, 178, 214, 0.32);
}

.hero-image {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 36px 28px 80px;
}

.hero-image img {
  width: min(92%, 390px);
  border-radius: var(--radius);
  box-shadow: 0 28px 55px rgba(34, 74, 112, 0.24);
}

.hero-note {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.78);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.hero-note span {
  display: block;
  color: var(--rose-deep);
  font-size: 0.78rem;
  font-weight: 800;
}

.hero-note strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1;
}

.trust-grid {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.trust-card,
.service-card,
.campaign-card,
.gallery-card,
.appointment-form {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.trust-card:hover,
.service-card:hover,
.campaign-card:hover,
.gallery-card:hover {
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 18px;
}

.trust-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 215, 217, 0.9), rgba(243, 223, 173, 0.88));
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.trust-card h2 {
  margin-bottom: 6px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.trust-card p,
.service-card p,
.campaign-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(255, 248, 240, 0.66)),
    radial-gradient(circle at 100% 0%, rgba(143, 178, 214, 0.2), transparent 24rem);
}

.section-heading {
  max-width: 680px;
  margin-bottom: 28px;
  text-align: center;
}

.section-heading.align-left {
  text-align: left;
}

.service-grid,
.campaign-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

.service-card {
  overflow: hidden;
}

.service-media {
  min-height: 168px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f6dbdd, #e9f1f7);
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: var(--radius);
}

.service-media::after {
  content: "";
  position: absolute;
  width: 94px;
  height: 94px;
  right: 24px;
  bottom: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.44);
  box-shadow: -48px -44px 0 rgba(217, 184, 117, 0.24);
}

.media-laser { background: linear-gradient(135deg, #dfeefa, #f8dfe1 55%, #fff2cc); }
.media-skin { background: linear-gradient(135deg, #fde9df, #f4d5dc 55%, #dcebe2); }
.media-slim { background: linear-gradient(135deg, #ecf4e8, #fff1d0 48%, #f7d7da); }
.media-spot { background: linear-gradient(135deg, #f5d8dd, #fff7e5 55%, #dbe8f4); }
.media-lash { background: linear-gradient(135deg, #e8eef9, #f8d7df 60%, #f7e4b8); }
.media-brow { background: linear-gradient(135deg, #f6e1d6, #fff8ed 50%, #e3edf5); }
.media-hydra { background: linear-gradient(135deg, #d8edf3, #f7dbe0 55%, #fff2d0); }
.media-body { background: linear-gradient(135deg, #e6eadf, #f8dddf 58%, #f2dcac); }

.service-body {
  padding: 18px;
}

.service-body p {
  min-height: 66px;
}

.link-button {
  margin-top: 18px;
  padding: 0 17px;
  border: 1px solid rgba(143, 77, 93, 0.18);
  background: #fff8f4;
  color: var(--rose-deep);
}

.campaign-card {
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 244, 0.86)),
    linear-gradient(135deg, rgba(217, 184, 117, 0.16), transparent);
}

.campaign-card span {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245, 215, 217, 0.64);
  color: var(--rose-deep);
  font-size: 0.76rem;
  font-weight: 900;
}

.campaign-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
}

.about-layout,
.appointment-layout {
  display: grid;
  gap: 26px;
}

.about-copy {
  padding-top: 2px;
}

.gallery-card {
  overflow: hidden;
  margin: 0;
}

.gallery-image {
  aspect-ratio: 4 / 3;
  min-height: 210px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent),
    linear-gradient(135deg, #e8f0f7, #f8dade 58%, #f3dfad);
}

.gallery-salon { background: linear-gradient(135deg, #e7f0f8, #f4d4dc 55%, #f8ecc8); }
.gallery-room { background: linear-gradient(135deg, #fff3e8, #e7eddf 52%, #f5d9dd); }
.gallery-products { background: linear-gradient(135deg, #f7e0d4, #fff8e9 50%, #d8e8ee); }
.gallery-service { background: linear-gradient(135deg, #e1eaf6, #fad8df 56%, #f8dfad); }

.gallery-card figcaption {
  padding: 14px 16px;
  color: var(--ink);
  font-weight: 800;
}

.appointment-info h2 {
  max-width: 560px;
}

.contact-actions {
  margin-top: 22px;
}

.contact-chip {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(143, 77, 93, 0.14);
  background: rgba(255, 255, 255, 0.72);
  color: var(--rose-deep);
  font-size: 0.9rem;
}

.appointment-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.appointment-form label {
  display: grid;
  gap: 7px;
}

.appointment-form span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(82, 54, 61, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 253, 249, 0.86);
  color: var(--ink);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.appointment-form input,
.appointment-form select {
  min-height: 48px;
  padding: 0 14px;
}

.appointment-form textarea {
  resize: vertical;
  min-height: 116px;
  padding: 12px 14px;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: rgba(143, 77, 93, 0.48);
  background: white;
  box-shadow: 0 0 0 4px rgba(245, 215, 217, 0.42);
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 30px 0 104px;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--rose-deep);
  font-weight: 800;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  gap: 10px;
}

.float-btn {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(89, 54, 59, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 34px rgba(89, 54, 59, 0.28);
}

.float-btn svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-instagram {
  background: linear-gradient(135deg, #fff0f3, #f2c5cf 50%, #f1d7a6);
  color: #7a3950;
}

.float-whatsapp {
  background: linear-gradient(135deg, #f2f5e9, #a8c8ad 48%, #d9b875);
  color: #24472b;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 819px) {
  .main-nav {
    position: fixed;
    inset: 76px 16px auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: var(--radius);
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 12px 14px;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 800;
  }

  .main-nav a:hover {
    background: #fff2f4;
  }
}

@media (max-width: 420px) {
  .header-inner {
    width: min(100% - 20px, var(--container));
    gap: 6px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy span {
    font-size: 0.62rem;
  }

  .language-switch {
    gap: 2px;
    padding: 3px;
  }

  .language-switch button {
    min-width: 28px;
    min-height: 28px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .brand-copy strong {
    max-width: 94px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-copy span {
    display: none;
  }

  .language-switch button {
    min-width: 26px;
  }
}

@media (min-width: 640px) {
  .trust-grid,
  .campaign-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 820px) {
  .menu-toggle {
    display: none;
  }

  .main-nav {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .main-nav a {
    padding: 10px 12px;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
  }

  .main-nav a:hover {
    background: rgba(255, 255, 255, 0.66);
    color: var(--rose-deep);
  }

  .hero {
    padding-top: 54px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
    align-items: center;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 34px;
  }

  .service-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .about-layout,
  .appointment-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    align-items: start;
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .appointment-form {
    padding: 24px;
  }
}

@media (min-width: 1080px) {
  .section-pad {
    padding: 96px 0;
  }

  .hero {
    padding-top: 66px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .hero-image {
    min-height: 390px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
