/* =============================================
   GLANZWERK STUDIO – Dark Luxury Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg:          #050505;
  --bg-card:     #0d0d0d;
  --bg-hover:    #141414;
  --gold:        #e2c97e;
  --gold-dim:    rgba(226, 201, 126, 0.15);
  --gold-border: rgba(226, 201, 126, 0.25);
  --white:       #ffffff;
  --white-60:    rgba(255, 255, 255, 0.82);
  --white-40:    rgba(255, 255, 255, 0.78);
  --white-15:    rgba(255, 255, 255, 0.15);
  --white-08:    rgba(255, 255, 255, 0.08);
  --white-05:    rgba(255, 255, 255, 0.05);
  --white-25:    rgba(255, 255, 255, 0.62);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
  --max-width:   1200px;
  --section-pad: 100px 0;
  --nav-height:  64px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-sans);
  font-weight: 500;
}

.section-pad { padding: var(--section-pad); }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(5, 5, 5, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--white-05);
  transition: background 0.3s;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-text {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
  transition: color 0.2s;
}

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

.nav-links .nav-cta,
.nav-mobile .nav-cta {
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 8px 18px;
  transition: background 0.2s, color 0.2s;
}

.nav-links .nav-cta:hover,
.nav-mobile .nav-cta:hover {
  background: var(--gold);
  color: var(--bg);
}

/* Burger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white-60);
  transition: 0.3s;
}

/* Mobile Menu */
.nav-mobile {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--white-08);
  padding: 16px 24px 24px;
}

.nav-mobile.open { display: block; }

.nav-mobile ul { display: flex; flex-direction: column; gap: 8px; }

.nav-mobile-link {
  display: block;
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
  border-bottom: 1px solid var(--white-05);
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ── HERO ── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(226,201,126,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  text-align: center;
  padding: 80px 24px;
  position: relative;
}

.hero-eyebrow {
  margin-bottom: 20px;
  opacity: 0.7;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 92px);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-headline-gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--white-40);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Buttons */
.btn {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  transition: background-color 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--bg);
}

.btn-primary:hover {
  background: #f0d88a;
  transform: translateY(-1px);
}

.btn-ghost {
  border: 1px solid var(--white-15);
  color: var(--white-40);
}

.btn-ghost:hover {
  border-color: var(--white-40);
  color: var(--white);
}

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

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

/* Social Proof Bar */
.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.hero-proof-item { text-align: center; }

.hero-proof-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--gold);
}

.hero-proof-label {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white-25);
  margin-top: 6px;
}

.hero-proof-divider {
  width: 1px;
  height: 36px;
  background: var(--white-08);
}

@media (max-width: 600px) {
  .hero-proof { gap: 20px; }
  .hero-proof-divider { display: none; }
}

/* ── SECTION DEFAULTS ── */
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.15;
}
.gold { color: var(--gold); }
.section-sub {
  text-align: center;
  color: var(--white-40);
  font-size: 16px;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── PORTFOLIO ── */
.portfolio-filter {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--white-08);
  color: var(--white-40);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold-border);
  color: var(--gold);
  background: var(--gold-dim);
}
.filter-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.portfolio-card { transition: transform 0.3s; }
.portfolio-card:hover { transform: translateY(-4px); }
.portfolio-card.hidden { display: none; }

/* Browser Frame */
.browser-frame {
  border: 1px solid var(--white-08);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-card);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #111;
  border-bottom: 1px solid var(--white-05);
}
.browser-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white-08);
}
.browser-url {
  font-size: 10px;
  color: var(--white-40);
  margin-left: 8px;
  font-family: monospace;
}
.browser-preview {
  height: 200px;
  position: relative;
  overflow: hidden;
}
.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.preview-hero-strip {
  height: 90px;
  background: linear-gradient(135deg, #1a1a2e, #2d1b69);
}
.preview-hero-strip.dark { background: linear-gradient(135deg, #0a0a0a, #1a1a1a); }
.preview-hero-strip.warm { background: linear-gradient(135deg, #1a0f00, #3d2200); }
.preview-content { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.preview-title { height: 10px; width: 60%; background: var(--white-08); border-radius: 2px; }
.preview-line  { height: 7px;  width: 90%; background: var(--white-05); border-radius: 2px; }
.preview-line.short { width: 70%; }
.preview-btn   { height: 22px; width: 80px; background: var(--gold-dim); border-radius: 2px; margin-top: 4px; }
.preview-grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 8px;
}
.mini-img { height: 48px; background: var(--white-05); border-radius: 2px; }
.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 4px 0;
}
.portfolio-tag {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}
.portfolio-name {
  font-size: 14px;
  color: var(--white-60);
  font-weight: 500;
}

/* ── PAKETE ── */
#pakete { background: #030303; }
.pakete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.paket-card {
  border: 1px solid var(--white-08);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.paket-card:hover { border-color: var(--gold-border); }
.paket-featured {
  background: var(--gold);
  border-color: var(--gold);
  position: relative;
  transform: translateY(-8px);
}
.paket-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  white-space: nowrap;
}
.paket-name { margin-bottom: 8px; }
.paket-price {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: lining-nums tabular-nums;
}
.paket-currency { font-size: 26px; font-weight: 600; vertical-align: 6px; margin-right: 2px; }
.paket-note { font-size: 12px; color: var(--white-40); }
.paket-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: var(--white-60);
  padding-top: 8px;
  border-top: 1px solid var(--white-08);
  flex: 1;
}
.paket-list li { padding-left: 4px; }

/* ── PROZESS – TIMELINE ── */
#prozess { background: #030303; }

.prozess-timeline {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 56px;
}

/* Verbindungslinie durch alle 3 Punkte */
.prozess-timeline::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 16.5%; right: 16.5%;
  height: 1px;
  background: linear-gradient(to right,
    rgba(226,201,126,0.08),
    rgba(226,201,126,0.45) 25%,
    rgba(226,201,126,0.45) 75%,
    rgba(226,201,126,0.08));
  z-index: 0;
}

.prozess-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}

.prozess-dot {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--gold-border);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.prozess-step:hover .prozess-dot {
  border-color: var(--gold);
  box-shadow: 0 0 14px rgba(226,201,126,0.25);
}

.prozess-dot span {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold);
  font-weight: 600;
}

