:root {
  --navy: #1a1848;
  --red: #d33a4a;
  --ink: #171526;
  --muted: #6f6b78;
  --soft: #f8edf0;
  --cream: #fff8f4;
  --white: #ffffff;
  --line: rgba(26, 24, 72, .14);
  --shadow: 0 26px 70px rgba(26, 24, 72, .16);
  --font: "Open Sans", Arial, Helvetica, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background: var(--white);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  z-index: 9999;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 12px 16px;
  clip: auto;
  background: var(--navy);
  color: var(--white);
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 26px rgba(26, 24, 72, .08);
  backdrop-filter: blur(12px);
}
body.menu-open .site-header {
  opacity: 0;
  pointer-events: none;
}
.nav-shell {
  min-height: 88px;
  width: min(1180px, calc(100% - 34px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 140px; height: auto; }
.menu-btn {
  width: 48px;
  height: 48px;
  display: grid;
  align-content: center;
  gap: 6px;
  border: 0;
  background: rgba(255, 255, 255, .82);
  padding: 12px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(26, 24, 72, .12);
}
.menu-btn span {
  height: 2px;
  width: 100%;
  background: var(--red);
}
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  min-height: 100dvh;
  overflow-y: auto;
  background: var(--navy);
  color: var(--white);
}
.menu-overlay.is-open { display: block; }
.menu-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(26, 24, 72, .62);
}
.menu-close {
  position: absolute;
  z-index: 3;
  top: 24px;
  right: 30px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 44px;
  cursor: pointer;
}
.menu-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  background: url("../img/hero-salao.webp") center/cover no-repeat;
}
.menu-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 24, 72, .94), rgba(26, 24, 72, .74));
}
.menu-panel {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 70px;
  align-items: center;
}
.menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.menu-links a {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(42px, 7vw, 86px);
  line-height: 1;
  padding: 12px 0;
}
.menu-links a:hover { color: #ffdfe4; }
.menu-aside {
  border-left: 1px solid rgba(255, 255, 255, .28);
  padding-left: 34px;
}
.menu-phone {
  display: block;
  margin: 20px 0 2px;
  font-size: 25px;
  font-weight: 700;
}
.language-switcher {
  margin-top: 34px;
  display: flex;
  gap: 8px;
}
.language-switcher button {
  width: 42px;
  height: 38px;
  border: 1px solid rgba(255,255,255,.42);
  color: var(--white);
  background: transparent;
  cursor: pointer;
}
.language-switcher button[aria-pressed="true"] {
  background: var(--red);
  border-color: var(--red);
}

.home {
  position: relative;
  min-height: 100vh;
}
.split-bg {
  display: grid;
  grid-template-columns: minmax(310px, 34%) 1fr;
  min-height: 100vh;
}
.colour-panel {
  background: var(--soft);
}
.colour-panel.accent { background: var(--red); }
.colour-panel.dark { background: var(--navy); }
.image-panel {
  min-height: 655px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-image { background-image: linear-gradient(90deg, rgba(255,248,244,.36), rgba(255,255,255,0)), url("../img/hero-salao.webp"); }
.colour-image { background-image: linear-gradient(90deg, rgba(211,58,74,.18), rgba(26,24,72,.08)), url("../img/coloracao-madeixas.webp"); }
.styling-image { background-image: linear-gradient(90deg, rgba(26,24,72,.18), rgba(26,24,72,.08)), url("../img/cliente-styling.webp"); }
.content-area {
  position: absolute;
  top: 50%;
  left: 36%;
  transform: translate(-50%, -50%);
  width: min(560px, 86vw);
}
.content-area .main-heading {
  margin: 0 0 18px;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 84px);
  line-height: .98;
  font-weight: 700;
}
.content-area .sub-heading {
  margin: 0 0 12px;
  color: var(--red);
  font-size: clamp(20px, 2.4vw, 34px);
  font-weight: 700;
}
.content-area .intro {
  max-width: 490px;
  margin: 0 0 34px;
  color: #3e3a4c;
  font-size: 18px;
}
.content-light .main-heading,
.content-light .sub-heading,
.content-light .intro,
.content-white .main-heading,
.content-white .sub-heading,
.content-white .intro { color: var(--white); text-shadow: 0 2px 18px rgba(0,0,0,.18); }

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--red);
  padding: 13px 24px;
  background: transparent;
  color: var(--red);
  cursor: pointer;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover { background: var(--navy); border-color: var(--navy); }
.btn-light {
  border-color: var(--white);
  color: var(--navy);
  background: var(--white);
}
.btn-outline {
  border-color: var(--white);
  color: var(--white);
}
.btn-small {
  min-height: 42px;
  padding: 8px 14px;
}

.about, .services, .prices, .booking {
  padding: 112px 0;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .11em;
  font-weight: 800;
}
.about h2, .section-title h2, .prices h2, .booking h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.04;
}
.copy p, .booking-text p, .muted {
  color: var(--muted);
}
.section-title {
  max-width: 720px;
  margin-bottom: 52px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  min-height: 360px;
  border: 1px solid var(--line);
  padding: 38px 28px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(26, 24, 72, .06);
  transition: border-color .2s ease, transform .2s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.service-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: var(--soft);
  color: var(--red);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 700;
}
.service-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}
.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
}
.service-card button {
  margin-top: auto;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}
