/* ============================================
   MEBTET v3 — Kuchnie na wymiar
   Premium WOW design with interactions
   ============================================ */

@font-face { font-family:'Inter'; font-style:normal; font-weight:300 700; font-display:swap; src:url('../fonts/inter-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02FF,U+1E00-1EFF,U+20A0-20CF,U+2C60-2C7F; }
@font-face { font-family:'Inter'; font-style:normal; font-weight:300 700; font-display:swap; src:url('../fonts/inter-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+20AC,U+2122; }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:400 700; font-display:swap; src:url('../fonts/cormorant-normal-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02FF,U+1E00-1EFF,U+20A0-20CF,U+2C60-2C7F; }
@font-face { font-family:'Cormorant Garamond'; font-style:normal; font-weight:400 700; font-display:swap; src:url('../fonts/cormorant-normal-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+20AC,U+2122; }
@font-face { font-family:'Cormorant Garamond'; font-style:italic; font-weight:400 500; font-display:swap; src:url('../fonts/cormorant-italic-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02FF,U+1E00-1EFF,U+20A0-20CF,U+2C60-2C7F; }
@font-face { font-family:'Cormorant Garamond'; font-style:italic; font-weight:400 500; font-display:swap; src:url('../fonts/cormorant-italic-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+2000-206F,U+20AC,U+2122; }

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #0C0B09;
  --bg-light:   #141210;
  --bg-card:    #1A1814;
  --surface:    #F7F5F0;
  --text:       #E8E4DC;
  --text-dim:   #9E9788;
  --accent:     #C9A84C;
  --accent-light:#E0C872;
  --accent-dark: #A08230;
  --white:      #FAFAF5;
  --border:     rgba(201,168,76,0.15);

  --ff-heading: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', system-ui, sans-serif;
  --fs-base:    clamp(0.95rem, 0.9rem + 0.25vw, 1.05rem);

  --section-py: clamp(5rem, 10vw, 10rem);
  --gap:        clamp(1.5rem, 3vw, 3rem);
  --container:  min(1280px, 92vw);

  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

.gallery__open { display:block; width:100%; padding:0; border:0; background:transparent; color:inherit; font:inherit; text-align:left; cursor:pointer; }
.gallery__caption { display:block; }

a { color: var(--accent); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--accent-light); }

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

::selection { background: var(--accent); color: var(--bg); }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 10000;
  padding: 0.75rem 1.5rem; background: var(--accent); color: var(--bg);
  font-weight: 600; border-radius: 0 0 8px 8px; transition: top 0.3s;
}
.skip-link:focus { top: 0; }

.container { width: var(--container); margin: 0 auto; }

/* --- CURSOR GLOW (desktop) --- */
.cursor-glow {
  position: fixed; top: 0; left: 0; width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.4s;
  opacity: 0;
}
body:hover .cursor-glow { opacity: 1; }

/* --- BUTTONS --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid transparent; border-radius: 0; cursor: pointer;
  transition: all 0.5s var(--ease); text-decoration: none; line-height: 1.2;
  position: relative; overflow: hidden;
}

.btn::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent-light);
  transform: translateX(-101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover::before { transform: translateX(0); }

.btn--primary {
  background: var(--accent); color: var(--bg); border-color: var(--accent);
}
.btn--primary:hover { color: var(--bg); border-color: var(--accent-light); }

.btn--primary svg { transition: transform 0.4s var(--ease); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent; color: var(--text);
  border-color: rgba(255,255,255,0.2);
}
.btn--ghost:hover { color: var(--bg); border-color: var(--accent-light); }
.btn--ghost::before { background: var(--accent); }

.btn--lg { padding: 1.2rem 3rem; font-size: 0.95rem; }

/* Magnetic button transition */
.btn--magnetic {
  transition: all 0.5s var(--ease), transform 0.2s ease-out;
}

/* --- HEADER --- */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.5rem 0;
  transition: all 0.5s var(--ease);
}
.header.scrolled {
  padding: 0.75rem 0;
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; }

.logo { display: flex; align-items: center; gap: 0.7rem; color: var(--white); text-decoration: none; }
.logo__mark { width: 2.2rem; height: 2.2rem; color: var(--accent); }
.logo__mark svg { width: 100%; height: 100%; }
.logo__text { font-family: var(--ff-heading); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.06em; }

.nav__list { display: flex; align-items: center; gap: 0.15rem; list-style: none; }
.nav__link {
  display: block; padding: 0.5rem 1rem;
  color: var(--text-dim); font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  transition: all 0.3s; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; bottom: 0; left: 1rem; right: 1rem; height: 1px;
  background: var(--accent); transform: scaleX(0); transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link:focus-visible { color: var(--white); }
.nav__link:hover::after { transform: scaleX(1); }

/* Active nav link */
.nav__link.active { color: var(--accent); }
.nav__link.active::after { transform: scaleX(1); }

.nav__link--cta {
  margin-left: 0.5rem; border: 1px solid var(--accent); color: var(--accent);
  padding: 0.5rem 1.2rem;
}
.nav__link--cta::after { display: none; }
.nav__link--cta:hover { background: var(--accent); color: var(--bg); }
.nav__link--cta.active { background: var(--accent); color: var(--bg); }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; padding: 0.5rem;
  background: none; border: none; cursor: pointer; z-index: 1001;
}
.nav__toggle-bar {
  display: block; width: 28px; height: 1.5px; background: var(--white);
  transition: all 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* --- HERO --- */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; overflow: hidden;
}

.hero__slider { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 2.2s ease-in-out, transform 9s ease-out;
  will-change: opacity, transform;
}
.hero__slide--active { opacity: 1; transform: scale(1); }

.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(12,11,9,0.92) 0%, rgba(12,11,9,0.55) 40%, rgba(12,11,9,0.8) 100%);
  z-index: 1;
}

.hero__particles {
  position: absolute; inset: 0; z-index: 2;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(201,168,76,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 80% 40%, rgba(201,168,76,0.2) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 70%, rgba(201,168,76,0.25) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 10%, rgba(201,168,76,0.15) 0%, transparent 100%),
    radial-gradient(1px 1px at 20% 90%, rgba(201,168,76,0.2) 0%, transparent 100%);
  animation: particleFloat 20s ease-in-out infinite alternate;
}
@keyframes particleFloat {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-20px) translateX(10px); }
}

.hero__content { position: relative; z-index: 3; max-width: 780px; padding: 10rem 0 6rem; }

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem; margin-bottom: 2rem;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); border: 1px solid var(--border); border-radius: 0;
  border-color: var(--accent);
}

