
:root {
  --header-bg: #B7BBAC;
  --background: #B7BBAC;
  --accent: #ffe059;
  --text: #5b6143;
  --deep: #50523d;
  --white: #ffffff;
  --surface: rgba(255,255,255,0.6);
  --shadow: 0 14px 36px rgba(46, 49, 38, 0.12);
  --radius: 22px;
  --content: 1380px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--background);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
html[lang="en"] .lang-ru { display: none !important; }
html[lang="ru"] .lang-en { display: none !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(183, 187, 172, 0.98);
  border-bottom: 1px solid rgba(91,97,67,.12);
}
.header-inner {
  max-width: var(--content);
  margin: 0 auto;
  min-height: 92px;
  padding: 12px 28px;
  display: grid;
  grid-template-columns: 310px 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; min-width: 0; }
.brand img { width: 220px; height: auto; object-fit: contain; object-position: left center; }
.desktop-nav { display: flex; justify-content: center; gap: 28px; align-items: center; }
.nav-link {
  position: relative; color: var(--text); font-size: 12px; letter-spacing: .15em;
  text-transform: uppercase; white-space: nowrap; padding: 10px 0;
}
.nav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 3px; height: 1px;
  background: var(--text); transition: right .2s ease;
}
.nav-link:hover::after, .nav-link.active::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  display: flex; align-items: center; gap: 7px; color: var(--text); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
}
.lang-switch button {
  border: 0; padding: 6px 4px; background: transparent; color: rgba(91,97,67,.74);
  cursor: pointer; font: inherit; letter-spacing: inherit; text-transform: inherit;
}
.lang-switch button.active { color: var(--deep); font-weight: 600; }
.mobile-menu-btn {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(91,97,67,.25);
  border-radius: 50%; background: transparent; color: var(--text); font-size: 22px; cursor: pointer;
}
.mobile-panel { display: none; }
.primary-btn, .secondary-btn {
  border: 0; cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; padding: 0 28px; border-radius: 14px; font-size: 13px; letter-spacing: .03em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.primary-btn { background: #b7bbac; color: #50523d; box-shadow: 0 10px 24px rgba(46,49,38,.12); }
.primary-btn:hover { transform: translateY(-1px); background: #c4c7bc; }
.secondary-btn { border: 1px solid rgba(80,82,61,.26); color: var(--header-bg); background: rgba(255,255,255,.4); }

.home-hero {
  min-height: calc(100vh - 92px);
  background-image: linear-gradient(90deg, rgba(0,0,0,.26) 0%, rgba(0,0,0,.10) 35%, rgba(0,0,0,.18) 100%), url('assets/cosmarspa-floral-hero.png');
  background-size: cover; background-position: center center; display: flex; align-items: center;
}
.home-hero-inner { width: 100%; max-width: var(--content); margin: 0 auto; padding: 80px 28px 110px; }
.home-message { max-width: none; width: max-content; padding-top: 120px; }
.home-message h1 { margin: 0 0 14px; color: var(--accent); font-size: clamp(24px, 2.2vw, 34px); line-height: 1.1; font-weight: 700; white-space: nowrap; }
.home-message p { margin: 0 0 30px; color: rgba(255,255,255,.92); font-size: clamp(14px, 1.15vw, 18px); line-height: 1.6; font-style: italic; white-space: nowrap; }
.page-shell { max-width: var(--content); margin: 0 auto; padding: 74px 28px 110px; }
.page-hero { padding: 24px 0 44px; border-bottom: 1px solid rgba(80,82,61,.18); }
.page-kicker { font-size: 12px; text-transform: uppercase; letter-spacing: .25em; color: var(--deep); }
.page-title {
  margin: 12px 0 12px; font-family: Georgia, "Times New Roman", serif; font-weight: 400;
  font-size: clamp(46px, 6vw, 82px); line-height: 1; color: var(--deep);
}
.page-intro { max-width: 740px; margin: 0; font-size: 18px; line-height: 1.7; }
.placeholder-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 42px 0; }
.placeholder-card {
  min-height: 250px; border: 1px dashed rgba(80,82,61,.34); border-radius: var(--radius); background: rgba(255,255,255,.22);
  padding: 28px; display: flex; flex-direction: column; justify-content: flex-end;
}
.placeholder-card h3 { margin: 0 0 8px; color: var(--deep); font-family: Georgia, serif; font-weight: 400; font-size: 28px; }
.placeholder-card p { margin: 0; line-height: 1.6; opacity: .82; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding-top: 42px; }
.contact-card, .form-card {
  background: rgba(255,255,255,.28); border: 1px solid rgba(255,255,255,.34); border-radius: var(--radius); padding: 32px;
}
.contact-list { display: grid; gap: 20px; margin-top: 30px; }
.contact-row { padding-bottom: 18px; border-bottom: 1px solid rgba(80,82,61,.14); }
.contact-label { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 7px; }
.contact-value { color: var(--deep); font-size: 18px; }
.form-grid { display: grid; gap: 16px; }
label { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
input, textarea {
  width: 100%; margin-top: 8px; border: 1px solid rgba(80,82,61,.25); border-radius: 14px; background: rgba(255,255,255,.42);
  min-height: 48px; padding: 12px 14px; font: inherit; color: var(--deep);
}
textarea { min-height: 130px; resize: vertical; }

/* about page */
.about-page { padding-top: 56px; }
.about-grid { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr); gap: 56px; align-items: start; }
.about-eyebrow { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--deep); margin-bottom: 14px; }
.about-headline { margin: 0 0 18px; font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(40px, 5vw, 72px); line-height: 1.02; color: var(--deep); }
.about-subtitle { margin: 0 0 26px; max-width: 740px; font-size: 18px; line-height: 1.75; }
.about-content { font-size: 18px; line-height: 1.9; }
.about-content p { margin: 0 0 18px; }
.about-lead { font-size: 28px; line-height: 1.35; color: var(--deep); margin-bottom: 16px; }
.about-content ul { margin: 4px 0 22px 0; padding: 0; list-style: none; }
.about-content li { position: relative; padding-left: 24px; margin: 0 0 12px; }
.about-content li::before { content: "•"; position: absolute; left: 0; top: 0; color: var(--deep); }
.about-content strong { color: var(--deep); }
.about-signoff { color: var(--deep); font-weight: 600; }
.about-media { position: sticky; top: 116px; }
.about-photo-stack { position: relative; min-height: 0; }
.about-photo-main { width: min(100%, 480px); margin-left: auto; border-radius: 32px; overflow: hidden; box-shadow: var(--shadow); background: rgba(255,255,255,.34); }
.about-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.about-bio-card { margin-top: 26px; background: rgba(255,255,255,.45); border: 1px solid rgba(255,255,255,.6); border-radius: 24px; padding: 24px 24px 22px; box-shadow: var(--shadow); }
.about-bio-label { display: block; margin-bottom: 10px; font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--deep); }
.about-bio-text { margin: 0; font-size: 16px; line-height: 1.7; }
.mobile-short { display: none; }
.desktop-full { display: block; }

