/*
Theme Name: PK v3
Theme URI: https://peterklein.wedding
Author: KOMP
Author URI: https://komp64.de
Description: Peter Klein Hochzeitsfotografie – Version 3
Version: 1.3.0
License: Private
Text Domain: pk-v3
*/

/* ── TOKENS ─────────────────────────────────────── */
:root {
  --bg:      #F7F3ED;
  --ink:     #2a5b4d;
  --accent:  #9E7A3C;
  --mid:     #7a8a7e;
  --line:    #D6CFC6;
  --pill-r:  999px;
  --card-r:  20px;
  --sec-gap: 140px;
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* Umlaut-Punkte bei Anton-Headlines sichtbar halten */
h1, h2, h3 {
  overflow: visible;
}

/* ── NAV ────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  backdrop-filter: blur(18px) saturate(160%);
  background: rgba(247, 243, 237, .82);
  border-bottom: 1px solid var(--line);
}
.nav-links {
  display: flex; gap: 32px;
  font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--mid);
}
.nav-links a { position: relative; transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--ink);
  font-weight: 500;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}
.nav-logo { display: flex; align-items: center; flex-shrink: 0; align-self: center; }
.nav-logo img { width: auto; height: 80px; margin: -20px 0; }
.nav-cta { margin-left: auto; }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid var(--ink);
  border-radius: var(--pill-r);
  font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  transition: all .25s;
}
.nav-cta:hover { background: var(--ink); color: var(--bg); }

/* ── BURGER + MOBILE MENU ──────────────────────── */
.burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
  z-index: 110;
}
.burger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); transition: all .3s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 105;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 24px;
  font-size: 18px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a { color: var(--ink); transition: color .2s; }
.mobile-menu a:hover { color: var(--mid); }

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

/* ── HELPERS ─────────────────────────────────────── */
.label {
  font-size: 11px; font-weight: 500; letter-spacing: .18em;
  text-transform: uppercase; color: var(--mid);
  display: block; margin-bottom: 14px;
}
.pill-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border: 1.5px solid var(--ink);
  border-radius: var(--pill-r);
  font-size: 13px; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  transition: all .25s; cursor: pointer; background: transparent; color: var(--ink);
}
.pill-btn:hover { background: var(--ink); color: var(--bg); }
.pill-btn.dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.pill-btn.dark:hover { background: transparent; color: var(--ink); }
.arr {
  display: inline-block;
  width: 12px; height: 12px;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── PRELOADER ──────────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
.preloader.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-logo {
  height: 80px;
  width: auto;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { opacity: .3; transform: scale(.95); }
  50%      { opacity: 1; transform: scale(1); }
}

/* ── HERO BG WRAP ───────────────────────────────── */
.hero-bg-wrap {
  position: relative;
}
.hero-bg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/pk-hero-bg.webp') center/cover no-repeat;
  opacity: .07;
  z-index: 0;
  pointer-events: none;
}
.hero-bg-wrap::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 40%;
  background: linear-gradient(to top, var(--bg), transparent);
  z-index: 0;
  pointer-events: none;
}
.hero-bg-wrap > * {
  position: relative;
  z-index: 1;
}

