*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cream: #e8e0cc;
  --gold: #c8a96e;
  --black: #111;
  --white: #fff;
  --gray: #888;
  --font-display: "sofia-pro-variable", serif;
  --font-body: "sofia-pro-variable", sans-serif;
}
html {
  scroll-behavior: smooth;
}


body.admin-bar #navbar {
  top: 32px;
}
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  font-style: normal;
  font-variation-settings: "slnt" 0;
  overflow-x: hidden;
}

#search-overlay svg path {
    fill: #000;
}

#search-overlay svg path:nth-child(6) {
    fill: #CD9159;
}

/* ══ NAV ══ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(8, 8, 8, 0.8);
}
#navbar.menu-open {
  background: transparent !important;
  backdrop-filter: none;
  border-color: transparent;
}
.nav-logo {
  font-weight: 600;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 2px;
  text-decoration: none;
}

.search-filter-results .product-grid {
  text-align: left;
}

div#search-filter-results-500 {
    text-align: center;
    padding: 0 20px
}

.flex {
    display: flex;
    align-content: center;
    align-items: center;
    gap: 40px;
}
.nav-logo sup {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.4px;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #CD9159;
}

.mm-main-links a {
    text-decoration: none;
    color: #fff;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  align-items: center;
  transition: color 0.2s;
  padding: 4px;
}

.grecaptcha-badge {
    display: none !important;
}

.nav-btn:hover {
  color: white;
}
.hamburger-wrap {
  cursor: pointer;
  width: 38px;
  height: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-wrap span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: rgba(255, 255, 255, 0.9);
  transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}
.hamburger-wrap.open span:nth-child(1) {
  transform: translateY(8.25px) rotate(45deg);
  background: white;
}
.hamburger-wrap.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-wrap.open span:nth-child(3) {
  transform: translateY(-8.25px) rotate(-45deg);
  background: white;
}

/* ══ MEGA MENU ══ */
#mega-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 520px 1fr 1fr;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#mega-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mm-left {
  background: var(--black);
  padding: 100px 56px 60px;
  display: flex;
  flex-direction: column;
  transform: translateX(-30px);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
#mega-menu.open .mm-left {
  transform: translateX(0);
}
.mm-main-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

ul.footer-links p {
    color: #a0a0a0;
    font-size: 13px;
    line-height: 1.6;
}

section.article-detail {
    max-width: 900px;
    margin: 120px auto 45px;
}

.single .article-detail .breadcrumb {
    margin: 20px 0;
}


section.article-detail p {
    margin: 11px 0;
}

section.article-detail ol, section.article-detail ul {
    margin: 0 17px;
}

.mm-main-link {
  font-size: 38px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: none;
  border-bottom: 1px solid rgb(65 65 65);
  font-family: var(--font-body);
  text-align: left;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}
.mm-main-link.active,
.mm-main-link:hover {
  color: white;
}
.mm-main-link.active {
  border-color: rgba(255, 255, 255, 0.2);
}
.mm-arrow-icon {
  font-size: 20px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.mm-main-link.active .mm-arrow-icon,
.mm-main-link:hover .mm-arrow-icon {
  opacity: 1;
  transform: translateX(4px);
}
.mm-section-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 12px;
}
.mm-about {
  margin-top: auto;
}
.mm-about-links,
.mm-contact-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
}
.mm-about-links a,
.mm-contact-links a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.mm-about-links a:hover,
.mm-contact-links a:hover {
  color: white;
}
.mm-contact {
  margin-top: 28px;
}
.mm-socials {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}
.mm-socials a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mm-socials a:hover {
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.product-grid img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 11px;
    font-weight: 600;
    margin-top: 5px;
    display: block;
}
.form-grid span:last-child{
  grid-column: 1 / -1;
}

.wpcf7-list-item {
    display: inline-block;
    margin: 0;
}


.wpcf7-list-item label {
    font-size: 14px;
}


.about {
    margin-top: 110px;
}

.about h2 {
    font-size: 60px;
}

.about p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about p a {
    color: #000;
}

.about h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 10px;
}

