:root {
  --bg: #070709;
  --panel: rgba(16, 16, 24, 0.85);
  --card: rgba(20, 22, 30, 0.92);
  --border: rgba(255, 215, 160, 0.18);
  --text: #f8f3e3;
  --muted: #cbbd96;
  --accent: #fbc15b;
  --accent-2: #ff4fa3;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --max-width: 1120px;
  --font-body: "Inter", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Playfair Display", "Times New Roman", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  color: var(--text);
  line-height: 1.6;
  font-family: var(--font-body);
  background:
    radial-gradient(900px 680px at -12% -10%, rgba(246, 197, 101, 0.09), transparent 65%),
    radial-gradient(900px 720px at 108% 2%, rgba(231, 137, 199, 0.08), transparent 62%),
    #050608;
}

a {
  color: inherit;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  color: #ffffff;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin: 0 0 0.8rem;
}

h3 {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  margin: 0 0 0.6rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
  color: rgba(244, 241, 234, 0.82);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.announcement {
  position: sticky;
  top: 0;
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1rem;
  background: linear-gradient(90deg, #ffe0f2, #ffeab0);
  color: #201a12;
  font-weight: 600;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.link-button {
  border: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.site-header {
  background: rgba(6, 7, 11, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 44px;
  z-index: 70;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.4px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-toggle {
  margin-left: auto;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.45rem 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  display: none;
}

.nav-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a:not(.btn) {
  font-weight: 700;
  text-decoration: none;
  position: relative;
  padding: 0.2rem 0;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(244, 241, 234, 0.76);
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 3px;
  transition: width 180ms ease;
}

.nav-links a:not(.btn):focus-visible,
.nav-links a:not(.btn):hover {
  color: #ffffff;
}

.nav-links a:not(.btn):focus-visible::after,
.nav-links a:not(.btn):hover::after {
  width: 100%;
}

.nav-links .btn {
  --btn-bg: rgba(255, 255, 255, 0.1);
  --btn-border: rgba(255, 255, 255, 0.3);
  --btn-shadow: 0 18px 34px rgba(0, 0, 0, 0.5);
  --btn-hover-shadow: 0 20px 42px rgba(0, 0, 0, 0.52);
  padding: 0.55rem 1.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
}

.btn {
  --btn-bg: rgba(255, 255, 255, 0.08);
  --btn-border: rgba(255, 255, 255, 0.22);
  --btn-color: var(--text);
  --btn-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
  --btn-hover-shadow: 0 22px 44px rgba(0, 0, 0, 0.46);
  --btn-focus-ring: rgba(251, 193, 91, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.68rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--btn-border);
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  font-size: 0.92rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--btn-color);
  background: var(--btn-bg);
  box-shadow: var(--btn-shadow);
  transition:
    transform 0.18s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease,
    border-color 0.28s ease;
  backdrop-filter: blur(14px);
}

.btn::before {
  content: "";
  position: absolute;
  inset: -120% -60% 40%;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0));
  opacity: 0;
  transform: rotate(8deg);
  transition: opacity 0.4s ease, transform 0.4s ease;
  z-index: -1;
}

.btn.primary {
  --btn-bg: linear-gradient(135deg, var(--accent), var(--accent-2));
  --btn-border: rgba(255, 244, 229, 0.6);
  --btn-color: #210f16;
  --btn-shadow: 0 22px 48px rgba(255, 100, 170, 0.32);
  --btn-hover-shadow: 0 28px 58px rgba(255, 100, 170, 0.44);
  backdrop-filter: none;
}

.btn.ghost {
  --btn-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
  --btn-border: rgba(255, 255, 255, 0.32);
  --btn-shadow: 0 18px 40px rgba(0, 0, 0, 0.42);
  --btn-hover-shadow: 0 26px 56px rgba(0, 0, 0, 0.48);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--btn-hover-shadow);
}

.btn:hover::before,
.btn:focus-visible::before {
  opacity: 0.8;
  transform: rotate(2deg) translateY(60%);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--btn-hover-shadow), 0 0 0 3px var(--btn-focus-ring);
}

.btn:active {
  transform: translateY(0);
  box-shadow: var(--btn-shadow);
}

.btn.primary:focus-visible::before,
.btn.primary:hover::before {
  opacity: 1;
}

.hero {
  max-width: var(--max-width);
  margin: clamp(3.5rem, 8vw, 5.4rem) auto clamp(3rem, 8vw, 5rem);
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 0.5fr) minmax(0, 0.5fr);
  gap: clamp(2rem, 6vw, 3.6rem);
  align-items: center;
}