/* ── HERO ────────────────────────────────────────── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-word { animation: heroFadeUp .8s ease both; }
.hero-word-2 { animation-delay: .15s; }
.hero-topright { animation: heroFadeUp .8s ease .25s both; }
.hero-images-row { animation: heroFadeUp .8s ease .35s both; }

.hero {
  padding: 100px 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 9px;
  align-items: start;
  align-content: start;
}

.hero-word {
  font-family: 'Anton', sans-serif;
  font-size: clamp(84px, 13vw, 210px);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.hero-word-1 {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  margin-top: 8px;
  white-space: nowrap;
  min-width: 0;
  overflow: visible;
}
.flap-char {
  display: inline-block;
  transform-origin: center;
}
@keyframes flapFlip {
  0%   { transform: rotateX(0deg);   opacity: 1; }
  45%  { transform: rotateX(-90deg); opacity: 0; }
  55%  { transform: rotateX(90deg);  opacity: 0; }
  100% { transform: rotateX(0deg);   opacity: 1; }
}
.flap-char.flipping {
  animation: flapFlip 0.18s ease-in-out forwards;
}
.hero-word-2 {
  grid-column: 2;
  grid-row: 2;
  text-align: left;
  justify-self: start;
  align-self: start;
}

.hero-topright {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  max-width: 360px;
  padding-top: 16px;
}

.hero-images-row {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 12px;
  height: 100%;
  align-self: stretch;
}
.hero-img {
  border-radius: var(--card-r);
  overflow: hidden;
  position: relative;
  background: var(--line);
}
.hero-img > img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.hero-img:hover > img { transform: scale(1.04); }

.hero-bc-overlay {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: rgba(10, 9, 9, .88);
  backdrop-filter: blur(8px) saturate(140%);
  color: var(--bg);
  border-radius: 16px;
  padding: 18px 20px 20px;
}
.hero-bc-overlay .bc-label {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  opacity: .5; margin-bottom: 6px; display: block;
}
.hero-bc-overlay .bc-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px; text-transform: uppercase;
  line-height: 1; margin-bottom: 14px;
}
.hero-bc-overlay .pill-btn {
  width: 100%;
  justify-content: space-between;
  border-color: rgba(247, 243, 237, .35);
  color: var(--bg);
  padding: 11px 18px;
  font-size: 11px;
}
.hero-bc-overlay .pill-btn:hover {
  background: var(--bg); color: var(--ink);
  border-color: var(--bg);
}

.hero-topright-img {
  width: 130px; height: 100px;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-topright-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-topright-text {
  font-size: 12px;
  color: var(--mid);
  line-height: 1.55;
  padding-top: 2px;
  flex: 1;
}
.hero-topright-text a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ink);
  font-weight: 500;
  transition: opacity .2s;
}
.hero-topright-text a:hover { opacity: .6; }

/* ── DIVIDER ────────────────────────────────────── */
hr.section-divider { border: none; border-top: 1px solid var(--line); margin: 0 48px; }

/* ── MARQUEE ─────────────────────────────────────── */
.marquee-wrap {
  overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 18px 0; margin-bottom: var(--sec-gap);
  background: var(--ink); color: var(--bg);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  font-family: 'Anton', sans-serif;
  font-size: 22px; text-transform: uppercase; letter-spacing: .06em;
  padding: 0 40px; white-space: nowrap;
  display: flex; align-items: center; gap: 40px;
}
.marquee-dot { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 18px; opacity: .5; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── TRUST BENTO ─────────────────────────────────── */
.trust { padding: var(--sec-gap) 48px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.trust-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-r);
  padding: 32px 28px;
}
.trust-card .tc-num {
  font-family: 'Anton', sans-serif;
  font-size: 64px; line-height: 1.05;
  margin-bottom: 12px;
}
.trust-card .tc-label { font-size: 13px; color: var(--mid); }
.trust-card.dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.trust-card.dark .tc-label { color: rgba(255, 255, 255, .55); }
.trust-intro { padding: 0; }
.trust-intro p { max-width: 560px; color: var(--mid); line-height: 1.75; font-size: 15px; }

