/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;1,9..144,300&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Atkinson+Hyperlegible+Next:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

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

:root {
  --fraunces: 'Fraunces', Georgia, serif;
  --inter: 'Inter', system-ui, sans-serif;
  --atkinson: 'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', system-ui, sans-serif;
  --black: #000000;
  --white: #ffffff;
  --gray: #9e9e9e;
  --near-black: #1e1e1e;
  --dark-bg: #141414;
  --border: #e5e5e5;
  --fv: 'SOFT' 0, 'WONK' 1;
  --pad: clamp(24px, 6vw, 86px);
  --max: 1440px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--inter);
  -webkit-font-smoothing: antialiased;
}

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

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 32px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  animation: headerIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.05s both;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

body.nav-open .site-header {
  transform: none;
  z-index: 400;
  transition-delay: 0s;
}

body.nav-open .site-header .logo,
body.nav-open .site-header .tagline {
  opacity: 0;
  pointer-events: none;
}

.site-header .logo {
  width: clamp(48px, 6vw, 87px);
  height: auto;
  aspect-ratio: 86.952 / 77.702;
  transition: opacity 0.35s ease;
}

.site-header .tagline {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--inter);
  font-weight: 500;
  font-size: clamp(10px, 1vw, 14px);
  letter-spacing: 0.28px;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  transition: opacity 0.35s ease;
}

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 22px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transform-origin: center;
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1),
              opacity   0.25s ease,
              background 0.35s ease;
}

body.nav-open .menu-toggle span { background: var(--white); }

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6.25px) rotate(45deg);
}
body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6.25px) rotate(-45deg);
}

/* ── NAVIGATION OVERLAY ── */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--dark-bg);
  z-index: 300;
  padding: clamp(40px, 5.3vw, 76px) var(--pad);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.nav-overlay.is-open .nav-links li {
  animation: navItemIn 0.45s ease both;
}
.nav-overlay.is-open .nav-links li:nth-child(1) { animation-delay: 0.10s; }
.nav-overlay.is-open .nav-links li:nth-child(2) { animation-delay: 0.16s; }
.nav-overlay.is-open .nav-links li:nth-child(3) { animation-delay: 0.22s; }
.nav-overlay.is-open .nav-links li:nth-child(4) { animation-delay: 0.28s; }
.nav-overlay.is-open .nav-links li:nth-child(5) { animation-delay: 0.34s; }

.nav-overlay.is-open .nav-address {
  animation: navItemIn 0.45s ease 0.44s both;
}

@keyframes navItemIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.nav-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nav-links {
  list-style: none;
}

.nav-links li a {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(28px, 3.33vw, 48px);
  line-height: 1.6;
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  font-variation-settings: var(--fv);
  position: relative;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links li a:hover::after { width: 100%; }

.nav-address {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-address-name {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}

.nav-address-detail {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  line-height: 1.5;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--dark-bg);
  padding: clamp(48px, 6vw, 97px) var(--pad) clamp(32px, 4vw, 48px);
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px 64px;
  align-items: start;
}

.footer-logo {
  width: clamp(120px, 14vw, 201px);
  height: auto;
  aspect-ratio: 201.342 / 47.6416;
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: start;
}

.footer-info {
  grid-column: 1;
  grid-row: 3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-address,
.footer-contact {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
  line-height: 1.4;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.18);
  margin-top: 24px;
}

.footer-copy,
.footer-legal {
  font-family: var(--inter);
  font-weight: 300;
  font-size: 14px;
  color: var(--white);
}

/* ── SERVICES ACCORDION ── */
.services-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(64px, 8vw, 112px);
}

.services-label {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  padding: 7px 0;
  margin-bottom: 40px;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  cursor: pointer;
  padding: 16px 0;
  gap: 24px;
}

.accordion-title {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 34px);
  color: var(--black);
  line-height: 1.4;
  font-variation-settings: var(--fv);
  flex: 1;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 0;
  position: relative;
}