.hero-media {
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.55);
  min-height: 480px;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 8, 12, 0.15), rgba(6, 8, 12, 0.65));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-copy {
  background: linear-gradient(145deg, rgba(16, 18, 26, 0.9), rgba(11, 12, 19, 0.76));
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 5vw, 2.8rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 60px rgba(0, 0, 0, 0.48);
  display: flex;
  flex-direction: column;
  gap: clamp(1.2rem, 3vw, 1.6rem);
}

.hero-eyebrow {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(246, 197, 101, 0.75);
}

.hero-title {
  background: linear-gradient(180deg, #ffffff, rgba(246, 197, 101, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: clamp(0.6rem, 2vw, 1rem);
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(244, 241, 234, 0.78);
}

.hero-copy .cta {
  margin-top: 0.4rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.6rem;
}

.hero-highlights span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.82);
}

.story {
  max-width: var(--max-width);
  margin: 0 auto clamp(3.5rem, 9vw, 6rem);
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 0.52fr) minmax(0, 0.48fr);
  gap: clamp(2rem, 6vw, 3.8rem);
  align-items: stretch;
}

.story-media {
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
  min-height: 520px;
}

.story-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(6, 8, 12, 0.25), rgba(6, 8, 12, 0.65));
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.12) contrast(1.03);
}

.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    190deg,
    rgba(7, 7, 9, 0.18) 0%,
    rgba(7, 7, 9, 0.06) 45%,
    rgba(7, 7, 9, 0.24) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.story-copy {
  background: rgba(12, 14, 20, 0.9);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(2rem, 5vw, 2.8rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 24px 60px rgba(0, 0, 0, 0.45);
}

.story-eyebrow {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.85rem;
  color: rgba(246, 197, 101, 0.7);
}

.story-copy p {
  color: rgba(244, 241, 234, 0.78);
  font-size: 1.02rem;
}

.story-copy p + p {
  margin-top: 1.1rem;
}

.story-signature {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.story-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}

.story-role {
  font-size: 0.92rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(244, 241, 234, 0.58);
}

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  text-align: center;
  padding: 0 clamp(1rem, 3vw, 1.6rem);
}

.section-head h2 {
  margin: 0;
  letter-spacing: 0.04em;
}

.section-head p {
  margin: 0.8rem 0 0;
  color: rgba(244, 241, 234, 0.7);
  font-size: 1.02rem;
}

.services,
.gallery,
.reviews,
.contact,
.about {
  max-width: var(--max-width);
  margin: clamp(3.4rem, 8vw, 5rem) auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.service-card {
  background: linear-gradient(160deg, rgba(22, 24, 32, 0.94), rgba(13, 14, 20, 0.85));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 1.9rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card h3 {
  margin: 0;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  flex: 1;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 30px 70px rgba(0, 0, 0, 0.5);
}

.services-footer {
  margin-top: 1.6rem;
  background: linear-gradient(160deg, rgba(16, 18, 26, 0.9), rgba(9, 10, 16, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 60px rgba(0, 0, 0, 0.45);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-card {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-card img:focus-visible,
.gallery-card img:hover {
  transform: scale(1.05);
}

.social-feed {
  max-width: var(--max-width);
  margin: clamp(3.4rem, 8vw, 5rem) auto;
  padding: 0 clamp(1.2rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.social-feed-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.38);
}

.social-feed-grid img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.social-feed-grid figure:hover img {
  transform: scale(1.04);
}

.social-feed-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
}

.reviews-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.reviews-card iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 12px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(0, 0.9fr);
  gap: 1.4rem;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card--info {
  gap: 1.45rem;
  background: linear-gradient(155deg, rgba(18, 18, 26, 0.97), rgba(10, 10, 16, 0.92));
  border: 1px solid rgba(255, 215, 160, 0.24);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 48px rgba(0, 0, 0, 0.46);
}

.contact-columns {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(0, 0.42fr);
  gap: 1.6rem;
  align-items: start;
}

.contact-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 215, 160, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    inset 0 0 0 1px rgba(0, 0, 0, 0.32),
    0 18px 38px rgba(0, 0, 0, 0.28);
  flex-wrap: wrap;
}

.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 224, 178, 0.9);
  flex: 0 0 140px;
}

.contact-list a,
.contact-list span:last-child {
  color: var(--text);
  font-weight: 600;
  flex: 1 1 220px;
  text-align: right;
  min-width: 0;
  display: block;
  word-break: break-word;
}

.contact-list a:hover {
  text-decoration: underline;
}

.hours-column h4 {
  margin: 0 0 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 224, 178, 0.92);
}

.hours {
  margin: 0;
  padding: 0;
}

.hours--grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.hours--grid li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.95rem;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.25);
}

