/* Elegance Nails by Martina — palette pulled from the salon
   Tweak these variables later without touching the rest of the CSS. */
:root {
  --blush: #f6ecec;
  --rose: #c9a8ab;
  --rose-deep: #9b6b73;
  --rose-ink: #7a4e56;
  --gold: #c4a574;
  --gold-deep: #a6854d;
  --ivory: #fbf7f4;
  --marble: #f4eee9;
  --ink: #2c2426;
  --muted: #7a6e70;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(44, 36, 38, 0.12);
  --radius: 22px;
  --header-h: 76px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-script: "Allura", "Cormorant Garamond", cursive;
  --font-sans: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.01em;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-x: clip;
}

body.is-locked {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(196, 165, 116, 0.28);
}

a,
button,
.gallery-item,
.lang-btn,
.menu-toggle {
  touch-action: manipulation;
}

:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  -webkit-appearance: none;
  appearance: none;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--ivory);
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 0.8rem;
  font-weight: 500;
}

.lede {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 4.2vw, 1.45rem);
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover {
    transform: translateY(-1px);
  }
}

.btn-gold {
  background: linear-gradient(180deg, #d4b98a 0%, var(--gold) 100%);
  color: #2a2218;
  box-shadow: 0 8px 20px rgba(166, 133, 77, 0.28);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(44, 36, 38, 0.18);
  color: var(--ink);
}

.text-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--rose-ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  font-weight: 500;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: var(--safe-top);
  min-height: calc(var(--header-h) + var(--safe-top));
  background: rgba(251, 247, 244, 0.92);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(201, 168, 171, 0.45);
  background: rgba(251, 247, 244, 0.94);
}

.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 max(1rem, var(--safe-right)) 0 max(1rem, var(--safe-left));
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-width: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--rose-deep);
  box-shadow: inset 0 0 0 3px var(--ivory), inset 0 0 0 4px var(--gold);
}

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

.brand-script,
.hero-script {
  font-family: var(--font-script);
  color: var(--gold-deep);
  line-height: 0.85;
}

.brand-script {
  font-size: 1.7rem;
}

.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: var(--muted);
}

.nav {
  display: none;
  margin-left: auto;
  gap: 1.35rem;
}

.nav a {
  font-size: 0.86rem;
  color: var(--muted);
  position: relative;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--ink);
}

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.header-cta {
  display: none;
}

.lang-toggle {
  display: flex;
  border: 1px solid rgba(44, 36, 38, 0.12);
  border-radius: 999px;
  overflow: hidden;
}

.lang-btn {
  background: transparent;
  border: 0;
  min-height: 40px;
  min-width: 40px;
  padding: 0.35rem 0.65rem;
  cursor: pointer;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.lang-btn.is-active {
  background: var(--ink);
  color: var(--ivory);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(44, 36, 38, 0.14);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 0;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 1.5px;
  background: var(--ink);
}

.menu-toggle::before { top: 17px; }
.menu-toggle::after { bottom: 17px; }

body.nav-open .menu-toggle::before {
  top: 21px;
  transform: rotate(45deg);
}

body.nav-open .menu-toggle::after {
  bottom: 21px;
  transform: rotate(-45deg);
}

@media (max-width: 899px) {
  .nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: calc(var(--header-h) + var(--safe-top));
    right: 0;
    left: 0;
    bottom: 0;
    background: var(--ivory);
    padding: 1.2rem max(1.5rem, var(--safe-right)) max(7rem, calc(6rem + var(--safe-bottom))) max(1.5rem, var(--safe-left));
    border-bottom: 1px solid rgba(201, 168, 171, 0.4);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transition: transform 0.28s ease, opacity 0.28s ease;
  }

  body.nav-open .nav {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    color: var(--ink);
    padding: 0.7rem 0;
    min-height: 48px;
  }
}

/* Hero */
.hero {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem max(1rem, var(--safe-right)) 2.6rem max(1rem, var(--safe-left));
  display: grid;
  gap: 1.6rem;
  scroll-margin-top: calc(var(--header-h) + var(--safe-top));
}