.hero__title {
  font-family: var(--ff-heading);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400; line-height: 1.05;
  color: var(--white); margin-bottom: 2rem;
}
.hero__line { display: block; }
.hero__title em {
  font-style: italic; font-weight: 600;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--accent-light), var(--accent));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 4s ease-in-out infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero__subtitle {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dim); line-height: 1.9;
  max-width: 540px; margin-bottom: 3rem;
}

.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero__scroll-hint {
  position: absolute; bottom: 3rem; left: 0;
  display: flex; align-items: center; gap: 1rem;
  color: var(--text-dim); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
}
.hero__mouse {
  width: 22px; height: 34px; border: 1.5px solid var(--text-dim); border-radius: 11px;
  position: relative;
}
.hero__mouse-wheel {
  width: 3px; height: 7px; background: var(--accent);
  border-radius: 2px; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  opacity: 0.8;
}

/* --- MARQUEE --- */
.marquee {
  padding: 1.5rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; background: var(--bg-light);
}
.marquee__track {
  display: flex; align-items: center; gap: 2.5rem; white-space: nowrap;
  animation: marqueeScroll 25s linear infinite;
  width: max-content;
  will-change: transform;
}
.marquee__track span {
  font-family: var(--ff-heading); font-size: 1.1rem; font-weight: 400;
  color: var(--text-dim); letter-spacing: 0.04em;
}
.marquee__dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- COMMON SECTION --- */
.section { padding: var(--section-py) 0; }

