/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #e8c97e;
  --dark: #1a1a1a;
  --dark-2: #2a2a2a;
  --dark-3: #333;
  --text: #4a4a4a;
  --text-light: #777;
  --bg: #fdfaf6;
  --bg-accent: #f8f1e6;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Lato', Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--font-serif); line-height: 1.25; color: var(--dark); }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.8); }
.section-accent { background: var(--bg-accent); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.divider {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 20px auto 0;
}
.divider-left { margin-left: 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  padding: 13px 34px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; text-align: center; }
.btn-nav {
  background: var(--gold);
  color: var(--dark) !important;
  padding: 10px 24px;
  border-radius: 40px;
  font-weight: 700;
  transition: var(--transition);
}
.btn-nav:hover { background: var(--gold-light); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 600;
}
.logo span { color: var(--gold); }
.nav-links {
  list-style: none;
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: #0d0d0d;
  perspective: 900px;
}

.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.5;
  will-change: transform;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.15) 0%,
    rgba(10,6,0,0.55) 50%,
    rgba(0,0,0,0.80) 100%
  );
  z-index: 1;
}

/* ── 3D SCISSORS ── */
.scissors-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 340px; height: 140px;
  perspective: 600px;
  pointer-events: none;
  will-change: transform;
}

.scissors-3d {
  position: relative;
  width: 100%; height: 100%;
  transform-style: preserve-3d;
  transform: rotateX(12deg) rotateY(-8deg) rotateZ(0deg);
  transition: transform 0.05s linear;
  filter: drop-shadow(0 12px 32px rgba(201,168,76,0.45));
}

/* Each blade is an absolutely-positioned div */
.blade {
  position: absolute;
  left: 0; width: 100%;
  height: 50%;
  transform-origin: 20% 100%; /* pivot at the screw point */
  transform-style: preserve-3d;
}
.blade svg { width: 100%; height: 100%; display: block; }

.blade-top {
  top: 0;
  transform-origin: 20% 100%;
  transform: rotateZ(0deg);
}
.blade-bottom {
  top: 50%;
  transform-origin: 20% 0%;
  transform: rotateX(180deg) rotateZ(0deg);
}

/* Gold glow at pivot */
.scissors-pivot-glow {
  position: absolute;
  left: calc(20% - 18px); top: 50%;
  transform: translateY(-50%) translateZ(4px);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,126,0.9) 0%, rgba(201,168,76,0.3) 50%, transparent 75%);
  animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%,100% { opacity: 0.8; transform: translateY(-50%) translateZ(4px) scale(1); }
  50%      { opacity: 1;   transform: translateY(-50%) translateZ(4px) scale(1.25); }
}

/* Cut line that extends from scissors tip */
.scissors-3d::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 52%; height: 1.5px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: translateY(-50%);
  opacity: 0.4;
  animation: cut-line 2s ease-in-out infinite;
}
@keyframes cut-line {
  0%,100% { opacity: 0.3; }
  50%      { opacity: 0.7; }
}

/* ── SCHWEBENDE SCHERE + KAMM (wellenförmig beim Scrollen, landen im Galerie-Foto) ── */
.scissors-float,
.comb-float {
  position: fixed;
  top: 0; left: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  will-change: transform, left, top;
}
.scissors-float { width: 110px; height: 55px; }
.comb-float     { width: 46px;  height: 74px; }
.scissors-float svg,
.comb-float svg {
  width: 100%; height: 100%; display: block;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.4));
}
.scissors-float.landed,
.comb-float.landed { position: absolute; }
@media (max-width: 640px) {
  .scissors-float { width: 74px; height: 37px; }
  .comb-float     { width: 32px; height: 51px; }
}

/* Zielbild in der Galerie: Glanz-Effekt, sobald Schere+Kamm dort "ankommen" */
.style-glow {
  position: absolute;
  width: 90px; height: 90px;
  left: 50%; top: 32%;
  transform: translate(-50%, -50%) scale(0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,126,0.9) 0%, rgba(201,168,76,0.35) 45%, transparent 72%);
  opacity: 0;
  pointer-events: none;
  z-index: 4;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.gallery-item.styled .style-glow {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: style-glow-pulse 2.4s ease-in-out infinite;
}
@keyframes style-glow-pulse {
  0%,100% { filter: brightness(1); }
  50%      { filter: brightness(1.35); }
}
.sparkle {
  position: absolute;
  width: 10px; height: 10px;
  left: 50%; top: 32%;
  background: linear-gradient(135deg, #fff8e2, #e8c97e);
  clip-path: polygon(50% 0%, 65% 35%, 100% 50%, 65% 65%, 50% 100%, 35% 65%, 0% 50%, 35% 35%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  animation: sparkle-burst 0.9s ease-out forwards;
}
@keyframes sparkle-burst {
  0%   { opacity: 1; transform: translate(-50%, -50%) scale(0.3) translate(0, 0); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1) translate(var(--sx), var(--sy)); }
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}
.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.hero-content h1 { font-style: italic; }
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  line-height: 1.8;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 1.4rem;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-bottom: 3px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}
.service-card h3 { color: var(--dark); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-light); font-size: 0.95rem; }
.price {
  display: inline-block;
  margin-top: 1rem !important;
  color: var(--gold) !important;
  font-weight: 700;
  font-size: 1.05rem;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
}
.about-image-main {
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.about-image-accent {
  position: absolute;
  right: -28px; bottom: -28px;
  width: 42%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 4px solid var(--dark);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 2;
}
.about-image-accent img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}
@media (max-width: 640px) {
  .about-image-accent { width: 48%; right: -12px; bottom: -12px; }
}
.about-text .section-label { display: block; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: rgba(255,255,255,0.75); margin-bottom: 1rem; }
.about-stats {
  display: flex; gap: 40px;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}
