@font-face {
    font-family: "Vallato";
    src: url("fonts/Vallato-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

* {
    box-sizing: border-box;
}
:root {
  --pink: #e85b91;
  --pink-dark: #bd3f70;
  --pink-light: #f9e4ed;

  --plum: #563845;

  --text: #33282d;
  --text-soft: #806f77;

  --white: #ffffff;

  --surface: rgba(255, 255, 255, 0.78);
  --border: rgba(113, 78, 93, 0.12);

  --shadow:
    0 24px 70px rgba(87, 52, 67, 0.12),
    0 4px 18px rgba(87, 52, 67, 0.06);
}
body {
  margin: 0;

  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--text);

  background-image:
    linear-gradient(
      rgba(255, 237, 245, 0.84),
      rgba(246, 232, 238, 0.9)
    ),
    url("images/marble-bg.jpg");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

html {
  scroll-behavior: smooth;
}

.site-header {
  width: min(1180px, calc(100% - 40px));

  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin: 14px auto 0;
  padding: 12px 14px 12px 22px;

  position: sticky;
  top: 12px;
  z-index: 1000;

  background: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;

  box-shadow: 0 12px 38px rgba(87, 52, 67, 0.1);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.site-logo {
  flex-shrink: 0;

  color: var(--plum);

  font-family: "Vallato";
  font-size: 26px;
  text-decoration: none;
}

.site-nav {
  display: flex;
  align-items: center;

  gap: 4px;
}

.site-nav a {
  padding: 10px 13px;

  color: var(--text-soft);

  font-size: 13px;
  font-weight: 700;
  text-decoration: none;

  border-radius: 999px;

  transition:
    color 0.2s ease,
    background 0.2s ease;
}

.site-nav a:hover {
  color: var(--plum);

  background: var(--pink-light);
}

.header-booking-button {
  flex-shrink: 0;

  padding: 11px 18px;

  color: white;

  font-size: 13px;
  font-weight: 700;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    var(--pink),
    var(--pink-dark)
  );

  border-radius: 12px;

  box-shadow: 0 9px 22px rgba(189, 63, 112, 0.2);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.header-booking-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 13px 27px rgba(189, 63, 112, 0.28);
}

#services,
#portfolio,
#about,
#booking {
  scroll-margin-top: 100px;
}
/* =========================
   HERO
========================= */

.hero {
  width: min(1180px, calc(100% - 40px));
  min-height: calc(100vh - 105px);

  display: grid;
  grid-template-columns: 1fr 0.92fr;
  align-items: center;

  gap: 72px;

  margin: 18px auto 28px;
  padding: 76px 72px;

  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 8% 10%,
      rgba(232, 91, 145, 0.13),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.64);

  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 32px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.hero::after {
  content: "";

  position: absolute;

  width: 340px;
  height: 340px;

  left: -180px;
  bottom: -200px;

  background: rgba(232, 91, 145, 0.1);

  border-radius: 50%;

  filter: blur(25px);

  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  position: relative;
  z-index: 2;
}

.hero-kicker {
  margin: 0 0 18px;

  color: var(--pink);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.2em;
}

.hero-title {
  margin: 0;

  color: var(--plum);

  font-family: "Vallato";
  font-size: clamp(70px, 7.2vw, 108px);
  font-weight: normal;
  line-height: 0.86;

  -webkit-text-stroke: 0;

  text-shadow: 0 10px 35px rgba(87, 52, 67, 0.08);
}

.hero-subtitle {
  margin: 25px 0 0;

  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.hero-description {
  max-width: 510px;

  margin: 17px 0 0;

  color: var(--text-soft);

  font-size: 16px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;

  gap: 18px;

  margin-top: 32px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 15px 25px;

  color: var(--white);

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;

  background: linear-gradient(
    135deg,
    var(--pink),
    var(--pink-dark)
  );

  border-radius: 14px;

  box-shadow: 0 14px 30px rgba(189, 63, 112, 0.23);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-button:hover {
  transform: translateY(-3px);

  box-shadow: 0 18px 36px rgba(189, 63, 112, 0.3);
}

.hero-secondary {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 13px 2px;

  color: var(--plum);

  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.hero-secondary span {
  transition: transform 0.2s ease;
}

.hero-secondary:hover span {
  transform: translateX(4px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 35px;
}

.hero-tags span {
  padding: 8px 12px;

  color: var(--text-soft);

  background: rgba(255, 255, 255, 0.68);

  border: 1px solid var(--border);
  border-radius: 999px;

  font-size: 12px;
  font-weight: 600;
}

/* HERO PHOTO */

.hero-visual {
  min-width: 0;

  position: relative;
  z-index: 2;
}

.hero-image {
  padding: 9px;

  position: relative;

  background: rgba(255, 255, 255, 0.58);

  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;

  box-shadow: 0 25px 60px rgba(87, 52, 67, 0.16);
}

.hero-image::before {
  content: "";

  position: absolute;

  inset: 24px -18px -18px 24px;

  z-index: -1;

  background: rgba(232, 91, 145, 0.14);

  border-radius: 28px;
}

.hero-image img {
  display: block;

  width: 100%;
  height: min(660px, 69vh);

  object-fit: cover;
  object-position: center 35%;

  border-radius: 22px;
}

.hero-badge {
  display: flex;
  align-items: center;

  gap: 12px;

  min-width: 205px;

  padding: 15px 17px;

  position: absolute;

  left: -38px;
  bottom: 35px;

  background: rgba(255, 255, 255, 0.88);

  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;

  box-shadow: 0 16px 40px rgba(87, 52, 67, 0.14);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-badge-dot {
  width: 10px;
  height: 10px;

  flex-shrink: 0;

  background: var(--pink);

  border-radius: 50%;

  box-shadow: 0 0 0 6px rgba(232, 91, 145, 0.1);
}

.hero-badge div {
  display: flex;
  flex-direction: column;

  gap: 3px;
}

.hero-badge strong {
  color: var(--plum);

  font-size: 13px;
}

.hero-badge div span {
  color: var(--text-soft);

  font-size: 11px;
}


/* =========================
   SECTION SPACING
========================= */

.services,
.price,
.portfolio,
.about,
.reviews,
.booking {
    padding: 60px 20px;
}

/* =========================
   SECTION TITLES
========================= */

.services-title,
.price-title,
.portfolio-title,
.about-title,
.reviews-title,
.booking-title {
    margin: 0 0 30px;

    font-family: Didot, serif;
    font-size: 32px;
    font-weight: 400;

    color: #59424d;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.services-title::after,
.price-title::after,
.portfolio-title::after,
.about-title::after,
.reviews-title::after,
.booking-title::after {
    content: "";
    display: block;

    width: 48px;
    height: 3px;
    margin-top: 10px;

    background-color: #ff2aa8;
    border-radius: 10px;

    box-shadow:
        0 0 6px rgba(255, 42, 168, 0.55),
        0 0 12px rgba(255, 42, 168, 0.25);
}

/* =========================
   SERVICES
========================= */

.services {
  width: min(1180px, calc(100% - 40px));

  margin: 28px auto;
  padding: 56px;

  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.services::before {
  content: "";

  position: absolute;

  width: 260px;
  height: 260px;

  right: -100px;
  top: -120px;

  background: rgba(232, 91, 145, 0.1);

  border-radius: 50%;
  filter: blur(25px);

  pointer-events: none;
}

.services-title {
  position: relative;
  z-index: 1;

  margin-bottom: 34px;

  font-size: clamp(36px, 5vw, 52px);
}

.services-title::after {
  width: 38px;
  height: 2px;

  background: var(--pink);

  box-shadow: none;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  position: relative;
  z-index: 1;

  counter-reset: service;
}

.service-card {
  min-height: 210px;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  gap: 12px;

  padding: 26px;

  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid var(--border);
  border-radius: 20px;

  box-shadow: 0 12px 32px rgba(87, 52, 67, 0.07);

  counter-increment: service;

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.service-card::before {
  content: "0" counter(service);

  position: absolute;

  top: 20px;
  right: 22px;

  color: rgba(232, 91, 145, 0.32);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
}

.service-card::after {
  content: "";

  position: absolute;

  width: 100px;
  height: 100px;

  left: -45px;
  bottom: -45px;

  background: var(--pink-light);

  border-radius: 50%;
}

.service-card:hover {
  transform: translateY(-5px);

  border-color: rgba(232, 91, 145, 0.24);

  box-shadow: 0 18px 42px rgba(87, 52, 67, 0.11);
}

.service-card-title {
  margin: 0;

  position: relative;
  z-index: 1;

  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.service-card-text {
  max-width: 280px;

  margin: 0;

  position: relative;
  z-index: 1;

  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   LOGO LETTER FIXES
========================= */

.logo-n {
    margin-left: 1px;
}

.logo-u {
    margin-left: 1px;
}

.logo-t {
    margin-left: 6px;
}

/* =========================
   PRICE
========================= */

.price {
  width: min(1180px, calc(100% - 40px));

  margin: 28px auto;
  padding: 56px;

  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.price-title {
  margin-bottom: 34px;

  font-size: clamp(36px, 5vw, 52px);
}

.price-title::after {
  width: 38px;
  height: 2px;

  background: var(--pink);

  box-shadow: none;
}

.price-list {
  display: flex;
  flex-direction: column;

  padding: 8px 26px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid var(--border);
  border-radius: 20px;

  box-shadow: 0 12px 32px rgba(87, 52, 67, 0.07);
}

.price-item {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 24px 4px;

  position: relative;

  border-bottom: 1px solid var(--border);

  transition:
    padding-left 0.2s ease,
    background 0.2s ease;
}

.price-item:last-child {
  border-bottom: none;
}

.price-item::before {
  content: "";

  width: 7px;
  height: 7px;

  flex-shrink: 0;

  background: var(--pink);

  border-radius: 50%;

  box-shadow: 0 0 0 6px rgba(232, 91, 145, 0.08);
}

.price-item:hover {
  padding-left: 10px;
}

.price-name {
  flex: 1;

  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.price-value {
  flex-shrink: 0;

  padding: 9px 13px;

  color: var(--pink-dark);
  font-size: 14px;
  font-weight: 700;

  background: var(--pink-light);

  border-radius: 999px;
}
.price-group-title {
  margin-top: 8px;
  padding: 26px 4px 12px;

  color: var(--pink);

  font-size: 12px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.14em;

  border-top: 1px solid var(--border);
}

.price-item-sub {
  padding-left: 24px;
}

.price-item-sub::before {
  width: 5px;
  height: 5px;

  box-shadow: 0 0 0 4px rgba(232, 91, 145, 0.07);
}

/* =========================
   PORTFOLIO
========================= */


.portfolio {
  width: min(1180px, calc(100% - 40px));

  margin: 28px auto;
  padding: 56px;

  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.portfolio-title {
  margin-bottom: 34px;

  font-size: clamp(36px, 5vw, 52px);
}

.portfolio-title::after {
  width: 38px;
  height: 2px;

  background: var(--pink);

  box-shadow: none;
}

.portfolio-list {
  width: 100%;
}

.portfolio-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 16px;
}

.portfolio-item {
  position: relative;

  overflow: hidden;

  border-radius: 20px;

  box-shadow: 0 14px 34px rgba(87, 52, 67, 0.1);
}

.portfolio-item:nth-child(1),
.portfolio-item:nth-child(3) {
  transform: translateY(18px);
}

.portfolio-item img {
  display: block;

  width: 100%;
  height: 430px;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.045);
}


/* =========================
   ABOUT
========================= */

.about {
  width: min(1180px, calc(100% - 40px));

  margin: 46px auto 28px;
  padding: 56px;

  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about::after {
  content: "";

  position: absolute;

  width: 300px;
  height: 300px;

  right: -110px;
  bottom: -150px;

  background: rgba(232, 91, 145, 0.11);

  border-radius: 50%;
  filter: blur(25px);

  pointer-events: none;
}

.about-title {
  margin-bottom: 34px;

  font-size: clamp(36px, 5vw, 52px);
}

.about-title::after {
  width: 38px;
  height: 2px;

  background: var(--pink);

  box-shadow: none;
}

.about-content {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1.2fr;
  align-items: center;

  gap: 54px;

  position: relative;
  z-index: 1;
}

.about-photo {
  position: relative;
}

.about-photo::before {
  content: "";

  position: absolute;

  inset: 20px -16px -16px 20px;

  background: var(--pink-light);

  border-radius: 24px;
}

.about-photo img {
  display: block;

  width: 100%;
  height: 520px;

  position: relative;

  object-fit: cover;
  object-position: center top;

  border-radius: 24px;

  box-shadow: 0 18px 42px rgba(87, 52, 67, 0.14);
}

.about-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 14px;
}

.about-name,
.about-role,
.about-text {
  margin: 0;
}

.about-name {
  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 500;
  line-height: 1;
}

.about-role {
  color: var(--pink);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.about-text {
  max-width: 540px;

  margin-top: 8px;

  color: var(--text-soft);

  font-size: 17px;
  line-height: 1.8;
}

/* =========================
   REVIEWS
========================= */

.reviews {
  width: min(1180px, calc(100% - 40px));

  margin: 28px auto;
  padding: 56px;

  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.reviews::before {
  content: "“";

  position: absolute;

  right: 40px;
  top: -45px;

  color: rgba(232, 91, 145, 0.08);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 230px;
  line-height: 1;

  pointer-events: none;
}

.reviews-title {
  position: relative;
  z-index: 1;

  margin-bottom: 34px;

  font-size: clamp(36px, 5vw, 52px);
}

.reviews-title::after {
  width: 38px;
  height: 2px;

  background: var(--pink);

  box-shadow: none;
}

.reviews-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 18px;

  position: relative;
  z-index: 1;
}

.review-card {
  min-height: 220px;

  display: flex;
  flex-direction: column;

  gap: 14px;

  padding: 26px;

  background: rgba(255, 255, 255, 0.72);

  border: 1px solid var(--border);
  border-radius: 20px;

  box-shadow: 0 12px 32px rgba(87, 52, 67, 0.07);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.review-card:hover {
  transform: translateY(-5px);

  border-color: rgba(232, 91, 145, 0.24);

  box-shadow: 0 18px 42px rgba(87, 52, 67, 0.11);
}

.review-stars,
.review-name,
.review-text {
  margin: 0;
}

.review-stars {
  color: var(--pink);

  font-size: 18px;
  letter-spacing: 0.08em;
}

.review-name {
  margin-top: auto;

  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.review-text {
  color: var(--text-soft);

  font-size: 15px;
  line-height: 1.7;

  order: -1;
}

/* =========================
   BOOKING
========================= */

.booking {
  width: min(1180px, calc(100% - 40px));

  margin: 28px auto 50px;
  padding: 56px;

  position: relative;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.booking::before {
  content: "";

  position: absolute;

  width: 360px;
  height: 360px;

  right: -140px;
  bottom: -170px;

  background: rgba(232, 91, 145, 0.12);

  border-radius: 50%;

  filter: blur(30px);

  pointer-events: none;
}

.booking-title {
  position: relative;
  z-index: 1;

  margin-bottom: 34px;

  font-size: clamp(36px, 5vw, 52px);
}

.booking-title::after {
  width: 38px;
  height: 2px;

  background: var(--pink);

  box-shadow: none;
}

.booking-form {
  width: 100%;
  max-width: 760px;

  display: flex;
  flex-direction: column;

  gap: 10px;

  margin: 0 auto;
  padding: 34px;

  position: relative;
  z-index: 1;

  background: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;

  box-shadow:
    0 20px 55px rgba(87, 52, 67, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.booking-form > label,
.coloring-options label {
  margin-top: 12px;

  color: var(--plum);

  font-size: 13px;
  font-weight: 700;
}

.booking-form input,
.booking-form select {
  width: 100%;

  min-height: 52px;

  padding: 0 16px;

  color: var(--text);

  background: rgba(255, 255, 255, 0.88);

  border: 1px solid var(--border);
  border-radius: 13px;

  outline: none;

  font: inherit;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  background: var(--white);

  border-color: rgba(232, 91, 145, 0.55);

  box-shadow: 0 0 0 4px rgba(232, 91, 145, 0.09);
}

.booking-form input::placeholder {
  color: #aa9da3;
}

.coloring-options {
  display: none;

  margin-top: 4px;
}

.coloring-options label {
  display: block;

  margin-bottom: 10px;
}

.service-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin: 18px 0 8px;
  padding: 18px;

  background: var(--pink-light);

  border: 1px solid rgba(232, 91, 145, 0.09);
  border-radius: 16px;
}

.service-summary p {
  margin: 0;

  color: var(--text-soft);

  font-size: 13px;
  line-height: 1.5;
}

.service-summary p:not(.service-note) {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

#service-price,
#service-duration {
  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 500;
}

.service-note {
  grid-column: 1 / -1;

  margin-top: 4px !important;

  opacity: 0.78;
}

.booking-button {
  width: 100%;

  margin-top: 22px;
  padding: 17px 24px;

  color: var(--white);

  font-weight: 700;
  letter-spacing: 0.01em;

  background: linear-gradient(
    135deg,
    var(--pink),
    var(--pink-dark)
  );

  border: 0;
  border-radius: 14px;

  box-shadow: 0 14px 30px rgba(189, 63, 112, 0.22);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.booking-button:hover {
  transform: translateY(-2px);

  box-shadow: 0 18px 36px rgba(189, 63, 112, 0.28);
}

.booking-button:active {
  transform: translateY(0);
}

.site-footer {
  width: min(1180px, calc(100% - 40px));

  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;

  gap: 50px;

  margin: 28px auto 20px;
  padding: 46px 50px 24px;

  color: var(--text-soft);

  background: rgba(255, 255, 255, 0.62);

  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 28px;

  box-shadow: var(--shadow);

  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-logo {
  margin-bottom: 15px;

  color: var(--plum);

  font-family: "Vallato";
  font-size: 34px;
}

.footer-brand p {
  max-width: 330px;

  margin: 0;

  font-size: 14px;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;

  align-items: flex-start;

  gap: 10px;
}

.footer-label {
  margin-bottom: 5px;

  color: var(--pink);

  font-size: 11px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-links a,
.footer-contact a {
  color: var(--text-soft);

  font-size: 14px;
  text-decoration: none;

  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--pink-dark);
}

.footer-contact > a {
  margin-top: 8px;

  color: var(--plum);

  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;

  display: flex;
  justify-content: space-between;

  gap: 20px;

  margin-top: 10px;
  padding-top: 20px;

  font-size: 12px;

  border-top: 1px solid var(--border);
}
/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

  /* HERO MOBILE */
  .hero {
    width: calc(100% - 24px);
    min-height: auto;

    grid-template-columns: 1fr;

    gap: 38px;

    margin: 12px auto 18px;
    padding: 42px 22px 24px;

    border-radius: 24px;
  }

  .hero-kicker {
    margin-bottom: 14px;
  }

  .hero-title {
    font-size: clamp(60px, 18vw, 82px);
  }

  .hero-subtitle {
    margin-top: 20px;
    font-size: 22px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-actions {
    width: 100%;

    flex-direction: column;
    align-items: stretch;

    gap: 8px;

    margin-top: 26px;
  }

  .hero-button {
    width: 100%;
    min-height: 52px;
  }

  .hero-secondary {
    justify-content: center;
  }

  .hero-tags {
    margin-top: 25px;
  }

  .hero-image {
    padding: 7px;
    border-radius: 22px;
  }

  .hero-image img {
    height: 470px;
    border-radius: 17px;
  }

  .hero-image::before {
    inset: 15px -8px -8px 15px;
    border-radius: 20px;
  }

  .hero-badge {
    left: 14px;
    bottom: 18px;

    min-width: 0;

    padding: 13px 15px;
  }

    .logo-n,
    .logo-u,
    .logo-t {
        display: inline-block;
    }
    .services,
.price {
  width: calc(100% - 24px);

  margin: 18px auto;
  padding: 34px 20px;

  border-radius: 22px;
}
.site-header {
  width: calc(100% - 24px);

  flex-wrap: wrap;

  gap: 8px;

  top: 8px;

  margin-top: 8px;
  padding: 11px 12px 9px 16px;

  border-radius: 16px;
}

.site-logo {
  flex: 1;

  font-size: 23px;
}

.header-booking-button {
  padding: 10px 13px;
}

.site-nav {
  order: 3;

  width: 100%;

  overflow-x: auto;

  scrollbar-width: none;
}

.site-nav::-webkit-scrollbar {
  display: none;
}

.site-nav a {
  flex-shrink: 0;
}

#services,
#portfolio,
#about,
#booking {
  scroll-margin-top: 145px;
}

.site-footer {
  width: calc(100% - 24px);

  grid-template-columns: 1fr;

  gap: 30px;

  margin: 18px auto 12px;
  padding: 34px 24px 22px;

  border-radius: 22px;
}

.footer-bottom {
  flex-direction: column;

  gap: 6px;
}
.portfolio,
.about {
  width: calc(100% - 24px);

  margin: 18px auto;
  padding: 34px 20px;

  border-radius: 22px;
}
.reviews,
.booking {
  width: calc(100% - 24px);

  margin: 18px auto;
  padding: 34px 20px;

  border-radius: 22px;
}

.reviews-list {
  display: flex;

  gap: 12px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-list::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 86%;

  min-height: 210px;

  scroll-snap-align: start;
}

.review-card:hover {
  transform: none;
}

.booking-form {
  padding: 22px 18px;

  border-radius: 20px;
}

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

.service-note {
  grid-column: auto;
}

.booking-button {
  min-height: 54px;
}

.portfolio-track {
  display: flex;

  gap: 12px;

  overflow-x: auto;

  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.portfolio-track::-webkit-scrollbar {
  display: none;
}

.portfolio-item {
  flex: 0 0 78%;

  scroll-snap-align: start;
}

.portfolio-item:nth-child(1),
.portfolio-item:nth-child(3) {
  transform: none;
}

.portfolio-item img {
  height: 460px;
}

.about-content {
  grid-template-columns: 1fr;

  gap: 38px;
}

.about-photo {
  max-width: 460px;
}

.about-photo img {
  height: 500px;
}

.about-name {
  font-size: 42px;
}

.about-text {
  font-size: 16px;
}
.services-list {
  grid-template-columns: 1fr;
}

.service-card {
  min-height: 180px;

  padding: 22px;
}

.price-list {
  padding: 4px 18px;
}

.price-item {
  gap: 14px;

  padding: 20px 2px;
}

.price-name {
  font-size: 18px;
}

.price-value {
  font-size: 12px;
}



    .logo-n {
        margin-left: 2px;
    }

    .logo-u {
        margin-left: 3px;
    }

    .logo-t {
        margin-left: 2px;
    }
}

/* =========================
   TABLET / DESKTOP
========================= */

@media (min-width: 768px) {
  .review-card {
    flex-basis: calc((100% - 32px) / 3);
  }
}
.service-card-text p {
  margin: 0 0 12px;
}

.service-card-text p:last-child {
  margin-bottom: 0;
}
/* Фото, які нижче — підпис зверху */
.portfolio-item:nth-child(odd) .portfolio-caption {
  order: 1;
}

.portfolio-item:nth-child(odd) img {
  order: 2;
}

/* Фото, які вище — підпис знизу */
.portfolio-item:nth-child(even) img {
  order: 1;
}

.portfolio-item:nth-child(even) .portfolio-caption {
  order: 2;
}
/* =========================
   PORTFOLIO CAPTIONS
========================= */

.portfolio-item {
  display: flex;
  flex-direction: column;

  height: auto;
  overflow: visible;

  background: transparent;
  box-shadow: none;
}

.portfolio-item img {
  display: block;

  width: 100%;
  height: 430px;

  flex-shrink: 0;

  object-fit: cover;

  border-radius: 20px;

  box-shadow: 0 14px 34px rgba(87, 52, 67, 0.1);
}

.portfolio-caption {
  width: 100%;

  padding: 14px 6px;

  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;

  text-align: center;
}

/* 1, 3, 5... — нижче, підпис зверху */
.portfolio-item:nth-child(odd) {
  transform: translateY(18px);
}

.portfolio-item:nth-child(odd) .portfolio-caption {
  order: 1;
}

.portfolio-item:nth-child(odd) img {
  order: 2;
}

/* 2, 4, 6... — вище, підпис знизу */
.portfolio-item:nth-child(even) img {
  order: 1;
}

.portfolio-item:nth-child(even) .portfolio-caption {
  order: 2;
}

@media (max-width: 767px) {
  .portfolio-item {
    transform: none !important;
  }

  .portfolio-item img {
    height: 460px;
  }

  .portfolio-caption {
    padding: 12px 4px;
    font-size: 17px;
  }
}
/* =========================
   REVIEW FORM
========================= */

.review-form-wrapper {
  max-width: 760px;

  margin: 34px auto 0;
  padding: 30px;

  background: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 24px;

  box-shadow:
    0 18px 48px rgba(87, 52, 67, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.review-form-heading {
  margin-bottom: 24px;
}

.review-form-heading span {
  display: block;

  margin-bottom: 6px;

  color: var(--pink);

  font-size: 11px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.review-form-heading h3 {
  margin: 0;

  color: var(--plum);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 500;
}

.review-form {
  display: flex;
  flex-direction: column;

  gap: 10px;
}

.review-form label {
  margin-top: 10px;

  color: var(--plum);

  font-size: 13px;
  font-weight: 700;
}

.review-form input,
.review-form textarea {
  width: 100%;

  padding: 14px 16px;

  color: var(--text);

  background: rgba(255, 255, 255, 0.9);

  border: 1px solid var(--border);
  border-radius: 13px;

  outline: none;

  font: inherit;

  resize: vertical;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.review-form input {
  min-height: 52px;
}

.review-form textarea {
  min-height: 130px;
}

.review-form input:focus,
.review-form textarea:focus {
  background: #fff;

  border-color: rgba(232, 91, 145, 0.55);

  box-shadow:
    0 0 0 4px rgba(232, 91, 145, 0.09);
}

.review-rating {
  display: flex;

  gap: 6px;
}

.review-star {
  padding: 0;

  color: #d8cbd0;

  font-size: 34px;
  line-height: 1;

  background: none;

  border: 0;

  cursor: pointer;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.review-star:hover {
  transform: scale(1.08);
}

.review-star.active {
  color: var(--pink);
}

.review-submit-button {
  width: 100%;

  margin-top: 18px;
  padding: 16px 24px;

  color: white;

  font-weight: 700;

  background: linear-gradient(
    135deg,
    var(--pink),
    var(--pink-dark)
  );

  border: 0;
  border-radius: 14px;

  box-shadow:
    0 14px 30px rgba(189, 63, 112, 0.22);

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.review-submit-button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 18px 36px rgba(189, 63, 112, 0.28);
}

.review-submit-button:disabled {
  opacity: 0.6;
  cursor: default;
  transform: none;
}

.review-form-message {
  min-height: 22px;

  margin: 6px 0 0;

  color: var(--text-soft);

  font-size: 13px;
  text-align: center;
}

.reviews-empty {
  grid-column: 1 / -1;

  margin: 0;

  color: var(--text-soft);

  text-align: center;
}

@media (max-width: 767px) {
  .review-form-wrapper {
    padding: 22px 18px;

    border-radius: 20px;
  }

  .review-form-heading h3 {
    font-size: 26px;
  }

  .review-star {
    font-size: 31px;
  }
}