.eyebrow {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
}

.section-title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15;
  color: var(--white); margin-bottom: 1.25rem;
}
.section-title--xl { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.section-title em { font-style: italic; color: var(--accent); font-weight: 600; }

.section-desc {
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  color: var(--text-dim); max-width: 560px; line-height: 1.8;
}

.center { text-align: center; }
.center.section-desc { margin: 0 auto 3rem; }

/* --- ABOUT --- */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem,6vw,6rem); align-items: center;
}

.about__visual { position: relative; }

.about__img-main {
  border-radius: 4px; overflow: hidden; position: relative; z-index: 1;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.about__img-main img { width: 100%; object-fit: cover; aspect-ratio: 3/4; }

.about__img-float {
  position: absolute; bottom: -2rem; right: -2rem; width: 55%; z-index: 2;
  border-radius: 4px; overflow: hidden; border: 3px solid var(--bg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about__img-float img { width: 100%; object-fit: cover; aspect-ratio: 4/3; }

.about__experience {
  position: absolute; top: -1rem; left: -1rem; z-index: 3;
  background: var(--accent); color: var(--bg); padding: 1.2rem 1.6rem;
  text-align: center; border-radius: 4px;
}
.about__exp-number {
  display: block; font-family: var(--ff-heading);
  font-size: 2rem; font-weight: 700; line-height: 1;
}
.about__exp-text {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.3rem;
}

.about__body { margin-bottom: 2.5rem; }
.about__body p { color: var(--text-dim); margin-bottom: 1rem; }
.about__body .lead { font-size: 1.05rem; color: var(--text); }
.about__body strong { color: var(--accent); }

.about__features { display: flex; flex-direction: column; gap: 1.25rem; }
.about__feature {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 4px; transition: all 0.4s var(--ease);
}
.about__feature:hover { border-color: var(--accent); transform: translateX(4px); }
.about__feature-icon {
  width: 2rem; height: 2rem; flex-shrink: 0; color: var(--accent); margin-top: 0.15rem;
}
.about__feature-icon svg { width: 100%; height: 100%; }
.about__feature strong { display: block; color: var(--white); font-size: 0.95rem; margin-bottom: 0.2rem; }
.about__feature span { font-size: 0.85rem; color: var(--text-dim); }

/* --- KITCHENS --- */
.kitchens { background: var(--bg-light); }

.kitchens__header {
  max-width: 600px; margin-bottom: 3.5rem;
}

.kitchens__showcase {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.kitchens__card {
  position: relative; overflow: hidden; border-radius: 4px; cursor: pointer;
}
.kitchens__card--large { grid-row: span 2; }

.kitchens__card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.kitchens__card:hover img { transform: scale(1.06); }

.kitchens__card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(12,11,9,0.85) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.kitchens__card:hover .kitchens__card-overlay { opacity: 1; }

.kitchens__card-overlay h3 {
  font-family: var(--ff-heading); font-size: 1.5rem; color: var(--white);
  margin-bottom: 0.5rem;
}
.kitchens__card-overlay p { font-size: 0.9rem; color: var(--text-dim); }

/* 3D TILT CARD */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s ease-out;
}
.tilt-card__shine {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0) 100%);
  opacity: 0; transition: opacity 0.5s;
  pointer-events: none;
}
.tilt-card:hover .tilt-card__shine { opacity: 1; }

.kitchens__features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap);
}

.kf {
  padding: 2rem 1.5rem; border-left: 1px solid var(--border);
  position: relative;
}
.kf__number {
  font-family: var(--ff-heading); font-size: 3rem; font-weight: 700;
  color: rgba(201,168,76,0.12); line-height: 1;
  position: absolute; top: 0.5rem; right: 1rem;
}
.kf__title {
  font-family: var(--ff-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
}
.kf p { font-size: 0.9rem; color: var(--text-dim); }

/* --- SERVICES --- */
.services__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
  margin-top: 1rem;
}