/* ── TRUSTED BAR ───────────────────────────────── */
.trusted-bar {
  margin-top: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.trusted-label {
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--mid);
  flex-shrink: 0;
}
.trusted-logos {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.trusted-logos a {
  display: block;
  opacity: .35;
  transition: opacity .25s;
  flex-shrink: 0;
}
.trusted-logos a:hover { opacity: .7; }
.trusted-logos img {
  height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
}

/* ── PORTFOLIO ──────────────────────────────────── */
.portfolio { padding: 0 0 var(--sec-gap); }
.port-type-wrap {
  position: relative; padding: 0 48px; overflow: hidden;
  line-height: .88;
  user-select: none;
}
.port-word {
  font-family: 'Anton', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  letter-spacing: -.01em;
}
.port-folio-mobile { display: none; }
.footer-komp-mobile { display: none; }
.port-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
  padding: 0 48px;
  margin-top: 12px;
  position: relative; z-index: 2;
  align-items: start;
}
.port-cell {
  border-radius: var(--card-r);
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
}
.port-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.port-cell:hover img { transform: scale(1.06); }
.port-second-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 0 48px;
  margin-top: 12px;
}
.port-second-row .port-cell { aspect-ratio: 3/2; }
.port-bottom {
  padding: 40px 48px 0;
  display: flex; justify-content: space-between; align-items: center;
}

/* ── PROCESS ─────────────────────────────────────── */
.process { padding: var(--sec-gap) 48px; }
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}
.process-left-img {
  border-radius: var(--card-r); overflow: hidden;
  aspect-ratio: 3/2;
  margin-bottom: 12px;
}
.process-left-img--small {
  aspect-ratio: 3/2;
  width: 70%;
  margin-left: auto;
  margin-bottom: 28px;
}
.process-left-img img { width: 100%; height: 100%; object-fit: cover; }
.process-left p { color: var(--mid); font-size: 14px; line-height: 1.75; }
.process-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.process-step:first-child { padding-top: 0; }
.process-step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Anton', sans-serif;
  font-size: 38px; line-height: 1;
  color: var(--line);
}
.step-title { font-size: 14px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--mid); }

/* ── TESTIMONIALS ───────────────────────────────── */
.testimonials { padding: var(--sec-gap) 0; }
.test-header { padding: 0 48px; display: flex; align-items: flex-end; justify-content: space-between; }
.test-rating {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Anton', sans-serif; font-size: 32px;
}
.stars { color: var(--accent); font-size: 18px; letter-spacing: 2px; }
.test-source { font-size: 12px; color: var(--mid); letter-spacing: .08em; text-transform: uppercase; }
.test-scroll {
  display: flex; gap: 16px;
  padding: 40px 48px 0;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.test-scroll::-webkit-scrollbar { display: none; }
.testimonials { position: relative; }
.testimonials::after {
  content: '';
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 80px;
  background: linear-gradient(to right, transparent, var(--bg));
  pointer-events: none;
  z-index: 2;
}
.test-card {
  flex-shrink: 0;
  width: 320px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-r);
  padding: 28px 28px 32px;
  scroll-snap-align: start;
}
.test-card .stars { font-size: 13px; letter-spacing: 3px; margin-bottom: 14px; display: block; }
.test-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 17px; line-height: 1.6;
  margin-bottom: 20px;
  color: var(--ink);
}
.test-author { font-size: 12px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; color: var(--mid); }

/* ── FAQ ─────────────────────────────────────────── */
.faq { padding: var(--sec-gap) 48px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}
.faq-left h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase; line-height: 1.05;
  margin-bottom: 24px;
}
.faq-left p { color: var(--mid); font-size: 14px; line-height: 1.7; margin-bottom: 28px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%;
  padding: 20px 0;
  cursor: pointer;
  font-size: 14px; font-weight: 500;
  gap: 16px;
  background: none;
  border: none;
  text-align: left;
  color: var(--ink);
  font-family: inherit;
}
.faq-q > span:first-child { flex: 1; }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1.5px solid var(--ink);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 300;
  transition: transform .3s, background .25s;
}
.faq-item.open .faq-icon { background: var(--ink); color: var(--bg); transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.4, 0, .2, 1), padding .3s;
  font-size: 13px; color: var(--mid); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }

/* ── PACKAGES ───────────────────────────────────── */
.packages { padding: var(--sec-gap) 48px; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.pkg-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px 32px;
  display: flex; flex-direction: column;
}
.pkg-icon {
  font-family: 'Anton', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: var(--line);
  margin-bottom: 12px;
}
.pkg-card.featured .pkg-icon { color: rgba(255,255,255,.2); }
.pkg-card.featured { background: var(--ink); color: var(--bg); border-color: var(--ink); transform: scale(1.04); z-index: 2; box-shadow: 0 24px 64px rgba(10,9,9,.15); }
.pkg-name { font-family: 'Anton', sans-serif; font-size: 32px; text-transform: uppercase; line-height: 1; color: var(--ink); margin-bottom: 12px; }
.pkg-card.featured .pkg-name { color: var(--bg); }
.pkg-price { font-family: 'Anton', sans-serif; font-size: 38px; line-height: 1; margin-bottom: 4px; }
.pkg-duration { font-size: 11px; color: var(--mid); margin-bottom: 20px; }
.pkg-card.featured .pkg-duration { color: rgba(255, 255, 255, .45); }
.pkg-divider { border: none; border-top: 1px solid var(--line); margin-bottom: 18px; }
.pkg-card.featured .pkg-divider { border-color: rgba(255, 255, 255, .15); }
.pkg-features { list-style: none; flex: 1; margin-bottom: 24px; }
.pkg-features li {
  font-size: 13px; padding: 5px 0;
  border-bottom: none;
  color: var(--mid);
  display: flex; gap: 8px; align-items: center;
}
.pkg-card.featured .pkg-features li { color: rgba(255, 255, 255, .7); }
.pkg-features li::before { content: "✓"; font-size: 12px; color: var(--accent); flex-shrink: 0; }
.pkg-card.featured .pkg-features li::before { color: rgba(255, 255, 255, .5); }
.pkg-badge {
  display: inline-block;
  border: 1px solid var(--accent); color: var(--accent);
  background: transparent;
  font-size: 9px; letter-spacing: .15em; text-transform: uppercase;
  padding: 3px 10px; border-radius: var(--pill-r);
  margin-bottom: 10px;
}
.pkg-card.featured .pkg-badge { background: var(--accent); color: #fff; border-color: var(--accent); }
.pkg-card.featured .pill-btn { border-color: var(--bg); color: var(--bg); }
.pkg-card.featured .pill-btn:hover { background: var(--bg); color: var(--ink); }

/* ── CONTACT BANNER ──────────────────────────────── */
.contact-banner { padding: var(--sec-gap) 48px; }
.single-contact  { padding: 64px 48px; }
.contact-inner,
.single-contact-inner {
  background: var(--ink); color: var(--bg);
  border-radius: var(--card-r);
  padding: 64px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-inner .cb-label,
.single-contact-inner .cb-label { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; opacity: .4; display: block; margin-bottom: 16px; }
.contact-inner h2,
.single-contact-inner h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  text-transform: uppercase; line-height: 1.05; margin-bottom: 24px;
}
.contact-inner p,
.single-contact-inner p { font-size: 14px; opacity: .55; line-height: 1.75; max-width: 340px; }
.single-contact-success {
  padding: 24px;
  background: rgba(255,255,255,.1);
  border-radius: var(--card-r);
  color: var(--bg);
  text-align: center;
}
.single-contact-success p { font-size: 16px; opacity: .9; max-width: none; }
.contact-form { display: flex; flex-direction: column; gap: 12px; }
.contact-form-row { display: flex; gap: 12px; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  padding: 14px 18px;
  border-radius: var(--pill-r);
  border: 1px solid rgba(255, 255, 255, .15);
  background: rgba(255, 255, 255, .06);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  outline: none;
  width: 100%;
}
.contact-form textarea {
  border-radius: 16px;
  resize: none;
}
.contact-form input[type="date"] { color-scheme: dark; }
.contact-form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='rgba(247,243,237,.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 44px; }
.contact-form select option { background: var(--ink); color: var(--bg); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(247, 243, 237, .4); }
.contact-form select:invalid { color: rgba(247, 243, 237, .4); }
.contact-form .pill-btn {
  border-color: rgba(255, 255, 255, .4);
  color: var(--bg);
  justify-content: center;
}
.contact-form .pill-btn:hover { background: var(--bg); color: var(--ink); border-color: var(--bg); }

/* ── REGION PAGES ────────────────────────────────── */

/* Hero */
.reg-hero { padding: 120px 48px 80px; }
.reg-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.reg-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
}
.reg-h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 7vw, 110px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 28px;
}
.reg-lead {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 28px;
}
.reg-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.reg-loc-tag {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}
.reg-hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.pill-btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.pill-btn--ghost:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }

/* Hero Images */
.reg-hero-images {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: start;
}
.reg-hero-img {
  border-radius: var(--card-r);
  overflow: hidden;
  position: relative;
}
.reg-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.reg-hero-img--main { aspect-ratio: 3/4; }
.reg-hero-img--side { aspect-ratio: 4/5; margin-top: 40px; }
.reg-badge {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--bg);
  border-radius: var(--card-r);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
}
.reg-badge-num {
  font-family: 'Anton', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
}
.reg-badge-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 4px;
}

/* Stats */
.reg-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 48px;
  flex-wrap: wrap;
}
.reg-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}
.reg-stat-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1;
  color: var(--ink);
  margin-bottom: 6px;
}
.reg-stat-label {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
}
.reg-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}

/* Über */
.reg-about { padding: var(--sec-gap) 48px; }
.reg-about-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}
.reg-about-img { border-radius: var(--card-r); overflow: hidden; aspect-ratio: 3/4; }
.reg-about-img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.reg-about-text .label { display: block; margin-bottom: 16px; }
.reg-about-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 28px;
}
.reg-about-text p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 480px;
}

/* Portfolio */
.reg-portfolio { padding: var(--sec-gap) 48px; }
.reg-portfolio-inner { max-width: 1400px; margin: 0 auto; }
.reg-port-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: start;
}
.reg-port-cell {
  border-radius: var(--card-r);
  overflow: hidden;
  aspect-ratio: 3/2;
}
.reg-port-cell--tall {
  aspect-ratio: 3/4;
  grid-row: 1 / 3;
}
.reg-port-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .6s ease; }
.reg-port-cell:hover img { transform: scale(1.04); }
.reg-portfolio-cta { margin-top: 40px; text-align: center; }

/* Responsive */
@media (max-width: 1024px) {
  .reg-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .reg-hero-images { max-width: 520px; }
  .reg-about-inner { grid-template-columns: 1fr; gap: 40px; }
  .reg-about-img { aspect-ratio: 16/9; max-width: 100%; }
  .reg-port-grid { grid-template-columns: 1fr 1fr; }
  .reg-port-cell--tall { grid-row: auto; aspect-ratio: 3/2; }
}
@media (max-width: 700px) {
  .reg-hero { padding: 100px 24px 56px; }
  .reg-stats { padding: 32px 24px; gap: 24px; }
  .reg-stat { padding: 0 24px; }
  .reg-stat-divider { display: none; }
  .reg-about { padding: var(--sec-gap) 24px; }
  .reg-portfolio { padding: var(--sec-gap) 24px; }
  .reg-port-grid { grid-template-columns: 1fr; }
}

/* ── FOOTER ─────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: 56px 48px 88px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--mid); line-height: 1.7; }
.footer-col-title { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--mid); margin-bottom: 16px; display: block; }
.footer-col a { display: block; font-size: 13px; color: var(--mid); margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--ink); }
.cookie-reset-btn { display: block; font-size: 13px; color: var(--mid); margin-bottom: 8px; transition: color .2s; background: none; border: none; padding: 0; cursor: pointer; font-family: inherit; }
.cookie-reset-btn:hover { color: var(--ink); }
.footer-bottom {
  border-top: 1px solid var(--line); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: var(--mid); }
.footer-social { display: flex; gap: 8px; }
.social-icon {
  width: 36px; height: 36px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--mid);
  transition: all .2s;
}
.social-icon:hover { border-color: var(--ink); color: var(--ink); }

/* ── PORTFOLIO OVERLAY ──────────────────────────── */
.port-cell::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(42, 91, 77, 0);
  transition: background .4s ease;
  border-radius: inherit;
}
.port-cell:hover::after { background: rgba(42, 91, 77, .15); }

