:root {
  --paper: #f5f0eb;
  --paper-2: #e9dfd7;
  --ink: #201c1b;
  --muted: #746a66;
  --plum: #60364b;
  --rose: #c79a91;
  --line: rgba(32, 28, 27, 0.17);
  --serif: "Italiana", Georgia, serif;
  --sans: "DM Sans", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --header-height: 90px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100vw;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
}

button, a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 200;
  padding: 12px 18px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

/* =========================================
   STICKY HEADER
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: var(--header-height);
  padding: 0 clamp(20px, 5vw, 76px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  background: rgba(33, 27, 29, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.3s, height 0.3s, border-color 0.3s;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  width: max-content;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font: 20px/1 var(--serif);
  letter-spacing: -0.08em;
}

.brand strong, .brand small {
  display: block;
}

.brand strong {
  font: 23px/1 var(--serif);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.brand small {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.desktop-nav {
  display: flex;
  gap: 36px;
}

.desktop-nav a {
  position: relative;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right 0.3s ease;
}

.desktop-nav a:hover:after {
  right: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-self: end;
}

.header-phone {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.header-phone:hover {
  color: #fff;
  text-decoration: underline;
}

.header-cta {
  padding: 11px 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.25s ease;
}

.header-cta:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: translateY(-1px);
}

.menu-button {
  display: none;
}

/* =========================================
   MOBILE NAVIGATION
   ========================================= */
.mobile-nav {
  position: fixed;
  z-index: 95;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px 24px 40px;
  background: #251d1f;
  color: #fff;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
}

.mobile-nav:not([hidden]) {
  display: flex;
}

.mobile-nav a:not(.button) {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font: 30px/1.2 var(--serif);
  text-decoration: none;
  color: #fff;
  transition: color 0.2s;
}

.mobile-nav a:not(.button):hover {
  color: var(--rose);
}

.mobile-nav-cta {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: calc(100vh - var(--header-height));
  background: #33292b;
  display: grid;
  grid-template-columns: 48% 52%;
  color: #fff;
  position: relative;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: clamp(60px, 8vw, 110px) clamp(24px, 5.5vw, 95px) 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy:before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 78%, rgba(199, 154, 145, 0.2), transparent 36%);
  z-index: -1;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose);
}

.hero h1, .section-heading h2, .about h2, .pricing h2, .contact h2 {
  margin: 0;
  font: clamp(52px, 6.2vw, 98px)/0.95 var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 em, .section-heading h2 em, .about h2 em, .pricing h2 em, .contact h2 em {
  color: var(--rose);
  font-weight: 400;
}

.hero-intro {
  max-width: 560px;
  margin: 28px 0;
  color: #d8d1ce;
  font-size: 16.5px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
  margin-top: 14px;
}

.button {
  min-height: 50px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  cursor: pointer;
  white-space: nowrap;
}

.button.primary {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}

.button.primary:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.button.outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.button.outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
}

.text-link span {
  font-size: 18px;
  transition: transform 0.25s;
}

.text-link:hover {
  color: #fff;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-note {
  margin-top: 45px;
  display: flex;
  align-items: center;
  color: #c9bfbb;
}

.hero-note p {
  margin: 0;
  font-size: 11px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(51, 41, 43, 0.25), transparent 24%), linear-gradient(0deg, rgba(0, 0, 0, 0.28), transparent 40%);
}

.hero-image img {
  object-position: center;
}