.svc {
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px;
  overflow: hidden; transition: all 0.5s var(--ease);
}
.svc:hover { border-color: var(--accent); transform: translateY(-3px); }

.svc__img { overflow: hidden; }
.svc__img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.svc:hover .svc__img img { transform: scale(1.05); }

.svc__body {
  padding: 2rem; display: flex; flex-direction: column; justify-content: center;
}
.svc__body h3 {
  font-family: var(--ff-heading); font-size: 1.3rem; color: var(--white);
  margin-bottom: 0.75rem;
}
.svc__body p { font-size: 0.9rem; color: var(--text-dim); }

/* --- GALLERY --- */
.gallery { overflow: hidden; }

.gallery__scroll {
  overflow-x: auto; overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}
.gallery__scroll::-webkit-scrollbar { display: none; }
.gallery__scroll:active { cursor: grabbing; }

.gallery__track {
  display: flex; gap: 1.5rem;
  padding: 0 calc((100vw - var(--container)) / 2) 2rem;
  width: max-content;
}

.gallery__item {
  flex: 0 0 auto; width: clamp(300px, 40vw, 500px);
  border-radius: 4px; overflow: hidden; position: relative;
  cursor: pointer;
}
.gallery__item img {
  width: 100%; aspect-ratio: 7/5; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.gallery__item:hover img, .gallery__item:focus-within img { transform: scale(1.04); }

.gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  background: linear-gradient(transparent, rgba(12,11,9,0.85));
  color: var(--white); font-size: 0.9rem; font-weight: 500;
  transform: translateY(100%); transition: transform 0.5s var(--ease);
}
.gallery__item:hover .gallery__caption, .gallery__item:focus-within .gallery__caption { transform: translateY(0); }

/* Lightbox click hint */
.gallery__item::after {
  content: '';
  position: absolute; top: 1rem; right: 1rem;
  width: 36px; height: 36px;
  background: rgba(201,168,76,0.85);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%230C0B09' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M15 3h6v6M9 21H3v-6M21 3l-7 7M3 21l7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  opacity: 0; transform: scale(0.6);
  transition: all 0.4s var(--ease);
  z-index: 2;
}
.gallery__item:hover::after, .gallery__item:focus-within::after { opacity: 1; transform: scale(1); }

@media (hover:none) { .gallery__caption { transform:translateY(0); } }

/* --- LIGHTBOX --- */
.lightbox {
  position: fixed; inset: 0; z-index: 10000;
  display: flex; align-items: center; justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(12,11,9,0.95);
  backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
  animation: lbFadeIn 0.3s ease;
}
@keyframes lbFadeIn { from { opacity: 0; } }

.lightbox__close {
  position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3;
  background: none; border: none; color: var(--white); cursor: pointer;
  padding: 0.5rem; transition: all 0.3s;
}
.lightbox__close:hover { color: var(--accent); transform: rotate(90deg); }

.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  background: rgba(201,168,76,0.15); border: 1px solid var(--border);
  color: var(--white); cursor: pointer; padding: 1rem;
  transition: all 0.3s var(--ease);
}
.lightbox__nav:hover { background: var(--accent); color: var(--bg); }
.lightbox__nav--prev { left: 1.5rem; }
.lightbox__nav--next { right: 1.5rem; }

.lightbox__content {
  position: relative; z-index: 2;
  max-width: 90vw; max-height: 85vh;
  animation: lbZoomIn 0.4s var(--ease);
}
@keyframes lbZoomIn { from { opacity: 0; transform: scale(0.9); } }

.lightbox__img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain; border-radius: 4px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.5);
}

.lightbox__caption {
  text-align: center; color: var(--text-dim); font-size: 0.95rem;
  margin-top: 1rem;
}

.lightbox__counter {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); z-index: 3;
  color: var(--text-dim); font-size: 0.8rem; letter-spacing: 0.1em;
}

/* --- PROCESS --- */
.process { background: var(--bg-light); }