/* ── BACK TO TOP ───────────────────────────────── */
.back-to-top {
  position: fixed; bottom: 28px; right: 28px; z-index: 90;
  width: 44px; height: 44px;
  background: var(--ink); color: var(--bg);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px);
  transition: opacity .3s, transform .3s, background .2s;
  pointer-events: none;
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-to-top:hover { background: var(--accent); }

/* ── ABOUT ─────────────────────────────────────── */
.about { padding: var(--sec-gap) 48px; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  margin-top: 48px;
  align-items: start;
}
.about-img {
  border-radius: var(--card-r);
  overflow: hidden;
  position: sticky;
  top: 100px;
}
.about-img img {
  width: 100%;
  height: auto;
  display: block;
}
.about-text h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 24px;
}
.about-text p {
  color: var(--mid);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-text p:first-of-type {
  font-size: 17px;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 24px;
}
.about-closer {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px !important;
  color: var(--ink) !important;
  margin-top: 32px !important;
  line-height: 1.5 !important;
}

/* ── BLOG OVERVIEW ─────────────────────────────── */
.blog-page { padding: 120px 48px var(--sec-gap); }
.blog-header {
  text-align: center;
  margin-bottom: 64px;
}
.blog-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}
.blog-header p {
  color: var(--mid);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--card-r);
  overflow: hidden;
  transition: transform .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10,9,9,.08);
}
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform .5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.blog-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 12px;
}
.blog-card-excerpt {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}
.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  transition: opacity .2s;
}
.blog-card:hover .blog-card-link { opacity: .6; }
.blog-pagination {
  text-align: center;
  margin-top: 48px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1.5px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
  margin: 0 4px;
  transition: all .2s;
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
  background: var(--ink); color: var(--bg); border-color: var(--ink);
}

/* ── SINGLE POST ──────────────────────────────── */
.single-post { padding-bottom: 0; }
.single-header {
  padding: 120px 48px 48px;
  text-align: center;
}
.single-back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 20px;
  transition: color .2s;
}
.single-back:hover { color: var(--ink); }
.single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
}
.single-date,
.single-readtime {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
}
.single-meta-sep {
  color: var(--line);
  font-size: 14px;
}
.single-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  text-transform: uppercase;
  line-height: 1;
  max-width: 800px;
  margin: 0 auto;
}
.single-hero {
  max-width: 480px;
  margin: 0 auto 56px;
  padding: 0 48px;
}
.single-hero img {
  width: 100%;
  height: auto;
  border-radius: var(--card-r);
}
.single-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 48px;
}
.single-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(22px, 3vw, 30px);
  text-transform: uppercase;
  line-height: 1.1;
  margin: 56px 0 16px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.single-content h2:first-child { border-top: none; padding-top: 0; }
.single-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  margin: 36px 0 12px;
}
.single-content p {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
}
.single-content > p:first-of-type {
  font-size: 17px;
  color: var(--ink);
  line-height: 1.75;
}
.single-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line);
  transition: text-decoration-color .2s;
}
.single-content a:hover { text-decoration-color: var(--ink); }
.single-content ul, .single-content ol {
  color: var(--mid);
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 22px;
  padding-left: 22px;
}
.single-content li { margin-bottom: 8px; }
.single-content strong { color: var(--ink); font-weight: 600; }
.single-content blockquote {
  border-left: 3px solid var(--ink);
  margin: 40px 0;
  padding: 4px 0 4px 28px;
}
.single-content blockquote p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0;
}
.single-content img {
  width: 100%;
  height: auto;
  border-radius: var(--card-r);
  margin: 36px 0;
}
.single-content figure { margin: 36px 0; }
.single-content figure img { margin: 0 0 12px; }
.single-content figcaption {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
}