.gallery-item {
  position: relative;
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  aspect-ratio: 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-wide { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-tall { grid-row: span 2; aspect-ratio: 1/2; }

/* Verwandlungs-Foto: Vorher (blond, lang) blendet zu Nachher (rot, kürzer) über */
#styleTarget img { position: absolute; inset: 0; }
#styleTarget img.style-after {
  opacity: 0;
  transition: opacity 1.2s ease, transform 0.4s ease;
}
#styleTarget.styled img.style-after { opacity: 1; }
.gallery-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 20px;
  font-style: italic;
}

/* ===== PRICES ===== */
.section-note { color: var(--text-light); font-size: 0.9rem; margin-top: 8px; font-style: italic; }
.prices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.price-table {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.price-table-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--dark);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 8px;
  margin-bottom: 16px;
}
.price-list { margin-bottom: 8px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid #f0ebe0;
  font-size: 0.92rem;
  gap: 12px;
}
.price-row span:last-child {
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.divider-row { border-bottom: 2px solid #f0ebe0; padding: 0; margin: 6px 0; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.review-card p { color: var(--text); font-style: italic; font-size: 0.97rem; }
.reviewer { display: block; margin-top: 1rem; font-weight: 700; color: var(--gold); font-size: 0.9rem; }

/* ===== CONTACT ===== */
.btn-call {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  padding: 16px 40px;
}
.map-embed { margin-bottom: 32px; }
.map-embed iframe { box-shadow: var(--shadow); }
.contact-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.info-item {
  display: flex; gap: 20px;
  margin-bottom: 32px;
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.info-item strong { display: block; color: var(--dark); font-weight: 700; margin-bottom: 4px; }
.info-item a { color: var(--gold); transition: color var(--transition); }
.info-item a:hover { color: var(--dark); }

.contact-form { background: var(--white); padding: 48px 40px; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e0d8cc;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; }
.form-success {
  display: none;
  margin-top: 16px;
  text-align: center;
  color: #2e7d32;
  font-weight: 700;
  background: #f1f8e9;
  padding: 12px;
  border-radius: var(--radius);
}
.form-success.visible { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 40px 0;
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.4rem; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: rgba(255,255,255,0.4); font-size: 0.85rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

/* ===== MODALS ===== */
.modal-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  align-items: center; justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.modal-backdrop.open { display: flex; }

.modal-box {
  background: var(--white);
  border-radius: var(--radius);
  max-width: 700px; width: 100%;
  max-height: 88vh;
  overflow-y: auto;
  padding: 48px 44px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.35);
  animation: modal-in 0.25s ease;
}
@keyframes modal-in {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none;
  font-size: 2rem; line-height: 1;
  color: var(--text-light); cursor: pointer;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--dark); }

.modal-box h2 {
  font-family: var(--font-serif);
  font-size: 2rem; color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
}
.modal-content h3 {
  font-size: 1.05rem; color: var(--dark);
  margin: 1.5rem 0 0.4rem;
}
.modal-content h4 {
  font-size: 0.95rem; color: var(--gold);
  margin: 1rem 0 0.3rem; font-weight: 700;
}
.modal-content p { font-size: 0.92rem; color: var(--text); line-height: 1.75; }
.modal-content a { color: var(--gold); text-decoration: underline; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 8000;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  padding: 20px 0;
  transform: translateY(0);
  transition: transform 0.4s ease;
  box-shadow: 0 -8px 32px rgba(0,0,0,0.4);
}
.cookie-banner.hidden { transform: translateY(110%); }

.cookie-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { color: var(--white); font-size: 1rem; display: block; margin-bottom: 4px; }
.cookie-text p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }
.cookie-text a { color: var(--gold); text-decoration: underline; }

.cookie-buttons { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.btn-cookie-accept {
  background: var(--gold); color: var(--dark);
  border: none; padding: 12px 28px;
  border-radius: 40px; font-weight: 700;
  font-size: 0.9rem; cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--gold-light); }
.btn-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 11px 24px;
  border-radius: 40px; font-size: 0.9rem;
  cursor: pointer; transition: var(--transition);
}
.btn-cookie-decline:hover { border-color: var(--gold); color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .prices-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-wide { grid-column: span 2; aspect-ratio: 2/1; }
  .gallery-tall { grid-row: auto; aspect-ratio: 1; }
}

@media (max-width: 700px) {
  .scissors-wrap { width: 220px; height: 90px; }
  .section { padding: 72px 0; }
  .nav-links {
    display: none;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: center; align-items: center;
    gap: 40px;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.3rem; }
  .nav-toggle { display: flex; z-index: 1000; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 32px 24px; }
  .about-stats { gap: 24px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
}