.process__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem;
}
.process__step {
  text-align: center; padding: 2.5rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px;
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease);
}
.process__step:hover {
  border-color: var(--accent); transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(201,168,76,0.08);
}

.process__step::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: scaleX(0); transition: transform 0.5s var(--ease);
}
.process__step:hover::before { transform: scaleX(1); }

.process__icon {
  width: 3rem; height: 3rem; margin: 0 auto 1rem; color: var(--accent);
}
.process__icon svg { width: 100%; height: 100%; }

.process__num {
  font-family: var(--ff-heading); font-size: 4rem; font-weight: 700;
  color: rgba(201,168,76,0.06); line-height: 1;
  position: absolute; top: 0.5rem; right: 1rem;
}

.process__step h3 {
  font-family: var(--ff-heading); font-size: 1.15rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
}
.process__step p { font-size: 0.88rem; color: var(--text-dim); }

/* --- STATS --- */
.stats {
  position: relative; padding: 5rem 0;
  background: var(--bg);
}
.stats__bg {
  position: absolute; inset: 0;
  background: url('../img/bg-stats.webp') center/cover;
  opacity: 0.06;
}

.stats__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  position: relative; text-align: center;
}

.stats__item { padding: 2rem; }
.stats__number {
  font-family: var(--ff-heading); font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700; color: var(--accent); line-height: 1;
}
.stats__suffix {
  font-family: var(--ff-heading); font-size: clamp(1.5rem, 2.5vw, 2.5rem);
  font-weight: 600; color: var(--accent);
}
.stats__label {
  display: block; font-size: 0.8rem; font-weight: 500;
  color: var(--text-dim); letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 0.5rem;
}

/* --- CTA --- */
.cta {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 50%, var(--accent-light) 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 40px,
    rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px
  );
}

.cta__inner { position: relative; }
.cta__title {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400; color: var(--bg); line-height: 1.15; margin-bottom: 1.25rem;
}
.cta__title em { font-style: italic; font-weight: 600; }
.cta__text {
  color: rgba(12,11,9,0.85); font-size: 1.05rem;
  max-width: 560px; margin: 0 auto 2.5rem;
}

.cta .btn--primary {
  background: var(--bg); color: var(--accent); border-color: var(--bg);
}
.cta .btn--primary::before { background: var(--white); }
.cta .btn--primary:hover { color: var(--bg); border-color: var(--white); }

/* --- CONTACT --- */
.contact__grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: var(--gap); align-items: start;
}

/* Direct contact cards */
.contact__direct {
  display: flex; gap: 1rem; margin: 1.5rem 0;
}
.contact__direct-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px;
  transition: all 0.4s var(--ease); flex: 1;
  text-decoration: none;
}
.contact__direct-item:hover {
  border-color: var(--accent); transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.12);
}
.contact__direct-icon {
  width: 2.5rem; height: 2.5rem; flex-shrink: 0;
  color: var(--accent);
}
.contact__direct-icon svg { width: 100%; height: 100%; }
.contact__direct-item strong { display: block; color: var(--white); font-size: 0.85rem; margin-bottom: 0.15rem; }
.contact__direct-item span { color: var(--text-dim); font-size: 0.9rem; }

.contact__dl { margin-top: 1.5rem; }
.contact__row {
  display: flex; gap: 1.5rem; padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact__row dt {
  flex-shrink: 0; width: 5rem; font-weight: 600; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent);
}
.contact__row dd { color: var(--text); line-height: 1.6; }

.contact__area { margin-top: 2rem; }
.contact__area h3 {
  font-family: var(--ff-heading); font-size: 1.1rem; color: var(--white); margin-bottom: 0.5rem;
}
.contact__area p { color: var(--text-dim); }