.about p {
    margin-bottom: 15px;
}
.mm-mid {
  background: var(--white);
  padding: 100px 48px 60px;
  transform: translateY(-20px);
  opacity: 0;
  transition: transform 0.45s 0.1s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s 0.1s;
}


.pd-li-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.pd-li-gallery img {
    width: 220px;
    height: 230px;
    border-radius: 10px;
}

.pd-spec-content hr {
    border: 0;
    height: 1px;
    background: #b4a684;
    margin: 17px 0;
}

.wrap {
	padding: 200px 20px;
	margin: auto;
	text-align: center;
}


#mega-menu.open .mm-mid {
  transform: translateY(0);
  opacity: 1;
}
.mm-sub-panel {
  display: none;
}
.mm-sub-panel.active {
  display: block;
}
.mm-sub-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 28px;
}
.mm-sub-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm-sub-links a {
  font-size: 20px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-sub-links a:hover {
  color: var(--gold);
}
.mm-sub-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 22px 0;
}
.mm-extra-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 0;
}
.mm-extra-links a {
  font-size: 17px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-extra-links a:hover {
  color: var(--gold);
}
.mm-esplora {
  margin-top: 36px;
}
.mm-esplora-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}
.mm-esplora-links a {
  font-size: 17px;
  color: var(--black);
  text-decoration: none;
  transition: color 0.2s;
}
.mm-esplora-links a.gold {
  color: var(--gold);
}
.mm-esplora-links a:hover {
  color: var(--gold);
}
.mm-lang {
  display: flex;
  gap: 8px;
  margin-top: 40px;
}
.mm-lang-btn {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid #ddd;
  background: none;
  font-family: var(--font-body);
}
.mm-lang-btn.active {
  background: var(--black);
  color: white;
  border-color: var(--black);
}

.mm-right {
  position: relative;
  overflow: hidden;
  transform: translateX(30px);
  opacity: 0;
  transition: transform 0.45s 0.15s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s 0.15s;
}
#mega-menu.open .mm-right {
  transform: translateX(0);
  opacity: 1;
}
.mm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mm-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
  color: white;
}
.mm-img-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 10px;
}
.mm-img-title {
  font-size: 26px;
  font-weight: 600;
  line-height: 1.25;
}
.mm-dots {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}
.mm-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
}
.mm-dot.active {
  background: white;
}
.mm-close {
  position: absolute;
  top: 18px;
  right: 44px;
  z-index: 195;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}
.mm-close:hover {
  opacity: 0.7;
}
.mm-close-x {
  font-size: 22px;
  font-weight: 300;
  line-height: 1;
}

.page-template-kontakt .breadcrumb {
    margin: 20px;
}

.pd-dark-feat ul {
    margin: 20px;
    color: #898989;
    font-weight: 400;
    letter-spacing: 0.1px;
    font-size: 16px;
}


.line {
    position: absolute;
    width: 1px;
    height: 60px;
    bottom: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    overflow: hidden;
}

  .line::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 0 12px rgba(255,255,255,0.35);
    animation: moveLine 1.6s linear infinite;
  }

  @keyframes moveLine {
    from {
      transform: translateY(-80px);
    }
    to {
      transform: translateY(120px);
    }
  }

/* ══ SEARCH OVERLAY ══ */
#search-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: var(--white);
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

div#search-filter-results-500 {
    overflow: auto;
}
.search-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
}
.search-logo {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--black);
}
.search-logo sup {
  color: var(--gold);
  font-size: 11px;
}
.search-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-family: var(--font-body);
  font-size: 13px;
  transition: color 0.2s;
}
.search-close-btn:hover {
  color: var(--black);
}
.search-body {
  display: flex;
  justify-content: center;
  padding: 32px 40px;
}
.search-input-wrap {
  width: 100%;
  max-width: 900px;
}
.searchandfilter label {
    width: 100%;
}
.sf-input-text {
  width: 100%;
  padding: 18px 28px;
  border-radius: 100px;
  border: none;
  background: #f0f0f0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black);
  outline: none;
  transition: background 0.2s;
}
.sf-input-text:focus {
  background: #e8e8e8;
}
.sf-input-text::placeholder {
  color: #aaa;
}