.visual-band {
  min-height: 500px;
  background: url("../img/tratamentos-eventos.webp") center/cover fixed;
  display: grid;
  place-items: center;
  color: var(--white);
}
.band-overlay {
  width: min(760px, calc(100% - 40px));
  padding: 44px;
  background: rgba(26, 24, 72, .72);
  box-shadow: var(--shadow);
}
.band-overlay p {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.04;
}
.price-list {
  border-top: 1px solid var(--line);
}
.price-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.price-row span {
  color: var(--navy);
  font-size: 21px;
  font-weight: 800;
}
.price-row strong {
  color: var(--red);
  text-align: right;
}
.testimonial {
  display: grid;
  grid-template-columns: 62% 38%;
  background: var(--navy);
  color: var(--white);
}
.testimonial-img {
  min-height: 520px;
  background: url("../img/cliente-styling.webp") center/cover;
}
.testimonial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}
.quote {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
}
.rating {
  color: #ffd166;
  letter-spacing: .08em;
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: start;
}
.contact-lines {
  margin-top: 30px;
  display: grid;
  gap: 4px;
}
.contact-lines a {
  color: var(--navy);
  font-weight: 800;
}
.contact-lines small {
  margin-bottom: 10px;
  color: var(--muted);
}
.contact-form {
  padding: 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--white);
}
.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--navy);
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(26, 24, 72, .22);
  padding: 14px 16px;
  color: var(--ink);
  background: #fff;
}
.contact-form textarea {
  min-height: 136px;
  resize: vertical;
}
.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.map-card {
  margin-top: 44px;
  height: 360px;
  border: 1px solid var(--line);
  overflow: hidden;
}
.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.footer {
  padding: 76px 0 36px;
  background: var(--soft);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
}
.footer-logo {
  width: 140px;
  margin-bottom: 14px;
}
.footer nav {
  display: grid;
  align-content: start;
  gap: 12px;
}
.footer a {
  color: var(--navy);
  font-weight: 800;
}
.copyright {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(26, 24, 72, .12);
  color: var(--muted);
  font-size: 14px;
}

.booking-modal[hidden], .cookie-banner[hidden] { display: none; }
.booking-modal {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 9, 26, .72);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: min(92vh, 880px);
  overflow: auto;
  background: var(--white);
  padding: 0;
  box-shadow: var(--shadow);
}
.booking-modal-header {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 74px 18px 24px;
  border-bottom: 1px solid var(--line);
}
.booking-modal-header img {
  width: 140px;
  height: auto;
}
.booking-modal-header h2 {
  margin: 0;
  color: var(--navy);
  font-family: var(--font);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-size: 34px;
  cursor: pointer;
}
#uneed-booking-mount {
  min-height: 620px;
  margin: 0;
  border: 0;
  background: var(--cream);
}
#uneed-booking-mount iframe {
  display: block;
  width: 100%;
  min-height: 620px;
  border: 0;
}
.cookie-banner {
  position: fixed;
  z-index: 850;
  left: 20px;
  bottom: 20px;
  width: min(520px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
body.modal-open .cookie-banner,
body.menu-open .cookie-banner {
  display: none;
}
.cookie-banner p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.cookie-banner div {
  flex: none;
  display: flex;
  gap: 8px;
}
.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--navy);
  color: var(--white);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  cursor: pointer;
  transition: opacity .2s ease, transform .2s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonial, .contact-grid, .two-col, .footer-grid { grid-template-columns: 1fr; }
  .testimonial-img { min-height: 420px; }
  .menu-panel { grid-template-columns: 1fr; gap: 30px; align-content: center; }
  .menu-aside { border-left: 0; border-top: 1px solid rgba(255,255,255,.28); padding: 28px 0 0; }
}

@media (max-width: 720px) {
  .nav-shell { min-height: 74px; }
  .brand img { width: 140px; }
  .home {
    min-height: auto;
  }
  .split-bg {
    display: block;
    min-height: auto;
  }
  .colour-panel {
    display: none;
  }
  .image-panel {
    min-height: 560px;
    background-position: center;
  }
  .home-tertiary .image-panel {
    min-height: 600px;
  }
  .content-area {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 46px rgba(26, 24, 72, .12);
  }
  .content-light, .content-white {
    background: rgba(26, 24, 72, .74);
  }
  .content-area .main-heading {
    font-size: clamp(30px, 8vw, 38px);
  }
  .content-area .sub-heading { font-size: 18px; }
  .content-area .intro {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 16px;
  }
  .btn { width: 100%; }
  .about, .services, .prices, .booking { padding: 48px 0; }
  .two-col,
  .contact-grid {
    gap: 28px;
  }
  .section-title {
    margin-bottom: 28px;
  }
  .service-grid { grid-template-columns: 1fr; }
  .service-card {
    min-height: auto;
    padding: 28px 28px 24px;
  }
  .service-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }
  .service-icon svg {
    width: 28px;
    height: 28px;
  }
  .service-card h3 {
    margin-bottom: 10px;
  }
  .service-card p {
    margin-bottom: 18px;
  }
  .visual-band {
    min-height: 300px;
    background-attachment: scroll;
  }
  .band-overlay { padding: 28px; }
  .testimonial-img { min-height: 300px; }
  .testimonial-copy { padding: 36px 24px; }
  .contact-form { padding: 24px; }
  .price-row { align-items: flex-start; flex-direction: column; gap: 4px; }
  .cookie-banner {
    display: grid;
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }
  .cookie-banner div { display: grid; grid-template-columns: 1fr 1fr; }
  .map-card { height: 300px; }
  .menu-panel {
    width: min(100% - 36px, 980px);
    gap: 18px;
  }
  .menu-links a {
    font-size: clamp(36px, 10vw, 52px);
    padding: 6px 0;
  }
  .menu-aside {
    padding-top: 20px;
  }
  .language-switcher {
    margin-top: 18px;
  }
}

@media (max-width: 380px) {
  .container { width: min(100% - 28px, 1120px); }
  .content-area { width: calc(100% - 28px); }
  .content-area .main-heading { font-size: 35px; }
  .menu-links a { font-size: 38px; }
}
