/* =============================================
   STOLARNIA JERZY BUKOWSKI — Image-Driven Design
   Palette: #F5F0EB  #8B6F47  #D4B896  #2C2C2C
   Fonts: Cormorant Garamond + Inter
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2C2C2C;
  background: #F5F0EB;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.accent { color: #8B6F47; }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; font-weight: 600; line-height: 1.15; }
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #8B6F47;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(30px, 4.5vw, 52px); margin-bottom: 16px; }
.section-desc { font-size: 16px; color: #888; max-width: 480px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 56px; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .35s ease; border: none;
  letter-spacing: 0.3px;
}
.btn-primary { background: #8B6F47; color: #fff; }
.btn-primary:hover { background: #755D3A; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(139,111,71,.3); }
.btn-glass { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.4); backdrop-filter: blur(8px); }
.btn-glass:hover { background: rgba(255,255,255,.25); border-color: #fff; }
.btn-full { width: 100%; justify-content: center; }

/* ===========================
   NAVIGATION
   =========================== */
/* Scroll progress bar */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: #D4B896; z-index: 1002;
  transition: width .1s linear;
}

#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background .45s ease, padding .45s ease, box-shadow .45s ease;
  padding: 18px 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 60%, transparent 100%);
}

/* Mobile section label */
.nav-section-label {
  display: none;
}
#navbar.scrolled {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(0,0,0,.07); padding: 10px 0;
}
.nav-container { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.1; }
.logo-main { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: #fff; transition: color .4s; }
.logo-sub { font-size: 10px; font-weight: 500; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,.6); transition: color .4s; }
#navbar.scrolled .logo-main { color: #2C2C2C; }
#navbar.scrolled .logo-sub { color: #8B6F47; }

.nav-menu { display: flex; gap: 4px; }
.nav-menu-phone-item { display: none; }
.nav-link {
  font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8);
  padding: 8px 16px; border-radius: 6px; transition: all .3s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,.12); }
#navbar.scrolled .nav-link { color: #666; }
#navbar.scrolled .nav-link:hover, #navbar.scrolled .nav-link.active { color: #8B6F47; background: rgba(139,111,71,.07); }

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 600;
  color: #fff; background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.25);
  transition: all .3s;
}
.nav-cta:hover { background: rgba(255,255,255,.2); }
#navbar.scrolled .nav-cta { color: #8B6F47; background: transparent; border-color: #8B6F47; }
#navbar.scrolled .nav-cta:hover { background: #8B6F47; color: #fff; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { width: 22px; height: 2px; background: #fff; transition: all .3s; border-radius: 2px; }
#navbar.scrolled .hamburger span { background: #2C2C2C; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===========================
   HERO — fullscreen slider
   =========================== */
.hero {
  position: relative; height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Slider */
.hero-slider { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  will-change: transform;
}

/* Ken Burns — zoom in */
.hero-slide.active.kb-in img {
  animation: kbIn 8s ease forwards;
}
/* Ken Burns — zoom out z lekkim przesunięciem */
.hero-slide.active.kb-out img {
  animation: kbOut 8s ease forwards;
}
/* Ken Burns — zoom in z panoramą */
.hero-slide.active.kb-pan img {
  animation: kbPan 8s ease forwards;
}

@keyframes kbIn {
  from { transform: scale(1)    translate(0, 0); }
  to   { transform: scale(1.14) translate(-2%, -1%); }
}
@keyframes kbOut {
  from { transform: scale(1.14) translate(2%, 1%); }
  to   { transform: scale(1)    translate(0, 0); }
}
@keyframes kbPan {
  from { transform: scale(1.08) translate(-3%, 0); }
  to   { transform: scale(1.14) translate(2%, -1%); }
}

/* Dots */
.hero-dots {
  position: absolute; bottom: 88px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: none; cursor: pointer; padding: 0;
  background: rgba(255,255,255,.35);
  transition: all .4s ease;
}
.hero-dot.active {
  background: #D4B896;
  width: 28px; border-radius: 4px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,15,10,.55) 0%,
    rgba(20,15,10,.25) 40%,
    rgba(20,15,10,.6) 100%
  );
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 760px;
}
.hero-label {
  display: inline-block;
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 4px;
  color: #D4B896; margin-bottom: 20px;
}
.hero-title { font-size: clamp(34px, 6vw, 62px); color: #fff; margin-bottom: 20px; font-weight: 500; }
.hero-title .accent { color: #D4B896; }
.hero-subtitle { font-size: clamp(15px, 1.8vw, 19px); color: rgba(255,255,255,.75); margin-bottom: 36px; font-weight: 300; }
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  z-index: 2; width: 1px; height: 56px;
}
.scroll-line {
  display: block; width: 1px; height: 100%; background: rgba(255,255,255,.3);
  position: relative; overflow: hidden;
}
.scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: #D4B896;
  animation: scrollDown 2s ease infinite;
}
@keyframes scrollDown {
  0%   { top: -100%; }
  100% { top: 100%; }
}

