:root {
  --bg: #f8f2e9;
  --bg-deep: #15382d;
  --surface: rgba(255, 250, 244, 0.76);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --card: rgba(255, 248, 239, 0.92);
  --text: #24352e;
  --muted: #66756f;
  --line: rgba(36, 53, 46, 0.1);
  --primary: #1d4335;
  --primary-soft: #2b5a49;
  --accent: #c8a96b;
  --accent-soft: #ecd9b2;
  --champagne: #f4e8d5;
  --white: #fffdfa;
  --shadow: 0 24px 60px rgba(21, 56, 45, 0.12);
}

* {
   
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(200, 169, 107, 0.22), transparent 28%),
    radial-gradient(circle at right 12%, rgba(29, 67, 53, 0.12), transparent 26%),
    linear-gradient(180deg, #fffaf5 0%, var(--bg) 100%);
  line-height: 1.6;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
}

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

.page-glow {
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(18px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.page-glow-left {
  top: -140px;
  left: -120px;
  background: radial-gradient(circle, rgba(200, 169, 107, 0.34), transparent 68%);
}

.page-glow-right {
  right: -120px;
  top: 260px;
  background: radial-gradient(circle, rgba(29, 67, 53, 0.18), transparent 68%);
}

.announcement-bar,
.site-shell {
  position: relative;
  z-index: 1;
}

.announcement-bar {
  width: min(1240px, calc(100% - 32px));
  margin: 18px auto 0;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: #f9f4ec;
  border-radius: 999px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 18px 40px rgba(29, 67, 53, 0.2);
}

.announcement-bar p {
  margin: 0;
  font-size: 0.95rem;
}

.announcement-bar a {
  white-space: nowrap;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(13, 34, 27, 0.14);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.announcement-bar a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 18px 30px rgba(13, 34, 27, 0.18);
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 16px auto 40px;
}

.navbar,
.hero,
.intro-section,
.services,
.gallery-section,
.features,
.contact-band,
.location-section,
.faq,
.footer {
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.navbar {
  border-radius: 28px;
  padding: 18px 24px;
  display: grid;
  gap: 18px;
}

.navbar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.navbar-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(36, 53, 46, 0.1);
}

.brand,
h1,
h2,
h3,
h4,
.hero-card p,
.hero-photo figcaption p,
.hero-info-panel p,
.gallery-overlay p {
  font-family: "Cinzel", serif;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.brand span {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--primary);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(29, 67, 53, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.nav-links,
.hero-actions,
.stacked-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-links {
  justify-content: flex-start;
  flex-wrap: wrap;
}

.nav-spotlight {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(29, 67, 53, 0.94) 0%, rgba(50, 89, 72, 0.94) 100%);
  color: #fffdfa;
  box-shadow: 0 14px 30px rgba(21, 56, 45, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-spotlight span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 250, 244, 0.78);
}

.nav-spotlight strong {
  font-size: 1rem;
  line-height: 1.3;
}

.nav-links a,
.ghost-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
  color: var(--primary);
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 10px 22px rgba(29, 67, 53, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.nav-links a,
.ghost-btn,
.secondary-btn,
.primary-btn {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 13px 20px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, #d5b677 0%, #bd9652 58%, #a87b36 100%);
  color: #fffdfa;
  box-shadow: 0 16px 34px rgba(183, 143, 77, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease,
    background 180ms ease;
}

.menu-toggle:hover,
.menu-toggle[aria-expanded="true"] {
  transform: translateY(-2px);
  background: var(--primary);
  color: #fffdfa;
  border-color: rgba(29, 67, 53, 0.24);
  box-shadow: 0 16px 30px rgba(21, 56, 45, 0.18);
}

.nav-spotlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(21, 56, 45, 0.24);
  filter: saturate(1.05) brightness(1.02);
}

.nav-links a:hover,
.ghost-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
  background: var(--primary);
  color: #fffdfa;
  border-color: rgba(29, 67, 53, 0.2);
  box-shadow: 0 18px 30px rgba(21, 56, 45, 0.18);
  filter: brightness(1.02);
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(183, 143, 77, 0.38);
  filter: brightness(1.05) saturate(1.03);
}

.announcement-bar a:active,
.menu-toggle:active,
.nav-spotlight:active,
.nav-links a:active,
.ghost-btn:active,
.secondary-btn:active,
.primary-btn:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.announcement-bar a:focus-visible,
.menu-toggle:focus-visible,
.nav-spotlight:focus-visible,
.nav-links a:focus-visible,
.ghost-btn:focus-visible,
.secondary-btn:focus-visible,
.primary-btn:focus-visible {
  outline: 3px solid rgba(200, 169, 107, 0.48);
  outline-offset: 3px;
}

.hero,
.intro-section,
.services,
.gallery-section,
.features,
.location-section,
.faq,
.footer {
  margin-top: 22px;
  border-radius: 36px;
}

.hero {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  overflow: hidden;
}

.eyebrow,
.section-heading p,
.feature-story > p,
.hero-card p,
.hero-photo figcaption p,
.hero-info-panel p,
.gallery-overlay p {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.76rem;
  font-weight: 700;
}

h1 {
  margin: 18px 0 16px;
  font-size: clamp(3rem, 6vw, 5.2rem);
  line-height: 1;
  max-width: 12ch;
  color: var(--primary);
}

.hero-text,
.intro-grid p,
.service-card p,
.feature-story p:last-child,
.feature-points p,
.location-details p,
.faq-list p,
.footer p,
.hero-metrics span,
.section-note {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

.hero-metrics {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.hero-metrics li,
.intro-grid article,
.service-card,
.feature-points article,
.location-details article,
.faq-list details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.hero-metrics li {
  padding: 18px;
}

.hero-metrics strong,
.intro-grid h3,
.service-card h3,
.feature-points h3,
.location-details h3,
.faq summary,
.contact-band h3 {
  display: block;
  margin-bottom: 8px;
  font-size: 1.08rem;
  color: var(--primary);
}

.hero-visual {
  display: grid;
  gap: 18px;
}

.hero-photo,
.gallery-photo {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  min-height: 220px;
  box-shadow: 0 24px 40px rgba(21, 56, 45, 0.16);
  background: #dfe6df;
}

.hero-photo img,
.gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo::after,
.gallery-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 17, 14, 0.02) 18%, rgba(8, 17, 14, 0.7) 100%);
}

.hero-photo figcaption,
.gallery-overlay {
  position: relative;
  z-index: 1;
  color: #fffdf9;
  padding: 24px;
}

.hero-photo figcaption {
  position: absolute;
  inset: auto 0 0;
}

.gallery-overlay {
  position: absolute;
  inset: auto 0 0;
}

.hero-photo-feature {
  min-height: 330px;
}

.hero-photo-feature h2 {
  margin: 10px 0 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  max-width: 12ch;
}

.hero-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-photo-tall {
  grid-row: span 2;
  min-height: 430px;
}

.hero-photo-small {
  min-height: 205px;
}

.hero-photo-tall h3,
.hero-photo-small h3,
.gallery-overlay h3 {
  margin: 10px 0 0;
  line-height: 1.2;
}

.hero-info-panel {
  min-height: 205px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 30px;
  color: #fffdfa;
  background:
    linear-gradient(180deg, rgba(10, 18, 15, 0.08), rgba(10, 18, 15, 0.62)),
    linear-gradient(145deg, #1d4335 0%, #355f4e 50%, #b99659 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 24px 40px rgba(21, 56, 45, 0.16);
}

.hero-info-panel p {
  color: #f2dcc0;
}

.hero-info-panel h3 {
  margin: 10px 0 0;
  color: inherit;
  line-height: 1.35;
  font-size: 1.35rem;
}

.hero-grid,
.gallery-grid,
.intro-grid,
.service-grid,
.feature-points,
.location-grid {
  display: grid;
  gap: 18px;
}

.intro-section,
.services,
.gallery-section,
.features,
.location-section,
.faq {
  padding: 32px;
}

.section-heading,
.section-heading-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.section-heading h2,
.feature-story h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--primary);
  max-width: 15ch;
}

.section-note {
  max-width: 34ch;
}

.intro-grid {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.intro-grid article,
.service-card,
.feature-points article,
.location-details article {
  padding: 24px;
}

.services {
  background: linear-gradient(180deg, rgba(255, 250, 244, 0.86) 0%, rgba(246, 238, 225, 0.95) 100%);
}

.service-grid {
  margin-top: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-showcase {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-photo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-height: 280px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.service-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 27, 21, 0.08) 15%, rgba(12, 27, 21, 0.76) 100%);
}

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

.service-photo figcaption {
  position: absolute;
  inset: auto 20px 20px 20px;
  z-index: 1;
  color: #fff8f0;
}

.service-photo figcaption p {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: rgba(255, 248, 240, 0.82);
}

.service-photo figcaption h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #ffffff;
}

