/* ─── RESET & BASE ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ivory:      #FAF7F2;
  --blush:      #E8C4B4;
  --bronze:     #bc8662;
  --bronze-deep:#9a6b48;
  --near-black: #1C1C1C;
  --gold:       #C9A070;
  --white:      #FFFFFF;
  --text:       #2a2420;
  --text-light: #6b5a51;
  --nav-h:      72px;
}

html { scroll-behavior: smooth; background: var(--ivory); }

body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ─── TYPOGRAPHY ───────────────────────────────────────────────────── */
.serif { font-family: 'Playfair Display SC', serif; }

h2.section-title {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--near-black);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}

.gold-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem 0;
}

/* ─── SCROLL ANIMATIONS ────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s cubic-bezier(.22,.68,0,1.2), transform 0.75s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }
.reveal-delay-4 { transition-delay: 0.44s; }

/* ─── NAVIGATION ───────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 3%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: transparent;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}


nav.scrolled {
  background: var(--ivory);
  border-bottom-color: rgba(201,160,112,0.35);
  box-shadow: 0 2px 24px rgba(28,28,28,0.07);
}

.nav-logo {
  font-family: 'Playfair Display SC', serif;
  line-height: 1.15;
  transition: color 0.3s;
}
.nav-logo .line1 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: block;
  color: var(--white);
  transition: color 0.4s;
}
.nav-logo .line2 {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  display: block;
  color: rgba(255,255,255,0.75);
  font-style: italic;
  transition: color 0.4s;
}
nav.scrolled .nav-logo .line1 { color: var(--near-black); }
nav.scrolled .nav-logo .line2 { color: var(--bronze); }

.nav-links {
  display: flex;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  color: var(--white);

  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-links a:hover::after { transform: scaleX(1); }
nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover { color: var(--bronze); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.35s ease;
  border-radius: 1px;
}
nav.scrolled .hamburger span { background: var(--near-black); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE MENU — Luxury Full-Screen Overlay ──────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  background: #100d0a;
}

/* Radial gold glow in corners */
.mobile-menu::before {
  content: '';
  position: fixed;
  top: -20%;
  right: -10%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(188,134,98,0.10) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.mobile-menu::after {
  content: '';
  position: fixed;
  bottom: -10%;
  left: -5%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(201,160,112,0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

/* Header: logo + close */
.mmenu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(201,160,112,0.12);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.mmenu-logo {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.mmenu-logo span {
  display: block;
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0.26em;
  margin-top: 0.2rem;
}

/* Circular close button */
.mmenu-close {
  background: transparent;
  border: 1px solid rgba(201,160,112,0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  line-height: 1;
  flex-shrink: 0;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.mmenu-close:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,160,112,0.08);
}

/* Nav links — staggered, large serif */
.mmenu-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
  position: relative;
  z-index: 2;
  counter-reset: menu-counter;
}

/* Gold vertical accent line */
.mmenu-links::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 10%;
  height: 80%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,160,112,0.35) 30%, rgba(201,160,112,0.35) 70%, transparent);
  pointer-events: none;
}

.mmenu-link {
  counter-increment: menu-counter;
  display: flex;
  align-items: baseline;
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.6rem, 6.5vw, 2.2rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  padding: 0.8rem 2rem 0.8rem 4rem;
  letter-spacing: 0.03em;
  transition: color 0.3s ease, transform 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateX(36px);
}

/* Number counter before each link */
.mmenu-link::before {
  content: '0' counter(menu-counter);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: var(--gold);
  letter-spacing: 0.18em;
  opacity: 0.6;
  margin-right: 1.2rem;
  flex-shrink: 0;
  align-self: center;
  transition: opacity 0.3s;
}