.prozess-content { max-width: 260px; }

.prozess-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}

.prozess-desc {
  font-size: 14px;
  color: var(--white-40);
  line-height: 1.7;
}

@media (max-width: 700px) {
  .prozess-timeline { flex-direction: column; align-items: center; gap: 40px; }
  .prozess-timeline::before {
    top: 0; bottom: 0; left: 50%; right: auto;
    width: 1px; height: auto;
    background: linear-gradient(to bottom,
      rgba(226,201,126,0.08),
      rgba(226,201,126,0.4) 30%,
      rgba(226,201,126,0.4) 70%,
      rgba(226,201,126,0.08));
    transform: translateX(-50%);
  }
  .prozess-step { padding: 0; }
}

/* ── USPs ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
  margin-top: 48px;
  border: 1px solid var(--white-05);
}
.usp-card {
  padding: 32px 28px;
  border: 1px solid var(--white-05);
  transition: background-color 0.2s;
}
.usp-card:hover { background: var(--bg-hover); }
.usp-icon-svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
  margin-bottom: 16px;
}
.usp-icon-svg svg { width: 100%; height: 100%; }
.usp-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.usp-desc {
  font-size: 13px;
  color: var(--white-40);
  line-height: 1.7;
}

/* ── KONTAKT ── */
#kontakt { background: #030303; }

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 768px) {
  .kontakt-inner { grid-template-columns: 1fr; gap: 48px; }
}

.kontakt-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-40);
}