/* Hero staggered entry */
.hero .anim { opacity: 0; transform: translateY(30px); animation: fadeUp .9s ease forwards; }
.hero .anim:nth-child(1) { animation-delay: .3s; }
.hero .anim:nth-child(2) { animation-delay: .5s; }
.hero .anim:nth-child(3) { animation-delay: .7s; }
.hero .anim:nth-child(4) { animation-delay: .9s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 100px 0; }
.section-light { background: #fff; }
.section-warm { background: #F5F0EB; }

/* ===========================
   O NAS — split image + text
   =========================== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  min-height: 600px;
}
.split-image {
  position: relative; overflow: hidden;
}
.split-image img {
  width: 100%; height: 100%; object-fit: cover; min-height: 500px;
  transition: transform 6s ease;
}
.split-image:hover img { transform: scale(1.04); }

.split-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 64px 72px; background: #fff;
}
.split-text p { margin-bottom: 14px; color: #666; font-size: 15px; }
.quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-style: italic; color: #8B6F47;
  padding: 20px 0 20px 24px;
  border-left: 3px solid #D4B896;
  margin: 20px 0;
}

.mini-stats { display: flex; gap: 32px; margin-top: 28px; }
.mini-stat { text-align: center; }
.mini-stat-num {
  display: block; font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700; color: #8B6F47; line-height: 1;
}
.mini-stat-lbl { font-size: 12px; color: #999; text-transform: uppercase; letter-spacing: 1px; }

/* ===========================
   IMAGE STRIP
   =========================== */
.image-strip { overflow: hidden; }
.image-strip-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; min-height: 360px; }
.strip-item { position: relative; overflow: hidden; }
.strip-item img {
  width: 100%; height: 100%; object-fit: cover; min-height: 360px;
  transition: transform .6s ease;
}
.strip-item:hover img { transform: scale(1.05); }
.strip-text-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #2C2C2C; padding: 48px 32px; text-align: center;
}
.strip-big-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; color: #fff; margin-bottom: 12px; font-weight: 500;
}
.strip-small-text { font-size: 14px; color: rgba(255,255,255,.5); max-width: 260px; }

/* ===========================
   OFERTA — visual grid cards
   =========================== */
.offer-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 320px;
  gap: 16px;
}
.offer-visual-card {
  position: relative; overflow: hidden; border-radius: 16px;
  cursor: pointer;
}
.offer-card-large { grid-row: span 2; }
.offer-card-wide { grid-column: span 2; }
.offer-visual-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s ease;
}
.offer-visual-card:hover img { transform: scale(1.06); }
.offer-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, rgba(0,0,0,.05) 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 32px; color: #fff;
  transition: background .4s;
}
.offer-visual-card:hover .offer-visual-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.15) 50%);
}
.offer-visual-overlay h3 {
  font-size: 28px; margin-bottom: 8px; font-weight: 500;
}
.offer-visual-overlay p {
  font-size: 14px; color: rgba(255,255,255,.7); max-width: 320px;
  transform: translateY(10px); opacity: 0; transition: all .4s ease;
}
.offer-visual-card:hover .offer-visual-overlay p { transform: translateY(0); opacity: 1; }
.offer-visual-arrow {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.15); backdrop-filter: blur(4px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  transition: all .3s; opacity: 0; transform: translateX(-8px);
}
.offer-visual-card:hover .offer-visual-arrow { opacity: 1; transform: translateX(0); }
.offer-visual-arrow:hover { background: rgba(255,255,255,.28); }

/* ===========================
   GALERIA — photo grid
   =========================== */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
}
.photo-grid-item {
  position: relative; overflow: hidden; border-radius: 12px; cursor: pointer;
}
.photo-tall { grid-row: span 2; }
.photo-wide { grid-column: span 2; }
.photo-grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.photo-grid-item:hover img { transform: scale(1.06); }
.photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  display: flex; justify-content: space-between; align-items: flex-end;
  color: #fff; font-size: 13px; font-weight: 500;
  opacity: 0; transform: translateY(8px);
  transition: all .35s ease;
}
.photo-grid-item:hover .photo-caption { opacity: 1; transform: translateY(0); }
.photo-cat {
  font-size: 11px; background: rgba(255,255,255,.2); padding: 3px 10px;
  border-radius: 12px; backdrop-filter: blur(4px);
}