.image-badge {
  position: absolute;
  z-index: 2;
  right: 40px;
  bottom: 40px;
  width: 145px;
  height: 145px;
  display: grid;
  place-content: center;
  text-align: center;
  background: rgba(245, 240, 235, 0.92);
  color: var(--ink);
  border-radius: 50%;
  transform: rotate(-7deg);
  backdrop-filter: blur(6px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.image-badge strong {
  font: 28px/1 var(--serif);
  font-weight: 400;
}

.image-badge span {
  margin-top: 6px;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--plum);
  font-weight: 600;
}

/* =========================================
   INTERACTIVE TRUST STRIP BADGES
   ========================================= */
.trust-strip {
  min-height: 80px;
  padding: 16px max(20px, 4vw);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 14px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 100px;
  background: var(--paper);
  border: 1px solid rgba(32, 28, 27, 0.14);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0, 0, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.trust-badge span {
  font-size: 13px;
  color: var(--plum);
  transition: transform 0.2s ease, color 0.2s ease;
}

.trust-badge:hover {
  background: var(--plum);
  color: #fff;
  border-color: var(--plum);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(96, 54, 75, 0.22);
}

.trust-badge:hover span {
  color: var(--rose);
  transform: translate(2px, 2px);
}

/* =========================================
   SECTIONS GENERAL
   ========================================= */
.section {
  padding: 130px clamp(24px, 6vw, 96px);
}

.intro {
  padding-bottom: 110px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.section-heading h2 {
  font-size: clamp(46px, 5.8vw, 84px);
}

.section-lead {
  max-width: 540px;
  margin: 25px 0 65px auto;
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.75;
}

/* =========================================
   TREATMENTS GRID (5 SERVICES)
   ========================================= */
.treatment-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr 0.95fr;
  grid-template-rows: 320px 320px;
  gap: 20px;
}

.treatment-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: #2a2224;
}

.treatment-card.large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.treatment-card img {
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}

.treatment-card:hover img {
  transform: scale(1.04);
}

.treatment-card:after {
  content: "";
  position: absolute;
  inset: 25% 0 0;
  background: linear-gradient(transparent, rgba(20, 16, 17, 0.85));
}

.card-overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px 26px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  color: #fff;
}

.card-overlay h3 {
  margin: 0 0 6px;
  font: clamp(24px, 2.2vw, 36px)/1.1 var(--serif);
  font-weight: 400;
}

.card-overlay p {
  margin: 0;
  color: #ded6d2;
  font-size: 12.5px;
  line-height: 1.4;
}

.card-overlay a {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  margin-left: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  transition: background 0.25s, color 0.25s, transform 0.25s, border-color 0.25s;
}

.card-overlay a:hover {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
  transform: scale(1.08);
}

/* =========================================
   PHILOSOPHY
   ========================================= */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 700px;
  background: var(--paper-2);
}

.philosophy-image {
  min-height: 600px;
}