/* ══ HERO ══ */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../images/hero-cover.webp");
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  animation: fadeUp 1s 0.3s both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 80px);
  font-weight: 100;
  color: var(--cream);
  letter-spacing: 0.1em;
  line-height: 1;
  animation: fadeUp 1.1s 0.5s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  animation: fadeUp 1s 0.8s both;
}
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  font-family: var(--font-body);
}
.btn-dark {
  background: #4e5258;
  color: white;
}
.btn-dark:hover {
  background: rgba(60, 60, 60, 0.9);
}
.btn-light {
  background: white;
  color: var(--black);
  border: 1px solid white;
}
.btn-light:hover {
  background: var(--cream);
}
.btn-black {
  background: var(--black);
  color: white;
  border: none;
}
.btn-black:hover {
  background: #2a2a2a;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  animation: fadeUp 1s 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
  margin: auto;
}
@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.3);
    opacity: 0.3;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ══ WELCOME ══ */
#welcome {
  padding: 100px 80px;
  border-top: 1px solid #e0e0e0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}
.section-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.welcome-title {
    font-size: clamp(28px, 3.5vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
}
.welcome-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.welcome-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  max-width: 420px;
}

/* ══ PRODUCT CAROUSEL ══ */
#carousel-section {
  padding: 0 0 80px;
}
.carousel-images {
  position: relative;
  overflow: hidden;
  height: 560px;
}
/* Track is shifted so center slide is visible on start.
   Each slide = 64% wide. Left/right slides peek 18% each side. */
.carousel-images-track {
  display: flex;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-img-slide {
  flex: 0 0 64%;
  height: 100%;
  overflow: hidden;
  position: relative;
  margin-right: 16px;
  border-radius: 10px;
}
.carousel-img-slide:last-child {
  margin-right: 0;
}
.carousel-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.carousel-img-slide:hover img {
  transform: scale(1.03);
}
.carousel-info {
  padding: 44px 80px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.carousel-title {
  font-size: 28px;
  font-weight: 700;
  transition: opacity 0.25s;
}
.carousel-desc {
  font-size: 16px;
  color: #111111;
  max-width: 440px;
  line-height: 1.65;
  margin-bottom: 10px;
  transition: opacity 0.25s;
}
.carousel-nav-row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}
.carousel-arrow {
  background: none;
  border: none;
  cursor: pointer;
  pointer-events: all;
  font-size: 26px;
  color: #999;
  transition: color 0.2s;
  padding: 8px 20px;
  line-height: 1;
}
.carousel-arrow:hover {
  color: var(--black);
}

/* ══ FEATURE BANNER ══ */
#feature-banner {
  position: relative;
  height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.banner-content {
  position: absolute;
  right: 5%;
  top: 30%;
  transform: translateY(-50%);
  z-index: 10;
  background: white;
  padding: 44px 48px;
  max-width: 480px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.15);
}
.banner-tag {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.banner-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
}
.banner-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  margin-bottom: 28px;
}

/* ══ AREAS SLIDER ══ */
#areas {
  padding: 100px 0 80px 40px;
  overflow: hidden;
}
.areas-header {
  padding: 0 80px;
  margin-bottom: 56px;
  position: relative;
}
.areas-tag-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.areas-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 600;
  line-height: 1.05;
}
.areas-title .line1 {
  display: block;
  color: var(--black);
}
.areas-title .line2 {
  display: block;
  color: #ccbfa5;
}
.areas-nav-btns {
  position: absolute;
  right: 0;
  bottom: 4px;
  display: flex;
  gap: 0;
}
.areas-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  font-size: 24px;
  color: #999;
  transition: color 0.2s;
}
.areas-nav-btn:hover {
  color: var(--black);
}

.areas-track {
  display: flex;
  padding: 0 80px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 16px;
}
.areas-track::-webkit-scrollbar {
  display: none;
}
.area-card {
  flex: 0 0 calc(25% - 4px);
  min-width: 280px;
  scroll-snap-align: start;
  cursor: pointer;
}
.area-card-img {
  width: 100%;
  height: 380px;
  border-radius: 5px;
  overflow: hidden;
}

