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

:root {
  --bg:        #080C05;
  --bg2:       #0F1509;
  --bg3:       #141C0C;
  --cream:     #F0E6CC;
  --cream2:    #C9B99A;
  --amber:     #D4851A;
  --amber2:    #F0A030;
  --green:     #2A5C18;
  --green2:    #3D7A27;
  --wood:      #8B5C2A;
  --wood2:     #C4864A;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--cream);
  font-family: 'Karla', sans-serif;
  overflow-x: hidden;
  cursor: auto;
}

/* ─── CUSTOM CURSOR ─── */
@media (hover: hover) {
  body {
    cursor: none;
  }
}

@media (hover: none) {

  .cursor,
  .cursor-ring {
    display: none;
  }

}

.cursor {
  position: fixed; width: 12px; height: 12px;
  background: var(--amber); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  position: fixed; width: 40px; height: 40px;
  border: 1px solid var(--amber); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease-out, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.5;
}
.cursor.hover { width: 20px; height: 20px; background: var(--amber2); }
.cursor-ring.hover { width: 60px; height: 60px; opacity: 0.2; }

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.6;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(8,12,5,0.85);
  backdrop-filter: blur(12px);
  padding: 1rem 4rem;
  border-bottom: 1px solid rgba(212,133,26,0.12);
}
.nav-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.6rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--amber); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  color: var(--cream2); text-decoration: none;
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative; padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--amber);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--amber); color: var(--bg);
  padding: 0.6rem 1.4rem; border-radius: 2px;
  font-weight: 700; font-size: 0.82rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--amber2); transform: translateY(-1px); }

/* ─── HERO ─── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(42,92,24,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(212,133,26,0.12) 0%, transparent 50%),
    linear-gradient(160deg, #080C05 0%, #0F1509 50%, #141C0C 100%);
}
.hero-rings {
  position: absolute; right: -10%; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
}
.hero-rings circle {
  fill: none; stroke-width: 1;
  transform-origin: center;
}
.ring1 { stroke: rgba(212,133,26,0.15); animation: spinSlow 30s linear infinite; }
.ring2 { stroke: rgba(42,92,24,0.20); animation: spinSlow 45s linear infinite reverse; }
.ring3 { stroke: rgba(212,133,26,0.08); animation: spinSlow 20s linear infinite; }
.ring4 { stroke: rgba(240,160,48,0.12); animation: spinSlow 60s linear infinite reverse; }
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Sawblade animation */
.sawblade {
  position: absolute; right: 8%; top: 50%;
  transform: translateY(-50%);
  width: 340px; height: 340px;
  opacity: 0.12;
  animation: spinBlade 8s linear infinite;
}
@keyframes spinBlade { to { transform: translateY(-50%) rotate(360deg); } }

.hero-content {
  position: relative; z-index: 2;
  padding: 0 4rem;
  max-width: 700px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 30px; height: 1px;
  background: var(--amber);
}
h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
}
h1 em {
  font-style: italic; color: var(--amber);
  display: block;
}
.hero-desc {
  font-size: 1.1rem; line-height: 1.7;
  color: var(--cream2);
  max-width: 480px;
  margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.6s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.8s forwards;
}
.btn-primary {
  background: var(--amber); color: var(--bg);
  padding: 0.9rem 2rem; border-radius: 2px;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  box-shadow: 0 0 0 0 rgba(212,133,26,0);
}
.btn-primary:hover {
  background: var(--amber2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212,133,26,0.35);
}
.btn-outline {
  border: 1px solid rgba(240,230,204,0.3); color: var(--cream);
  padding: 0.9rem 2rem; border-radius: 2px;
  font-weight: 500; font-size: 0.9rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s, background 0.3s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--amber); background: rgba(212,133,26,0.08);
  transform: translateY(-2px);
}
.hero-stats {
  position: absolute; bottom: 3rem; left: 4rem; right: 4rem;
  display: flex; gap: 3rem;
  opacity: 0; animation: fadeUp 0.9s 1s forwards;
}
.stat { display: flex; flex-direction: column; gap: 0.2rem; }
.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; color: var(--amber);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cream2);
}
.hero-scroll {
  position: absolute; bottom: 3rem; right: 4rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--cream2); writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--amber), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* ─── SECTION BASE ─── */