.hero-copy h1 {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.1rem;
}

.hero-script {
  font-size: clamp(3.1rem, 16vw, 7.4rem);
  overflow-wrap: anywhere;
}

.hero-line {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: lowercase;
  color: var(--rose-ink);
  margin-top: 0.15rem;
}

.hero-lead {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.4rem 0 1.1rem;
}

.hero-meta {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.hero-meta a {
  color: var(--rose-ink);
}

.hero-visual {
  position: relative;
}

.hero-arch {
  width: min(100%, 420px);
  margin-left: auto;
  aspect-ratio: 3 / 4.2;
  overflow: hidden;
  border-radius: 220px 220px 28px 28px;
  box-shadow: var(--shadow);
  background: var(--blush);
}

.hero-arch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 38% 10%;
}

.hero-float {
  display: none;
}

.hero-caption {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: right;
}

/* Values */
.values {
  background: linear-gradient(180deg, var(--blush) 0%, var(--ivory) 100%);
  border-block: 1px solid rgba(201, 168, 171, 0.35);
}

.values-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.2rem max(1rem, var(--safe-right)) 2.2rem max(1rem, var(--safe-left));
  display: grid;
  gap: 1.6rem;
}

.values article h2 {
  font-size: 1.7rem;
  margin: 0.2rem 0 0.45rem;
}

.values article p {
  color: var(--muted);
}

.value-num {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
}

/* About */
.about,
.services,
.gallery,
.salon,
.visit,
.faq {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.4rem max(1rem, var(--safe-right)) 3.4rem max(1rem, var(--safe-left));
  scroll-margin-top: calc(var(--header-h) + var(--safe-top) + 12px);
}

.about {
  display: grid;
  gap: 2rem;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: end;
}

.about-side {
  display: none;
}

.about-main,
.about-side {
  margin: 0;
  overflow: hidden;
  background: var(--blush);
}

.about-main {
  border-radius: 180px 180px 20px 20px;
}

.about-side {
  border-radius: 20px;
}

.about-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main img {
  aspect-ratio: 3 / 4;
  object-position: 0% 14%;
}

.about-side img {
  aspect-ratio: 3 / 4;
  object-position: center;
}

.about-copy h2 {
  font-size: clamp(2.1rem, 8vw, 3.6rem);
  margin-bottom: 1rem;
}

.about-copy p {
  color: var(--muted);
}

.about-copy .lede {
  color: var(--ink);
  margin-bottom: 1rem;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 500;
}

.about-copy .about-close {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink);
  margin-top: 0.4rem;
}

/* Services */
.section-head {
  max-width: 38rem;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2.1rem, 8vw, 3.5rem);
  margin-bottom: 0.7rem;
}

.section-lead {
  color: var(--muted);
}

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 171, 0.35);
  padding: 1.4rem 1.3rem 1.5rem;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .service-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
  }

  .gallery-item:hover img,
  .visit-map:hover img {
    transform: scale(1.04);
  }

  .btn-gold:hover {
    background: linear-gradient(180deg, #ddc396 0%, var(--gold-deep) 100%);
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--rose-ink);
  }

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

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

.service-icon {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold-deep);
  margin-bottom: 0.7rem;
}

.service-card h3 {
  font-size: 1.55rem;
  margin-bottom: 0.45rem;
}

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

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.gallery-item {
  padding: 0;
  border: 0;
  background: var(--blush);
  border-radius: 18px;
  overflow: hidden;
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Salon mosaic */
.salon-mosaic {
  display: grid;
  gap: 0.8rem;
}

.salon-mosaic figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--blush);
}

.salon-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.salon-mosaic figcaption {
  padding: 0.7rem 0.2rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Visit */
.visit {
  display: grid;
  gap: 1.2rem;
  padding-bottom: calc(7.2rem + var(--safe-bottom));
}

.visit-card {
  background: var(--white);
  border: 1px solid rgba(201, 168, 171, 0.4);
  border-radius: 28px;
  padding: 1.6rem 1.2rem 1.6rem;
}

.visit-card h2 {
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  margin-bottom: 1.4rem;
}

.visit-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.visit-list span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 0.25rem;
}