.area-label img {
    width: 22px;
}
.area-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.area-card:hover .area-card-img img {
  transform: scale(1.05);
}

.area-card a {
  text-decoration: none;
  color: #000;

}
.area-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  padding: 16px 0;
  color: #000;
  border
  letter-spacing: 0.2px;
}
.area-arrow-icon {
  color: #999;
  font-size: 17px;
  transition: transform 0.2s, color 0.2s;
}
.area-card:hover .area-arrow-icon {
  transform: translateX(5px);
  color: var(--black);
}

/* ══ FOOTER ══ */
footer {
  background: var(--black);
  color: white;
  padding: 80px 80px 40px;
}
.footer-logo {
  font-weight: 600;
  font-size: 22px;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 64px;
}
.footer-logo sup {
  color: var(--gold);
  font-size: 13px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-col-title {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: white;
}
.footer-links .gold {
  color: var(--gold);
}
.footer-contact {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 2.1;
  margin-bottom: 20px;
}
.social-row {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.2s;
}
.social-icon:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: white;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.28);
  text-decoration: none;
  margin-right: 16px;
}
.lang-toggle {
  display: flex;
}
.lang-btn {
  padding: 6px 14px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: none;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.2s;
  font-family: var(--font-body);
}
.lang-btn:first-child {
  border-radius: 4px 0 0 4px;
}
.lang-btn:last-child {
  border-radius: 0 4px 4px 0;
}
.lang-btn.active {
  background: white;
  color: black;
  border-color: white;
}