.philosophy-copy {
  padding: 90px clamp(32px, 6.5vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.philosophy blockquote {
  margin: 10px 0 30px;
  font: clamp(38px, 4vw, 64px)/1.1 var(--serif);
}

.philosophy-copy > p:not(.eyebrow) {
  max-width: 580px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15.5px;
}

.philosophy-list {
  list-style: none;
  margin: 45px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.philosophy-list li {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
}

.list-bullet {
  color: var(--rose);
  font-size: 13px;
}

/* =========================================
   STUDIO
   ========================================= */
.studio {
  padding-bottom: 95px;
}

.studio .section-heading {
  margin-bottom: 60px;
}

.studio-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-template-rows: 330px 300px;
  gap: 15px;
}

.studio-gallery figure {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
}

.studio-gallery figure:first-child {
  grid-row: 1/3;
}

.studio-gallery figure:nth-child(2) {
  grid-column: 2/4;
}

.studio-gallery img {
  transition: transform 0.7s;
}

.studio-gallery figure:hover img {
  transform: scale(1.025);
}

.studio-caption {
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  margin-top: 25px;
}

.studio-caption p, .studio-caption span {
  margin: 0;
  font-size: 13px;
}

.studio-caption span {
  color: var(--muted);
}

/* =========================================
   ABOUT
   ========================================= */
.about {
  min-height: 650px;
  padding: 80px clamp(24px, 7.5vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 65px;
  background: var(--plum);
  color: #fff;
  overflow: hidden;
}

.about-copy {
  max-width: 580px;
}

.about h2 {
  font-size: clamp(58px, 6.8vw, 94px);
}

.about h2 em {
  color: #e7c7bf;
}

.about-copy > p:not(.eyebrow) {
  margin: 32px 0;
  color: #ddced4;
  line-height: 1.8;
  font-size: 16px;
}

.portrait-wrap {
  position: relative;
  align-self: end;
  height: 580px;
}

.portrait-wrap:before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: -12%;
  height: 85%;
  background: #d8b9b0;
  border-radius: 48% 48% 0 0;
}

.portrait-wrap img {
  position: relative;
  z-index: 1;
  object-fit: contain;
  object-position: center bottom;
  filter: saturate(0.88);
}

/* =========================================
   PRICING ACCORDION
   ========================================= */
.pricing {
  background: #f8f5f2;
}

.pricing-head {
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: end;
  gap: 50px;
  margin-bottom: 75px;
}

.pricing-head h2 {
  font-size: clamp(50px, 5.8vw, 84px);
}

.pricing-head > p {
  color: var(--muted);
  line-height: 1.7;
}

.price-list {
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
  transition: background 0.35s ease;
}

details.highlight {
  background: rgba(199, 154, 145, 0.16);
  border-radius: 4px;
}

summary {
  min-height: 95px;
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background 0.2s;
}

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

summary strong {
  font: clamp(24px, 2.7vw, 38px)/1.2 var(--serif);
  font-weight: 400;
  color: var(--ink);
}

summary i {
  position: relative;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

summary i:before, summary i:after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 15px;
  height: 1.5px;
  background: var(--ink);
}

summary i:after {
  transform: rotate(90deg);
  transition: transform 0.25s ease;
}

details[open] summary i:after {
  transform: rotate(0);
}

.price-content {
  padding: 0 20px 35px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 60px;
}

.price-content p {
  margin: 0;
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px dotted rgba(32, 28, 27, 0.2);
  font-size: 13.5px;
}

.price-content span, .price-content small {
  color: var(--muted);
}

.price-content b {
  white-space: nowrap;
  font-weight: 600;
  color: var(--ink);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
  padding: 120px clamp(24px, 7.5vw, 120px);
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  background: #2e2628;
  color: #fff;
}

.contact h2 {
  font-size: clamp(60px, 7.5vw, 105px);
}

.contact h2 em {
  color: #d7afa6;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 540px;
  color: #d3c8c5;
  line-height: 1.8;
  font-size: 16px;
}

.contact-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 20px;
}

.button.light {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
}

.button.light:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}

.contact-card {
  padding: 38px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-card address {
  margin: 18px 0 8px;
  font: 32px/1.25 var(--serif);
  font-style: normal;
}

.map-link {
  display: inline-block;
  margin: 0 0 24px 0;
  color: var(--plum);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.map-link:hover {
  color: var(--rose);
  text-decoration: underline;
}

.contact-card-info {
  border-top: 1px solid var(--line);
}

.contact-row {
  padding: 14px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.contact-row:last-child {
  border-bottom: 0;
}

.contact-row span {
  color: var(--muted);
}

.contact-row a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-row a:hover {
  color: var(--plum);
  text-decoration: underline;
}

/* =========================================
   SCROLL-TO-TOP BUTTON
   ========================================= */
.scroll-top-btn {
  position: fixed;
  right: 24px;
  bottom: 28px;
  z-index: 80;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 240, 235, 0.94);
  color: var(--ink);
  border: 1px solid rgba(96, 54, 75, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.9);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}

/* =========================================
   FOOTER
   ========================================= */
footer {
  padding: 80px clamp(24px, 6vw, 96px) 25px;
  background: #181515;
  color: #fff;
}

.footer-brand h2 {
  margin: 20px 0 0;
  font: 48px/1 var(--serif);
  font-weight: 400;
}

.footer-brand p {
  margin: 8px 0;
  color: #8f8683;
}

.footer-links {
  margin: 60px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 650px;
  margin-left: auto;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 10px;
  color: #8f8683;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.footer-links a {
  font-size: 13px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--rose);
}

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #8f8683;
  font-size: 11.5px;
}