section { position: relative; z-index: 1; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--amber);
}
h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.1; letter-spacing: -0.02em;
  color: var(--cream);
}
h2 em { color: var(--amber); font-style: italic; }

/* ─── ABOUT ─── */
#about {
  padding: 8rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
  background: var(--bg2);
}
.about-visual {
  position: relative; height: 520px;
}
.wood-card {
  position: absolute;
  border-radius: 3px;
  overflow: hidden;
}
.wood-card-main {
  width: 320px; height: 400px;
  top: 0; left: 0;
  background: linear-gradient(135deg,
    #3d2008 0%, #6b3a14 20%, #4a2710 40%,
    #8b5c2a 60%, #5e3112 80%, #3a1e08 100%
  );
}
.wood-card-main::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    87deg,
    transparent 0px, transparent 6px,
    rgba(0,0,0,0.06) 6px, rgba(0,0,0,0.06) 7px,
    transparent 7px, transparent 18px,
    rgba(255,255,255,0.03) 18px, rgba(255,255,255,0.03) 19px
  );
}
.wood-lines {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    2deg,
    transparent, transparent 6px,
    rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 9px
  );
}
.wood-badge {
  position: absolute; bottom: -1.5rem; right: -1.5rem;
  width: 130px; height: 130px;
  background: var(--amber);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.1rem;
  box-shadow: 0 8px 30px rgba(212,133,26,0.4);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.wood-badge strong {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--bg); line-height: 1;
}
.wood-badge span {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(8,12,5,0.75);
  text-align: center; line-height: 1.3;
}
.wood-card-sm {
  width: 200px; height: 240px;
  top: 5rem; right: 0;
  background: linear-gradient(160deg, #1A2E10 0%, #2A4A18 50%, #1A2E10 100%);
  border: 1px solid rgba(42,92,24,0.3);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; padding: 1.5rem;
}
.icon-circle {
  width: 64px; height: 64px;
  background: rgba(212,133,26,0.15);
  border-radius: 50%; border: 1px solid rgba(212,133,26,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.about-content h2 { margin-bottom: 1.5rem; }
.about-content p {
  color: var(--cream2); line-height: 1.8; font-size: 1rem;
  margin-bottom: 1.2rem;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 2rem;
}
.pill {
  background: rgba(212,133,26,0.1);
  border: 1px solid rgba(212,133,26,0.25);
  color: var(--amber2); padding: 0.4rem 1rem;
  border-radius: 100px; font-size: 0.8rem;
  font-weight: 500; letter-spacing: 0.05em;
  transition: background 0.3s, transform 0.2s;
}
.pill:hover { background: rgba(212,133,26,0.18); transform: translateY(-2px); }

/* ─── SERVICES ─── */
#services {
  padding: 8rem 4rem;
  background: var(--bg);
}
.services-header {
  max-width: 600px; margin-bottom: 4rem;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: rgba(240,230,204,0.06);
}
.service-card {
  background: var(--bg2);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.4s;
}
.service-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber2));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: var(--bg3); }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem; color: rgba(212,133,26,0.08);
  line-height: 1; margin-bottom: 1.5rem;
  transition: color 0.4s;
}
.service-card:hover .service-num { color: rgba(212,133,26,0.14); }
.service-icon {
  font-size: 2rem; margin-bottom: 1.2rem;
}
.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.5rem; margin-bottom: 0.8rem;
  color: var(--cream);
}
.service-card p {
  color: var(--cream2); line-height: 1.7; font-size: 0.92rem;
}
.service-card .service-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--amber); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.service-card:hover .service-link { opacity: 1; transform: translateX(0); }

