:root {
  --bg: #fbfaf8;
  --bg-soft: #f6f2ed;
  --card: #ffffff;
  --text: #202020;
  --muted: #746f6a;
  --line: #eee7df;
  --accent: #9b7a64;
  --accent-dark: #80624f;
  --accent-soft: #efe7df;
  --radius-large: 46px;
  --radius-medium: 30px;
  --shadow: 0 28px 80px rgba(115, 96, 80, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 250, 248, 0.86);
  border-bottom: 1px solid rgba(238, 231, 223, 0.75);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: grid;
  gap: 1px;
  min-width: 112px;
}

.logo span {
  font-size: 22px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.logo small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #6f6964;
  font-size: 14px;
}

.nav a {
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text);
}

.phone-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--card);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.menu-button span {
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-open .menu-button span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-open .menu-button span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  padding: 86px 0 132px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.93fr);
  gap: 68px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

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

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 0.98;
  font-weight: 620;
}

h1 {
  max-width: 620px;
  margin-bottom: 32px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 4.8vw, 66px);
}

h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.lead {
  max-width: 565px;
  margin-bottom: 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 44px;
}

.button {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0 28px;
  cursor: pointer;
  font-weight: 650;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.button.primary {
  background: var(--accent-dark);
  color: #fff;
}

.button.secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  max-width: 650px;
  color: #766e67;
  font-size: 14px;
}

.hero-line span {
  position: relative;
  padding-left: 18px;
}

.hero-line span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.77em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-photo-wrap {
  position: relative;
}