.footer-bottom a {
  text-decoration: none;
  color: inherit;
}

.footer-bottom a:hover {
  color: #fff;
}

/* =========================================
   ANIMATIONS & REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .treatment-card img, .studio-gallery img {
    transition: none;
  }
}

/* =========================================
   RESPONSIVE MEDIA QUERIES
   ========================================= */
@media (max-width: 1080px) {
  .treatment-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .treatment-card.large {
    grid-column: 1 / 3;
    grid-row: auto;
    height: 380px;
  }

  .treatment-card:not(.large) {
    height: 300px;
  }
}

@media (max-width: 950px) {
  :root {
    --header-height: 78px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav, .header-actions {
    display: none;
  }

  .menu-button {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 7px;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    width: 25px;
    height: 1.5px;
    background: #fff;
    transition: transform 0.3s ease;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4.2px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4.2px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    min-height: 600px;
    padding: 60px 24px 50px;
    background: linear-gradient(90deg, rgba(31, 23, 26, 0.88), rgba(31, 23, 26, 0.55)), url('assets/Skinbar_BeautyRoom-20.jpg') center/cover;
  }

  .hero-image {
    display: none;
  }

  .hero-note {
    margin-top: 50px;
  }

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

  .philosophy-image {
    min-height: 450px;
  }

  .pricing-head {
    grid-template-columns: 1fr;
  }

  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-card {
    max-width: 100%;
  }

  .about {
    grid-template-columns: 1fr;
    padding-bottom: 0;
    gap: 40px;
  }

  .about-copy {
    padding-top: 20px;
  }

  .portrait-wrap {
    height: 480px;
  }

  .footer-links {
    margin-left: 0;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand strong {
    font-size: 19px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .hero-copy {
    min-height: 540px;
    padding: 50px 20px 40px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-intro {
    font-size: 15px;
    margin: 22px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .button, .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .trust-strip {
    padding: 12px 14px;
    gap: 8px;
  }

  .trust-badge {
    font-size: 12.5px;
    padding: 7px 15px;
  }

  .section {
    padding: 85px 20px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: 42px;
  }

  .section-lead {
    margin: 22px 0 45px;
  }

  .treatment-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .treatment-card, .treatment-card.large {
    height: 340px;
    width: 100%;
    margin-bottom: 0;
  }

  .card-overlay {
    padding: 20px 18px;
  }

  .card-overlay h3 {
    font-size: 26px;
  }

  .philosophy-image {
    min-height: 340px;
  }

  .philosophy-copy {
    padding: 70px 20px;
  }

  .philosophy blockquote {
    font-size: 36px;
  }

  .studio .section-heading {
    margin-bottom: 40px;
  }

  .studio-gallery {
    display: block;
  }

  .studio-gallery figure {
    height: 280px;
    margin-bottom: 12px;
  }

  .studio-gallery figure:first-child {
    height: 380px;
  }

  .studio-caption {
    display: block;
  }

  .studio-caption span {
    display: block;
    margin-top: 6px;
  }

  .about {
    padding: 70px 20px 0;
  }

  .about h2 {
    font-size: 52px;
  }

  .portrait-wrap {
    height: 400px;
  }

  .pricing-head {
    gap: 20px;
    margin-bottom: 40px;
  }

  .pricing h2 {
    font-size: 44px;
  }

  summary {
    min-height: 80px;
    padding: 0 8px;
  }

  summary strong {
    font-size: 23px;
  }

  .price-content {
    padding: 0 8px 24px 8px;
    display: block;
  }

  .price-content p {
    font-size: 13px;
    padding: 12px 0;
  }

  .contact {
    padding: 85px 20px;
  }

  .contact h2 {
    font-size: 56px;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .button {
    width: 100%;
  }

  .contact-card {
    padding: 26px 20px;
  }

  .contact-card address {
    font-size: 26px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

  .scroll-top-btn {
    right: 18px;
    bottom: 20px;
    width: 44px;
    height: 44px;
  }
}