.lightbox-trigger {
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.lightbox-trigger:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 46px rgba(21, 56, 45, 0.2);
  filter: saturate(1.04);
}

.lightbox-trigger:focus-visible {
  outline: 3px solid rgba(200, 169, 107, 0.48);
  outline-offset: 4px;
}

.salon-highlights {
  margin-top: 22px;
  padding: 32px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.92) 0%, rgba(245, 236, 222, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
}

.highlight-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.highlight-card {
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(29, 67, 53, 0.08);
  box-shadow: 0 16px 34px rgba(21, 56, 45, 0.08);
}

.highlight-card h3 {
  margin: 18px 0 10px;
  font-size: 1.12rem;
  color: var(--primary);
}

.highlight-card p {
  margin: 0;
  color: var(--muted);
}

.highlight-icon {
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(29, 67, 53, 0.12) 0%, rgba(200, 169, 107, 0.22) 100%);
  border: 1px solid rgba(29, 67, 53, 0.08);
}

.highlight-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--primary);
  stroke-width: 1.7;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.photo-gallery {
  margin-top: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-areas:
    "photo1 photo2 photo3"
    "photo1 photo4 photo4";
  align-items: stretch;
}

.gallery-photo {
  min-height: 250px;
}

.photo-1 {
  grid-area: photo1;
  min-height: 520px;
}