.single-footer {
  max-width: 720px;
  margin: 64px auto 0;
  padding: 0 48px;
}
.single-cta {
  text-align: center;
  margin-bottom: 48px;
}
.single-cta p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 20px;
}
.single-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-top: 32px;
}
.single-nav-item {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--card-r);
  transition: border-color .2s;
}
.single-nav-item:hover { border-color: var(--ink); }
.single-nav-next { text-align: right; }
.single-nav-label {
  display: block;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.single-nav-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

/* ── LEGAL PAGES ───────────────────────────────── */
.legal-page { padding: 120px 48px var(--sec-gap); max-width: 800px; margin: 0 auto; }
.legal-back {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
  transition: color .2s;
}
.legal-back:hover { color: var(--ink); }
.legal-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 48px;
}
.legal-content h2 {
  font-family: 'Anton', sans-serif;
  font-size: 22px;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 40px 0 16px;
}
.legal-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin: 28px 0 10px;
}
.legal-content p, .legal-content li {
  color: var(--mid);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-content strong { color: var(--ink); }

/* ── 404 PAGE ──────────────────────────────────── */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px;
}
.page-404-num {
  font-family: 'Anton', sans-serif;
  font-size: clamp(120px, 20vw, 280px);
  line-height: .85;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-stroke: 2px var(--line);
  margin-bottom: 24px;
}
.page-404 p {
  color: var(--mid);
  font-size: 16px;
  max-width: 400px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.page-404-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── GALLERY PAGE ──────────────────────────────── */
.gallery-page { padding: 120px 48px var(--sec-gap); }
.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}
.gallery-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(48px, 8vw, 120px);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 16px;
}
.gallery-header p {
  color: var(--mid);
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}
.gallery-footer {
  text-align: center;
  margin-top: 80px;
}
.gallery-footer p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 24px;
}