.gallery-cta {
  text-align: center; margin-top: 48px;
}
.gallery-cta p { font-size: 15px; color: #999; margin-bottom: 16px; font-style: italic; }

/* ===========================
   PARALLAX QUOTE
   =========================== */
.parallax-quote {
  position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.parallax-bg {
  position: absolute; inset: -20%; /* oversize for parallax */
}
.parallax-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.6);
}
.parallax-overlay {
  position: absolute; inset: 0;
  background: rgba(20,15,10,.5);
}
.parallax-content {
  position: relative; z-index: 2; text-align: center; padding: 0 24px; max-width: 700px;
}
.parallax-content blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3.5vw, 38px); color: #fff; font-weight: 400;
  margin-bottom: 16px; line-height: 1.3;
}
.parallax-content cite {
  font-family: 'Inter', sans-serif; font-size: 13px;
  color: #D4B896; font-style: normal; letter-spacing: 2px; text-transform: uppercase;
}

/* ===========================
   PROCESS TIMELINE
   =========================== */
.process-timeline { max-width: 960px; margin: 0 auto; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr 1fr; gap: 32px;
  align-items: center; margin-bottom: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(0,0,0,.06);
}
.process-step:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.process-step-reverse .process-image { order: -1; }
.process-step-reverse .process-number { order: 0; }

.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 700; color: #D4B896; line-height: 1;
}
.process-content h3 {
  font-size: 26px; margin-bottom: 10px;
}
.process-content p { font-size: 15px; color: #777; }
.process-image {
  overflow: hidden; border-radius: 12px; height: 200px;
}
.process-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.process-step:hover .process-image img { transform: scale(1.05); }

/* ===========================
   KONTAKT
   =========================== */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
}
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 500; color: #666; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid #e0dbd5; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: 14px;
  transition: border-color .3s, box-shadow .3s;
  background: #FAFAF8;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: #8B6F47; box-shadow: 0 0 0 3px rgba(139,111,71,.1); background: #fff;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.contact-success { text-align: center; padding: 48px 20px; }