/* Gold underline slide-in on hover */
.mmenu-link::after {
  content: '';
  position: absolute;
  bottom: 0.55rem;
  left: 4rem;
  right: 2rem;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mmenu-link:hover {
  color: var(--white);
  transform: translateX(6px);
}
.mmenu-link:hover::before { opacity: 1; }
.mmenu-link:hover::after { transform: scaleX(1); }

/* Staggered slide-in when menu opens */
.mobile-menu.open .mmenu-link {
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu.open .mmenu-link:nth-child(1) { transition: opacity 0.55s 0.12s ease, transform 0.55s 0.12s cubic-bezier(0.22,1,0.36,1); }
.mobile-menu.open .mmenu-link:nth-child(2) { transition: opacity 0.55s 0.20s ease, transform 0.55s 0.20s cubic-bezier(0.22,1,0.36,1); }
.mobile-menu.open .mmenu-link:nth-child(3) { transition: opacity 0.55s 0.28s ease, transform 0.55s 0.28s cubic-bezier(0.22,1,0.36,1); }
.mobile-menu.open .mmenu-link:nth-child(4) { transition: opacity 0.55s 0.36s ease, transform 0.55s 0.36s cubic-bezier(0.22,1,0.36,1); }
.mobile-menu.open .mmenu-link:nth-child(5) { transition: opacity 0.55s 0.44s ease, transform 0.55s 0.44s cubic-bezier(0.22,1,0.36,1); }

/* Subtle divider between links */
.mmenu-link + .mmenu-link {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* WhatsApp / CTA at bottom */
.mmenu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin: 0 2rem 2.5rem;
  padding: 1rem 1.8rem;
  background: transparent;
  border: 1px solid rgba(201,160,112,0.35);
  color: var(--gold);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  opacity: 0;
}
.mobile-menu.open .mmenu-cta {
  opacity: 1;
  transition: opacity 0.5s 0.52s ease, background 0.3s, border-color 0.3s, color 0.3s;
}
.mmenu-cta:hover {
  background: var(--bronze);
  border-color: var(--bronze);
  color: white;
}

/* overlay not needed — keeping empty for JS compat */
.overlay { display: none; }



/* ─── HERO ─────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../extracted/wp-content/uploads/2022/10/Art-of-hair-by-natalie-saloon-8.jpg');
  background-size: cover;
  background-position: center 30%;
}

.hero-bg.loaded { transform: none; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,12,10,0.52) 0%,
    rgba(15,12,10,0.12) 30%,
    rgba(15,12,10,0.42) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 2rem;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.2rem;
  font-weight: 400;
}

.hero-title {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: var(--white);
}

.hero-subtitle {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  margin-top: 0.3rem;
  letter-spacing: 0.08em;
}

.hero-divider {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 1.8rem auto;
}

.hero-tagline {
  font-size: clamp(0.72rem, 1.5vw, 0.85rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.4rem;
  flex-wrap: wrap;
}

/* btn-outline im Hero muss auf dunklem Bild lesbar sein */
.hero-ctas .btn-outline {
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.hero-ctas .btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}



/* ─── KEYFRAMES ────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── SCROLL INDICATOR ──────────────────────────────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s infinite;
  z-index: 3;
}
.scroll-indicator svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── BUTTONS ───────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-bronze {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}
.btn-bronze:hover { background: var(--bronze-deep); border-color: var(--bronze-deep); }
.btn-outline {
  background: transparent;
  color: var(--near-black);
  border-color: var(--near-black);
}
.btn-outline:hover { background: var(--near-black); color: var(--white); }

/* ─── SECTIONS ───────────────────────────────────────────────────────── */
.section { padding: 7rem 8vw; }

/* ─── ABOUT / INTRO ──────────────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.about-image {
  background: var(--blush);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 2.5rem;
  align-self: stretch;
}
.about-image img { width: 100%; height: auto; object-fit: cover; }
.natalie-photo { max-width: 380px; width: 100%; height: auto; border-radius: 4px; }
.about-text {
  padding: 5rem 6vw;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-text p { color: var(--text-light); margin-bottom: 1rem; font-size: 1.05rem; }

/* ─── INTRO HIGHLIGHTS ───────────────────────────────────────────────── */
.intro-highlights { display: flex; gap: 2.5rem; margin-top: 2.5rem; }
.intro-highlight {
  flex: 1;
  padding: 1rem 1.4rem;
  border-left: 1px solid rgba(201,160,112,0.4);
  border-radius: 4px;
}
.intro-highlight .label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.3rem;
}
.intro-highlight .value {
  display: block;
  font-family: 'Playfair Display SC', serif;
  font-size: 1rem;
  color: var(--near-black);
  font-weight: 700;
}

/* ─── GALLERY ────────────────────────────────────────────────────────── */
.gallery-section { background: var(--blush); padding: 5rem 0; }
.gallery-header { text-align: center; padding: 0 8vw 3rem; }
.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding: 0 8vw;
}
.gallery-item { overflow: hidden; border-radius: 4px; cursor: pointer; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ─── SERVICES ───────────────────────────────────────────────────────── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 6px;
  border: 1px solid rgba(201,160,112,0.2);
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover { box-shadow: 0 8px 32px rgba(28,28,28,0.08); transform: translateY(-2px); }
.service-card h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--near-black);
}
.service-card p { color: var(--text-light); font-size: 0.95rem; }