.visit-list strong {
  font-weight: 500;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  display: block;
  white-space: pre-line;
}

.visit-list em {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.15rem;
}

.visit-seo {
  color: var(--muted);
  margin: 0 0 1.3rem;
  max-width: 36rem;
}

.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(201, 168, 171, 0.4);
  border-radius: 16px;
  padding: 0.2rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  padding: 0.95rem 0;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  color: var(--muted);
  padding-bottom: 1rem;
}

.visit-map {
  display: block;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(201, 168, 171, 0.4);
  background: var(--blush);
}

.visit-map img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  object-position: center 35%;
  transition: transform 0.5s ease;
}

.visit-actions .btn {
  flex: 1 1 10rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid rgba(201, 168, 171, 0.4);
  background: #2c2426;
  color: #f3e4e6;
  padding: 2.2rem max(1rem, var(--safe-right)) calc(6.4rem + var(--safe-bottom)) max(1rem, var(--safe-left));
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.site-footer .brand-script {
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
}

.site-footer .brand-sub {
  color: rgba(243, 228, 230, 0.7);
}

.footer-meta {
  font-size: 0.92rem;
  color: rgba(243, 228, 230, 0.78);
  line-height: 1.55;
}

.footer-meta p {
  margin: 0;
}

.footer-copy,
.footer-links {
  font-size: 0.88rem;
  color: rgba(243, 228, 230, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.2rem;
}

.footer-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-copy {
  max-width: 1240px;
  margin: 1.6rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(243, 228, 230, 0.12);
}

.footer-credit {
  max-width: 1240px;
  margin: 0.45rem auto 0;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: rgba(243, 228, 230, 0.45);
}

.mobile-book {
  position: fixed;
  left: max(1rem, var(--safe-left));
  right: max(1rem, var(--safe-right));
  bottom: max(1rem, var(--safe-bottom));
  z-index: 35;
  background: linear-gradient(180deg, #d4b98a 0%, var(--gold) 100%);
  color: #2a2218;
  text-align: center;
  padding: 0.95rem 1rem;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  box-shadow: 0 12px 30px rgba(44, 36, 38, 0.25);
}

body.is-dialog .mobile-book,
body.nav-open .mobile-book {
  visibility: hidden;
  pointer-events: none;
}

/* Modal */
.modal[hidden],
.lightbox[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 36, 38, 0.46);
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: var(--ivory);
  width: min(520px, calc(100% - 1.6rem));
  margin: max(4vh, var(--safe-top)) auto;
  border-radius: 24px;
  padding: 1.6rem 1.3rem max(1.4rem, var(--safe-bottom));
  max-height: 88vh;
  max-height: 88dvh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: var(--shadow);
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--muted);
}

.modal-panel h2 {
  font-size: 2.1rem;
  margin-bottom: 0.5rem;
}

.modal-lead,
.modal-alt {
  color: var(--muted);
  font-size: 0.95rem;
}

#book-form {
  display: grid;
  gap: 0.8rem;
  margin: 1.2rem 0 1rem;
}

#book-form label {
  display: grid;
  gap: 0.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose-deep);
}

#book-form input,
#book-form select,
#book-form textarea {
  background: var(--white);
  border: 1px solid rgba(201, 168, 171, 0.5);
  border-radius: 12px;
  padding: 0.8rem 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  color: var(--ink);
  min-height: 48px;
  width: 100%;
  max-width: 100%;
}

#book-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%239b6b73' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.4rem;
}

#book-form textarea {
  min-height: 5.5rem;
  resize: vertical;
}

#book-form input:focus,
#book-form select:focus,
#book-form textarea:focus {
  outline: 2px solid var(--gold);
  border-color: transparent;
}

.full-btn {
  width: 100%;
  margin-top: 0.3rem;
}

.book-success {
  margin-top: 0.4rem;
}

.book-success[hidden] {
  display: none;
}

.book-success-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--ink);
}