/* ─── HOW IT WORKS ─── */
#how {
  padding: 8rem 4rem;
  background: var(--bg2);
}
.how-header { max-width: 600px; margin-bottom: 5rem; }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.step {
  position: relative; padding: 2rem;
}
.step:not(:last-child)::after {
  content: '→';
  position: absolute; right: -0.8rem; top: 2.5rem;
  font-size: 1.5rem; color: rgba(212,133,26,0.3);
  z-index: 1;
}
.step-dot {
  width: 56px; height: 56px;
  background: var(--bg3); border: 1px solid rgba(212,133,26,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.step:hover .step-dot {
  background: rgba(212,133,26,0.1);
  border-color: var(--amber);
  transform: scale(1.1);
}
.step-num {
  position: absolute; top: -0.5rem; right: -0.5rem;
  width: 22px; height: 22px;
  background: var(--amber); border-radius: 50%;
  font-size: 0.65rem; font-weight: 700; color: var(--bg);
  display: flex; align-items: center; justify-content: center;
}
.step h4 {
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--cream);
}
.step p { color: var(--cream2); font-size: 0.88rem; line-height: 1.7; }

/* ─── WOOD TYPES / GALLERY ─── */
#gallery {
  padding: 8rem 4rem;
  background: var(--bg);
}
.gallery-header { max-width: 600px; margin-bottom: 3rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 280px 200px;
  gap: 4px;
}
.gallery-item {
  overflow: hidden; position: relative; border-radius: 2px;
}
.gallery-item:nth-child(1) { grid-column: span 3; }
.gallery-item:nth-child(2) { grid-column: span 2; }
.gallery-item:nth-child(3) { grid-column: span 1; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; }

.gallery-fill {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-fill { transform: scale(1.06); }

/* Synthetic wood/nature visuals using CSS */
.wood-texture-1 { background: linear-gradient(135deg, #8b5a2b 25%, #5d3a1a 100%); }
.wood-texture-2 { background: linear-gradient(135deg, #c17f35 25%, #8c4b1d 100%); }
.wood-texture-3 { background: linear-gradient(135deg, #a67c52 25%, #7d5233 100%); }
.wood-texture-4 { background: linear-gradient(135deg, #d2b48c 25%, #8b7355 100%); }
.wood-texture-5 { background: linear-gradient(135deg, #8b4513 25%, #5e2f0d 100%); }
.wood-texture-6 { background: linear-gradient(135deg, #8c7b6a 25%, #4a3f35 100%); }

.gallery-fill::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    89deg, transparent 0, transparent 8px,
    rgba(0,0,0,0.07) 8px, rgba(0,0,0,0.07) 9px
  );
}
.gallery-fill::after {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    2deg, transparent, transparent 3px,
    rgba(255,255,255,0.02) 3px, rgba(255,255,255,0.02) 4px
  );
}

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1.5rem;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem; color: var(--cream);
}

/* ─── COVERAGE ─── */
#coverage {
  padding: 8rem 4rem;
  background: var(--bg2);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.coverage-content h2 { margin-bottom: 1.5rem; }
.coverage-content p { color: var(--cream2); line-height: 1.8; margin-bottom: 1.2rem; }
.region-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.5rem; margin-top: 2rem;
}
.region-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: var(--cream2); font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(240,230,204,0.06);
  transition: color 0.3s;
}
.region-item:hover { color: var(--cream); }
.region-item::before {
  content: ''; width: 6px; height: 6px;
  background: var(--amber); border-radius: 50%; flex-shrink: 0;
}
.poland-map {
  position: relative;
}
.map-container {
  width: 100%; aspect-ratio: 1;
  background: var(--bg3);
  border-radius: 4px;
  border: 1px solid rgba(240,230,204,0.08);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.map-container::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 50%,
    rgba(42,92,24,0.12) 0%, transparent 70%);
}
.map-svg { width: 80%; opacity: 0.7; }
.pulse-dot {
  position: absolute;
  width: 12px; height: 12px;
  background: var(--amber); border-radius: 50%;
}
.pulse-dot::after {
  content: ''; position: absolute;
  inset: -6px; border-radius: 50%;
  border: 1px solid var(--amber);
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(3); opacity: 0; }
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: 8rem 4rem;
  background: var(--bg);
}
.testimonials-header { max-width: 600px; margin-bottom: 4rem; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg2);
  border: 1px solid rgba(240,230,204,0.07);
  border-radius: 3px;
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  border-color: rgba(212,133,26,0.2);
  transform: translateY(-4px);
}
.quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 5rem; line-height: 0.7;
  color: rgba(212,133,26,0.15);
  margin-bottom: 1rem;
  display: block;
}
.testimonial-text {
  color: var(--cream2); line-height: 1.75; font-size: 0.95rem;
  margin-bottom: 2rem; font-style: italic;
}
.testimonial-author {
  display: flex; align-items: center; gap: 1rem;
}
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg3); border: 1px solid rgba(212,133,26,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.author-name {
  font-weight: 600; font-size: 0.9rem; color: var(--cream);
}
.author-location {
  font-size: 0.78rem; color: var(--cream2); margin-top: 0.1rem;
}
.stars { color: var(--amber); font-size: 0.85rem; margin-bottom: 0.2rem; }

/* ─── CONTACT ─── */
#contact {
  padding: 8rem 4rem;
  background: var(--bg2);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: start;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-info p { color: var(--cream2); line-height: 1.8; margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex; align-items: center; gap: 1rem;
}
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(212,133,26,0.1);
  border: 1px solid rgba(212,133,26,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: background 0.3s;
}
.contact-item:hover .contact-icon { background: rgba(212,133,26,0.2); }
.contact-item-text { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-item-label {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--amber); font-weight: 600;
}
.contact-item-value { color: var(--cream); font-size: 0.95rem; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream2); font-weight: 600;
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(240,230,204,0.05);
  border: 1px solid rgba(240,230,204,0.1);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  color: var(--cream);
  font-family: 'Karla', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s, background 0.3s;
  outline: none;
  resize: none;
}
.form-group select option { background: var(--bg2); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  background: rgba(212,133,26,0.06);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,230,204,0.25); }
.form-submit {
  background: var(--amber); color: var(--bg);
  border: none; padding: 1rem 2rem; border-radius: 2px;
  font-family: 'Karla', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; width: 100%;
  transition: background 0.3s, transform 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--amber2); transform: translateY(-2px); }