.contact-success svg { margin: 0 auto 16px; }
.contact-success h3 { font-size: 28px; margin-bottom: 10px; color: #8B6F47; }
.contact-success p { color: #888; }

.contact-card {
  background: #F5F0EB; border-radius: 16px; overflow: hidden; margin-bottom: 16px;
}
.contact-card-image { height: 180px; overflow: hidden; }
.contact-card-image img { width: 100%; height: 100%; object-fit: cover; }
.contact-card-body { padding: 24px; }
.contact-card-body h3 { font-size: 22px; margin-bottom: 16px; }
.contact-detail {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
  font-size: 14px; color: #666;
}
.contact-detail svg { color: #8B6F47; min-width: 18px; }
.contact-detail a { color: #8B6F47; }
.contact-detail a:hover { text-decoration: underline; }
.contact-fb {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 12px; padding: 10px 18px;
  background: #fff; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: #555; transition: all .3s;
}
.contact-fb:hover { color: #3b5998; box-shadow: 0 4px 12px rgba(0,0,0,.06); }

.contact-map iframe {
  border-radius: 12px; border: none; box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

/* ===========================
   FOOTER
   =========================== */
#footer { background: #1C1C1C; color: rgba(255,255,255,.55); padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo-main { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: #fff; display: block; }
.footer-logo-sub { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: #D4B896; display: block; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; max-width: 300px; }
.footer-links h4, .footer-contact h4 {
  font-family: 'Inter', sans-serif; font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,.8); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px;
}
.footer-links ul li { margin-bottom: 8px; }
.footer-links a { font-size: 14px; transition: color .3s; }
.footer-links a:hover { color: #D4B896; }
.footer-contact p { font-size: 14px; margin-bottom: 6px; }
.footer-contact a { color: #D4B896; }
.footer-contact a:hover { text-decoration: underline; }
.footer-bottom { text-align: center; padding: 20px 0; font-size: 12px; }

/* ===========================
   LIGHTBOX
   =========================== */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,.94); backdrop-filter: blur(6px);
  display: none; flex-direction: column;
  align-items: center; justify-content: flex-start;
  opacity: 0; transition: opacity .3s;
  padding-top: 56px;
}
.lightbox.open { display: flex; opacity: 1; }

/* Top bar */
.lightbox-header {
  position: absolute; top: 0; left: 0; right: 0; height: 56px;
  display: flex; align-items: center; padding: 0 64px 0 24px;
  color: rgba(255,255,255,.9); font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500; letter-spacing: .03em;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.lightbox-close {
  position: absolute; top: 12px; right: 20px;
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; background: rgba(255,255,255,.08); border: none; cursor: pointer;
  border-radius: 50%; opacity: .8; transition: opacity .2s, background .2s;
}
.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,.18); }

/* Nav arrows */
.lightbox-prev, .lightbox-next {
  position: absolute; top: calc(50% + 28px); transform: translateY(-50%);
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%; cursor: pointer; opacity: .7; transition: opacity .2s, background .2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { opacity: 1; background: rgba(255,255,255,.2); }

/* Main image area */
.lightbox-img-wrap {
  flex: 1; display: flex; align-items: center; justify-content: center;
  width: 100%; min-height: 0; position: relative;
}
.lightbox-img-wrap img {
  max-width: calc(100vw - 120px); max-height: calc(100vh - 200px);
  object-fit: contain; border-radius: 4px;
  transition: opacity .25s;
}
.lightbox-loader {
  display: none; position: absolute;
  width: 36px; height: 36px; border: 3px solid rgba(255,255,255,.15);
  border-top-color: #c9a96e; border-radius: 50%;
  animation: lb-spin .7s linear infinite;
}
@keyframes lb-spin { to { transform: rotate(360deg); } }

/* Footer: caption + counter */
.lightbox-footer {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; padding: 8px 24px 4px;
  width: 100%;
}
.lightbox-caption {
  color: rgba(255,255,255,.65); font-size: 14px; text-align: center;
}
.lightbox-counter {
  color: rgba(255,255,255,.35); font-size: 13px; white-space: nowrap;
}

/* Thumbnail strip */
.lightbox-thumbs {
  display: flex; gap: 8px; padding: 10px 16px 12px;
  overflow-x: auto; max-width: 100%;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,.2) transparent;
}
.lightbox-thumbs::-webkit-scrollbar { height: 4px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 2px; }
.lb-thumb {
  flex-shrink: 0; width: 72px; height: 54px;
  border: 2px solid transparent; border-radius: 4px; overflow: hidden;
  cursor: pointer; background: none; padding: 0;
  opacity: .5; transition: opacity .2s, border-color .2s;
}
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lb-thumb:hover { opacity: .8; }
.lb-thumb.active { border-color: #c9a96e; opacity: 1; }

/* ===========================
   SCROLL ANIMATIONS
   =========================== */
.anim-scroll {
  opacity: 0; transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease;
}
.anim-scroll.visible { opacity: 1; transform: translateY(0); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-text { padding: 48px 36px; }
  .split-image img { min-height: 380px; }
  .image-strip-inner { grid-template-columns: 1fr; }
  .strip-text-block { min-height: 200px; }
  .strip-item img { min-height: 280px; }
  .offer-visual-grid { grid-auto-rows: 260px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 240px; }
  .process-step { grid-template-columns: 60px 1fr; }
  .process-image { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu {
    display: flex;
    position: fixed; inset: 0;
    width: 100vw; height: 100vh;
    background: #1C1C1C;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 0; padding: 0;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .45s ease, visibility .45s;
    z-index: 999;
  }
  .nav-menu.open {
    opacity: 1; visibility: visible; pointer-events: auto;
  }
  .nav-menu li {
    width: 100%; text-align: center;
    opacity: 0; transform: translateY(18px);
    transition: opacity .35s ease, transform .35s ease;
  }
  .nav-menu.open li:nth-child(1) { opacity:1; transform:none; transition-delay:.10s; }
  .nav-menu.open li:nth-child(2) { opacity:1; transform:none; transition-delay:.18s; }
  .nav-menu.open li:nth-child(3) { opacity:1; transform:none; transition-delay:.26s; }
  .nav-menu.open li:nth-child(4) { opacity:1; transform:none; transition-delay:.34s; }
  .nav-menu.open li:nth-child(5) { opacity:1; transform:none; transition-delay:.44s; }
  .nav-menu .nav-link {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(30px, 9vw, 48px); font-weight: 500;
    color: rgba(255,255,255,.75); letter-spacing: 1px;
    padding: 14px 32px;
    transition: color .3s;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link.active { color: #D4B896; background: none; }
  .nav-section-label {
    display: block;
    font-size: 9px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.45); margin-top: 3px;
    transition: color .4s;
  }
  #navbar.scrolled .nav-section-label { color: #8B6F47; }

  .nav-menu-phone-item { margin-top: 24px; border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px; }
  .nav-menu-phone {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 600;
    color: #D4B896; letter-spacing: 1px;
  }
  .nav-menu-phone svg { stroke: #D4B896; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: 30px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 280px; justify-content: center; }

  .split-text { padding: 36px 24px; }
  .mini-stats { flex-wrap: wrap; gap: 20px; }

  .offer-visual-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .offer-card-large { grid-row: span 1; }
  .offer-card-wide { grid-column: span 1; }

  .photo-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .photo-tall, .photo-wide { grid-row: span 1; grid-column: span 1; }

  .parallax-quote { height: 320px; }

  .process-step { grid-template-columns: 1fr; gap: 16px; }
  .process-number { font-size: 40px; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .section { padding: 64px 0; }
}