.photo-2 {
  grid-area: photo2;
}

.photo-3 {
  grid-area: photo3;
}

.photo-4 {
  grid-area: photo4;
}

.gallery-overlay h3 {
  font-size: 1.4rem;
  max-width: 15ch;
}

.features {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  background:
    linear-gradient(135deg, rgba(29, 67, 53, 0.97) 0%, rgba(52, 92, 74, 0.94) 52%, rgba(200, 169, 107, 0.88) 100%);
  color: #fffdf9;
}

.features .feature-story > p,
.features .feature-points h3,
.features .feature-points p,
.features .feature-story h2,
.features .feature-story p:last-child {
  color: inherit;
}

.features .feature-story > p {
  color: #f2dcc0;
}

.feature-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-points article {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.feature-actions {
  margin-top: 22px;
  flex-direction: row;
  flex-wrap: wrap;
}

.contact-band {
  margin-top: 22px;
  border-radius: 28px;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: linear-gradient(90deg, rgba(29, 67, 53, 0.08) 0%, rgba(200, 169, 107, 0.18) 100%);
}

.contact-band article {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.contact-band p {
  margin: 0;
  color: var(--muted);
}

.location-grid {
  margin-top: 24px;
  grid-template-columns: 1.08fr 0.92fr;
}

.map-card {
  min-height: 460px;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.location-details {
  display: grid;
  gap: 18px;
}

.wide {
  width: 100%;
}

.stacked-actions {
  margin-top: 16px;
  flex-direction: column;
}

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

.faq-list details {
  padding: 22px 24px;
}

.quick-access-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.quick-access-card {
  padding: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(248, 239, 226, 0.92) 100%);
  border: 1px solid rgba(29, 67, 53, 0.08);
  box-shadow: 0 16px 34px rgba(21, 56, 45, 0.08);
}

.quick-access-card > p {
  margin: 0;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  font-weight: 800;
}

.quick-access-card h3 {
  margin: 0;
  font-size: 1.22rem;
  color: var(--primary);
}

.quick-access-card span {
  color: var(--muted);
}

.quick-access-card .primary-btn,
.quick-access-card .secondary-btn {
  margin-top: 6px;
}

.faq summary {
  cursor: pointer;
  list-style: none;
}

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

.footer {
  padding: 28px 32px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 10px;
}

.footer h4 {
  margin-bottom: 10px;
  color: var(--primary);
}

.footer p {
  margin: 0 0 10px;
}

.footer a {
  transition: color 180ms ease, opacity 180ms ease;
}

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

.mobile-contact-bar {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 14, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.lightbox-figure {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 32px 60px rgba(0, 0, 0, 0.28);
}

.lightbox-figure img {
  width: 100%;
  max-height: min(72vh, 860px);
  object-fit: cover;
}

.lightbox-caption {
  padding: 18px 22px 22px;
  color: #fffdf9;
  background: linear-gradient(180deg, rgba(14, 26, 22, 0.04) 0%, rgba(14, 26, 22, 0.7) 100%);
}

.lightbox-caption p,
.lightbox-caption h3 {
  margin: 0;
}

.lightbox-caption p {
  color: rgba(255, 248, 240, 0.72);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin-bottom: 8px;
}

.lightbox-caption h3 {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  line-height: 1.25;
}

.lightbox-close,
.lightbox-nav {
  border: 0;
  color: #fffdf9;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
}

.lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 1100px) {
  .navbar-panel {
    grid-template-columns: 1fr;
  }

  .hero,
  .features,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .highlight-grid,
  .feature-points,
  .contact-band,
  .quick-access-grid,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .photo-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "photo1 photo1"
      "photo2 photo3"
      "photo4 photo4";
  }
}

@media (max-width: 780px) {
  .announcement-bar,
  .site-shell {
    width: min(1000px, calc(100% - 20px));
  }

  .announcement-bar {
    border-radius: 24px;
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
  }

  .announcement-bar a {
    white-space: normal;
    text-align: center;
  }

  .navbar,
  .hero,
  .intro-section,
  .services,
  .salon-highlights,
  .gallery-section,
  .features,
  .contact-band,
  .location-section,
  .faq,
  .footer {
    border-radius: 24px;
  }

  .navbar {
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .navbar-top {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .navbar-panel {
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 14px;
  }

  .navbar-panel.open {
    display: grid;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links a,
  .nav-spotlight,
  .ghost-btn,
  .secondary-btn,
  .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .nav-spotlight {
    min-width: 0;
    align-items: center;
    text-align: center;
  }

  .hero,
  .intro-section,
  .services,
  .salon-highlights,
  .gallery-section,
  .features,
  .location-section,
  .faq,
  .footer {
    padding: 22px;
  }

  .hero-photo,
  .gallery-photo,
  .service-photo {
    min-height: 240px;
  }

  .hero-photo-feature {
    min-height: 300px;
  }

  .hero-actions,
  .hero-metrics,
  .intro-grid,
  .service-grid,
  .highlight-grid,
  .gallery-grid,
  .feature-points,
  .contact-band,
  .location-grid,
  .quick-access-grid,
  .footer,
  .stacked-actions,
  .section-heading,
  .section-heading-row {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .stacked-actions,
  .section-heading,
  .section-heading-row {
    display: grid;
    align-items: stretch;
  }

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

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

  .hero-photo-tall {
    grid-row: span 1;
    min-height: 260px;
  }

  .hero-metrics,
  .intro-grid,
  .service-grid,
  .highlight-grid,
  .feature-points,
  .contact-band,
  .quick-access-grid,
  .footer {
    display: grid;
  }

  .feature-actions {
    grid-template-columns: 1fr;
  }

  .highlight-card,
  .quick-access-card,
  .contact-band article,
  .location-details article,
  .faq-list details {
    padding: 20px;
    border-radius: 22px;
  }

  .quick-access-card {
    align-items: stretch;
  }

  .hero-photo figcaption,
  .gallery-overlay {
    padding: 18px;
  }

  .service-photo figcaption {
    inset: auto 16px 16px 16px;
  }

  .section-heading p,
  .feature-story > p,
  .hero-photo figcaption p,
  .hero-info-panel p,
  .gallery-overlay p,
  .service-photo figcaption p,
  .quick-access-card > p {
    letter-spacing: 0.16em;
  }

  .quick-access-card .primary-btn,
  .quick-access-card .secondary-btn {
    width: 100%;
  }

  .photo-gallery {
    display: grid;
    grid-template-areas:
      "photo1"
      "photo2"
      "photo3"
      "photo4";
  }

  .photo-1 {
    min-height: 340px;
  }

  .map-card {
    min-height: 320px;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 20;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    background: rgba(21, 56, 45, 0.92);
    box-shadow: 0 24px 42px rgba(10, 24, 19, 0.26);
  }

  .mobile-contact-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.12);
    color: #fffdf9;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .mobile-contact-bar a:hover {
    background: rgba(255, 255, 255, 0.2);
  }

  .lightbox-dialog {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 12px;
    padding: 72px 0 16px;
  }

  .lightbox-close {
    top: 12px;
    right: 10px;
  }

  .lightbox-nav {
    width: 100%;
    height: 48px;
    border-radius: 18px;
    font-size: 1.5rem;
  }

  .lightbox-prev {
    order: 2;
  }

  .lightbox-figure {
    order: 1;
  }

  .lightbox-next {
    order: 3;
  }

  .lightbox-figure img {
    max-height: 58vh;
  }

  .lightbox-caption h3 {
    font-size: 1.2rem;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section-heading h2,
  .feature-story h2,
  .hero-card-main h2,
  .gallery-overlay h3 {
    max-width: none;
  }

  body {
    padding-bottom: calc(104px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .announcement-bar,
  .site-shell {
    width: calc(100% - 16px);
  }

  .announcement-bar {
    gap: 10px;
    padding: 14px;
  }

  .announcement-bar p {
    font-size: 0.88rem;
  }

  .navbar,
  .hero,
  .intro-section,
  .services,
  .salon-highlights,
  .gallery-section,
  .features,
  .contact-band,
  .location-section,
  .faq,
  .footer {
    padding: 18px;
    border-radius: 20px;
  }

  .navbar-top {
    flex-direction: column;
    align-items: stretch;
  }

  .brand {
    font-size: 1.12rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  .menu-toggle {
    width: 100%;
  }

  h1 {
    margin: 14px 0 12px;
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .hero-text,
  .intro-grid p,
  .service-card p,
  .feature-story p:last-child,
  .feature-points p,
  .location-details p,
  .faq-list p,
  .footer p,
  .hero-metrics span,
  .section-note,
  .highlight-card p,
  .quick-access-card span,
  .contact-band p {
    font-size: 0.93rem;
    line-height: 1.7;
  }

  .hero-metrics li,
  .intro-grid article,
  .service-card,
  .feature-points article,
  .location-details article,
  .faq-list details,
  .highlight-card,
  .quick-access-card,
  .contact-band article {
    padding: 18px;
  }

  .hero-photo-feature,
  .photo-1 {
    min-height: 280px;
  }

  .hero-photo,
  .gallery-photo,
  .service-photo {
    min-height: 220px;
  }

  .gallery-overlay h3,
  .hero-photo-tall h3,
  .hero-photo-small h3,
  .service-photo figcaption h3 {
    font-size: 1.05rem;
    line-height: 1.35;
  }

  .gallery-overlay,
  .hero-photo figcaption {
    padding: 16px;
  }

  .hero-info-panel {
    min-height: 180px;
    padding: 18px;
  }

  .hero-info-panel h3 {
    font-size: 1.15rem;
  }

  .highlight-grid,
  .quick-access-grid,
  .contact-band,
  .service-showcase {
    gap: 14px;
  }

  .contact-band {
    padding: 16px;
  }

  .map-card {
    min-height: 280px;
  }

  .mobile-contact-bar {
    left: 8px;
    right: 8px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    gap: 8px;
    padding: 8px;
    border-radius: 20px;
  }

  .mobile-contact-bar a {
    min-height: 44px;
    padding: 10px 6px;
    border-radius: 14px;
    font-size: 0.74rem;
    letter-spacing: 0.03em;
  }

  .lightbox-dialog {
    width: calc(100% - 12px);
    gap: 10px;
    padding: 64px 0 12px;
  }

  .lightbox-close {
    top: 8px;
    right: 6px;
    padding: 10px 14px;
  }

  .lightbox-nav {
    height: 44px;
    border-radius: 14px;
  }

  .lightbox-caption {
    padding: 14px 14px 16px;
  }

  .lightbox-caption h3 {
    font-size: 1.05rem;
  }

  body {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }
}