/* location + social footer */
.site-location { background: rgba(255,255,255,.34); border-top: 1px solid rgba(91,97,67,.12); margin-top: 32px; }
.location-inner {
  max-width: var(--content); margin: 0 auto; padding: 56px 28px; display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 1fr); gap: 38px; align-items: stretch;
}
.map-card { min-height: 360px; border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); background: rgba(255,255,255,.55); }
.google-map { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }
.location-details h2 {
  margin: 0 0 24px; color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-weight: 400;
  font-size: clamp(36px, 4vw, 54px); line-height: 1.04;
}
.location-columns { display: grid; grid-template-columns: minmax(220px, 1fr) minmax(160px, .8fr); gap: 34px; }
.location-block h3 { margin: 0 0 12px; color: var(--deep); font-size: 24px; font-weight: 600; }
.location-block address, .hours-list { font-style: normal; line-height: 1.8; font-size: 18px; margin-bottom: 14px; }
.location-phone, .directions-link { display: inline-flex; margin-right: 14px; margin-bottom: 12px; color: var(--deep); font-size: 17px; text-decoration: underline; text-underline-offset: 3px; }
.hours-label { font-weight: 700; display: block; margin-bottom: 8px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--deep); }
.site-footer { background: #90967c; border-top: 1px solid rgba(255,255,255,.24); }
.social-footer {
  max-width: var(--content); margin: 0 auto; padding: 20px 28px 24px; display: flex; align-items: center;
  justify-content: center; gap: 18px; flex-wrap: wrap;
}
.social-link {
  width: 46px; height: 46px; border-radius: 999px; background: rgba(80,82,61,.44); display: inline-flex;
  align-items: center; justify-content: center; transition: transform .15s ease, background .15s ease, opacity .15s ease;
}
.social-link:hover { transform: translateY(-2px); background: rgba(80,82,61,.62); }
.social-link img { width: 21px; height: 21px; }
.social-disabled { opacity: .55; cursor: default; }

/* results page */
.results-page { padding-top: 56px; }
.results-intro { max-width: 760px; }
.results-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; padding-top: 36px; }
.result-card { background: rgba(255,255,255,.38); border: 1px solid rgba(255,255,255,.52); border-radius: 28px; overflow: hidden; box-shadow: var(--shadow); }
.result-visual { position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: rgba(255,255,255,.4); --split: 50%; }
.result-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.result-before { z-index: 1; }
.result-after-wrap { position: absolute; inset: 0; width: var(--split); overflow: hidden; z-index: 2; }
.result-after-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: left center; }
.result-divider { position: absolute; top: 0; bottom: 0; left: var(--split); width: 0; z-index: 3; pointer-events: none; }
.result-divider::before { content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.96); box-shadow: 0 0 0 1px rgba(80,82,61,.08); }
.result-divider::after {
  content: "↔"; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 48px; height: 48px;
  border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.9); color: var(--deep); font-size: 22px;
  box-shadow: 0 10px 24px rgba(46,49,38,.18);
}
.result-slider { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; z-index: 4; }
.result-label {
  position: absolute; top: 16px; z-index: 4; padding: 7px 12px; border-radius: 999px; background: rgba(80,82,61,.72);
  color: #fff; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; pointer-events: none;
}
.result-label.before { left: 16px; }
.result-label.after { right: 16px; }
.result-caption { padding: 18px 22px 22px; }
.result-caption h3 { margin: 0 0 6px; color: var(--deep); font-size: 18px; font-weight: 600; }
.result-caption p { margin: 0; line-height: 1.65; }