/* ══ REVEAL ══ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s, transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
  font-weight: 300;
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}




    /* ── SUB NAV ── */
    .nav-sub {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 32px;
      height: 52px;
      margin-top: 84px;
      border-bottom: 1px solid #e0e0e0;
    }
    .nav-sub-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }
    .nav-sub-links li a {
      text-decoration: none;
      color: #111;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 6px 4px;
      display: flex;
      align-items: center;
      gap: 5px;
    }
    .nav-sub-links li a:hover { text-decoration: underline; }
    .nav-sub-links .chevron {
      font-size: 10px;
      color: #888;
    }
    .nav-sub-actions {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .btn-download {
      background: #111;
      color: #fff;
      border: none;
      padding: 0 24px;
      height: 52px;
      font-size: 13px;
      font-family: inherit;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
    }
    .btn-download:hover { background: #333; }
    .btn-quotation {
      background: #fff;
      color: #111;
      border: none;
      border-left: 1px solid #e0e0e0;
      padding: 0 24px;
      height: 52px;
      font-size: 13px;
      font-family: inherit;
      font-weight: 500;
      cursor: pointer;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .btn-quotation:hover { text-decoration: underline; }
    .btn-quotation .arrow { font-size: 16px; }

    /* ── PAGE HEADER ── */
    .page-header {
      padding: 32px 32px 0;
      max-width: 1280px;
      margin: 0 auto;
    }
    .breadcrumb {
      font-size: 12px;
      color: #888;
    }

    .single .breadcrumb {
    margin: 20px;

    }
    .breadcrumb a { color: #888; text-decoration: none; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb span { margin: 0 6px; }

    .page-label {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 8px;
    }
    .page-title {
      font-size: clamp(52px, 8vw, 100px);
      font-weight: 300;
      letter-spacing: -0.02em;
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 20px;
      margin-top: 10px;
    }
    .page-subtitle {
        font-size: 16px;
        color: #444;
        line-height: 1.5;
        max-width: 890px;
        margin-bottom: 40px;
    }

    /* ── PRODUCT GRID ── */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      border-top: 1px solid #e0e0e0;
    }
    .product-card {
      border-right: 1px solid #e0e0e0;
      border-bottom: 1px solid #e0e0e0;
      cursor: pointer;
      text-decoration: none;
      color: #111;
      display: block;
      overflow: hidden;
    }
    .product-card:nth-child(3n) { border-right: none; }

    .product-img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      background: #e8e8e8;
    }
    .product-card:hover .product-img { transform: scale(1.03); }
    .product-img-wrap { overflow: hidden; }

    .product-info {
      padding: 14px 16px 18px;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }
    .product-name {
      font-size: 14px;
      font-weight: 500;
      margin-bottom: 2px;
    }
    .product-desc {
      font-size: 12px;
      color: #666;
      line-height: 1.4;
    }
    .product-swatches {
      display: flex;
      align-items: center;
      gap: 5px;
      flex-shrink: 0;
      margin-top: 4px;
    }
    .product-swatches img {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 1px solid rgba(0,0,0,0.12);
      flex-shrink: 0;
    }
    .swatch-more {
      font-size: 11px;
      color: #888;
      white-space: nowrap;
    }

    /* placeholder image backgrounds */
    .img-placeholder {
      width: 100%;
      aspect-ratio: 4 / 3;
      display: block;
      background: #d4d0cb;
      position: relative;
      overflow: hidden;
    }
    .img-placeholder::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    }
    .img-p1 { background: linear-gradient(160deg, #c8b99a 0%, #a89070 100%); }
    .img-p2 { background: linear-gradient(160deg, #b0b0ae 0%, #888880 100%); }
    .img-p3 { background: linear-gradient(160deg, #c4c0bc 0%, #9a9890 100%); }
    .img-p4 { background: linear-gradient(160deg, #d8d4ce 0%, #b0aba4 100%); }
    .img-p5 { background: linear-gradient(160deg, #b8b4b0 0%, #8c8a84 100%); }
    .img-p6 { background: linear-gradient(160deg, #c0bdb8 0%, #969490 100%); }

    /* ── RESPONSIVE ── */
    @media (max-width: 860px) {
      .product-grid { grid-template-columns: 1fr 1fr; }
      .product-card:nth-child(3n) { border-right: 1px solid #e0e0e0; }
      .product-card:nth-child(2n) { border-right: none; }
      .nav-sub-links { gap: 4px; }
      .nav-sub-links li a { font-size: 11px; }
    }
    @media (max-width: 560px) {
      .product-grid { grid-template-columns: 1fr; }
      .product-card:nth-child(n) { border-right: none; }
      .page-title { font-size: 42px; }
      .nav-top, .nav-sub { padding: 0 16px; }
      .page-header { padding: 20px 16px 0; }

      .pd-li-gallery img {
          width: 160px;
          height: 170px;
          border-radius: 10px;
      }
      .mm-left {
        padding: 100px 36px 60px;
      }
      #hero {
        position: relative;
        width: 100%;
        height: auto;
        padding: 160px 0;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero-title {
    font-size: clamp(40px, 14vw, 196px);
}

.hero-ctas {
  flex-direction: column;
}



#welcome {
    padding: 40px 30px;
    grid-template-columns: 1fr;
    gap: 30px;
}

.carousel-images {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.carousel-nav-row button#carouselPrev img,
.carousel-nav-row button#carouselNext img {
    width: 34px;
}

.carousel-nav-row {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
}

.banner-photo {
  height: 380px;
}

.banner-content {
    position: absolute;
    right: 0;
    bottom: 0;
    top: auto;
  }

  .areas-header {
      padding: 0;
      margin-bottom: 56px;
      position: relative;
  }

  #areas {
    padding: 30px 0 80px 40px;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-bottom {
  flex-direction: column;
  gap: 30px;
  padding: 0;
}

.footer-logo {
  display: none;
}

footer {
    background: var(--black);
    color: white;
    padding: 80px 30px 40px;
}

#navbar.scrolled {
    background: rgba(8, 8, 8, 1);
    padding: 15px 20px;
}


}


#navbar a,
#navbar svg,
#navbar.scrolled svg,
#navbar.scrolled {
  transition: all 0.3s;
}
#navbar.scrolled {
    background: rgba(8, 8, 8, 1);
    padding: 15px 20px;
}

#navbar.scrolled a.nav-logo svg {
    width: 130px;
}


#navbar.m-white svg path {
  fill: #000
}

#navbar.m-white svg path:nth-child(6) {
  fill: #CD9159
}

#navbar.m-white .nav-links a {
    color: #000;
}

#navbar.m-white .hamburger-wrap span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #000;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: center;
}

#navbar.m-white button#search-btn svg {
  stroke: #000;
}












#navbar.m-white.scrolled svg path {
  fill: #fff
}

#navbar.m-white.scrolled svg path:nth-child(6) {
  fill: #CD9159
}

#navbar.m-white.scrolled .nav-links a {
    color: #fff;
}

#navbar.m-white.scrolled .hamburger-wrap span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: #fff;
    transition: all 0.35s cubic-bezier(0.77, 0, 0.175, 1);
    transform-origin: center;
}

