:root {
  /* Brand palette — sampled directly from the SchönFärberei logo */
  --wine: #6d2b4c;          /* logo deep wine */
  --wine-deep: #4a1c33;     /* darker wine for depth */
  --plum: #8d546a;          /* logo dusty mauve */
  --plum-dark: #6d2b4c;     /* alias → deep wine for dark surfaces */
  --plum-soft: #b98aa0;
  --rose: #e4cfd8;
  --charcoal: #4f4c4d;      /* logo warm charcoal */
  /* Champagne accent — restrained metallic for a premium feel */
  --gold: #c2a05f;
  --gold-soft: #e0c896;
  --gold-line: linear-gradient(90deg, rgba(194,160,95,0), var(--gold) 50%, rgba(194,160,95,0));
  --ink: #3b3739;
  --ink-deep: #1b1316;
  --cream: #f8f2ef;
  --paper: #fffdfb;
  --sand: #ece1db;
  --line: rgba(76, 60, 67, .14);
  --shadow: 0 30px 80px rgba(58, 30, 42, .16);
  --shadow-soft: 0 18px 50px rgba(58, 30, 42, .10);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --container: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.skip-link { position: fixed; left: 20px; top: -100px; z-index: 999; padding: 10px 16px; background: var(--ink-deep); color: white; }
.skip-link:focus { top: 20px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 18px 0;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled {
  padding: 9px 0;
  background: rgba(255, 253, 251, .92);
  box-shadow: 0 10px 35px rgba(50, 37, 44, .08);
  backdrop-filter: blur(18px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 255px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.main-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.main-nav a { position: relative; }
.main-nav a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 0; height: 1px; background: linear-gradient(90deg, var(--gold), var(--wine)); transition: width .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { width: 100%; }
.nav-cta { padding: 12px 18px; border: 1px solid var(--wine); color: var(--wine); transition: .25s ease; }
.nav-cta:hover { background: var(--wine); color: white; box-shadow: 0 10px 24px rgba(109, 43, 76, .25); }
.nav-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); transition: .25s ease; }

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 80px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 6% 18%, rgba(185, 138, 160, .30), transparent 32%),
    radial-gradient(circle at 92% 78%, rgba(194, 160, 95, .12), transparent 34%),
    linear-gradient(140deg, var(--paper) 0%, var(--cream) 60%, #f1e6e3 100%);
  overflow: hidden;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 70px; }
.eyebrow { display: inline-flex; align-items: center; gap: 11px; margin: 0 0 22px; color: var(--wine); font-size: 12px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 26px; height: 1px; background: linear-gradient(90deg, var(--gold), var(--gold-soft)); }
.hero h1, .section h2 {
  margin: 0;
  color: var(--ink-deep);
  font-family: var(--serif);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(66px, 7.2vw, 112px); }
.hero h1 em, .section h2 em, blockquote em { color: var(--wine); font-weight: 500; font-style: italic; }
.hero-lead { max-width: 640px; margin: 30px 0 34px; font-size: 18px; font-weight: 300; color: #625e60; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 52px; align-items: center; justify-content: center; padding: 0 25px; border: 1px solid transparent; font-size: 12px; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--plum) 0%, var(--wine) 70%); color: white; box-shadow: 0 14px 34px rgba(109, 43, 76, .30); }
.button-primary:hover { background: linear-gradient(135deg, var(--wine) 0%, var(--wine-deep) 90%); box-shadow: 0 18px 40px rgba(109, 43, 76, .38); }
.button-ghost { border-color: rgba(109, 43, 76, .28); }
.button-ghost:hover { border-color: var(--wine); color: var(--wine); }
.hero-meta { display: flex; gap: 36px; margin-top: 56px; }
.hero-meta div { position: relative; padding-left: 16px; border-left: 1px solid var(--rose); }
.hero-meta strong { display: block; color: var(--ink-deep); font-family: var(--serif); font-size: 20px; font-weight: 600; line-height: 1.1; }
.hero-meta span { display: block; margin-top: 3px; color: #7a7477; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.hero-art { position: relative; }
.art-frame { position: relative; width: min(470px, 100%); margin-left: auto; padding: 22px; }
.art-panel { position: relative; }
.portrait { width: 100%; height: auto; border-radius: 14px; box-shadow: 0 30px 70px rgba(74, 28, 51, .22); }
.floating-note { position: absolute; left: -10px; bottom: 50px; z-index: 2; display: flex; align-items: center; gap: 13px; padding: 15px 19px; background: rgba(255, 253, 251, .94); box-shadow: 0 15px 45px rgba(54, 38, 46, .16); backdrop-filter: blur(10px); }
.note-icon { color: var(--gold); font-size: 20px; }
.floating-note strong, .floating-note small { display: block; }
.floating-note strong { font-family: var(--serif); font-size: 18px; line-height: 1.1; }
.floating-note small { color: #817a7d; font-size: 10px; letter-spacing: .07em; text-transform: uppercase; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { width: 360px; height: 360px; right: -180px; top: 7%; border: 1px solid rgba(143, 95, 118, .16); }
.hero-orb-two { width: 170px; height: 170px; left: 42%; bottom: -50px; background: rgba(216, 190, 200, .26); }
.hero-scroll { position: absolute; left: 30px; bottom: 36px; display: flex; align-items: center; gap: 12px; transform: rotate(-90deg); transform-origin: left bottom; color: #888083; font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.hero-scroll span { width: 48px; height: 1px; background: var(--plum-soft); }

.intro-strip { overflow: hidden; padding: 24px 0; background: linear-gradient(100deg, var(--wine-deep), var(--wine) 55%, var(--plum)); color: white; }
.marquee-track { display: flex; width: max-content; align-items: center; gap: 30px; animation: marquee 26s linear infinite; font-family: var(--serif); font-size: 26px; font-style: italic; letter-spacing: .02em; white-space: nowrap; }
.marquee-track i { color: var(--gold-soft); font-size: 15px; font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 120px 0; }
.section h2 { font-size: clamp(54px, 6vw, 84px); }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 70px; margin-bottom: 62px; }
.section-heading > p { margin: 0 0 6px; color: #716b6e; font-weight: 300; }
.section-heading.compact { grid-template-columns: 1fr; }
.services { background: var(--paper); }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { position: relative; overflow: hidden; min-height: 400px; padding: 40px 34px 30px; border: 1px solid var(--line); background: linear-gradient(170deg, #fff 0%, #fdf8f6 100%); display: flex; flex-direction: column; transition: transform .4s cubic-bezier(.2,.7,.2,1), box-shadow .4s ease, border-color .4s ease; }
.service-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: var(--gold-line); opacity: 0; transition: opacity .4s ease; }
.service-card:hover { transform: translateY(-8px); border-color: rgba(109,43,76,.32); box-shadow: var(--shadow); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { position: relative; background: linear-gradient(155deg, var(--wine) 0%, var(--wine-deep) 100%); color: white; border-color: transparent; box-shadow: 0 28px 70px rgba(74, 28, 51, .34); }
.service-card.featured::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 1px solid rgba(194, 160, 95, .35); }
.service-number { position: absolute; right: 25px; top: 20px; color: rgba(64, 61, 63, .35); font-size: 10px; letter-spacing: .12em; }
.featured .service-number { color: rgba(255,255,255,.45); }
.service-badge { position: absolute; right: 26px; bottom: 24px; color: var(--gold-soft); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; transform: rotate(-90deg) translateX(100%); transform-origin: right bottom; }
.service-icon { width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 50%; background: linear-gradient(150deg, var(--cream), #efe1e6); color: var(--wine); transition: background .35s ease, color .35s ease; }
.service-card:not(.featured):hover .service-icon { background: linear-gradient(150deg, var(--wine), var(--plum)); color: #fff; }
.service-icon svg { width: 31px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.featured .service-icon { background: rgba(255,255,255,.1); color: white; }
.service-card h3 { margin: 0 0 15px; font-family: var(--serif); font-size: 33px; line-height: 1.02; font-weight: 600; letter-spacing: -.01em; }
.service-card p { margin: 0; color: #746e71; font-size: 14px; font-weight: 300; }
.featured p { color: rgba(255,255,255,.74); }
.service-footer { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 26px; border-top: 1px solid var(--line); }
.featured .service-footer { border-color: rgba(255,255,255,.18); }
.service-footer::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.service-footer span { color: #8b8387; font-size: 10px; letter-spacing: .14em; line-height: 1.4; text-transform: uppercase; }
.featured .service-footer span { color: rgba(255,255,255,.7); }
.price-note { max-width: 640px; margin: 46px auto 0; color: #8b8587; font-family: var(--serif); font-size: 18px; font-style: italic; line-height: 1.5; text-align: center; }

.salon { background: var(--cream); }
.salon-grid { display: grid; grid-template-columns: .96fr 1.04fr; gap: 90px; align-items: center; }
.salon-visual { position: relative; min-height: 720px; }
.salon-card-main { position: absolute; inset: 0 60px 70px 0; overflow: hidden; background: linear-gradient(150deg, #b78ea0 0%, var(--wine) 70%, var(--wine-deep) 100%); box-shadow: var(--shadow); }
.salon-lines { position: absolute; inset: 0; opacity: .2; background: repeating-linear-gradient(90deg, transparent 0 70px, rgba(255,255,255,.4) 71px 72px); }
.mirror { position: absolute; left: 17%; top: 10%; width: 66%; height: 60%; border: 12px solid #e9d9d4; border-radius: 48% 48% 6px 6px; background: linear-gradient(150deg, #e9e0dd, #bda9af); box-shadow: 0 22px 40px rgba(43, 28, 35, .22); }
.mirror-glow { position: absolute; inset: 0; background: linear-gradient(118deg, rgba(255,255,255,.65), transparent 48%); }
.mirror-vase { position: absolute; left: 50%; bottom: -44%; width: 82px; height: 120px; transform: translateX(-50%); background: #f3e7e1; border-radius: 7px 7px 40% 40%; box-shadow: 0 14px 25px rgba(60,44,50,.2); }
.mirror-vase span, .mirror-vase i, .mirror-vase b { position: absolute; left: 50%; bottom: 100px; width: 2px; height: 105px; background: var(--plum-dark); transform-origin: bottom; }
.mirror-vase span { transform: rotate(-22deg); }
.mirror-vase i { transform: rotate(4deg); }
.mirror-vase b { transform: rotate(23deg); }
.mirror-vase span::before, .mirror-vase i::before, .mirror-vase b::before { content: ""; position: absolute; left: -7px; top: -8px; width: 15px; height: 29px; border-radius: 50%; background: #dbc0ca; }
.console { position: absolute; left: 11%; right: 11%; bottom: 8%; height: 19%; padding: 20px; background: #382b31; box-shadow: 0 20px 35px rgba(35,23,28,.25); }
.console span { display: block; width: 64%; height: 10px; margin: 14px auto; background: rgba(255,255,255,.08); }
.salon-card-detail { position: absolute; right: 0; bottom: 0; width: 255px; padding: 30px; background: var(--paper); box-shadow: var(--shadow); }
.detail-label { display: block; margin-bottom: 22px; color: var(--plum); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.salon-card-detail strong { font-family: var(--serif); color: var(--ink-deep); font-size: 28px; line-height: 1.12; font-weight: 600; }
.salon-copy .large-copy { margin: 32px 0 18px; color: var(--ink-deep); font-family: var(--serif); font-size: 29px; line-height: 1.25; }
.salon-copy > p:not(.eyebrow):not(.large-copy) { color: #746e71; font-weight: 300; }
.salon-values { margin: 38px 0; border-top: 1px solid var(--line); }
.salon-values > div { display: grid; grid-template-columns: 38px 1fr; column-gap: 13px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.salon-values span { grid-row: 1 / 3; color: var(--plum); font-size: 10px; }
.salon-values strong { color: var(--ink-deep); font-family: var(--serif); font-size: 21px; line-height: 1.1; }
.salon-values p { margin: 3px 0 0; color: #857e81; font-size: 12px; }
.text-link { display: inline-flex; align-items: center; gap: 22px; padding-bottom: 7px; border-bottom: 1px solid var(--wine); color: var(--wine); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: gap .25s ease; }
.text-link:hover { gap: 28px; }
.text-link span { font-size: 18px; transition: transform .25s ease; }
.text-link:hover span { transform: translate(4px, -4px); }

.philosophy { position: relative; overflow: hidden; background: radial-gradient(circle at 50% 0%, var(--wine) 0%, var(--wine-deep) 55%, #2e0f20 100%); color: white; text-align: center; }
.philosophy::before, .philosophy::after { content: ""; position: absolute; border: 1px solid rgba(194,160,95,.18); border-radius: 50%; }
.philosophy::before { width: 440px; height: 440px; left: -260px; top: -170px; }
.philosophy::after { width: 260px; height: 260px; right: -100px; bottom: -90px; }
.philosophy-inner { max-width: 970px; }
.eyebrow.light { color: var(--gold-soft); }
.philosophy blockquote { margin: 25px 0 35px; font-family: var(--serif); font-size: clamp(42px, 5.2vw, 72px); font-weight: 400; line-height: 1.1; letter-spacing: -.02em; }
.philosophy blockquote em { color: var(--gold-soft); }
.quote-line { width: 90px; height: 1px; margin: 0 auto 17px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.philosophy-inner > p:last-child { color: #aaa2a5; font-size: 10px; letter-spacing: .19em; text-transform: uppercase; }

.testimonials { background: var(--paper); }
.testimonial-slider { display: grid; grid-template-columns: 56px 1fr 56px; gap: 25px; align-items: center; }
.slides { min-height: 360px; position: relative; }
.testimonial { position: absolute; inset: 0; padding: 58px 70px; background: var(--cream); opacity: 0; transform: translateX(30px); pointer-events: none; transition: opacity .45s ease, transform .45s ease; }
.testimonial.active { opacity: 1; transform: translateX(0); pointer-events: auto; }
.stars { color: var(--gold); font-size: 13px; letter-spacing: .17em; }
.testimonial > p { max-width: 850px; margin: 30px auto 35px; color: var(--ink-deep); font-family: var(--serif); font-size: clamp(29px, 3.4vw, 46px); line-height: 1.2; text-align: center; }
.testimonial > div:last-child { text-align: center; }
.testimonial strong, .testimonial span { display: block; }
.testimonial strong { font-family: var(--serif); font-size: 19px; }
.testimonial span { color: #8c8588; font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.slider-button { width: 56px; height: 56px; border: 1px solid var(--line); background: transparent; cursor: pointer; transition: .25s ease; }
.slider-button:hover { border-color: var(--plum); color: var(--plum); transform: translateY(-2px); }

.booking { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--plum) 0%, var(--wine) 45%, var(--wine-deep) 100%); color: white; }
.booking::before { content: ""; position: absolute; width: 420px; height: 420px; right: -160px; top: -150px; border-radius: 50%; border: 1px solid rgba(194,160,95,.18); pointer-events: none; }
.booking-shell { position: relative; z-index: 1; display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.booking h2 { color: white; }
.booking-copy > p:not(.eyebrow) { max-width: 500px; color: rgba(255,255,255,.72); font-weight: 300; }
.booking-info { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.booking-info > div { padding-top: 20px; border-top: 1px solid rgba(255,255,255,.2); }
.booking-info span, .booking-info strong { display: block; }
.booking-info span { margin-bottom: 8px; color: rgba(255,255,255,.55); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.booking-info strong { font-family: var(--serif); font-size: 19px; font-weight: 500; line-height: 1.45; }
.booking-call { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 56px 44px; background: var(--paper); color: var(--ink); box-shadow: 0 25px 70px rgba(30,18,24,.25); }
.booking-call::before { content: "✦"; margin-bottom: 22px; color: var(--gold); font-size: 24px; }
.call-label { color: var(--wine); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.call-number { margin: 16px 0 4px; color: var(--ink-deep); font-family: var(--serif); font-size: clamp(40px, 5vw, 58px); font-weight: 600; line-height: 1; letter-spacing: -.01em; transition: color .25s ease; }
.call-number:hover { color: var(--wine); }
.call-hint { max-width: 320px; margin: 14px 0 32px; color: #746e71; font-size: 14px; font-weight: 300; }
.button-light { background: linear-gradient(135deg, var(--wine), var(--wine-deep)); color: white; white-space: nowrap; }
.button-light:hover { background: linear-gradient(135deg, var(--plum), var(--wine)); box-shadow: 0 14px 30px rgba(109,43,76,.3); }

.contact { position: relative; padding: 75px 0 28px; background: linear-gradient(180deg, #f3ebe7, #ede2dd); }
.contact::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 1px; background: var(--gold-line); }
.contact-grid { display: grid; grid-template-columns: 1.7fr 1fr .8fr .8fr; gap: 60px; }
.footer-logo { width: 280px; margin-bottom: 22px; }
.contact-grid > div:first-child p { max-width: 390px; color: #756e71; font-size: 13px; }
.contact h2 { margin: 4px 0 20px; color: var(--ink-deep); font-family: var(--serif); font-size: 22px; font-weight: 600; }
.contact-grid a { display: block; margin: 8px 0; color: #6e676a; font-size: 12px; }
.contact-grid a:hover { color: var(--wine); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 65px; padding-top: 22px; border-top: 1px solid rgba(64,61,63,.13); color: #8b8487; font-size: 10px; }
.footer-bottom div { display: flex; gap: 22px; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 46px; height: 46px; border: 0; border-radius: 50%; background: linear-gradient(135deg, var(--plum), var(--wine)); color: white; box-shadow: 0 12px 25px rgba(71,43,56,.30); opacity: 0; visibility: hidden; transform: translateY(10px); cursor: pointer; transition: .25s ease; }
.back-to-top:hover { box-shadow: 0 16px 32px rgba(71,43,56,.40); transform: translateY(-2px); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  :root { --container: min(930px, calc(100vw - 40px)); }
  .brand { width: 210px; }
  .main-nav { gap: 20px; }
  .hero-grid { gap: 30px; }
  .hero h1 { font-size: clamp(58px, 8vw, 86px); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .salon-grid { gap: 50px; }
  .booking-shell { gap: 40px; }
  .contact-grid { grid-template-columns: 1.6fr 1fr 1fr; }
  .contact-grid > div:last-child { display: none; }
}

@media (max-width: 820px) {
  .site-header { background: rgba(255,253,251,.92); backdrop-filter: blur(14px); }
  .brand { width: 195px; }
  .nav-toggle { display: block; z-index: 3; }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 26px; background: var(--paper); font-family: var(--serif); font-size: 28px; letter-spacing: 0; text-transform: none; opacity: 0; visibility: hidden; transform: translateY(-12px); transition: .3s ease; }
  .main-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-cta { font-family: var(--sans); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; }
  .hero { padding-top: 125px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-meta { justify-content: center; }
  .hero-art { margin-top: 25px; }
  .art-frame { margin: auto; }
  .floating-note { left: 0; }
  .hero-scroll { display: none; }
  .section { padding: 90px 0; }
  .section-heading, .salon-grid, .booking-shell { grid-template-columns: 1fr; }
  .section-heading { gap: 22px; margin-bottom: 45px; }
  .salon-grid { gap: 55px; }
  .salon-visual { min-height: 620px; }
  .booking-copy { text-align: center; }
  .booking-copy > p:not(.eyebrow) { margin-inline: auto; }
  .booking-info { text-align: left; }
  .contact-grid { grid-template-columns: 1.4fr 1fr; }
  .contact-grid > div:nth-child(3) { display: none; }
}

@media (max-width: 590px) {
  :root { --container: calc(100vw - 30px); }
  body { font-size: 15px; }
  .brand { width: 174px; }
  .hero { min-height: auto; padding: 120px 0 70px; }
  .hero h1 { font-size: 57px; }
  .hero-lead { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-meta { gap: 10px; margin-top: 38px; }
  .hero-meta div { flex: 1; padding-left: 9px; text-align: left; }
  .hero-meta strong { font-size: 16px; }
  .hero-meta span { font-size: 8px; }
  .art-frame { width: min(360px, 100%); }
  .floating-note { bottom: 45px; padding: 12px 14px; }
  .section { padding: 75px 0; }
  .section h2 { font-size: 52px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; }
  .salon-visual { min-height: 520px; }
  .salon-card-main { inset: 0 25px 55px 0; }
  .salon-card-detail { width: 210px; padding: 22px; }
  .salon-card-detail strong { font-size: 23px; }
  .testimonial-slider { grid-template-columns: 1fr; }
  .slides { min-height: 430px; }
  .testimonial { padding: 42px 24px; }
  .testimonial > p { font-size: 31px; }
  .slider-button { position: absolute; z-index: 2; margin-top: 455px; }
  .slider-button.prev { left: calc(50% - 64px); }
  .slider-button.next { right: calc(50% - 64px); }
  .testimonials { padding-bottom: 150px; }
  .booking-info { grid-template-columns: 1fr; }
  .booking-call { padding: 40px 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid > div:nth-child(3) { display: block; }
  .footer-bottom { flex-direction: column; margin-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
