/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --plum:       #2D1B2E;
  --plum-light: #4A2F4C;
  --rose:       #F2D9E0;
  --cream:      #FAF6F1;
  --beige:      #E8D5C4;
  --gold:       #C9A96E;
  --gold-light: #E2C898;
  --text-dark:  #1A1018;
  --text-mid:   #5A4A5C;
  --text-light: #9A8A9C;
  --white:      #FFFFFF;

  --ff-display: 'Cormorant Garant', Georgia, serif;
  --ff-body:    'Jost', system-ui, sans-serif;

  --radius-sm:  6px;
  --radius-md:  14px;
  --radius-lg:  28px;

  --shadow-card: 0 4px 28px rgba(45,27,46,0.10);
  --shadow-hover: 0 12px 48px rgba(45,27,46,0.18);

  --transition: 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--plum);
}

h1 { font-size: clamp(2.6rem, 6vw, 5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }

p { font-size: 1rem; color: var(--text-mid); }

.section-eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  display: block;
}

/* ===== ORNAMENT DIVIDER ===== */
.ornament-divider {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin: 4rem auto;
  max-width: 320px;
  opacity: 0.45;
}

.ornament-divider::before,
.ornament-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
}

.ornament-divider svg {
  flex-shrink: 0;
  color: var(--gold);
}

/* ===== LAYOUT ===== */
.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

section {
  padding-block: 6rem;
}

/* ===== BUTTON ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gold);
  color: var(--plum);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--plum);
  border: 1.5px solid var(--plum);
}
.btn-outline:hover {
  background: var(--plum);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--plum);
}
.btn-white:hover {
  background: var(--rose);
  transform: translateY(-2px);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 100;
  padding-block: 1.1rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(250,246,241,0.94);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(45,27,46,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum);
  letter-spacing: 0.01em;
}

.logo-sub {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: -2px;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--text-mid);
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--plum);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.65rem 1.5rem;
  font-size: 0.88rem;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: var(--transition);
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  position: relative;
  background: var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 80% 50%, rgba(242,217,224,0.5) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  padding-block: 5rem;
  z-index: 1;
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--rose);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: 60px;
  margin-bottom: 1.8rem;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 1.5rem;
}

.hero-title em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1.05rem;
  max-width: 46ch;
  margin-bottom: 2.4rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-stat-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(201,169,110,0.25);
}

.hero-stat strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--plum);
}

.hero-stat span {
  font-size: 0.82rem;
  color: var(--text-light);
  letter-spacing: 0.05em;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-img-wrap img,
.hero-img-wrap .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: 2.5rem;
  left: -2rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  z-index: 2;
}

.hero-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-badge-icon svg {
  color: var(--gold);
}

.hero-badge-text strong {
  display: block;
  font-size: 0.9rem;
  color: var(--plum);
  font-weight: 600;
}

.hero-badge-text span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ===== IMAGE PLACEHOLDER ===== */
.img-placeholder {
  background: var(--beige);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1rem;
}

.img-placeholder svg {
  opacity: 0.5;
  color: var(--gold);
}

/* ===== ABOUT ===== */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 80%;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -1rem;
  width: 45%;
  aspect-ratio: 1/1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-card);
}

.about-img-main .img-placeholder,
.about-img-accent .img-placeholder {
  width: 100%;
  height: 100%;
}

.about-content h2 {
  margin-bottom: 1.2rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
}

.feature-text strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.2rem;
}

.feature-text p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* ===== SERVICES ===== */
.services {
  background: var(--cream);
}

.section-head {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: 3.5rem;
}

.section-head h2 {
  margin-bottom: 0.8rem;
}

.section-head p {
  font-size: 1.02rem;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.service-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.service-card-img .img-placeholder,
.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.service-card:hover .service-card-img .img-placeholder,
.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.service-card-body p {
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.2rem;
}

.service-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.service-price-tag {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--plum);
}

.service-price-tag span {
  font-size: 0.78rem;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text-light);
  margin-left: 3px;
}