#navbar.m-white.scrolled button#search-btn svg {
  stroke: #fff;
}



.m-white {
    border-bottom: 1px solid #000 !important;
}

body.error404.logged-in.admin-bar.wp-theme-favaro.customize-support .hero {
    padding: 210px;
    text-align: center;
}



    /* ── MAP BANNER ── */
.map-banner {
  width: 100%;
  height: 340px;
  background: #e8e8e8;
  margin-top: 83px;
  overflow: hidden;
    filter: grayscale(100%) invert(0%) contrast(90%);
}


.map-banner iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(30%);
}

/* ── BREADCRUMB ── */
.page-header .breadcrumb {
  padding: 70px 0px 0;
  font-size: 13px;
  color: #888;
}

.breadcrumb a { color: #888; text-decoration: underline; }
.breadcrumb a:hover { text-decoration: none; }
.breadcrumb span { margin: 0 6px; }

/* ── MAIN LAYOUT ── */
.page-wrapper {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  padding: 0 40px 80px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ── LEFT COLUMN ── */
.left-col h1 {
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 24px 0 16px;
  text-transform: uppercase;
}
.intro-text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  max-width: 520px;
  margin-bottom: 48px;
}

.section-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 24px;
}

/* Request type */
.field-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}
.request-type-select {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #111;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
  margin-bottom: 48px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23111' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 38px;
  min-width: 220px;
}
.request-type-select:focus { outline: none; border-color: #111; }

/* Form grid */
.your-data-title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-grid .full-width { grid-column: 1 / -1; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: none;
  border-radius: 8px;
  background: #f4f4f4;
  padding: 14px 16px;
  font-size: 14px;
  font-family: inherit;
  color: #111;
  outline: none;
  transition: background 0.2s;
}
.form-input::placeholder,
.form-textarea::placeholder { color: #999; }
.form-input:focus,
.form-select:focus,
.form-textarea:focus { background: #ebebeb; }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: #f4f4f4;
  cursor: pointer;
  color: #999;
}
.form-select.has-value { color: #111; }

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

/* Privacy */
.privacy-block {
  display: flex;
  gap: 12px;
  margin: 20px 0 28px;
  align-items: flex-start;
}
.privacy-block input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.privacy-block p {
  font-size: 12px;
  line-height: 1.6;
  color: #444;
}
.privacy-block a { color: #111; }

/* Submit button */
.btn-submit {
  display: inline-block;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-submit:hover { background: #333; }

/* ── RIGHT COLUMN ── */
.right-col {
  padding-top: 160px;
}
.address-block {
  margin-bottom: 32px;
}
.address-block p {
  font-size: 15px;
  line-height: 1.7;
  color: #111;
}
.directions-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  color: #111;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}
.contact-table tr td {
  padding: 8px 0;
  font-size: 14px;
  color: #111;
  border-bottom: 1px solid #e8e8e8;
}
.contact-table tr:first-child td { border-top: 1px solid #e8e8e8; }
.contact-table td:last-child { text-align: right; }

.btn-quote {
  display: block;
  width: 100%;
  border: 1.5px solid #111;
  border-radius: 50px;
  padding: 14px 20px;
  text-align: center;
  font-size: 14px;
  font-family: inherit;
  font-weight: 500;
  background: #fff;
  color: #111;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-quote:hover { background: #111; color: #fff; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .page-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px 60px;
  }
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .breadcrumb { padding: 16px 20px 0; }
  .right-col { padding-top: 0; }
  .left-col h1 { font-size: 56px; }
}




/* ══════════════════════════════════════════
   PRODUKT DETAIL — přidat na konec style.css
   ══════════════════════════════════════════ */

/* ─────────────────────────────────────────
   1. HERO FULL
───────────────────────────────────────── */
.pd-hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pd-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
  z-index: 1;
}
.pd-hero-breadcrumb {
  position: absolute;
  top: 100px;
  left: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
}
.pd-hero-breadcrumb a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
.pd-hero-breadcrumb a:hover { color: #fff; }
.pd-hero-breadcrumb span { opacity: 0.5; }

.pd-hero-title {
  position: relative;
  z-index: 10;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 200;
  letter-spacing: 0.12em;
  line-height: 0.95;
  color: var(--cream);
  text-align: center;
  pointer-events: none;
  /* outline style — stroked look */
  -webkit-text-stroke: 1px rgba(232,224,204,0.6);
  color: rgba(232,224,204,1);

  animation: fadeUp 1s 0.3s both;
}

p.pd-text-label,
.pd-hero-title {
animation: fadeUp 1s 0.3s both;
}


p.pd-text-body {
animation: fadeUp 1s 0.6s both;
}
/* ─────────────────────────────────────────
   2. GALLERY — drag scroll
───────────────────────────────────────── */
.pd-gallery {
  background: #fff;
  overflow: hidden;
  padding: 50px 0 28px;
}

.pd-gallery-track {
  display: flex;
  gap: 12px;
  overflow-x: scroll;
  scroll-behavior: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  padding: 0;
}
.pd-gallery-track::-webkit-scrollbar { display: none; }
.pd-gallery-track.grabbing,
.pd-gallery-track.grabbing * { cursor: grabbing !important; }

.pd-gal-slide {
  flex: 0 0 auto;
  width: 55vw;
  height: 520px;
  overflow: hidden;
  border-radius: 4px;
}
/* první slide trochu odsazený zleva */
.pd-gal-slide:first-child { margin-left: 20px; }

.pd-gal-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

@media (max-width: 768px) {
  .pd-gal-slide { width: 80vw; height: 300px; }


  .pd-hero-full {
      position: relative;
      width: 100%;
      height: auto;}

}

/* ─────────────────────────────────────────
   3. TEXT BLOCK
───────────────────────────────────────── */
.pd-text-block {
  padding: 100px 120px 100px;
  max-width: 1100px;
  background: #fff;
  margin: auto;
}
.pd-text-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 40px;
}
.pd-text-body {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.45;
  color: var(--black);
  margin-bottom: 0;
}
.pd-text-body--second {
  margin-top: 24px;
}

/* ─────────────────────────────────────────
   4. SPLIT SECTION (béžové bg)
───────────────────────────────────────── */
.pd-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #e8e0cc; /* --cream */
  min-height: 900px;
}
.pd-split-left {
  overflow: hidden;
  position: relative;
}
.pd-split-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.pd-split-section:hover .pd-split-left img {
  transform: scale(1.03);
}
.pd-split-right {
  padding: 80px 72px 80px 64px;
  background: #f0ece0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  overflow-y: auto;
}
.pd-split-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 16px;
}
.pd-split-h2 {
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 28px;
}
.pd-split-desc {
  font-size: 13px;
  line-height: 1.75;
  color: #444;
  margin-bottom: 40px;
}

/* Colours grid — 3 kolony + 2 na druhý řad */
.pd-colours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 16px;
  margin-bottom: 48px;
}
.pd-col-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pd-col-img {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 3px 5px 13px rgba(0, 0, 0, 0.09);
    background: #ddd;
}
.pd-col-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.pd-col-item:hover .pd-col-img img { transform: scale(1.07); }
.pd-col-item span {
  font-size: 12px;
  color: #555;
  letter-spacing: 0.3px;
}

.pd-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.15);
  margin: 32px 0;
}
.pd-vantaggi-h {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}
.pd-vantaggi-sub {
    font-size: 18px;
    color: #666;
    font-weight: 200;
}