/* ─── CONTACT ────────────────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

/* ─── PORTFOLIO ──────────────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 0.75rem;
}
.portfolio-item { overflow: hidden; border-radius: 4px; cursor: pointer; }
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item.wide { grid-column: span 2; }
.portfolio-item.tall { grid-row: span 2; }

/* ─── LIGHTBOX ───────────────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(15,15,15,0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 2rem;
  font-size: 2rem; color: var(--white); cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s; background: none; border: none; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 2rem; color: var(--white); cursor: pointer; opacity: 0.7;
  transition: opacity 0.2s; background: none; border: none; padding: 1rem;
}
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; }
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }

/* ─── FOOTER ─────────────────────────────────────────────────────────── */
footer {
  background: var(--near-black);
  color: rgba(255,255,255,0.7);
  padding: 5rem 8vw 2rem;
  border-top: 1px solid rgba(201,160,112,0.2);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--white); display: block; margin-bottom: 1rem; line-height: 1.3;
}
.footer-logo span {
  display: block; font-size: 0.85rem; font-weight: 400;
  color: var(--bronze); font-style: italic; letter-spacing: 0.1em;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.8; color: rgba(255,255,255,0.5); }
.footer-col h4 {
  font-family: 'Playfair Display SC', serif;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.88rem; color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem; transition: color 0.2s;
}
.footer-col a:hover { color: var(--bronze); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-legal a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal-dot { opacity: 0.3; }


/* ─── PAGE INTRO (Sub-pages) ─────────────────────────────────────────── */
.intro { padding: 4rem 8vw 2rem; background: var(--ivory); }

/* ─── SERVICE CARD EXTENDED ──────────────────────────────────────────── */
.service-card-img {
  height: 220px;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
  margin: -2.5rem -2rem 1.5rem;
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.04); }

/* ─── GREAT LENGTHS SECTION (Leistungen) ────────────────────────────── */
.gl-section {
  background: var(--blush);
  padding: 4rem 8vw;
}
.gl-section-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}
.gl-section-img {
  flex-shrink: 0;
  width: 280px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
  align-self: stretch;
}
.gl-section-img img { width: 100%; height: 100%; object-fit: cover; object-position: center center; }
.gl-section-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.gl-section-text h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.2;
}
.gl-section-text p { color: var(--text-light); font-size: 1rem; margin: 0; }

/* ─── OLD gl classes (kept for compatibility) ────────────────────────── */
.great-lengths {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.gl-image { overflow: hidden; }
.gl-image img { width: 100%; height: 100%; object-fit: cover; min-height: 400px; }
.gl-text {
  padding: 5rem 6vw;
  background: var(--blush);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.gl-text h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--near-black);
  line-height: 1.2;
}
.gl-text p { color: var(--text-light); font-size: 1.05rem; margin: 0; }
.gl-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  border: 1px solid rgba(188,134,98,0.4);
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  align-self: flex-start;
}