.hours--grid li:nth-child(even) {
  background: rgba(255, 255, 255, 0.06);
}

.hours-day {
  font-weight: 700;
  color: var(--text);
}

.hours-time {
  font-weight: 600;
}

.contact-card h4 {
  margin: 0;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.contact-actions .btn {
  min-width: 150px;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-socials .btn {
  min-width: 150px;
}

.btn.social {
  --btn-border: rgba(255, 255, 255, 0.4);
  --btn-color: #ffffff;
  letter-spacing: 0.08em;
}

.btn.social.facebook {
  --btn-bg: linear-gradient(135deg, #1877f2, #2948c1);
  --btn-shadow: 0 20px 48px rgba(24, 119, 242, 0.35);
  --btn-hover-shadow: 0 24px 58px rgba(24, 119, 242, 0.48);
}

.btn.social.instagram {
  --btn-bg: linear-gradient(135deg, #f58529, #dd2a7b 55%, #8134af);
  --btn-shadow: 0 20px 48px rgba(221, 42, 123, 0.35);
  --btn-hover-shadow: 0 24px 58px rgba(221, 42, 123, 0.48);
}

.btn.social.tiktok {
  --btn-bg: linear-gradient(135deg, #25f4ee, #fe2c55 55%, #000000);
  --btn-border: rgba(255, 255, 255, 0.55);
  --btn-shadow: 0 20px 48px rgba(254, 44, 85, 0.35);
  --btn-hover-shadow: 0 24px 58px rgba(254, 44, 85, 0.48);
}

.contact-card--feature {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: url('assets/images/salon-logo.jpg') center center / contain no-repeat, rgba(12, 12, 18, 0.9);
}

.feature-overlay {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, rgba(10, 10, 14, 0.88), rgba(12, 12, 20, 0.72));
  border-radius: calc(var(--radius) - 6px);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  color: var(--muted);
  border: 1px solid rgba(255, 215, 160, 0.2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.4);
}

.feature-overlay::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: calc(var(--radius) - 18px);
  background: linear-gradient(135deg, rgba(255, 196, 107, 0.35), rgba(255, 115, 210, 0.18));
  filter: blur(24px);
  opacity: 0.8;
  z-index: -1;
}

.feature-badge {
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.feature-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
}

.feature-copy {
  margin: 0;
  color: var(--muted);
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.about {
  text-align: center;
  background: linear-gradient(150deg, rgba(20, 22, 30, 0.92), rgba(9, 10, 16, 0.82));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3rem);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 22px 60px rgba(0, 0, 0, 0.45);
  color: rgba(244, 241, 234, 0.78);
}

.about p {
  margin: 0;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  padding: 2rem 1.2rem 3rem;
  text-align: center;
  color: var(--muted);
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 120;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.modal-panel {
  position: relative;
  background: rgba(18, 18, 24, 0.96);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  max-width: 520px;
  margin: 10vh auto;
  padding: 1.6rem;
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: var(--muted);
}

.modal-body ul {
  margin: 0;
  padding-left: 1.1rem;
}

.icon-button {
  appearance: none;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: grid;
  place-items: center;
}

.icon-button:focus-visible,
.icon-button:hover {
  background: rgba(255, 255, 255, 0.24);
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 130;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox-panel {
  position: relative;
  margin: 5vh auto;
  max-width: min(880px, 92vw);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 120px rgba(0, 0, 0, 0.7);
}

.lightbox-panel img {
  display: block;
  width: 100%;
  background: #010102;
}

.lightbox-panel figcaption {
  margin: 0;
  padding: 0.9rem 1.2rem;
  background: rgba(10, 10, 14, 0.9);
  color: var(--muted);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
}

.flash-highlight {
  position: relative;
}

.flash-highlight::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(255, 213, 150, 0.65);
  box-shadow:
    0 0 24px rgba(255, 120, 189, 0.42),
    0 0 38px rgba(255, 212, 150, 0.4);
  opacity: 0;
  animation: flashPulse 2.2s ease forwards;
  pointer-events: none;
}

@keyframes flashPulse {
  0% {
    opacity: 0;
    transform: scale(0.96);
  }
  18% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

.helper-widget {
  position: fixed;
  right: clamp(16px, 5vw, 42px);
  bottom: clamp(20px, 7vh, 64px);
  z-index: 260;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.6rem;
}

.helper-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.3rem;
  cursor: pointer;
  background: linear-gradient(135deg, rgba(248, 234, 188, 0.95), rgba(255, 170, 120, 0.95));
  color: #1c1410;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 18px 42px rgba(8, 6, 4, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.helper-toggle:hover,
.helper-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(8, 6, 4, 0.48);
  filter: saturate(1.05);
}

.helper-icon {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  background: rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.helper-label {
  white-space: nowrap;
  font-size: 0.92rem;
}

.helper-menu[hidden] {
  display: none;
}

.helper-menu {
  width: min(300px, 80vw);
  background: rgba(20, 20, 28, 0.96);
  border: 1px solid rgba(255, 219, 160, 0.22);
  border-radius: 18px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  display: grid;
}

.helper-item {
  text-align: left;
  border: 0;
  background: transparent;
  padding: 0.95rem 1.1rem;
  cursor: pointer;
  display: grid;
  gap: 0.2rem;
  transition: background 0.15s ease;
}

.helper-item + .helper-item {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.helper-item:hover,
.helper-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
}

.helper-item-title {
  font-weight: 700;
  font-size: 0.95rem;
}

.helper-item-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 620px) {
  .helper-widget {
    right: clamp(12px, 6vw, 20px);
    bottom: clamp(16px, 8vh, 40px);
  }

  .helper-toggle {
    padding: 0.75rem 1.1rem;
    font-size: 0.88rem;
  }

  .helper-menu {
    width: min(94vw, 320px);
  }
}


@media (max-width: 1080px) {
  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .site-header {
    top: 42px;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem;
    margin-left: 0;
    margin-top: 0.8rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.4rem;
  }

  .hero-media {
    order: -1;
    min-height: 360px;
  }

  .hero-copy {
    align-items: center;
    text-align: center;
  }

  .hero-copy .cta {
    justify-content: center;
  }

  .hero-highlights {
    justify-content: center;
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-copy {
    order: -1;
    text-align: center;
  }

  .story-media {
    min-height: 380px;
  }

  .story-signature {
    align-items: center;
  }

  .story-role {
    letter-spacing: 0.18em;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .contact-label {
    flex: 0 0 auto;
    min-width: 0;
  }

  .contact-list a,
  .contact-list span:last-child {
    width: 100%;
    text-align: left;
    flex: 1 1 auto;
    word-break: break-word;
  }

  .contact-socials {
    flex-direction: column;
  }

  .contact-socials .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero {
    margin: 2.8rem auto;
  }

  .hero-media {
    min-height: 280px;
  }

  .hero-highlights {
    justify-content: center;
  }

  .story {
    gap: 1.6rem;
    margin: 2.8rem auto;
  }

  .story-copy {
    padding: 1.8rem;
  }

  .story-media {
    min-height: 320px;
  }

  .social-feed-grid {
    grid-template-columns: 1fr;
  }

  .social-feed-cta {
    flex-direction: column;
  }

  .social-feed-cta .btn {
    width: 100%;
  }

  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .reviews-card iframe {
    min-height: 240px;
  }

  .announcement {
    font-size: 0.92rem;
  }

  .site-header {
    top: 38px;
  }

  .services-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .helper-widget {
    right: clamp(12px, 6vw, 20px);
    bottom: clamp(16px, 8vh, 40px);
  }

  .helper-toggle {
    padding: 0.75rem 1.1rem;
    font-size: 0.88rem;
  }

  .helper-menu {
    width: min(94vw, 320px);
  }

  .contact-columns {
    grid-template-columns: 1fr;
  }
}
.eyebrow {
  margin: 0;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: rgba(255, 244, 219, 0.7);
}

.lead {
  margin: 0;
  color: rgba(244, 241, 234, 0.8);
  font-size: 1.08rem;
}

.cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.