.service-book-btn {
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  border-radius: 60px;
  background: var(--rose);
  color: var(--plum);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.service-book-btn:hover {
  background: var(--gold);
  color: var(--white);
}

/* ===== MASSAGE HIGHLIGHT ===== */
.massage-highlight {
  background: var(--plum);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.massage-highlight::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='120' height='120' viewBox='0 0 120 120' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='60' cy='60' r='58' fill='none' stroke='%23C9A96E' stroke-width='0.4' opacity='0.15'/%3E%3C/svg%3E") repeat;
  background-size: 120px 120px;
  pointer-events: none;
}

.massage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.massage-content .section-eyebrow {
  color: var(--gold-light);
}

.massage-content h2 {
  color: var(--white);
  margin-bottom: 1.2rem;
}

.massage-content p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 1rem;
}

.massage-list {
  margin-top: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.massage-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
}

.massage-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(201,169,110,0.25);
  border: 1px solid var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='8' viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%23C9A96E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.massage-visual {
  position: relative;
}

.massage-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}

.massage-img-wrap .img-placeholder,
.massage-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.massage-tag-float {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--gold);
  color: var(--plum);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  max-width: 130px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(201,169,110,0.4);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--ff-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  pointer-events: none;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  color: var(--gold);
  width: 14px;
  height: 14px;
}

.testimonial-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-mid);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--beige);
}

.testimonial-avatar .img-placeholder {
  width: 100%;
  height: 100%;
  font-size: 0;
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--plum);
}

.testimonial-date {
  font-size: 0.76rem;
  color: var(--text-light);
}

/* ===== SPECIALISTS ===== */
.specialists {
  background: var(--cream);
}

.specialists-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.specialist-card {
  text-align: center;
}

.specialist-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  margin-inline: auto;
  margin-bottom: 1.2rem;
  border: 3px solid var(--rose);
  box-shadow: 0 0 0 6px rgba(242,217,224,0.4);
}

.specialist-photo .img-placeholder {
  width: 100%;
  height: 100%;
}

.specialist-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.specialist-role {
  font-size: 0.82rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.specialist-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== CONTACT / FORM ===== */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  color: var(--gold);
  width: 18px;
  height: 18px;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 0.2rem;
}

.contact-item-text a,
.contact-item-text span {
  font-size: 0.9rem;
  color: var(--text-mid);
}

.contact-item-text a:hover {
  color: var(--gold);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.schedule-table td {
  padding: 0.5rem 0;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(201,169,110,0.15);
}

.schedule-table td:last-child {
  text-align: right;
  font-weight: 500;
  color: var(--plum);
}

/* Form */
.contact-form-wrap {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-form-wrap h3 {
  margin-bottom: 0.4rem;
}

.form-subtitle {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--plum);
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(45,27,46,0.15);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #c0392b;
}

.form-group .error-msg {
  display: none;
  font-size: 0.75rem;
  color: #c0392b;
  margin-top: 0.3rem;
}

.form-group.has-error .error-msg {
  display: block;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232D1B2E' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.form-consent input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
}

.form-consent label {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.form-consent a {
  color: var(--gold);
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 0.95rem;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.visible {
  display: block;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(201,169,110,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
}

.form-success-icon svg {
  color: var(--gold);
}

.form-success h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.form-success p {
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--plum);
  color: rgba(255,255,255,0.72);
  padding-block: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo-text {
  color: var(--white);
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.88rem;
  margin-top: 0.8rem;
  max-width: 26ch;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--gold);
}

.footer-socials svg {
  color: var(--white);
  width: 16px;
  height: 16px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--gold);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  font-size: 1.5rem;
  color: var(--plum);
  font-family: var(--ff-display);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-top: 7rem;
    padding-bottom: 0;
  }

  .hero-visual {
    height: 380px;
    min-height: unset;
    width: 100%;
  }

  .hero-img-wrap {
    position: static;
    height: 100%;
  }

  .hero-badge {
    left: 1rem;
    bottom: 1rem;
  }

  .about-grid,
  .massage-inner,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    max-width: 480px;
  }

  .services-grid,
  .testimonials-grid,
  .specialists-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  section { padding-block: 4rem; }

  .site-nav { display: none; }
  .burger { display: flex; }

  .services-grid,
  .testimonials-grid,
  .specialists-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .massage-tag-float {
    right: 0.5rem;
    top: 0.5rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero-stat-row {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

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

/* ===== SUBPAGES (privacy, terms, cookies) ===== */
.legal-page {
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}

.legal-page .meta {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.75;
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
}