.accordion-icon::before { display: none; }

.accordion-icon::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1px solid var(--black);
  border-bottom: 1px solid var(--black);
  background: none;
  transform: translate(-1px, -65%) rotate(45deg);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.open .accordion-icon::after {
  transform: translate(-1px, -35%) rotate(-135deg);
  opacity: 1;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-item.open .accordion-body {
  max-height: 400px;
  padding: 4px 0 28px;
}
.accordion-body p {
  font-family: var(--inter);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--black);
  margin-bottom: 6px;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── MOBILE HEADER ── */
@media (max-width: 600px) {
  .site-header { padding: 20px var(--pad); }
}

/* ── RESPONSIVE FOOTER ── */
@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-logo {
    grid-column: 1;
    grid-row: 1;
  }
  .footer-info {
    grid-column: 1;
    grid-row: 2;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ── @KEYFRAMES ── */
@keyframes headerIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pageTextIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@keyframes pageFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── CUSTOM CURSOR ── */
.custom-cursor,
.custom-cursor * { cursor: none !important; }

.cursor {
  position: fixed;
  left: 0; top: 0;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--white);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              margin 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.25s ease;
}

.cursor.is-hovering {
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
}

.cursor.is-hidden { opacity: 0; }

/* ── LISTING GRID ── */
.listings {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(48px, 5vw, 80px);
}

.listing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 2.5vw, 32px);
}

.listing-card {
  display: block;
  cursor: pointer;
}

.listing-card:hover .listing-card-img img {
  transform: scale(1.03);
}

.listing-card-img {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  position: relative;
}

.listing-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.listing-card-meta {
  margin-top: clamp(8px, 1vw, 12px);
  font-family: var(--inter);
  font-weight: 300;
  font-size: clamp(12px, 1vw, 14px);
  line-height: 1.4;
  color: var(--black);
}

.listing-card-title {
  margin-top: clamp(6px, 0.8vw, 10px);
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--black);
  font-variation-settings: var(--fv);
}

.listing-card-price {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(16px, 1.8vw, 24px);
  line-height: 1.4;
  color: var(--gray);
  font-variation-settings: var(--fv);
}

@media (max-width: 600px) {
  .listing-grid { grid-template-columns: 1fr; gap: 40px; }
  .listing-card-img { aspect-ratio: 4 / 3; }
}

/* ── CARD & IMAGE HOVER ── */
.listing-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.listing-card:hover .listing-card-img::after { opacity: 1; }

.listing-card-price { transition: color 0.3s ease; }
.listing-card:hover .listing-card-price { color: var(--near-black); }

.gallery-img img { transition: transform 0.7s ease; }
.gallery-img:hover img { transform: scale(1.025); }

/* ── ACCORDION HOVER ── */
.accordion-title { transition: opacity 0.25s ease; }
.accordion-item:not(.open) .accordion-header:hover .accordion-title { opacity: 0.55; }

.accordion-icon::after { transition: transform 0.35s ease, opacity 0.35s ease; }

/* ── FOOTER HOVER ── */
.footer-copy,
.footer-legal { transition: opacity 0.25s ease; }
.footer-legal:hover { opacity: 0.6; }

/* ── STARTSEITE ── */
.hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(220px, 28vw, 408px) var(--pad) clamp(60px, 7vw, 100px);
}

.hero-heading {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(36px, 6.7vw, 96px);
  line-height: 1.15;
  color: var(--black);
  font-variation-settings: var(--fv);
  margin-bottom: clamp(24px, 3.5vw, 48px);
}

.hero-heading em { font-style: italic; }