.form-input {
  background: var(--bg-card);
  border: 1px solid var(--white-08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-input:focus { border-color: var(--gold-border); }
.form-input::placeholder { color: rgba(255,255,255,0.2); }
.form-textarea { min-height: 120px; resize: vertical; }

/* ── FOOTER ── */
.footer {
  border-top: 1px solid var(--white-05);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ── SCROLL ANIMATIONEN ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── PROZESS STAGGER ── */
.prozess-timeline > .prozess-step:nth-child(1) { transition-delay: 0s;    }
.prozess-timeline > .prozess-step:nth-child(2) { transition-delay: 0.25s; }
.prozess-timeline > .prozess-step:nth-child(3) { transition-delay: 0.5s;  }

/* ── LOGO GLOW (div-based – works inside backdrop-filter) ── */
.nav-logo { position: relative; }

.nav-logo-glow {
  position: absolute;
  width: 42px; height: 42px;
  top: 50%; left: -11px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(226,201,126,0.95) 0%, rgba(226,201,126,0.4) 30%, transparent 70%);
  animation: logo-glow-pulse 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.nav-logo-icon { position: relative; z-index: 1; }

@keyframes logo-glow-pulse {
  0%, 100% { opacity: 0.12; transform: translateY(-50%) scale(0.65); }
  50%       { opacity: 0.9;  transform: translateY(-50%) scale(1.3);  }
}

/* ── HERO CANVAS & GLOW ── */
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}
.hero-inner { z-index: 2; position: relative; }
.hero-glow   { z-index: 0; }

/* Glow sanft pulsieren lassen */
@keyframes glow-breathe {
  0%, 100% { opacity: 0.7;  transform: translateX(-50%) scale(1); }
  50%       { opacity: 1.0; transform: translateX(-50%) scale(1.15); }
}
.hero-glow { animation: glow-breathe 5s ease-in-out infinite; }

/* ── PORTFOLIO – ECHTE PROJEKTE ── */
.osteo-preview { background: #EDE8DE; }
.osteo-preview .preview-hero-strip {
  background: linear-gradient(135deg, #2D4A3E 0%, #4a7060 100%);
}
.osteo-preview .preview-title { background: rgba(45,74,62,0.25); }
.osteo-preview .preview-line  { background: rgba(28,28,26,0.12); }

.clearview-preview { background: #080c12; }
.clearview-preview .preview-hero-strip {
  background: linear-gradient(135deg, #071530 0%, #0d2545 100%);
  position: relative; overflow: hidden;
}
.clearview-preview .preview-hero-strip::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 35px;
  background: radial-gradient(ellipse, rgba(0,229,204,0.45) 0%, transparent 70%);
}
.clearview-preview .preview-title { background: rgba(0,229,204,0.3); }
.clearview-preview .preview-line  { background: rgba(255,255,255,0.07); }
.clearview-preview .preview-btn   { background: rgba(0,229,204,0.2); border-radius: 12px; }

.portfolio-preview-placeholder {
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}

/* ── CUSTOM CURSOR ── */
body { cursor: none; }

#cursorDot {
  position: fixed;
  width: 7px; height: 7px;
  background: rgba(255, 248, 215, 0.95);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 5px  2px rgba(226, 201, 126, 0.9),
    0 0 14px 4px rgba(226, 201, 126, 0.4);
  will-change: left, top;
}

#cursorGlow {
  position: fixed;
  width: 220px; height: 220px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9996;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(226, 201, 126, 0.09) 0%,
    rgba(226, 201, 126, 0.04) 40%,
    transparent 70%
  );
  will-change: left, top;
}

/* ── USP FLIP CARDS (X-Achse) ── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  margin-top: 48px;
  align-items: stretch;
}
@media (max-width: 900px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .usp-grid { grid-template-columns: 1fr; } }

.usp-card {
  perspective: 1000px;
  height: 200px;
  padding: 0; border: none; background: none;
}
.usp-card:hover { background: none; }

.usp-inner {
  position: relative;
  width: 100%;
  height: 200px;
  transform-style: preserve-3d;
  /* Langsames Zurückdrehen wenn Hover endet */
  transition: transform 1.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Schnelles Hineindrehen beim Hovern */
.usp-card:hover .usp-inner {
  transform: rotateX(180deg);
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.usp-front,
.usp-back {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  padding: 20px 18px 16px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* VORDERSEITE – einfarbig gold, schwarze Icons */
.usp-front {
  background: var(--gold);
  border: 1px solid rgba(180,140,30,0.35);
  position: relative;
}

/* Großes Icon – füllt den freien Platz, zentriert, SCHWARZ */
.usp-front .usp-icon-svg {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0c08;
  position: relative;
  z-index: 1;
}

.usp-front .usp-icon-svg svg {
  width: 76px; height: 76px;
}

/* PNG Icons */
.usp-icon-img {
  width: 115px;
  height: 115px;
  object-fit: contain;
  mix-blend-mode: multiply;  /* weißer Hintergrund verschwindet auf Gold */
  display: block;
}

/* Gold-Variante (dunkler Hintergrund): schwarze Icons → gold gefärbt */
.usp-dark-variant .usp-icon-img {
  mix-blend-mode: normal;
  filter: invert(1) sepia(1) saturate(2) hue-rotate(5deg) brightness(0.88);
}

/* Title-Zone – Titel zentriert unten, auf Vorder- UND Rückseite */
.usp-title-zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.usp-divider {
  width: 22px; height: 1px;
  background: rgba(0,0,0,0.22);
  margin-bottom: 8px;
}

/* Kein Divider auf Vorderseite */
.usp-front .usp-divider { display: none; }

.usp-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #0d0c08;
  line-height: 1.3;
  text-align: center;
  letter-spacing: 0.02em;
}

/* RÜCKSEITE – dunkel mit heller Schrift */
.usp-back {
  transform: rotateX(180deg);
  background: linear-gradient(160deg, #131310 0%, #0f0f0d 100%);
  border: 1px solid var(--gold-border);
}

.usp-back .usp-title { color: var(--white); }
.usp-back .usp-divider { background: var(--gold-border); }

.usp-back .usp-desc {
  font-size: 12px;
  color: var(--white-60);
  line-height: 1.65;
  flex: 1;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 4px 2px;
}

/* ── PORTFOLIO – IFRAME MOCKUP ── */
.iframe-preview { padding: 0; overflow: hidden; position: relative; }

.iframe-scale-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 1440px;
  height: 820px;
  transform: scale(0.256);
  transform-origin: top left;
  pointer-events: none;
}

.site-iframe {
  width: 100%; height: 100%;
  border: none;
  display: block;
}