/* masonry */
.masonry {
  columns: 3;
  column-gap: 12px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--card-r);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10, 9, 9, 0);
  transition: background .3s;
}
.masonry-item:hover::after {
  background: rgba(10, 9, 9, .12);
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .5s ease;
}
.masonry-item:hover img {
  transform: scale(1.03);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(10, 9, 9, .92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lb-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  user-select: none;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: none; border: none;
  color: rgba(247, 243, 237, .7);
  cursor: pointer;
  transition: color .2s;
  font-family: sans-serif;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { color: #fff; }
.lb-close {
  top: 24px; right: 32px;
  font-size: 40px; line-height: 1;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  font-size: 56px; line-height: 1;
  padding: 8px;
}
.lb-prev { left: 24px; }
.lb-next { right: 24px; }

/* ── COOKIE BAR ──────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--ink);
  padding: 16px 24px;
  transform: translateY(0);
  transition: transform .4s ease, opacity .4s ease;
  opacity: 1;
}
.cookie-bar.hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-bar__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.cookie-bar__text {
  font-size: 13px;
  color: rgba(247,243,237,.75);
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.cookie-bar__text a {
  color: var(--bg);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-bar__btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--bg);
  color: var(--ink);
  border: none;
  border-radius: var(--pill-r);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s;
}
.cookie-bar__btn:hover { opacity: .85; }
@media (max-width: 600px) {
  .cookie-bar__inner { flex-direction: column; align-items: stretch; gap: 12px; }
  .cookie-bar__btn { text-align: center; }
}

/* ── SCROLL REVEAL ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ── RESPONSIVE – TABLET ────────────────────────── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .nav-links { gap: 20px; font-size: 11px; }
  .hero {
    padding: 100px 24px 40px;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Hero: grid-column zurücksetzen + Reihenfolge: word-1 → word-2 → topright → images */
  .hero-word-1   { order: 1; }
  .hero-word-2   { order: 2; grid-column: 1; grid-row: auto; text-align: left; padding-top: 0; }
  .hero-topright { order: 3; grid-column: 1; grid-row: auto; margin-left: 0; max-width: none; }
  .hero-images-row { order: 4; grid-column: 1; grid-row: auto; min-height: 320px; }
  .hero-word { font-size: clamp(68px, 16vw, 130px); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .port-grid { grid-template-columns: repeat(2, 1fr); padding: 0 24px; }
  .port-second-row { padding: 0 24px; }
  .port-folio-mobile { display: inline; }
  .port-type-wrap--folio { display: none; }
  .port-type-wrap:not(.port-type-wrap--folio) .port-word { text-align: center; }
  .port-bottom { flex-direction: column; align-items: center; text-align: center; gap: 24px; }
  .port-bottom p { max-width: none; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .process-left-img--small { margin-left: 0; margin-right: auto; }
  .about { padding-left: 24px; padding-right: 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { position: static; max-width: 480px; }
  .gallery-page { padding: 100px 24px var(--sec-gap); }
  .blog-page { padding: 100px 24px var(--sec-gap); }
  .blog-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .single-header { padding: 100px 24px 32px; }
  .single-hero { padding: 0 24px; }
  .single-content { padding: 0 24px; }
  .single-footer { padding: 0 24px; }
  .single-nav { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .pkg-grid { grid-template-columns: 1fr; max-width: none; }
  .pkg-header { flex-direction: column; align-items: flex-start; }
  .pkg-header h2 { text-align: left; width: 100%; }
  .pkg-header-sub { text-align: left !important; max-width: none !important; }
  .pkg-card.featured { transform: none; box-shadow: 0 16px 40px rgba(10,9,9,.12); }
  .contact-inner,
  .single-contact-inner { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  footer { padding-left: 24px; padding-right: 24px; }
  .legal-page { padding: 100px 24px var(--sec-gap); }
  section, .trust, .portfolio, .process, .testimonials, .faq, .packages, .contact-banner, .single-contact { padding-left: 24px; padding-right: 24px; }
  .test-scroll { padding: 40px 24px 0; }
  .test-header { padding: 0 24px; }
  .port-type-wrap { padding: 0 24px; }
  hr.section-divider { margin: 0 24px; }
}

/* ── RESPONSIVE – MOBIL ─────────────────────────── */
@media (max-width: 600px) {
  :root { --sec-gap: 80px; }
  .hero-word { font-size: clamp(56px, 18vw, 96px); }
  .hero-images-row { grid-template-columns: 1fr; min-height: auto; }
  .hero-images-row .hero-img { aspect-ratio: 4/5; }
  .hero-topright { flex-direction: column; }
  .hero-topright-img { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr; }
  .port-second-row { grid-template-columns: 1fr; }
  .port-second-row .port-cell:last-child { aspect-ratio: 4/3; }
  .test-card { width: min(320px, calc(100vw - 48px)); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-komp-mobile { display: inline; }
  .footer-komp-desktop { display: none; }
  footer { padding-top: 40px; padding-bottom: 56px; }
  .legal-page { padding-top: 80px; }
  .page-404 { padding: 80px 24px; }
  .contact-inner,
  .single-contact-inner { padding: 32px 20px; }
  .contact-form-row { flex-direction: column; }
  .masonry { columns: 1; }
  .lb-prev { left: 8px; font-size: 40px; }
  .lb-next { right: 8px; font-size: 40px; }
  .test-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .test-header > div:last-child { text-align: left; }
  .trusted-bar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .trusted-logos { gap: 20px; }
  .trusted-logos img { height: 40px; }
  .about-text h2 { font-size: 48px; }
  .nav-logo img { height: 56px; }
  .hero-bc-overlay { padding: 12px 14px 14px; }
  .hero-bc-overlay .bc-title { font-size: 18px; margin-bottom: 10px; }
}