.form-note {
  font-size: 0.78rem; color: var(--cream2); text-align: center;
  margin-top: -0.5rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--bg);
  border-top: 1px solid rgba(240,230,204,0.06);
  padding: 3rem 4rem;
  display: flex; align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem; color: var(--cream);
  text-decoration: none;
}
.footer-logo span { color: var(--amber); }
.footer-copy {
  font-size: 0.78rem; color: var(--cream2);
  letter-spacing: 0.04em;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-size: 0.78rem; color: var(--cream2);
  text-decoration: none; letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--amber); }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── HAMBURGER MOBILE ─── */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  nav { padding: 1.5rem 2rem; }
  nav.scrolled { padding: 1rem 2rem; }
  #about, #coverage, #contact { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2rem; }
  #services, #how, #gallery, #testimonials { padding: 5rem 2rem; }
  #hero { padding: 0; }
  .hero-content { padding: 2rem; }
  .hero-stats { left: 2rem; right: 2rem; bottom: 2rem; flex-wrap: wrap; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:nth-child(n) { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; text-align: center; padding: 2rem; }
  .hero-rings, .sawblade { display: none; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .about-visual { height: 300px; }
  .wood-card-main { width: 240px; height: 300px; }
}
@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .region-list { grid-template-columns: 1fr; }
  nav { padding: 1.2rem 1.5rem; }
}

/* ─── LOADING SCREEN ─── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 2rem;
  transition: opacity 0.6s 0.3s, visibility 0.6s 0.3s;
}
#loader.done { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem; color: var(--cream);
}
.loader-logo span { color: var(--amber); }
.loader-bar {
  width: 200px; height: 2px;
  background: rgba(240,230,204,0.1); border-radius: 2px; overflow: hidden;
}
.loader-fill {
  height: 100%; background: var(--amber);
  animation: loadFill 1.5s ease-in-out forwards;
  border-radius: 2px;
}
@keyframes loadFill {
  from { width: 0; } to { width: 100%; }
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--bg); flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem; color: var(--cream); text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 2rem;
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: var(--cream); line-height: 1;
}

@media (max-width: 768px) {

  #hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 100%;
  }

  h1 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .hero-desc {
    font-size: 1rem;
    max-width: 100%;
  }

  .hero-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    position: static;
    margin-top: 40px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .stat {
    text-align: left;
  }

  .hero-scroll {
    display: none;
  }

  .hero-rings,
  .sawblade {
    display: none;
  }
}