.hero-bio {
  max-width: clamp(280px, 37vw, 535px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.5vw, 20px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.hero-bio p {
  font-family: var(--inter);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.55;
  color: var(--black);
}

.hero-btn {
  display: inline-block;
  font-family: var(--inter);
  font-weight: 500;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: clamp(12px, 1.2vw, 18px) clamp(24px, 2.5vw, 40px);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.hero-btn:hover {
  background: var(--white);
  color: var(--black);
}

.listings-label {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  padding: 7px 0;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .hero-heading br { display: none; }
}

/* ── ÜBER UNS ── */
.about-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(500px, 62vw, 900px);
}

.about-hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(220px, 26.7vw, 385px) var(--pad) clamp(60px, 7vw, 100px);
  position: relative;
  z-index: 2;
}

.about-portrait {
  position: absolute;
  left: 57.7%;
  top: clamp(50px, 18.75vw, 270px);
  width: clamp(220px, 32.9vw, 474px);
  z-index: 1;
  will-change: transform;
}

.about-portrait-img {
  width: 100%;
  aspect-ratio: 474 / 592;
  overflow: hidden;
}

.about-portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.8s ease;
}

.about-portrait:hover .about-portrait-img img { transform: scale(1.03); }

.portrait-name {
  font-family: var(--inter);
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--black);
  padding-top: clamp(10px, 0.8vw, 14px);
}

.about-heading {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(40px, 9.7vw, 140px);
  line-height: 1.1;
  color: var(--black);
  font-variation-settings: var(--fv);
  margin-bottom: clamp(24px, 5.3vw, 56px);
  animation: pageTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.about-bio-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 2vw, 24px);
  max-width: clamp(280px, 37.7vw, 543px);
  animation: pageTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.48s both;
}

.about-bio {
  font-family: var(--inter);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.4;
  color: var(--black);
}

.quote-section {
  padding: clamp(48px, 6vw, 96px) var(--pad);
  display: flex;
  justify-content: center;
}

.quote-block {
  max-width: clamp(280px, 66vw, 954px);
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.4;
  color: var(--black);
  font-variation-settings: var(--fv);
}

.quote-block em { font-style: italic; }

.services-wrap {
  padding: clamp(48px, 5vw, 80px) 0;
}

@media (max-width: 900px) {
  .about-hero { min-height: unset; }
  .about-hero-inner { padding-top: clamp(100px, 15vw, 160px); }
  .about-portrait {
    position: static;
    width: 100%;
    left: auto; top: auto;
    will-change: auto;
    margin-top: clamp(32px, 5vw, 48px);
    padding: 0 var(--pad);
    box-sizing: border-box;
  }
  .about-portrait-img { aspect-ratio: 4 / 3; }
  .about-bio-wrap { max-width: 100%; }
}

/* ── ÜBERSICHT (archive) ── */
.uebersicht-hero {
  padding-top: clamp(220px, 18.75vw, 270px);
  padding-bottom: clamp(56px, 6.9vw, 99px);
}

.uebersicht-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.uebersicht-heading {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.2;
  color: var(--black);
  font-variation-settings: var(--fv);
  max-width: 75%;
  animation: pageTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.uebersicht-heading em { font-style: italic; }

/* ── DETAILSEITE ── */
.detail-header {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(220px, 14vw, 220px) var(--pad) clamp(32px, 4vw, 56px);
}

.detail-title {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.2;
  color: var(--black);
  font-variation-settings: var(--fv);
  margin-bottom: clamp(24px, 3vw, 40px);
  animation: pageTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 24px) 0;
  animation: pageFadeIn 0.9s ease 0.5s both;
}