@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-media { position: static; order: -1; }
  .about-photo-main { width: min(100%, 430px); }
}
@media (max-width: 1040px) {
  .header-inner { grid-template-columns: 250px 1fr auto; }
  .desktop-nav { gap: 18px; }
  .nav-link { font-size: 11px; }
}
@media (max-width: 980px) {
  .location-inner, .location-columns, .results-grid { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .header-inner { min-height: 78px; grid-template-columns: 1fr auto; padding: 10px 18px; }
  .brand img { width: 182px; }
  .desktop-nav, .header-actions { display: none; }
  .mobile-menu-btn { display: inline-grid; place-items: center; }
  .mobile-panel { position: fixed; inset: 78px 0 auto 0; background: rgba(183, 187, 172, 0.98); padding: 18px; border-top: 1px solid rgba(91,97,67,.08); }
  .mobile-panel.open { display: block; }
  .mobile-nav { display: grid; gap: 4px; }
  .mobile-nav .nav-link { font-size: 15px; padding: 14px 8px; }
  .mobile-controls { margin-top: 12px; padding-top: 16px; border-top: 1px solid rgba(91,97,67,.1); display: flex; align-items: center; justify-content: space-between; }
  .home-hero { min-height: calc(100vh - 78px); background-position: 62% center; }
  .home-hero-inner { padding: 50px 20px 70px; }
  .home-message { max-width: 100%; padding-top: 130px; }
  .home-message h1 { font-size: 34px; }
  .placeholder-grid, .contact-layout, .results-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .about-page { padding-top: 28px; }
  .about-grid { gap: 28px; }
  .about-headline { font-size: 42px; }
  .about-subtitle, .about-content { font-size: 17px; line-height: 1.75; }
  .about-lead { font-size: 24px; }
  .desktop-full { display: none; }
  .mobile-short { display: block; }
  .location-inner { padding: 42px 18px; gap: 24px; }
  .map-card, .google-map { min-height: 300px; }
  .results-page { padding-top: 28px; }
  .results-grid { gap: 22px; }
  .result-label { font-size: 10px; letter-spacing: .14em; }
}
@media (max-width: 520px) {
  .page-shell { padding-left: 18px; padding-right: 18px; }
  .page-title { font-size: 50px; }
  .contact-card, .form-card { padding: 22px; }
  .primary-btn { min-height: 46px; padding: 0 22px; }
}


/* contact + location refinements */
.location-email {
  display: block;
  width: fit-content;
  margin: 0 0 12px;
  color: var(--deep);
  font-size: 17px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-form-only {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.contact-form-only .form-card {
  width: 100%;
}
.contact-heading {
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .home-message { width: auto; max-width: 100%; }
  .home-message h1, .home-message p { white-space: normal; }
}


/* credentials sub-page */
.credentials-cta {
  margin-top: 58px;
  padding: 34px 36px;
  border-radius: 28px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: var(--shadow);
}
.credentials-cta-kicker {
  display: block; margin-bottom: 9px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--deep);
}
.credentials-cta h2 {
  margin: 0 0 10px; color: var(--deep); font-family: Georgia, "Times New Roman", serif; font-weight: 400; font-size: clamp(30px,3vw,42px);
}
.credentials-cta p { margin: 0 0 20px; line-height: 1.7; max-width: 780px; }
.credentials-cta-button, .credential-link {
  display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 20px;
  background: var(--deep); color: #fff; border-radius: 999px; font-size: 13px; letter-spacing: .04em;
}
.credentials-page { padding-top: 56px; }
.credentials-heading { max-width: 920px; }
.credentials-back-link { display: inline-block; margin-top: 22px; color: var(--deep); text-decoration: underline; text-underline-offset: 4px; }
.credentials-grid {
  display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; padding-top: 38px;
}
.credential-card {
  overflow: hidden; border-radius: 24px; background: rgba(255,255,255,.42); border: 1px solid rgba(255,255,255,.58); box-shadow: var(--shadow);
}
.credential-preview { display: block; aspect-ratio: 4 / 3; overflow: hidden; background: rgba(255,255,255,.8); }
.credential-preview img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.credential-preview:focus-visible { outline: 3px solid var(--deep); outline-offset: -3px; }
.credential-copy { padding: 20px 20px 22px; }
.credential-copy h2 { margin: 0 0 8px; color: var(--deep); font-size: 20px; line-height: 1.3; }
.credential-copy p { margin: 0 0 17px; line-height: 1.55; min-height: 48px; }
.credential-placeholder-visual {
  aspect-ratio: 4 / 3; display: grid; place-items: center; background: linear-gradient(135deg, rgba(80,82,61,.82), rgba(183,187,172,.94));
  color: var(--accent); font-family: Georgia, "Times New Roman", serif; font-size: 30px;
}
.credential-pending { display: inline-flex; padding: 10px 14px; border-radius: 999px; background: rgba(80,82,61,.12); color: var(--deep); font-size: 13px; }

/* compact results grid + fixed-geometry reveal */
.results-grid { grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.result-card { border-radius: 20px; }
.result-visual { aspect-ratio: 1 / 1; }
.result-after {
  z-index: 2;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
  will-change: clip-path;
}
.result-after-wrap { display: none !important; }
.result-divider::after { width: 40px; height: 40px; font-size: 18px; }
.result-label { top: 10px; padding: 5px 9px; font-size: 9px; letter-spacing: .12em; }
.result-label.before { left: 10px; }
.result-label.after { right: 10px; }
.result-caption { padding: 12px 14px 14px; }
.result-caption h3 { font-size: 15px; }
.result-caption p { font-size: 13px; }

/* location block ordering */
.location-block address { margin-bottom: 8px; }
.directions-link { display: block; width: fit-content; margin: 0; }
.location-contact-spacer { height: 44px; }
.location-phone, .location-email { display: block; width: fit-content; margin: 0 0 8px; }

@media (max-width: 1220px) {
  .results-grid { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .credentials-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 820px) {
  .results-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
  .credentials-grid { grid-template-columns: 1fr; }
  .credentials-page { padding-top: 28px; }
  .credentials-cta { padding: 26px 24px; margin-top: 36px; }
}
@media (max-width: 520px) {
  .results-grid { grid-template-columns: 1fr; }
}


/* About credentials link refinements */
.credentials-cta-spacer { height: 24px; }
.credentials-cta p { margin-bottom: 0; }
.credentials-inline-link {
  color: var(--deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.credentials-inline-link:hover { opacity: .78; }


/* =========================
   CosMarSpa V5 visual update
   ========================= */
.hours-block { min-width: 250px; }

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--deep);
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.section-heading-row { max-width: 850px; margin-bottom: 28px; }
.section-heading-row h2, .home-care-copy h2 {
  margin: 0 0 14px;
  color: var(--deep);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.08;
}
.section-heading-row p, .home-care-copy p { margin: 0; font-size: 17px; line-height: 1.75; }
.text-link, .credentials-inline-link { color: var(--deep); text-decoration: underline; text-underline-offset: 4px; }

.home-care-section { padding: 84px 28px; background: rgba(255,255,255,.20); }
.home-care-inner {
  max-width: var(--content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 54px;
  align-items: center;
}
.home-care-photo { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); cursor: zoom-in; }
.home-care-photo img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.home-care-copy p { margin-bottom: 22px; }
.home-explore-section { padding: 80px 28px 96px; }
.home-explore-inner { max-width: var(--content); margin: 0 auto; }
.home-explore-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-explore-card {
  position: relative;
  min-height: 340px;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--deep);
}
.home-explore-card::after { content:""; position:absolute; inset:0; background:linear-gradient(180deg,transparent 45%,rgba(45,47,35,.78)); }
.home-explore-card img { width:100%; height:100%; min-height:340px; object-fit:cover; transition:transform .35s ease; }
.home-explore-card:hover img { transform:scale(1.035); }
.home-explore-card span { position:absolute; z-index:2; left:22px; right:22px; bottom:20px; color:white; font-size:19px; }

.inside-section { margin-top: 92px; }
.inside-strip { display:grid; grid-template-columns: .82fr 1.36fr .82fr; gap:18px; align-items:stretch; }
.inside-photo {
  border:0; padding:0; background:transparent; border-radius:26px; overflow:hidden; box-shadow:var(--shadow); cursor:zoom-in; min-height:360px;
}
.inside-photo img { width:100%; height:100%; min-height:360px; object-fit:cover; }
.inside-photo.tall { min-height:430px; }
.inside-photo.tall img { min-height:430px; }

.services-page { padding-bottom: 100px; }
.featured-treatment-section { padding-top: 54px; }
.promo-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:18px; }
.promo-card { background:rgba(255,255,255,.34); border-radius:24px; overflow:hidden; box-shadow:var(--shadow); }
.promo-image { display:block; border:0; padding:0; width:100%; background:transparent; cursor:zoom-in; }
.promo-image img { width:100%; aspect-ratio:1/1; object-fit:cover; }
.promo-card h3 { margin:0; padding:17px 18px 20px; color:var(--deep); font-size:17px; font-weight:600; }
.treatment-experience-section { padding-top: 86px; }
.treatment-gallery { display:grid; grid-template-columns:repeat(12,1fr); grid-auto-rows:185px; gap:16px; }
.treatment-photo { border:0; padding:0; background:transparent; border-radius:24px; overflow:hidden; box-shadow:var(--shadow); cursor:zoom-in; grid-column:span 4; }
.treatment-photo img { width:100%; height:100%; object-fit:cover; transition:transform .35s ease; }
.treatment-photo:hover img { transform:scale(1.025); }
.treatment-photo-large { grid-column:span 8; grid-row:span 2; }
.treatment-photo:not(.treatment-photo-large) { grid-row:span 1; }

.reviews-hero-grid { display:grid; grid-template-columns:minmax(0,1fr) minmax(320px,.85fr); gap:42px; align-items:stretch; }
.reviews-copy { border-bottom:0; align-self:center; }
.reviews-photo { border:0; padding:0; border-radius:28px; overflow:hidden; box-shadow:var(--shadow); background:transparent; cursor:zoom-in; }
.reviews-photo img { width:100%; height:100%; min-height:420px; object-fit:cover; }
.review-framework { max-width:820px; padding:54px 0 20px; }
.reviews-intro-cards { padding-bottom: 8px; }
.review-note { position:relative; padding:28px 30px 28px 72px; border-radius:24px; background:rgba(255,255,255,.30); }
.review-note p { margin:0; line-height:1.7; }
.quote-mark { position:absolute; left:24px; top:4px; font:64px Georgia,serif; color:rgba(80,82,61,.5); }
.testimonials-section { padding: 20px 0 0; }
.testimonial-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:22px; }
.testimonial-card {
  display:flex; flex-direction:column; gap:16px; min-height:100%;
  padding:26px; border-radius:24px; background:rgba(255,255,255,.38);
  border:1px solid rgba(255,255,255,.45); box-shadow:var(--shadow);
}
.testimonial-card-featured { background:rgba(255,255,255,.48); }
.testimonial-card-mini { justify-content:space-between; }
.testimonial-topline { display:flex; align-items:center; justify-content:space-between; gap:12px; flex-wrap:wrap; }
.testimonial-badge {
  display:inline-flex; align-items:center; min-height:32px; padding:6px 12px; border-radius:999px;
  background:rgba(255,224,89,.28); color:var(--deep); font-size:11px; letter-spacing:.08em; text-transform:uppercase; font-weight:600;
}
.testimonial-source { font-size:11px; letter-spacing:.14em; text-transform:uppercase; opacity:.72; }
.testimonial-card h2 { margin:0; color:var(--deep); font-family:Georgia, "Times New Roman", serif; font-weight:400; font-size:32px; line-height:1.1; }
.testimonial-card p { margin:0; font-size:16px; line-height:1.8; }
.testimonial-proof {
  align-self:flex-start; border:1px solid rgba(80,82,61,.22); border-radius:999px; background:rgba(255,255,255,.6);
  color:var(--deep); padding:10px 16px; font:inherit; font-size:13px; cursor:pointer; transition:transform .15s ease, background .15s ease;
}
.testimonial-proof:hover { transform:translateY(-1px); background:rgba(255,255,255,.78); }
.testimonial-badge .lang-en, .testimonial-badge .lang-ru, .testimonial-source .lang-en, .testimonial-source .lang-ru { display:inline; }
.google-reviews-section { margin-top:72px; padding:44px; border-radius:30px; background:rgba(255,255,255,.28); border:1px solid rgba(255,255,255,.42); }
.google-reviews-header { display:grid; grid-template-columns:minmax(0,1fr) auto; gap:32px; align-items:center; }
.google-reviews-header h2 { margin:10px 0 12px; color:var(--deep); font-family:Georgia, "Times New Roman", serif; font-weight:400; font-size:clamp(34px,4vw,52px); line-height:1.08; }
.google-reviews-header p { margin:0; max-width:700px; line-height:1.7; }
.google-rating-card { min-width:180px; padding:22px 24px; border-radius:22px; background:rgba(255,255,255,.56); text-align:center; box-shadow:var(--shadow); }
.google-rating-card strong { display:block; color:var(--deep); font:46px/1 Georgia, "Times New Roman", serif; }
.google-stars { display:block; margin:8px 0 6px; color:#d6a900; letter-spacing:.12em; font-size:20px; }
.google-rating-card small { display:block; font-size:12px; letter-spacing:.05em; }
.google-review-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:18px; margin-top:30px; }
.google-review-card { padding:24px; border-radius:22px; background:rgba(255,255,255,.42); }
.google-review-meta { display:flex; justify-content:space-between; gap:16px; align-items:center; margin-bottom:14px; }
.google-review-meta strong { color:var(--deep); font-size:18px; }
.google-review-meta span { font-size:11px; text-transform:uppercase; letter-spacing:.14em; opacity:.72; }
.google-review-card p { margin:0; line-height:1.75; }
.google-reviews-link { display:inline-flex; margin-top:24px; padding:12px 18px; border:1px solid rgba(80,82,61,.24); border-radius:999px; background:rgba(255,255,255,.58); color:var(--deep); font-size:14px; }
.google-reviews-link:hover { background:rgba(255,255,255,.8); }

.lightbox-overlay {
  position:fixed; inset:0; z-index:200; display:none; align-items:center; justify-content:center; padding:32px; background:rgba(28,29,23,.9);
}
.lightbox-overlay.open { display:flex; }
.lightbox-overlay img { max-width:min(94vw,1500px); max-height:90vh; border-radius:18px; box-shadow:0 20px 70px rgba(0,0,0,.4); }
.lightbox-close {
  position:fixed; top:20px; right:24px; width:46px; height:46px; border:1px solid rgba(255,255,255,.5); border-radius:50%; background:rgba(0,0,0,.35); color:white; font-size:28px; cursor:pointer;
}

@media (max-width: 1100px) {
  .promo-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .home-care-inner, .reviews-hero-grid { grid-template-columns:1fr; }
  .home-care-copy { max-width:780px; }
  .treatment-gallery { grid-auto-rows:170px; }
}
@media (max-width: 820px) {
  .hours-block { min-width:0; }
  .home-care-section, .home-explore-section { padding-left:18px; padding-right:18px; }
  .home-care-section { padding-top:58px; padding-bottom:58px; }
  .home-explore-section { padding-top:58px; padding-bottom:72px; }
  .home-explore-grid { grid-template-columns:1fr; }
  .home-explore-card, .home-explore-card img { min-height:280px; }
  .inside-strip { display:flex; overflow-x:auto; gap:14px; scroll-snap-type:x mandatory; padding-bottom:10px; }
  .inside-photo, .inside-photo.tall { flex:0 0 78vw; min-height:360px; scroll-snap-align:start; }
  .inside-photo img, .inside-photo.tall img { min-height:360px; }
  .promo-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }
  .promo-card h3 { font-size:15px; padding:13px 14px 16px; }
  .treatment-gallery { grid-template-columns:repeat(2,1fr); grid-auto-rows:220px; gap:12px; }
  .treatment-photo, .treatment-photo-large { grid-column:span 1; grid-row:span 1; }
  .treatment-photo-large { grid-column:span 2; }
  .reviews-photo img { min-height:300px; }
  .testimonial-grid { grid-template-columns:1fr; }
  .google-reviews-header { grid-template-columns:1fr; }
  .google-rating-card { justify-self:start; }
  .google-review-grid { grid-template-columns:1fr; }
}


@media (max-width: 520px) {
  .promo-grid { grid-template-columns:1fr 1fr; }
  .treatment-gallery { grid-template-columns:1fr; grid-auto-rows:260px; }
  .treatment-photo, .treatment-photo-large { grid-column:span 1; }
  .inside-photo, .inside-photo.tall { flex-basis:84vw; }
  .review-note { padding-left:58px; }
  .testimonial-card { padding:22px; }
  .testimonial-card h2 { font-size:28px; }
  .testimonial-card p { font-size:15px; line-height:1.72; }
  .google-reviews-section { padding:26px 20px; margin-top:52px; }
}



/* Services gallery: horizontal treatment close-ups, head facing right. */
.services-page .treatment-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto;
  grid-template-areas:
    "peel products room"
    "device application professional";
  grid-auto-rows: auto;
  gap: clamp(12px, 1.4vw, 20px);
}
.services-page .treatment-photo {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 3 / 2;
}
.services-page .treatment-photo[data-lightbox-src$="procedure-room.jpg"] { grid-area: room; }
.services-page .treatment-photo[data-lightbox-src$="procedure-products.jpg"] { grid-area: products; }
.services-page .treatment-photo[data-lightbox-src$="procedure-application-v2.jpg"] { grid-area: application; }
.services-page .treatment-photo[data-lightbox-src$="procedure-peel.jpg"] { grid-area: peel; }
.services-page .treatment-photo[data-lightbox-src$="procedure-device.jpg"] { grid-area: device; }
.services-page .treatment-photo[data-lightbox-src$="procedure-professional.jpg"] { grid-area: professional; }
/* Swap the image dimensions before rotating to fill the landscape frame. */
.services-page .treatment-photo[data-lightbox-src$="procedure-application-v2.jpg"] img,
.services-page .treatment-photo[data-lightbox-src$="procedure-peel.jpg"] img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 66.666667%;
  height: 150%;
  max-width: none;
  object-position: 28% center;
  transform: translate(-50%, -50%) rotate(-90deg);
}
.services-page .treatment-photo:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
/* Keep the corrected orientation when either photo is opened. */
.lightbox-overlay img[src$="procedure-application-v2.jpg"],
.lightbox-overlay img[src$="procedure-peel.jpg"] {
  transform: rotate(-90deg);
  max-width: 90vh;
  max-height: 90vw;
}
@media (max-width: 820px) {
  .services-page .treatment-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "peel peel"
      "products room"
      "application application"
      "professional device";
    gap: 12px;
  }
  .services-page .treatment-photo { border-radius: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .services-page .treatment-photo img { transition: none; }
}