.pd-dark-feat p {
    margin-top: 18px;
    display: block;
}

/* ─────────────────────────────────────────
   5. DARK SECTION
───────────────────────────────────────── */
.pd-dark-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--black);
  min-height: 800px;
}
.pd-dark-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 48px;
  overflow: hidden;
}
.pd-dark-left img {
  max-width: 100%;
  max-height: 480px;
  object-fit: contain;
  display: block;
  /* subtlety: slight drop shadow */
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.7));
  transition: transform 0.8s ease;
}
.pd-dark-section:hover .pd-dark-left img {
  transform: translateY(-6px) scale(1.02);
}
.pd-dark-right {
  padding: 80px 72px 80px 48px;
  color: #fff;
  overflow-y: auto;
}
.pd-dark-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.pd-dark-h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 8px;
}
.pd-dark-product {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 200;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}
.pd-dark-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 0 0 40px;
}
.pd-dark-feat {
  margin-bottom: 28px;
}
.pd-dark-feat h4 {
  font-size: 22px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.pd-spec-content p {
    margin-bottom: 20px;
}

.pd-wrap {
    max-width: 1100px;
    margin: auto;
}
.pd-dark-feat p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}
.pd-dark-feat strong {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
}
.pd-dark-summary {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.45);
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ─────────────────────────────────────────
   6. TECH SPECS (béžové bg + accordion)