/* Contact form */
.contact__right { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__form-wrapper {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 4px;
  padding: 2.5rem;
}
.contact__form-title {
  font-family: var(--ff-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 0.25rem;
}
.contact__form-subtitle {
  font-size: 0.85rem; color: var(--text-dim); margin-bottom: 2rem;
}

.contact__form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.form__group {
  position: relative;
}
.form__group--full { grid-column: span 2; }

.form__group input,
.form__group textarea {
  width: 100%; padding: 1rem 1rem 0.6rem;
  background: var(--bg); border: 1px solid var(--border); border-radius: 4px;
  color: var(--white); font-family: var(--ff-body); font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  outline: none;
}
.form__group textarea { resize: vertical; min-height: 100px; }

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}

.form__group label {
  position: absolute; top: 50%; left: 1rem; transform: translateY(-50%);
  color: var(--text-dim); font-size: 0.85rem;
  pointer-events: none; transition: all 0.3s var(--ease);
}
.form__group textarea + label {
  top: 1rem; transform: none;
}

.form__group input:focus + label,
.form__group input:not(:placeholder-shown) + label {
  top: 0.4rem; transform: none;
  font-size: 0.65rem; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase;
}

.form__group textarea:focus + label,
.form__group textarea:not(:placeholder-shown) + label {
  top: 0.3rem;
  font-size: 0.65rem; color: var(--accent); letter-spacing: 0.05em; text-transform: uppercase;
}

.form__submit {
  grid-column: span 2; justify-content: center;
}

/* Form error */
.form__error {
  display: block; font-size: 0.75rem; color: #e25555; margin-top: 0.35rem;
  letter-spacing: 0.02em;
}
.form__group input[aria-invalid="true"],
.form__group textarea[aria-invalid="true"] {
  border-color: #e25555;
}

/* Form success state (DOM element) */
.form__success {
  text-align: center; padding: 3rem 2rem;
  color: var(--accent); font-size: 1.1rem; font-weight: 600;
  animation: lbFadeIn 0.5s ease;
}
.form__success[hidden] { display: none; }

/* Hero slider pause button */
.hero__pause {
  position: absolute; bottom: 3rem; right: 0; z-index: 4;
  background: rgba(255,255,255,0.1); border: 1px solid var(--border);
  color: var(--white); width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s;
}
.hero__pause:hover { background: var(--accent); color: var(--bg); }
.hero__pause svg { width: 18px; height: 18px; }

.contact__map {
  border-radius: 4px; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4); border: 1px solid var(--border);
}
.contact__map iframe { width: 100%; height: 350px; display: block; filter: invert(0.9) hue-rotate(180deg); }

/* --- FLOATING PHONE BUTTON --- */
.fab-phone {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 60px; height: 60px;
  background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg); text-decoration: none;
  box-shadow: 0 8px 30px rgba(201,168,76,0.35);
  transition: all 0.4s var(--ease);
}
.fab-phone svg { width: 26px; height: 26px; }
.fab-phone:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.5);
  color: var(--bg);
}

.fab-phone__pulse {
  display: none;
}

/* --- FOOTER --- */
.footer { background: var(--bg-light); border-top: 1px solid var(--border); }

.footer__inner { padding: 4rem 0 2rem; }
.footer__top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 3rem; border-bottom: 1px solid var(--border);
}

.footer__brand p { color: var(--text-dim); font-size: 0.9rem; margin-top: 1rem; line-height: 1.7; }
.footer__brand .logo { margin-bottom: 0.5rem; }

.footer__nav h3, .footer__contact h3 {
  font-family: var(--ff-heading); font-size: 1rem; color: var(--white);
  margin-bottom: 1rem;
}
.footer__nav ul { list-style: none; }
.footer__nav li { margin-bottom: 0.6rem; }
.footer__nav a { color: var(--text-dim); font-size: 0.9rem; transition: color 0.3s; }
.footer__nav a:hover { color: var(--accent); }

.footer__contact p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.8; }

.footer__bottom { padding-top: 2rem; text-align: center; }
.footer__bottom p { font-size: 0.78rem; color: var(--text-dim); }