/* Service information follows the existing responsive page layout. */
.seo-services { margin: 36px 0 54px; }
.seo-service-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.seo-service { min-width: 0; padding: 24px; border: 1px solid rgba(80,82,61,.18); border-radius: 16px; scroll-margin-top: 100px; }
.seo-service h3 { margin-top: 0; }
.seo-service p, .seo-services > p { line-height: 1.7; }
@media(max-width:760px) { .seo-service-grid { grid-template-columns: 1fr; } }


/* Shared footer hours and booking actions. */
.hours-list { list-style: none; margin: 0; padding: 0; font-weight: 400; }
.hours-list li { margin: 0 0 4px; }
.primary-btn:focus-visible, .secondary-btn:focus-visible {
  outline: 3px solid var(--deep); outline-offset: 4px;
}
.seo-service .primary-btn { margin-top: 8px; max-width: 100%; padding: 12px 24px; text-align: center; }

/* Keep the Saturday label and time together without crowding the address. */
.location-columns { grid-template-columns: minmax(0, 1fr); }
.hours-list li:last-child { white-space: nowrap; }
@media (min-width: 1350px) {
  .location-inner { grid-template-columns: minmax(0, .9fr) minmax(600px, 1.1fr); }
  .location-columns { grid-template-columns: minmax(220px, 1fr) max-content; gap: 24px; }
}
@media (max-width: 390px) {
  .location-block address, .hours-list { font-size: 16px; }
}