───────────────────────────────────────── */
.pd-specs-section {
  background: #c8bc9e;
  padding: 80px 80px 100px;
}
.pd-specs-eyebrow {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 16px;
}
.pd-specs-h2 {
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--black);
  margin-bottom: 56px;
}

/* Accordion */
.pd-accordion {
  border-top: 1px solid rgba(0,0,0,0.2);
  max-width: 1200px;
}
.pd-acc-item {
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.pd-acc-btn {
    width: 100%;
    background: none;
    border: none;
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-body);
    font-size: clamp(16px, 1.8vw, 56px);
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    text-align: left;
    gap: 20px;
    transition: opacity 0.15s;
}
.pd-acc-btn:hover { opacity: 0.7; }
.pd-acc-icon {
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
  color: var(--black);
  transition: transform 0.3s;
}
/* Last item — area tecnica pill */
.pd-acc-item--area .pd-acc-btn {
  cursor: default;
}
.pd-area-btn {
  display: inline-block;
  background: var(--black);
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 22px;
  border-radius: 100px;
  flex-shrink: 0;
  transition: background 0.2s;
  cursor: pointer;
  font-family: var(--font-body);
}
.pd-area-btn:hover { background: #333; }

/* Accordion body */
.pd-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}
.pd-acc-panel > * {
  padding: 0 0 32px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0,0,0,0.65);
}
.pd-acc-panel ul {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Spec table */
.pd-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-bottom: 32px;
}
.pd-spec-table th {
  text-align: left;
  padding: 10px 16px;
  background: rgba(0,0,0,0.06);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  border-bottom: 1px solid rgba(0,0,0,0.12);
}
.pd-spec-table td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  color: rgba(0,0,0,0.7);
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1100px) {
  .pd-text-block { padding: 80px 60px; }
  .pd-split-right { padding: 60px 40px; }
  .pd-dark-right { padding: 60px 40px; }
  .pd-specs-section { padding: 60px 40px 80px; }
}

@media (max-width: 900px) {
  /* gallery responsive handled inside gallery block above */

  .pd-text-block { padding: 60px 30px; }

  .pd-split-section { grid-template-columns: 1fr; min-height: auto; }
  .pd-split-left { height: 50vw; max-height: 420px; }
  .pd-split-right { padding: 48px 30px; }

  .pd-dark-section { grid-template-columns: 1fr; }
  .pd-dark-left { padding: 60px 30px 20px; }
  .pd-dark-right { padding: 20px 30px 60px; }

  .pd-specs-section { padding: 48px 24px 80px; }
  .pd-specs-h2 { font-size: 44px; margin-bottom: 40px; }

  .pd-colours-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 600px) {
  .pd-hero-title { font-size: clamp(60px, 18vw, 100px); }
  /* gallery responsive handled inside gallery block above */
  .pd-text-block { padding: 48px 20px; }
  .pd-colours-grid { grid-template-columns: repeat(2, 1fr); }
  .pd-hero-breadcrumb { display: none; }
}