/* --- REVEAL --- */
.reveal, .reveal-img {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-img { transform: translateY(30px) scale(0.97); }
.reveal-img.visible { opacity: 1; transform: translateY(0) scale(1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-hero { opacity: 1; transform: none; }

.reveal-hero:nth-child(2) { transition-delay: 0.15s; }
.reveal-hero:nth-child(3) { transition-delay: 0.3s; }
.reveal-hero:nth-child(4) { transition-delay: 0.45s; }
.reveal-hero:nth-child(5) { transition-delay: 0.6s; }

.contact__privacy { margin-top:1.25rem; color:var(--text-dim); font-size:.85rem; line-height:1.6; }

.services__grid .svc:nth-child(2) { transition-delay: 0.1s; }
.services__grid .svc:nth-child(3) { transition-delay: 0.2s; }
.services__grid .svc:nth-child(4) { transition-delay: 0.3s; }

.process__grid .process__step:nth-child(2) { transition-delay: 0.1s; }
.process__grid .process__step:nth-child(3) { transition-delay: 0.2s; }
.process__grid .process__step:nth-child(4) { transition-delay: 0.3s; }

.kitchens__features .kf:nth-child(2) { transition-delay: 0.1s; }
.kitchens__features .kf:nth-child(3) { transition-delay: 0.2s; }
.kitchens__features .kf:nth-child(4) { transition-delay: 0.3s; }

.stats__grid .stats__item:nth-child(2) { transition-delay: 0.1s; }
.stats__grid .stats__item:nth-child(3) { transition-delay: 0.2s; }
.stats__grid .stats__item:nth-child(4) { transition-delay: 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-hero, .reveal-img { opacity: 1; transform: none; }
  .hero__slide { transform: none; }
  .marquee__track { animation: none; }
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .kitchens__features { grid-template-columns: repeat(2, 1fr); }
  .process__grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; gap: 4rem; }
  .about__visual { max-width: 500px; }
  .kitchens__showcase { grid-template-columns: 1fr; }
  .kitchens__card--large { grid-row: span 1; }
  .services__grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 0.8fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .contact__direct { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .cursor-glow { display: none; }
  .nav__toggle { display: flex; }
  .nav__list {
    position: fixed; top: 0; right: 0; width: min(320px, 85vw); height: 100dvh;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 6rem 2rem 2rem; background: rgba(12,11,9,0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%); transition: transform 0.5s var(--ease);
    border-left: 1px solid var(--border);
  }
  .nav__list.open { transform: translateX(0); }
  .nav__link { padding: 1rem 0; font-size: 1rem; border-bottom: 1px solid var(--border); }
  .nav__link::after { display: none; }
  .nav__link--cta { margin: 1.5rem 0 0; text-align: center; border-bottom: none; }

  .kitchens__features { grid-template-columns: 1fr; }
  .process__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }

  .svc { grid-template-columns: 1fr; }
  .svc__img img { aspect-ratio: 16/9; }

  .hero__content { padding: 8rem 0 5rem; }
  .hero__title { font-size: clamp(2.4rem, 11vw, 3.4rem); overflow-wrap: anywhere; }
  .hero__line { max-width: 100%; }
  .hero__badge { max-width: 100%; padding: 0.4rem 0.8rem; font-size: 0.68rem; letter-spacing: 0.12em; line-height: 1.5; }
  .hero__subtitle { color: #d2ccc1; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__scroll-hint { display: none; }

  .contact__form { grid-template-columns: 1fr; }
  .form__group--full { grid-column: span 1; }
  .form__submit { grid-column: span 1; }

  .lightbox__nav--prev { left: 0.5rem; }
  .lightbox__nav--next { right: 0.5rem; }
  .lightbox__nav { padding: 0.7rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .contact__form-wrapper { padding: 1.5rem; }
}

/* Print */
@media print {
  .header, .hero__slider, .hero__overlay, .hero__particles,
  .nav, .btn, .cta, .contact__map, .cursor-glow, .marquee,
  .gallery__scroll, .fab-phone, .lightbox { display: none; }
  body { font-size: 11pt; color: #000; background: #fff; }
  .section { padding: 1rem 0; }
  .reveal, .reveal-hero, .reveal-img { opacity: 1; transform: none; }
}