/* ─── PRICE LIST ──────────────────────────────────────────────────────── */
.price-list-mini { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.price-list-mini tr { border-bottom: 1px solid rgba(188,134,98,0.12); }
.price-list-mini td { padding: 0.85rem 0; color: var(--text-light); }
.price-list-mini td:last-child {
  text-align: right;
  font-family: 'Playfair Display SC', serif;
  font-size: 0.85rem;
  color: var(--bronze);
  white-space: nowrap;
  padding-left: 2rem;
}

/* ─── CONTACT PAGE ────────────────────────────────────────────────────── */
.hours-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 0.95rem; }
.hours-table tr { border-bottom: 1px solid rgba(201,160,112,0.2); }
.hours-table td { padding: 0.9rem 0; color: var(--text-light); }
.hours-table td:last-child { text-align: right; }
.hours-table .closed { opacity: 0.45; font-style: italic; }

.contact-info { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--bronze); }
.contact-info-item .detail { display: flex; flex-direction: column; }
.contact-info-item .detail strong {
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--bronze); margin-bottom: 0.2rem;
}
.contact-info-item .detail a,
.contact-info-item .detail { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }

.contact-cta-box {
  margin-top: 2.5rem; background: var(--blush);
  border-radius: 8px; padding: 2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.contact-cta-box h3 {
  font-family: 'Playfair Display SC', serif;
  font-size: 1.3rem; color: var(--near-black);
}
.contact-cta-box p { color: var(--text-light); font-size: 0.95rem; }

/* ─── PRICE SECTION ──────────────────────────────────────────────────── */
.price-section { background: #F5EFE8; padding: 5rem 8vw 6rem; }
.price-section-inner { max-width: 1100px; margin: 0 auto; }
.price-section-header { margin-bottom: 3.5rem; }
.price-section-header .section-label { color: var(--bronze); }
.price-section-header .section-title { color: var(--near-black); }
.price-section-header p { color: var(--text-light); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.price-card {
  background: var(--white);
  border: 1px solid rgba(188,134,98,0.15);
  border-radius: 6px;
  padding: 1.8rem 1.6rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.price-card:hover {
  box-shadow: 0 6px 24px rgba(188,134,98,0.12);
  transform: translateY(-2px);
}
.price-cat {
  font-family: 'Playfair Display SC', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--bronze);
  margin-bottom: 1.2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(188,134,98,0.2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.price-bottom-card {
  border-radius: 6px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
}
.price-bottom-gl {
  background: var(--bronze);
  color: var(--white);
}
.price-bottom-gl p { color: rgba(255,255,255,0.88); font-size: 0.98rem; margin-bottom: 0.3rem; }
.price-bottom-gratis {
  background: var(--white);
  border: 1px solid rgba(188,134,98,0.15);
}

@media (max-width: 768px) {
  /* ── NAV ── */
  .nav-links { display: none !important; }
  .hamburger { display: flex !important; }
  nav { padding: 0.85rem 5%; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-grid .service-card:last-child { grid-column: span 1; }

  /* ── GALLERY ── */
  .gallery-track { grid-template-columns: 1fr 1fr; }
  .gallery-item { aspect-ratio: 4/3; }

  .about { grid-template-columns: 1fr; }
  .about-image { height: auto; min-height: unset; padding: 2.5rem; }
  .about-text { padding: 3rem 2rem; }

  .gl-section-inner { flex-direction: column; gap: 2rem; }
  .gl-section-img { width: 100%; aspect-ratio: 4/3; height: auto; }

  .price-grid { grid-template-columns: 1fr; }
  .price-bottom { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .portfolio-item.tall { grid-row: span 1; }
  .portfolio-item.wide { grid-column: span 2; }

  
  .gallery-track .gallery-item:nth-child(4) { display: block; }
  .gallery-track .gallery-item:nth-child(5) { display: none; }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer-grid > *:first-child { grid-column: span 1; }

  .intro-highlights {
    flex-direction: column;
    align-items: center;
  }
  .intro-highlight {
    border-left: none;
    border-top: 1px solid rgba(201,160,112,0.3);
    width: 100%;
    max-width: 300px;
  }
  .intro-highlight:first-child { border-top: none; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}

@media (max-width: 480px) {
  :root { --nav-h: 60px; }
  .section { padding: 5rem 1.5rem; }
  .hero-ctas { gap: 0.75rem; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.72rem; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .portfolio-item.wide { grid-column: span 1; }
  .portfolio-item.tall { grid-row: span 1; }
  .gallery-track { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 3/2; }
  .about-text { padding: 2.5rem 1.5rem; }
  nav { padding: 0.75rem 5%; }
}

/* ═══════════════════════════════════════════════════════════════════════
   PAGE HERO — Sub-page header (leistungen, portfolio, etc.)
   ═══════════════════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  height: 58vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,12,10,0.58) 0%, rgba(15,12,10,0.42) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 2rem;
  max-width: 820px;
}
.page-eyebrow {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.page-hero-content h1 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
}
.page-hero-divider {
  width: 56px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem auto;
}
.page-hero-tagline {
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.page-hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════════════════
   SERVICE SHOWCASE — Editorial Magazine Layout (Leistungen)
   ═══════════════════════════════════════════════════════════════════════ */
.service-showcase {
  padding: 8rem 8vw;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}
/* Subtler fließender Übergang für jede zweite Sektion */
.service-showcase:nth-child(even) {
  background: linear-gradient(to bottom, var(--ivory), #f2eae1, var(--ivory));
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  max-width: 1150px;
  margin: 0 auto;
  align-items: center;
}

.showcase-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.showcase-text h2 {
  font-family: 'Playfair Display SC', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--near-black);
  margin-bottom: 0.5rem;
}

.showcase-text .showcase-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 1.5rem;
  display: block;
}

.showcase-text p {
  font-size: 1.05rem;
  line-height: 1.95;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.showcase-text ul {
  list-style: none;
  margin: 1.5rem 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.showcase-text ul li {
  position: relative;
  padding-left: 1.8rem;
  font-size: 1rem;
  color: var(--near-black);
}

.showcase-text ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--gold);
  font-size: 0.9rem;
}

/* Elegante versetzte Rahmen (Offset Frames) */
.showcase-img-wrapper {
  position: relative;
  z-index: 1;
}

.showcase-img-wrapper img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5; /* Portrait Format für mehr Eleganz */
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(28, 28, 28, 0.08); /* Sanfter, weicher Schatten */
  display: block;
}

.offset-frame-right::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}

.offset-frame-left::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: -20px;
  left: -20px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.7;
}

/* Intro Text Zentriert */
.editorial-intro {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 6rem 5vw 2rem;
}
.editorial-intro p {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-light);
  margin-top: 2rem;
}
.editorial-intro .intro-highlights {
  justify-content: center;
  margin-top: 3rem;
}

@media (max-width: 900px) {
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .showcase-img-wrapper img { aspect-ratio: 4/3; }
  .showcase-reversed .showcase-text { order: 2; }
  .showcase-reversed .showcase-img-wrapper { order: 1; }
  .offset-frame-left::after, .offset-frame-right::after {
    top: -15px; left: 15px; right: -15px; bottom: 15px;
  }
}


/* ═══════════════════════════════════════════════════════════════════════
   FAQ SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--near-black);
  padding: 6rem 8vw;
}
.faq-section-header {
  max-width: 840px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.faq-list { max-width: 840px; margin: 0 auto; }
details.faq-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
details.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: 'Playfair Display SC', serif;
  font-size: 1.05rem;
  color: var(--ivory);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  transition: color 0.2s;
}
details.faq-item summary:hover { color: var(--gold); }
details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--bronze);
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  transition: content 0.2s;
}
details.faq-item[open] summary::after { content: '−'; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item p {
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  padding: 0 0 1.4rem;
  font-size: 0.97rem;
}

/* ═══════════════════════════════════════════════════════════════════════
   VORHER & NACHHER GALLERY
   ═══════════════════════════════════════════════════════════════════════ */
.vn-section {
  background: var(--near-black);
  padding: 6rem 8vw;
}
.vn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 1100px;
  margin: 0 auto;
}
.vn-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform 0.5s ease;
}
.vn-grid img:hover { transform: scale(1.02); }

/* ── Responsive additions for new Leistungen classes ─────────────────── */
@media (max-width: 768px) {
  .lp-split { grid-template-columns: 1fr; min-height: auto; }
  .lp-split-img { min-height: 280px; }
  .lp-split-text { padding: 3rem 1.8rem; }
  .lp-reversed .lp-split-img { order: -1; }
  .page-hero { height: 50vh; min-height: 360px; }
  .vn-grid { grid-template-columns: 1fr 1fr; }
  .faq-section { padding: 4rem 1.5rem; }
}
@media (max-width: 480px) {
  .page-hero { min-height: 320px; }
  .vn-grid { gap: 0.5rem; }
  .lp-split-text { padding: 2.5rem 1.5rem; }
}

/* ─── COOKIE BANNER ──────────────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--near-black);
  color: var(--white);
  padding: 1.5rem;
  z-index: 99999;
  box-shadow: 0 -4px 25px rgba(0,0,0,0.4);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'DM Sans', sans-serif;
}
#cookie-banner.hidden {
  transform: translateY(100%);
}
#cookie-banner .cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}
#cookie-banner p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 1rem;
}
#cookie-decline:hover {
  background: rgba(255,255,255,0.1);
}
@media (min-width: 768px) {
  #cookie-banner .cookie-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ─── FLOATING WHATSAPP ──────────────────────────────────────────────── */
.floating-wa {
  position: fixed;
  bottom: 50px;
  right: 30px;
  z-index: 9998;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: var(--gold);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 4px 15px rgba(0,0,0,0.5);
  cursor: pointer;
  border: 1px solid var(--gold);
  
  /* Einblend-Logik via JavaScript (wa-visible Klasse) */
  opacity: 0; 
  visibility: hidden;
  transform: translateY(60px);
  pointer-events: none;
  transition: all 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28);
}

.floating-wa.wa-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.floating-wa svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  display: block;
  transition: fill 0.3s ease;
}