.hero-photo {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.hero-note {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  padding: 28px 30px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(238, 231, 223, 0.9);
  border-radius: 28px;
  backdrop-filter: blur(14px);
}

.hero-note span,
.specialist-list span {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 118px 0;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.62fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 62px;
}

.section-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.section-head.compact {
  margin-bottom: 54px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.approach-card,
.review-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: 0 20px 70px rgba(115, 96, 80, 0.055);
}

.approach-card {
  min-height: 300px;
  padding: 40px;
}

.approach-card span {
  display: inline-flex;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.approach-card p,
.specialist-lead,
.specialist-list p,
.service-row p,
.studio-copy p,
.review-card p,
.booking-info p,
.faq-list p,
.form-note {
  color: var(--muted);
}

.approach-card p {
  margin-bottom: 0;
}

.specialist-section {
  padding-top: 80px;
}

.specialist-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding: 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.specialist-photo img {
  width: 100%;
  height: 590px;
  object-fit: cover;
  border-radius: 34px;
}

.specialist-text h2 {
  margin-bottom: 12px;
}

.role {
  margin-bottom: 32px;
  color: var(--accent-dark);
  font-weight: 650;
}

.specialist-lead {
  max-width: 650px;
  margin-bottom: 46px;
  font-size: 18px;
  line-height: 1.85;
}

.specialist-list {
  display: grid;
  gap: 26px;
}

.specialist-list div {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.specialist-list p {
  margin: 0;
}

.services-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 42%, rgba(255, 255, 255, 0) 100%);
}

.services-list {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: 0 22px 80px rgba(115, 96, 80, 0.07);
}

.service-row {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 150px;
  gap: 34px;
  align-items: center;
  padding: 34px 40px;
}

.service-row + .service-row {
  border-top: 1px solid var(--line);
}

.service-number {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 50%;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.service-row h3 {
  margin-bottom: 8px;
  font-size: 23px;
}

.service-row p {
  max-width: 650px;
  margin-bottom: 0;
}

.service-row strong {
  justify-self: end;
  color: var(--accent-dark);
  font-size: 21px;
  white-space: nowrap;
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(0, 1fr);
  gap: 82px;
  align-items: center;
}

.studio-copy h2 {
  margin-bottom: 34px;
}

.studio-copy p:last-child {
  max-width: 460px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.85;
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.studio-gallery img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 30px;
}

.studio-gallery .gallery-large {
  grid-row: span 2;
  height: 538px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 36px;
}

.review-card p {
  margin-bottom: 42px;
  font-size: 17px;
  line-height: 1.8;
}

.review-card strong,
.review-card span {
  display: block;
}

.review-card span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 14px;
}

.faq-section {
  padding-top: 82px;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 94px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0 26px;
}

summary {
  cursor: pointer;
  list-style: none;
  padding: 25px 0;
  font-weight: 650;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: -4px 0 26px;
  line-height: 1.8;
}

.booking-section {
  padding-bottom: 92px;
}

.booking-card {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 0.85fr);
  gap: 86px;
  align-items: start;
  padding: 68px;
  background: linear-gradient(135deg, #ffffff 0%, #f7f2ec 100%);
  border: 1px solid var(--line);
  border-radius: 54px;
  box-shadow: var(--shadow);
}

.booking-info h2 {
  margin-bottom: 30px;
}

.booking-info p {
  max-width: 520px;
  margin-bottom: 44px;
  font-size: 18px;
  line-height: 1.85;
}

.contacts {
  display: grid;
  gap: 12px;
  color: var(--accent-dark);
  font-weight: 650;
}

.booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(238, 231, 223, 0.9);
  border-radius: 34px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form label span {
  color: #7b746d;
  font-size: 13px;
  font-weight: 650;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  outline: none;
  padding: 16px 17px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form textarea {
  resize: vertical;
  min-height: 126px;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: rgba(155, 122, 100, 0.8);
  box-shadow: 0 0 0 4px rgba(155, 122, 100, 0.12);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: -4px 0 0;
  font-size: 13px;
}

.footer {
  padding: 30px 0 42px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .section-head,
  .studio-grid,
  .faq-grid,
  .booking-card {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-photo {
    height: 560px;
  }

  .specialist-card {
    grid-template-columns: 1fr;
  }

  .approach-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .approach-card {
    min-height: auto;
  }

  .approach-card span {
    margin-bottom: 34px;
  }
}

@media (max-width: 820px) {
  .container {
    width: calc(100% - 32px);
    max-width: 1180px;
  }

  .header-inner {
    min-height: 72px;
  }

  .menu-button {
    display: flex;
  }

  .nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow);
  }

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

  .nav a {
    padding: 14px 10px;
  }

  .phone-link {
    display: none;
  }

  .hero {
    padding: 52px 0 78px;
  }

  .hero-grid,
  .hero-content,
  .hero-photo-wrap {
    width: 100%;
    min-width: 0;
  }

  .hero-grid {
    gap: 42px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 11px;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 24px;
    font-size: clamp(34px, 9vw, 42px);
    line-height: 1.08;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(34px, 10vw, 56px);
  }

  .lead,
  .section-head p:last-child,
  .specialist-lead,
  .studio-copy p:last-child,
  .booking-info p {
    font-size: 16px;
  }

  .lead {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
    line-height: 1.7;
  }

  .hero-actions {
    width: 100%;
    margin-bottom: 32px;
  }

  .hero-actions .button {
    max-width: 100%;
  }

  .hero-line {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .hero-photo {
    width: 100%;
    height: 460px;
    border-radius: 34px;
  }

  .hero-note {
    position: static;
    width: 100%;
    margin-top: 16px;
    padding: 24px;
  }

  .specialist-card,
  .booking-card {
    padding: 28px;
    border-radius: 34px;
  }

  .specialist-photo img {
    height: 440px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 30px 26px;
  }

  .service-row strong {
    justify-self: start;
  }

  .studio-gallery,
  .booking-form {
    grid-template-columns: 1fr;
  }

  .studio-gallery .gallery-large,
  .studio-gallery img {
    height: 330px;
  }

  .wide {
    grid-column: auto;
  }

  .footer-inner {
    flex-direction: column;
  }
}
@media (max-width: 520px) {
  .container {
    width: calc(100% - 28px);
  }

  .hero {
    padding: 44px 0 68px;
  }

  h1 {
    font-size: clamp(32px, 9.5vw, 38px);
    line-height: 1.1;
  }

  .lead {
    font-size: 15px;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
  }

  .button {
    width: 100%;
    min-width: 0;
    padding: 0 20px;
  }

  .hero-line {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-photo,
  .specialist-photo img,
  .studio-gallery .gallery-large,
  .studio-gallery img {
    height: 310px;
  }

  .hero-note {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .hero-note strong {
    font-size: 19px;
    line-height: 1.3;
  }

  .approach-card,
  .review-card,
  .booking-form {
    padding: 26px;
  }
}

.booking-form .consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.booking-form .consent-label input {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--accent);
}

.booking-form .consent-label span {
  line-height: 1.45;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(155, 122, 100, 0.55);
  outline-offset: 3px;
}
