:root {
  --bg: #faf7f6;
  --bg-soft: #f3e7e3;
  --bg-lavender: #eee5ee;
  --card: #ffffff;
  --text: #40313e;
  --muted: #766371;
  --line: #e8d8d5;
  --blush: #d893a4;
  --peach: #e5a38f;
  --gold: #ce8127;
  --lavender: #d8bfce;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

p {
  color: var(--muted);
  font-size: 1.05rem;
}

h1,
h2,
h3,
strong,
.brand-name,
.btn,
.nav-links a {
  font-family: Arial, Helvetica, sans-serif;
}

h1,
h2,
h3 {
  color: var(--text);
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 22px;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo-wrap {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: scale(1.15);
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.brand-tag {
  color: var(--muted);
  font-size: 0.95rem;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.97rem;
}

.nav-links a:hover,
.footer-links a:hover,
.text-link:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.98rem;
  transition: 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary:hover {
  background: #b96e1a;
}

.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid var(--line);
}

.btn-secondary:hover {
  background: #fff8f6;
}

.btn-peach {
  width: 100%;
  background: var(--peach);
  color: white;
}

.btn-peach:hover {
  background: var(--blush);
}

.hero {
  padding: 72px 0;
  background: linear-gradient(135deg, #faf7f6 0%, #f3e7e3 50%, #eee5ee 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: start;
}

.eyebrow-pill {
  display: inline-block;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.hero-description {
  max-width: 720px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.stat-card,
.info-card,
.session-card,
.contact-form-card,
.hero-photo-card,
.faq-item,
.value-box {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(50, 30, 40, 0.05);
}

.stat-card {
  border-radius: 20px;
  padding: 18px;
}

.stat-card strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-visual-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-image-wrap {
  width: 100%;
}

.hero-photo {
  width: 100%;
  height: 430px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-photo-card {
  border-radius: 28px;
  padding: 26px;
}

.photo-card-text {
  padding: 0;
}

.photo-card-text h3 {
  margin-bottom: 6px;
}

.photo-subtitle {
  margin-top: 0;
  margin-bottom: 10px;
}

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-soft {
  background: var(--bg-lavender);
}

.section-label {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--blush);
  margin-bottom: 12px;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: start;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.about-cards,
.booking-boxes {
  display: grid;
  gap: 18px;
}

.info-card {
  border-radius: 26px;
  padding: 26px;
}

.tinted-card {
  background: #f7efec;
}

.soft-card {
  background: #f6eef5;
}

.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.subject-list {
  padding-left: 18px;
  color: var(--muted);
}

.subject-list li {
  margin-bottom: 8px;
}

.value-box {
  border-radius: 26px;
  padding: 24px;
  background: #f7eef3;
  margin-top: 26px;
}

.small-value-box {
  margin-top: 26px;
}

.text-link {
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.session-card {
  border-radius: 28px;
  padding: 26px;
}

.mini-card {
  background: #fcf8f7;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  margin-top: 14px;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.faq-wrap {
  max-width: 860px;
}

.faq-item {
  border-radius: 22px;
  padding: 22px;
  margin-top: 16px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-form-card {
  border-radius: 28px;
  padding: 26px;
}

.booking-form-card {
  background: #ffffff;
}

form {
  display: grid;
  gap: 14px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #dfcfc9;
  background: #fefcfc;
  color: var(--text);
  border-radius: 18px;
  padding: 15px 16px;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #a08592;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--blush);
}

.phone-input-wrap {
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #dfcfc9;
  background: #fefcfc;
  border-radius: 18px;
  overflow: hidden;
}

.phone-prefix {
  padding: 15px 14px;
  color: #7a6672;
  background: #f7efec;
  border-right: 1px solid #dfcfc9;
  font: inherit;
  white-space: nowrap;
}

.phone-input-wrap input {
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 15px 16px;
  flex: 1;
  width: 100%;
}

.phone-input-wrap input:focus {
  outline: none;
  border: none;
  box-shadow: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  background: var(--bg);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--muted);
}

@media (max-width: 980px) {
  .hero-grid,
  .two-column,
  .cards-3,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    width: 100%;
    order: 3;
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-photo {
    height: 340px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .section,
  .hero {
    padding: 64px 0;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-link {
    gap: 10px;
  }

  .brand-logo-wrap {
    width: 48px;
    height: 48px;
  }

  .brand-tag {
    font-size: 0.88rem;
  }
}