@media (min-width: 769px) {
  .floating-wa:hover {
      background-color: #fff;
      color: var(--gold);
      border-color: #fff;
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
  }
  .floating-wa:hover svg {
      fill: var(--gold);
  }
}

@media (max-width: 768px) {
  .floating-wa {
      bottom: 40px; 
      right: 20px;
      padding: 10px 20px; 
      font-size: 14px;
  }
}




/* SCHOTT WEBDESIGN BADGE */
.sw-copyright {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.sw-separator {
    display: inline-block;
    width: 1px;
    height: 14px;
    background-color: #333;
}

.sw-footer-badge {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 4px 12px 4px 6px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.sw-footer-badge:hover {
    border-color: var(--gold, #C9A070);
    background-color: rgba(201, 160, 112, 0.05); /* slightly gold */
}

.sw-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    width: 24px;
    height: 24px;
    border-radius: 50%;
}

.sw-footer-logo img {
    width: 14px;
    height: auto;
    filter: grayscale(100%) brightness(200%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.sw-footer-badge:hover .sw-footer-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.sw-footer-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.sw-footer-label {
    font-size: 8px;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 0.5px;
}

.sw-footer-brand {
    font-size: 11px;
    color: #888;
    font-weight: 500;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.sw-footer-badge:hover .sw-footer-brand { 
    color: #ddd; 
}
.sw-footer-badge:hover .sw-footer-label { 
    color: var(--gold, #C9A070); 
}

@media (max-width: 768px) {
    .sw-copyright {
        flex-direction: column;
        gap: 1rem;
    }
    .sw-separator {
        display: none;
    }
}

/* ─── HOURS PARALLAX (index.html) ──────────────────────────────────── */
.hours-parallax {
  position: relative;
  padding: 6rem 8vw;
  color: white;
  text-align: center;
  overflow: hidden;
}
.hours-parallax-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hours-parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.62);
  z-index: 1;
}
.hours-parallax-content {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 0 auto;
  background: rgba(255,255,255,0.05);
  padding: 3rem 2.5rem;
  border-radius: 8px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
}
.hours-table-parallax {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
  text-align: left;
}
.hours-table-parallax tr {
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.hours-table-parallax tr:last-child {
  border-bottom: none;
}
.hours-table-parallax td {
  padding: 0.9rem 0;
  color: rgba(255,255,255,0.88);
}
.hours-table-parallax td:last-child {
  text-align: right;
}
.hours-table-parallax .closed {
  opacity: 0.45;
  font-style: italic;
}

/* ─── INDEX PORTFOLIO GRID ──────────────────────────────────────────── */
.index-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.index-portfolio-grid img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  transition: transform 0.5s ease;
}
.index-portfolio-grid img:hover {
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .index-portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .index-portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hours-parallax { padding: 4rem 1.5rem; }
  .hours-parallax-content { padding: 2rem 1.5rem; }
}




/* --- MOBILE & GLOBAL UI REFINEMENTS --- */
body.page-no-hero {
  padding-top: var(--nav-h);
}
body.page-no-hero nav {
  background: var(--ivory);
  border-bottom-color: rgba(201,160,112,0.35);
  box-shadow: 0 2px 24px rgba(28,28,28,0.07);
}
body.page-no-hero .nav-logo .line1 { color: var(--near-black) !important; }
body.page-no-hero .nav-logo .line2 { color: var(--bronze) !important; }
body.page-no-hero .nav-links a { color: var(--text) !important; }
body.page-no-hero .hamburger span { background: var(--near-black) !important; }

/* ─── LEGAL CONTENT ─────────────────────────────────────────────── */
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 3rem 8vw 6rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}
.legal-content h2 {
    font-family: 'Playfair Display SC', serif;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--near-black);
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201,160,112,0.25);
    letter-spacing: 0.02em;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.97rem;
}
.legal-content ul {
    margin: 0.5rem 0 1.25rem 1.25rem;
    color: var(--text-light);
    font-size: 0.97rem;
    line-height: 1.85;
}
.legal-content ul li {
    margin-bottom: 0.6rem;
    padding-left: 0.25rem;
}
.legal-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: var(--near-black);
    margin: 1.75rem 0 0.5rem;
    letter-spacing: 0.01em;
}
.legal-content h4 {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    margin: 1.25rem 0 0.4rem;
}
.legal-content strong { color: var(--near-black); font-weight: 500; }
.legal-content em { color: var(--text-light); font-style: italic; }
.legal-content a { color: var(--bronze); text-decoration: underline; text-underline-offset: 2px; }

/* Fix mobile scaling for Hero & Pricing */
@media (max-width: 768px) {
    .price-list-mini td { padding: 0.5rem 0; }
    .price-list-mini td:last-child { padding-left: 0.5rem; text-align: right; }
    .page-hero-content h1 { font-size: clamp(2rem, 8vw, 3.5rem); }
}
@media (max-width: 480px) {
    .legal-content { padding: 0 5vw; }
    .legal-content h1 { font-size: 1.8rem; }
    
    /* Make sure grid stays 1 col */
    .services-grid, .portfolio-grid, .price-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
    
    /* Fix Cookie Banner */
    #cookie-banner { flex-direction: column; text-align: center; padding: 1.5rem; }
    .cookie-buttons { flex-direction: column; width: 100%; }
    .cookie-buttons button { width: 100%; margin: 0.3rem 0; }
}


/* Natalie Portrait Photo */
.natalie-photo {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 4px solid var(--ivory);
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}