.book-message {
  white-space: pre-wrap;
  background: var(--white);
  border: 1px solid rgba(201, 168, 171, 0.5);
  border-radius: 12px;
  padding: 0.85rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 0.9rem;
  max-height: 10rem;
  overflow: auto;
}

.book-success-actions {
  display: grid;
  gap: 0.55rem;
}

.book-success-actions .btn {
  width: 100%;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(28, 22, 24, 0.92);
  display: none;
  place-items: center;
  padding: 3.6rem 0.6rem 5.6rem;
  touch-action: pan-y;
}

.lightbox.is-open {
  display: grid;
}

.lightbox img {
  width: auto;
  height: auto;
  max-width: min(92vw, 900px);
  max-height: 78vh;
  max-height: 78dvh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-nav {
  position: absolute;
  top: auto;
  bottom: max(1rem, var(--safe-bottom));
  transform: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(251, 247, 244, 0.12);
  color: var(--ivory);
  font-size: 2rem;
  cursor: pointer;
}

.lightbox-nav.prev { left: max(0.8rem, var(--safe-left)); }
.lightbox-nav.next { right: max(0.8rem, var(--safe-right)); }
.lightbox-close { color: var(--ivory); }

@media (min-width: 700px) {
  .lightbox {
    padding: 0;
  }

  .lightbox img {
    max-height: 86vh;
    max-height: 86dvh;
  }

  .lightbox-nav {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
  .values-inner {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .salon-mosaic {
    grid-template-columns: 1fr 1fr;
  }

  .salon-mosaic .span-2 {
    grid-column: 1 / -1;
  }

  .salon-mosaic .span-2 img {
    aspect-ratio: 16 / 9;
  }
}

@media (min-width: 900px) {
  .header-inner {
    gap: 1.5rem;
    padding: 0 max(1.4rem, var(--safe-right)) 0 max(1.4rem, var(--safe-left));
  }

  .nav {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .header-actions {
    margin-left: 0;
  }

  .header-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    min-height: calc(100vh - var(--header-h) - var(--safe-top));
    min-height: calc(100dvh - var(--header-h) - var(--safe-top));
    padding: 1.5rem max(1.4rem, var(--safe-right)) 3.5rem max(1.4rem, var(--safe-left));
  }

  .hero-visual {
    min-height: 420px;
  }

  .hero-float {
    display: block;
    position: absolute;
    width: 42%;
    left: -6%;
    bottom: 8%;
    border-radius: 160px 160px 16px 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 4px solid var(--ivory);
  }

  .hero-float img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center 60%;
  }

  .about {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
    gap: 4rem;
  }

  .about-photos {
    grid-template-columns: 1.3fr 0.9fr;
  }

  .about-side {
    display: block;
    margin-bottom: 12%;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .visit {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: stretch;
    padding-bottom: 4.5rem;
  }

  .visit-card {
    padding: 1.8rem 1.4rem;
  }

  .visit-map,
  .visit-map img {
    min-height: 100%;
    height: 100%;
  }

  .mobile-book {
    display: none;
  }

  .site-footer {
    padding: 2.6rem max(1.4rem, var(--safe-right)) calc(2.2rem + var(--safe-bottom)) max(1.4rem, var(--safe-left));
  }

  .footer-inner {
    grid-template-columns: 1.1fr 1.4fr auto;
    align-items: center;
    gap: 2rem;
  }

  .footer-links {
    justify-content: flex-end;
  }
}

@media (min-width: 1100px) {
  .salon-mosaic {
    grid-template-columns: repeat(6, 1fr);
  }

  .salon-mosaic figure:nth-child(1),
  .salon-mosaic figure:nth-child(5) {
    grid-column: span 6;
  }

  .salon-mosaic figure:nth-child(2),
  .salon-mosaic figure:nth-child(3),
  .salon-mosaic figure:nth-child(4) {
    grid-column: span 2;
  }

  .salon-mosaic .span-2 {
    grid-column: span 6;
  }
}

@media (max-width: 379px) {
  .brand-script { font-size: 1.35rem; }
  .brand-mark { width: 32px; height: 32px; font-size: 1rem; }
  .header-inner { gap: 0.45rem; }
  .hero-actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