.spec-col {
  min-width: clamp(100px, 9vw, 130px);
  padding-right: clamp(16px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.spec-label {
  font-family: var(--inter);
  font-weight: 500;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.4;
  color: var(--black);
}

.spec-value {
  font-family: var(--inter);
  font-weight: 300;
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.4;
  color: var(--black);
}

.detail-hero-img {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  display: block;
  aspect-ratio: 1467 / 927;
  max-height: 80vh;
  overflow: hidden;
}

.detail-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.detail-description-wrap {
  padding: clamp(48px, 6vw, 96px) var(--pad);
  display: flex;
  justify-content: center;
}

.detail-description {
  max-width: clamp(280px, 66vw, 954px);
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(20px, 2.8vw, 36px);
  line-height: 1.4;
  color: var(--black);
  font-variation-settings: var(--fv);
}

.gallery-section {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3vw, 48px);
  padding: 0 0 clamp(48px, 5vw, 80px);
}

.gallery-img {
  width: clamp(280px, 88.5vw, 1275px);
  margin: 0 auto;
  aspect-ratio: 1275 / 850;
  overflow: hidden;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.objektdetails-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(32px, 4vw, 64px) var(--pad) clamp(48px, 5vw, 80px);
}

.objektdetails-label {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  padding: 7px 0;
  margin-bottom: 24px;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
}

.detail-table tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.detail-table tr:hover { background: rgba(0, 0, 0, 0.025); }

.detail-table th,
.detail-table td {
  padding: clamp(10px, 1.2vw, 16px) 0;
  font-family: var(--inter);
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  font-weight: 500;
  color: var(--black);
  width: 40%;
  padding-right: clamp(16px, 2vw, 32px);
}

.detail-table td {
  font-weight: 300;
  color: var(--black);
}

@media (max-width: 600px) {
  .specs-row { gap: 20px 0; }
  .spec-col { min-width: 50%; padding-right: 0; }
  .detail-description { font-size: clamp(18px, 5vw, 28px); }

  .detail-table,
  .detail-table tbody,
  .detail-table tr,
  .detail-table th,
  .detail-table td { display: block; width: 100%; }

  .detail-table tr {
    border-bottom: none;
    padding: 12px 0;
    border-top: 1px solid var(--border);
  }

  .detail-table th {
    padding-bottom: 2px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gray);
  }

  .detail-table td { padding-top: 0; font-size: 15px; }
}

/* ── KONTAKT ── */
.kontakt-hero {
  padding-top: clamp(220px, 18.75vw, 270px);
  padding-bottom: clamp(56px, 6.9vw, 99px);
}

.kontakt-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.kontakt-heading {
  font-family: var(--fraunces);
  font-weight: 300;
  font-size: clamp(32px, 5vw, 72px);
  line-height: 1.2;
  color: var(--black);
  font-variation-settings: var(--fv);
  max-width: 75%;
  animation: pageTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.kontakt-heading em { font-style: italic; }

.kontakt-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad) clamp(80px, 10vw, 160px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 120px);
  align-items: start;
}

.kontakt-info-label {
  font-family: var(--inter);
  font-weight: 600;
  font-size: 14px;
  color: var(--black);
  padding: 7px 0;
  margin-bottom: 32px;
}

.kontakt-info-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kontakt-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kontakt-info-key {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--gray);
}

.kontakt-info-val {
  font-family: var(--inter);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.5;
  color: var(--black);
}

.kontakt-info-val a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}

.kontakt-info-val a:hover { border-color: var(--black); }

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 2.5vw, 32px);
}

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

.form-label {
  font-family: var(--inter);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--black);
}

.form-input,
.form-textarea {
  background: none;
  border: none;
  border-bottom: 1px solid var(--border);
  outline: none;
  padding: 10px 0;
  font-family: var(--inter);
  font-weight: 300;
  font-size: clamp(14px, 1.1vw, 16px);
  color: var(--black);
  line-height: 1.4;
  width: 100%;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--gray); }

.form-input:focus,
.form-textarea:focus { border-color: var(--black); }

.form-textarea {
  resize: none;
  min-height: 120px;
}

.form-submit {
  display: inline-block;
  align-self: flex-start;
  margin-top: 8px;
  font-family: var(--inter);
  font-weight: 500;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.56px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: 1px solid var(--black);
  padding: clamp(12px, 1.2vw, 18px) clamp(24px, 2.5vw, 40px);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-submit:hover {
  background: var(--white);
  color: var(--black);
}

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

/* ── WP ADMIN NOTICE ── */
.jf-acf-notice {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 12px 16px;
  margin: 16px 0;
  font-family: sans-serif;
  font-size: 14px;
}
