*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --wood-dark: #2C1A0E; --wood-mid: #5C3317; --wood-warm: #8B4513;
  --wood-light: #C4874A; --wood-pale: #E8C99A; --cream: #FAF6F0;
  --cream-dark: #F0E8DB; --green-deep: #1A2E1A; --green-forest: #2D4A2D;
  --green-sage: #5C7A5C; --green-light: #8BA888; --text-dark: #1C1008;
  --text-mid: #4A3020; --text-light: #7A6050; --white: #FFFFFF;
  --shadow: rgba(44, 26, 14, 0.15);
  --red: #e31e24; --red-dark: #b01519;
}
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-dark); background: var(--cream); overflow-x: hidden; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(28, 16, 8, 0.93); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196, 135, 74, 0.18);
  transition: padding 0.3s ease;
}
nav.scrolled { padding: 0.65rem 5%; }
.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo-img { height: 46px; width: 46px; object-fit: cover; border-radius: 6px; transition: height 0.3s; }
nav.scrolled .nav-logo-img { height: 38px; width: 38px; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-logo-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; color: var(--wood-pale); letter-spacing: 0.03em; }
.nav-logo-name em { color: var(--red); font-style: normal; }
.nav-logo-sub { font-size: 0.6rem; color: var(--green-light); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 3px; }
.nav-links { display: flex; gap: 0.25rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(232,201,154,0.65);
  font-size: 0.8rem; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.4rem 0.85rem; border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--wood-pale); background: rgba(196,135,74,0.1); }
.nav-links a.active { color: var(--wood-pale); background: rgba(196,135,74,0.12); }
.nav-cta {
  background: var(--red) !important; color: #fff !important;
  padding: 0.5rem 1.25rem !important; border-radius: 4px;
  font-weight: 500 !important; margin-left: 0.5rem;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--red-dark) !important; }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--wood-pale); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 99;
  background: rgba(28, 16, 8, 0.97); backdrop-filter: blur(16px);
  flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; transform: translateY(-8px); transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.mobile-menu.open { opacity: 1; transform: none; pointer-events: all; }
.mobile-menu a { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--cream); text-decoration: none; letter-spacing: 0.02em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--wood-light); }
.mobile-menu .mob-cta { background: var(--red); color: #fff !important; padding: 0.75rem 2.5rem; border-radius: 4px; font-size: 1.1rem !important; }
.mobile-menu .mob-phone { font-family: 'DM Sans', sans-serif; font-size: 1rem !important; color: var(--green-light) !important; letter-spacing: 0.05em; }

/* ── HERO ── */
.hero {
  position: relative; height: 88vh; min-height: 620px; overflow: hidden;
  display: flex; align-items: center; justify-content: flex-start;
}
.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,5,2,0.85) 0%, rgba(10,5,2,0.52) 42%, rgba(10,5,2,0.05) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 8%;
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 580px; width: 100%;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green-light); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--green-sage); display: block; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
  font-weight: 900; color: var(--cream); line-height: 1.1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero-title em { font-style: italic; color: var(--wood-light); }
.hero-title .accent-line { display: block; position: relative; width: fit-content; }
.hero-title .accent-line::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 3px; background: var(--red); border-radius: 2px;
}
.hero-sub {
  font-size: 0.9rem; color: rgba(232,201,154,0.68); line-height: 1.72;
  max-width: 420px; margin-bottom: 1.8rem; font-weight: 300;
}
.hero-actions {
  display: flex; gap: 0.85rem; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: #fff; padding: 0.85rem 1.8rem;
  border-radius: 4px; font-weight: 500; font-size: 0.9rem;
  text-decoration: none; letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-primary:active { transform: scale(0.97); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(196,135,74,0.4); color: var(--wood-pale);
  padding: 0.85rem 1.8rem; border-radius: 4px; font-size: 0.9rem;
  text-decoration: none; transition: border-color 0.2s, background 0.2s, transform 0.1s;
}
.btn-outline:hover { border-color: var(--wood-light); background: rgba(196,135,74,0.1); }
.btn-outline:active { transform: scale(0.97); }

/* Hero strip */
.hero-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(12,6,2,0.92);
  border-top: 1px solid rgba(196,135,74,0.15);
}
.strip-item {
  flex: 1; max-width: 250px; padding: 1.2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  border-right: 1px solid rgba(196,135,74,0.15);
}
.strip-item:last-child { border-right: none; }
.strip-num { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--wood-light); line-height: 1; }
.strip-label { font-size: 0.6rem; color: var(--green-light); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px; }

/* ── SECTION SHARED ── */
.section { padding: 6rem 8%; }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--wood-warm); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; width: 22px; height: 1px; background: var(--wood-light); display: block; }
h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--text-dark); line-height: 1.1; margin-bottom: 1.5rem; }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--wood-dark);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.intro-col {
  padding: 3rem 2.6rem;
  display: flex; flex-direction: column; gap: 0;
  position: relative;
  border-right: 1px solid rgba(196,135,74,0.12);
  transition: background 0.3s;
}
.intro-col:last-child { border-right: none; }
.intro-col:hover { background: rgba(255,255,255,0.03); }
.intro-col-num {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 900; line-height: 1;
  color: rgba(196,135,74,0.08);
  position: absolute; top: 1.2rem; right: 1.6rem;
  user-select: none; pointer-events: none;
  letter-spacing: -0.04em;
}
.intro-col::before {
  content: ''; position: absolute; left: 0; top: 2rem; bottom: 2rem;
  width: 3px; border-radius: 0 2px 2px 0;
  background: var(--col-accent, var(--red));
}
.intro-col:nth-child(1) { --col-accent: var(--red); }
.intro-col:nth-child(2) { --col-accent: var(--wood-light); }
.intro-col:nth-child(3) { --col-accent: var(--green-sage); }
.intro-icon {
  width: 48px; height: 48px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 1.25rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,135,74,0.15);
  color: var(--col-accent, var(--red));
  flex-shrink: 0;
}
.intro-col h4 {
  font-family: 'Playfair Display', serif; font-size: 1.05rem;
  font-weight: 700; color: var(--cream);
  margin-bottom: 0.65rem; line-height: 1.2;
}
.intro-col p { font-size: 0.83rem; color: rgba(232,201,154,0.5); line-height: 1.68; }

/* ── SERVICES ── */
.services { background: var(--cream); }
.services-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-bottom: 4rem; align-items: end; }
.services-intro { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; max-width: 420px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; background: rgba(92,51,23,0.12); border: 1.5px solid rgba(92,51,23,0.12); border-radius: 12px; overflow: hidden; }
.service-card { background: var(--white); padding: 2.5rem 2rem; position: relative; transition: background 0.25s; cursor: default; }
.service-card:hover { background: var(--cream-dark); }
.service-icon { width: 46px; height: 46px; background: var(--cream-dark); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; transition: background 0.25s; }
.service-card:hover .service-icon { background: rgba(227,30,36,0.1); }
.service-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--wood-warm); stroke-width: 1.5; }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.86rem; color: var(--text-light); line-height: 1.75; }
.service-arrow { position: absolute; bottom: 1.4rem; right: 1.4rem; opacity: 0; transition: opacity 0.2s, transform 0.2s; color: var(--red); font-size: 1.1rem; }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(3px); }

/* ── GALLERY + LIGHTBOX ── */
.gallery { background: var(--wood-dark); padding: 6rem 8%; }
.gallery .section-label { color: var(--green-light); }
.gallery h2 { color: var(--cream); }
.gallery-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 3rem; flex-wrap: wrap; gap: 1rem; }
.gallery-mosaic {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 260px 200px; gap: 6px; border-radius: 10px; overflow: hidden;
}
.gm-item { position: relative; overflow: hidden; background: var(--wood-mid); cursor: zoom-in; }
.gm-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform 0.55s cubic-bezier(0.25,0.46,0.45,0.94); }
.gm-item:hover img { transform: scale(1.07); }
.gm-item .gl { position: absolute; bottom: 0.8rem; left: 0.8rem; background: rgba(20,10,4,0.78); color: var(--wood-pale); font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.7rem; border-radius: 3px; z-index: 2; transition: opacity 0.3s; }
.gm-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,10,4,0.65) 0%, transparent 55%); opacity: 0; transition: opacity 0.35s; z-index: 1; }
.gm-item:hover::after { opacity: 1; }
.gm-item .zoom-icon { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(0.7); z-index: 3; color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity 0.3s, transform 0.3s; pointer-events: none; }
.gm-item:hover .zoom-icon { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
.gm-1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.gm-2 { grid-column: 6 / 9; grid-row: 1; }
.gm-3 { grid-column: 9 / 13; grid-row: 1; }
.gm-4 { grid-column: 6 / 10; grid-row: 2; }
.gm-5 { grid-column: 10 / 13; grid-row: 2; }
.gm-6 { grid-column: 1 / 5; grid-row: 3; }
.gm-7 { grid-column: 5 / 9; grid-row: 3; }
.gm-8 { grid-column: 9 / 11; grid-row: 3; }
.gm-9 { grid-column: 11 / 13; grid-row: 3; }
.gm-item .gl-tag { position: absolute; top: 0.7rem; right: 0.7rem; background: var(--red); color: #fff; font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 2px; z-index: 3; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 999; background: rgba(10,5,2,0.96); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; box-shadow: 0 20px 60px rgba(0,0,0,0.6); transform: scale(0.95); transition: transform 0.3s; }
.lightbox.open .lb-img { transform: scale(1); }
.lb-close { position: absolute; top: 1.5rem; right: 2rem; color: rgba(255,255,255,0.7); font-size: 2.2rem; cursor: pointer; background: none; border: none; line-height: 1; transition: color 0.2s; }
.lb-close:hover { color: #fff; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,0.6); font-size: 2rem; cursor: pointer; background: rgba(255,255,255,0.08); border: none; padding: 0.5rem 0.9rem; border-radius: 4px; transition: background 0.2s, color 0.2s; }
.lb-nav:hover { background: rgba(255,255,255,0.15); color: #fff; }
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-caption { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }

/* ── WHY ── */
.why { background: var(--cream-dark); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-visual { position: relative; padding-top: 1rem; z-index: 1; }

.why-rl-bg { display: none; }

.why-cards-stack { position: relative; z-index: 2; display: flex; flex-direction: column; gap: 0.85rem; }
.why-card { background: var(--white); border-radius: 10px; padding: 1.4rem 1.5rem; display: flex; gap: 1.2rem; align-items: flex-start; border: 1px solid rgba(92,51,23,0.08); transition: box-shadow 0.25s, transform 0.25s; border-left: 3px solid transparent; }
.why-card:nth-child(even) { background: var(--cream); }
.why-card:hover { box-shadow: 0 8px 28px var(--shadow); transform: translateY(-3px); }
.why-card:nth-child(1) { border-left-color: var(--red); }
.why-card:nth-child(2) { border-left-color: var(--wood-light); }
.why-card:nth-child(3) { border-left-color: var(--green-sage); }
.why-card:nth-child(4) { border-left-color: var(--wood-warm); }
.why-card-num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--red); min-width: 1.8rem; line-height: 1; margin-top: 0.1rem; opacity: 0.7; }
.why-card h4 { font-weight: 500; font-size: 0.97rem; color: var(--text-dark); margin-bottom: 0.25rem; }
.why-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.65; }
.why-content { display: flex; flex-direction: column; }
.why-lead { font-size: 0.97rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.2rem; }
.why-stats { display: flex; gap: 3rem; margin-top: 2.5rem; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.4rem; font-weight: 900; color: var(--red); line-height: 1; }
.stat-label { font-size: 0.75rem; color: var(--text-light); letter-spacing: 0.05em; margin-top: 0.3rem; }

/* ── PROCESS ── */
.process { background: var(--green-deep); padding: 6rem 8%; }
.process .section-label { color: var(--green-light); }
.process h2 { color: var(--cream); margin-bottom: 3rem; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::before { content: ''; position: absolute; top: 1.15rem; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg, var(--green-forest), rgba(93,122,92,0.3), var(--green-forest)); }
.process-step { padding: 0 1.5rem; }
.step-dot { width: 38px; height: 38px; border-radius: 50%; background: var(--green-forest); border: 2px solid var(--green-sage); display: flex; align-items: center; justify-content: center; margin-bottom: 1.4rem; position: relative; z-index: 1; transition: background 0.25s, border-color 0.25s; }
.process-step:hover .step-dot { background: var(--red); border-color: var(--red); }
.step-dot span { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.88rem; color: var(--green-light); transition: color 0.25s; }
.process-step:hover .step-dot span { color: #fff; }
.process-step h4 { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.8rem; color: rgba(139,168,136,0.72); line-height: 1.7; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); padding: 6rem 8%; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.testimonial-card { background: var(--white); border: 1px solid rgba(92,51,23,0.1); border-radius: 12px; padding: 2rem; transition: box-shadow 0.25s, transform 0.25s; }
.testimonial-card:hover { box-shadow: 0 8px 28px var(--shadow); transform: translateY(-3px); }
.testimonial-stars { color: var(--red); font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testimonial-text { font-family: 'Libre Baskerville', serif; font-style: italic; font-size: 0.9rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 1.5rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--cream-dark); display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 0.85rem; color: var(--red); flex-shrink: 0; }
.author-name { font-weight: 500; font-size: 0.88rem; color: var(--text-dark); }
.author-location { font-size: 0.73rem; color: var(--text-light); }

/* ── CONTACT ── */
.contact { background: var(--wood-dark); padding: 6rem 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: start; }
.contact-left .section-label { color: var(--green-light); }
.contact-left h2 { color: var(--cream); margin-bottom: 1.25rem; }
.contact-lead { color: rgba(232,201,154,0.58); font-size: 0.93rem; line-height: 1.8; margin-bottom: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; color: var(--wood-pale); font-size: 0.88rem; }
.contact-item-icon { width: 38px; height: 38px; background: rgba(196,135,74,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon svg { width: 18px; height: 18px; fill: none; stroke: var(--wood-light); stroke-width: 1.5; }
.contact-form { background: rgba(255,255,255,0.04); border: 1px solid rgba(196,135,74,0.14); border-radius: 12px; padding: 2.4rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.75rem; color: var(--green-light); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.45rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(196,135,74,0.18); border-radius: 6px; padding: 0.82rem 1rem; color: var(--wood-pale); font-family: 'DM Sans', sans-serif; font-size: 0.88rem; outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(196,135,74,0.28); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(196,135,74,0.5); box-shadow: 0 0 0 3px rgba(196,135,74,0.08); }
.form-group select option { background: var(--wood-dark); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.btn-submit { width: 100%; background: var(--red); color: #fff; border: none; padding: 1rem; border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; letter-spacing: 0.02em; transition: background 0.2s, transform 0.1s; margin-top: 0.5rem; }
.btn-submit:hover { background: var(--red-dark); }
.btn-submit:active { transform: scale(0.98); }
.btn-submit:disabled { opacity: 0.6; cursor: not-allowed; }

/* Form success state */
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 2rem; gap: 1rem; }
.form-success.show { display: flex; }
.form-success-icon { font-size: 3rem; color: var(--green-light); }
.form-success h4 { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--cream); }
.form-success p { font-size: 0.88rem; color: rgba(232,201,154,0.55); line-height: 1.65; }

/* ── FOOTER ── */
footer { background: var(--text-dark); padding: 2.8rem 8%; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo-wrap { display: flex; align-items: center; gap: 0.85rem; }
.footer-logo-img {
  width: 52px; height: 52px;
  object-fit: cover; border-radius: 6px;
  opacity: 0.88; filter: brightness(0.92);
}
.footer-brand-block { display: flex; flex-direction: column; line-height: 1.1; }
.footer-brand { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--wood-pale); }
.footer-brand em { color: var(--red); font-style: normal; }
.footer-brand-sub { font-family: 'DM Sans', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(196,135,74,0.5); margin-top: 2px; }
footer p { font-size: 0.78rem; color: rgba(196,135,74,0.38); margin-top: 2px; }
.footer-links { display: flex; gap: 2rem; align-items: center; }
.footer-links a { text-decoration: none; color: rgba(196,135,74,0.48); font-size: 0.78rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--wood-light); }
.footer-fb { display: flex; align-items: center; gap: 0.4rem; background: rgba(196,135,74,0.08); border: 1px solid rgba(196,135,74,0.18); border-radius: 4px; padding: 0.35rem 0.75rem; font-size: 0.75rem !important; }
.footer-fb svg { width: 14px; height: 14px; fill: currentColor; }

/* Back to top */
.back-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 50; width: 44px; height: 44px; background: var(--red); color: #fff; border: none; border-radius: 50%; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(8px); transition: opacity 0.3s, transform 0.3s, background 0.2s; pointer-events: none; box-shadow: 0 4px 16px rgba(0,0,0,0.25); }
.back-top.show { opacity: 1; transform: none; pointer-events: all; }
.back-top:hover { background: var(--red-dark); }

@keyframes calmPulse {
  0%, 100% { opacity: 0.25; filter: drop-shadow(0 0 0px rgba(196,135,74,0)); }
  50% { opacity: 0.8; filter: drop-shadow(0 0 8px rgba(196,135,74,0.25)); }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .hero { justify-content: center; }
  .hero-content { text-align: center; padding-bottom: 40px; }
  .hero-eyebrow { justify-content: center; }
  .hero-title .accent-line { margin: 0 auto; }
  .hero-actions { justify-content: center; }
  .hero-strip { position: relative; flex-wrap: wrap; }
  .strip-item { max-width: none; border-right: none; border-bottom: 1px solid rgba(196,135,74,0.12); padding: 0.9rem; min-width: 50%; }
  .strip-item:last-child { border-bottom: none; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gm-1,.gm-2,.gm-3,.gm-4,.gm-5,.gm-6,.gm-7,.gm-8,.gm-9 { grid-column: auto; grid-row: auto; min-height: 200px; }
  .section { padding: 4rem 5%; }
  .intro-band { grid-template-columns: 1fr; }
  .back-top { bottom: 1.2rem; right: 1.2rem; }
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
/* Form note & Formspree additions */
.form-note { margin-top: 0.6rem; font-size: 0.75rem; color: var(--text-muted, #aaa); text-align: center; opacity: 0.75; }
.form-success.show { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.8rem; padding: 2rem; text-align: center; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }


/* ═══════════════════════════════════════════════════════════
   GALLERY — TABS + SLIDESHOW + THUMBS
═══════════════════════════════════════════════════════════ */

/* Tabs */
.gallery-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  padding: 0 4% 2rem;
}
.gtab {
  background: transparent;
  border: 1.5px solid rgba(196,135,74,0.28);
  color: var(--wood-pale);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.55rem 1.4rem; border-radius: 3px;
  cursor: pointer; transition: all 0.22s;
}
.gtab:hover { border-color: var(--wood-light); color: var(--wood-light); }
.gtab.active {
  background: var(--red); border-color: var(--red);
  color: #fff;
}

/* Slideshow hero */
.gallery-slideshow {
  position: relative;
  width: 100%; height: 62vh; min-height: 440px; max-height: 700px;
  overflow: hidden; background: var(--dark);
  margin-bottom: 1.2rem;
}
.gss-track { position: relative; width: 100%; height: 100%; }
.gss-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.7s ease; cursor: zoom-in;
}
.gss-slide.active { opacity: 1; z-index: 1; }
.gss-slide img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.gss-slide::after {
  content:''; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(10,4,2,0.78) 0%, rgba(10,4,2,0.18) 50%, transparent 100%);
  pointer-events: none;
}
.gss-caption {
  position: absolute; bottom: 3.5rem; left: 3.5rem; z-index: 2;
  max-width: 520px;
}
.gss-cat-tag {
  display: inline-block;
  background: var(--red); color: #fff;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 0.22rem 0.65rem;
  border-radius: 2px; margin-bottom: 0.55rem;
}
.gss-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: #fff; margin: 0 0 0.3rem; line-height: 1.2;
}
.gss-caption p {
  font-size: 0.82rem; color: rgba(255,255,255,0.72); margin: 0;
}

/* Nav arrows */
.gss-prev, .gss-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3; background: rgba(20,10,4,0.55);
  border: 1.5px solid rgba(196,135,74,0.3);
  color: var(--wood-pale); font-size: 1.3rem;
  width: 3rem; height: 3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s;
}
.gss-prev { left: 1.2rem; }
.gss-next { right: 1.2rem; }
.gss-prev:hover, .gss-next:hover {
  background: var(--red); border-color: var(--red); color: #fff;
}

/* Dots */
.gss-dots {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  display: flex; gap: 0.4rem; z-index: 3;
}
.gss-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  transition: all 0.25s; padding: 0;
}
.gss-dot.active { background: var(--red); transform: scale(1.3); }

/* Progress bar */
.gss-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: rgba(255,255,255,0.1); z-index: 3;
}
.gss-bar { height: 100%; background: var(--red); width: 0; }

/* Counter */
.gss-counter {
  position: absolute; top: 1.2rem; right: 1.5rem; z-index: 3;
  font-size: 0.72rem; color: rgba(255,255,255,0.55);
  font-family: 'DM Sans', sans-serif; letter-spacing: 0.1em;
}

/* Thumbnail grid */
.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem; padding: 0 4% 2rem;
}
.gthumb {
  position: relative; aspect-ratio: 4/3; overflow: hidden;
  background: var(--wood-mid); border-radius: 4px;
  cursor: pointer; border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.gthumb:hover { transform: scale(1.02); }
.gthumb.active { border-color: var(--red); }
.gthumb img { width:100%; height:100%; object-fit:cover; display:block; transition: transform 0.4s; }
.gthumb:hover img { transform: scale(1.06); }
.gthumb-tag {
  position: absolute; top: 0.4rem; right: 0.4rem;
  background: var(--red); color: #fff;
  font-size: 0.55rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 0.15rem 0.45rem; border-radius: 2px;
}
.gthumb-cap {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,4,2,0.82));
  color: rgba(255,255,255,0.9); font-size: 0.65rem;
  padding: 1rem 0.5rem 0.4rem; text-align: left;
  font-family: 'DM Sans', sans-serif;
  opacity: 0; transition: opacity 0.25s;
}
.gthumb:hover .gthumb-cap { opacity: 1; }

/* Mobile tweaks */
@media (max-width: 700px) {
  .gallery-slideshow { height: 52vw; min-height: 260px; }
  .gss-caption { left: 1rem; bottom: 2.5rem; }
  .gss-caption h3 { font-size: 1rem; }
  .gallery-thumbs { grid-template-columns: repeat(2, 1fr); padding: 0 3% 1.5rem; gap: 0.4rem; }
  .gss-prev { left: 0.4rem; } .gss-next { right: 0.4rem; }
}

/* Facebook banner above gallery */
.gallery-fb-banner {
  display: flex; align-items: center; gap: 0.9rem;
  background: linear-gradient(135deg, #1877f2 0%, #0c5dc7 100%);
  color: #fff; padding: 0.9rem 4%;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  flex-wrap: wrap;
}
.gallery-fb-banner svg { flex-shrink: 0; opacity: 0.9; }
.gallery-fb-banner span { flex: 1; min-width: 160px; opacity: 0.92; }
.gallery-fb-link {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff; text-decoration: none;
  padding: 0.4rem 1.1rem; border-radius: 3px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.04em;
  white-space: nowrap; transition: background 0.2s;
}
.gallery-fb-link:hover { background: rgba(255,255,255,0.3); }

/* Hide thumbs grid */
.gallery-thumbs { display: none; }
.gallery-fb-banner { display: none; }

/* ── Gallery social links ── */
.gallery-social-links { display: flex; flex-direction: column; align-items: flex-end; gap: 0.5rem; }
.gallery-social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--wood-pale); text-decoration: none;
  font-family: 'DM Sans', sans-serif; font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.04em; border: 1px solid rgba(196,135,74,0.28);
  padding: 0.45rem 1rem; border-radius: 3px;
  transition: color 0.2s, border-color 0.2s, background 0.2s; background: transparent;
}
.gallery-social-btn:hover { color: var(--wood-light); border-color: rgba(196,135,74,0.65); background: rgba(196,135,74,0.06); }

/* ── TABLET (≤ 960px) ── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }
  .section { padding: 4rem 5%; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; gap: 3rem; }
  .intro-band { grid-template-columns: 1fr; }
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1.2rem; padding: 0 4% 1.5rem; }
  .gallery-social-links { align-items: flex-start; flex-direction: row; flex-wrap: wrap; }
  footer { flex-direction: column; align-items: flex-start; gap: 1.5rem; padding: 2.5rem 5%; }
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* ── MOBILE (≤ 480px) ── */
@media (max-width: 480px) {
  /* Запобігаємо горизонтальному скролу */
  html, body { overflow-x: hidden; max-width: 100%; }

  /* Nav */
  nav { padding: 0.75rem 4%; backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(12,6,2,0.97); }
  .nav-logo-img { height: 36px; width: 36px; }
  .nav-logo-name { font-size: 0.88rem; }

  /* Hero — статичне, без анімацій */
  .hero { height: 100svh; min-height: 520px; align-items: flex-end; }
  .hero-bg { transform: none !important; animation: none !important; }
  .hero-img { object-position: 65% center; transform: none !important; will-change: auto; }
  .hero-content {
    padding: 0 5% 1rem;
    padding-top: 0;
    padding-bottom: 180px; /* місце для strip знизу */
    text-align: left;
    max-width: 100%;
  }
  .hero-eyebrow { justify-content: flex-start; font-size: 0.58rem; margin-bottom: 0.6rem; }
  .hero-title {
    font-size: clamp(1.7rem, 7.5vw, 2.2rem);
    margin-bottom: 0.7rem;
    line-height: 1.15;
  }
  .hero-sub {
    font-size: 0.8rem;
    max-width: 100%;
    margin-bottom: 1.2rem;
    line-height: 1.6;
    /* Трохи темніший фон для читабельності */
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  }
  .hero-actions { flex-direction: column; gap: 0.55rem; width: 100%; max-width: 280px; }
  .btn-primary, .btn-outline {
    width: 100%; text-align: center; justify-content: center;
    padding: 0.85rem 1rem; font-size: 0.86rem;
  }

  /* Hero strip — чисто без blur */
  .hero-strip {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgba(12,6,2,0.95);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .strip-item {
    padding: 0.8rem 0.6rem;
    min-width: auto;
    border-right: none;
    border-bottom: 1px solid rgba(196,135,74,0.12);
  }
  .strip-item:nth-child(odd) { border-right: 1px solid rgba(196,135,74,0.12); }
  .strip-item:nth-child(3), .strip-item:nth-child(4) { border-bottom: none; }
  .strip-num { font-size: 1rem; }
  .strip-label { font-size: 0.48rem; }

  /* Sections */
  .section { padding: 2.8rem 4%; }
  h2 { font-size: clamp(1.45rem, 5.5vw, 1.9rem); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .service-card { padding: 1.3rem 1.1rem; }

  /* Why */
  .why-cards-stack { gap: 0.6rem; }
  .why-card { padding: 0.95rem 1rem; gap: 0.8rem; }
  .stat-num { font-size: 1.9rem; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 1rem; }

  /* Gallery tabs */
  .gallery-tabs { padding: 0 4% 1rem; gap: 0.35rem; }
  .gtab { font-size: 0.68rem; padding: 0.42rem 0.85rem; }

  /* Slideshow */
  .gallery-slideshow { height: 58vw; min-height: 210px; max-height: 320px; }
  .gss-caption { left: 0.8rem; bottom: 1.8rem; max-width: calc(100% - 4rem); }
  .gss-caption h3 { font-size: 0.88rem; line-height: 1.25; }
  .gss-caption p { display: none; }
  .gss-cat-tag { font-size: 0.55rem; padding: 0.15rem 0.45rem; }
  .gss-prev, .gss-next { width: 2rem; height: 2rem; font-size: 0.9rem; }
  .gss-prev { left: 0.35rem; }
  .gss-next { right: 0.35rem; }
  .gss-counter { font-size: 0.65rem; top: 0.8rem; right: 0.8rem; }
  .gallery-social-links { flex-direction: column; gap: 0.45rem; width: 100%; }
  .gallery-social-btn { font-size: 0.7rem; padding: 0.38rem 0.75rem; width: 100%; justify-content: center; }

  /* Contact form */
  .contact { grid-template-columns: 1fr; gap: 2rem; }
  .contact-form { padding: 1.4rem 1.1rem; }
  .form-row { grid-template-columns: 1fr; }
  /* Запобігає зуму на iOS при фокусі на input */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px !important; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; gap: 0.9rem; }
  .tcard { padding: 1.3rem 1.1rem; }

  /* Footer */
  footer { padding: 1.8rem 4%; gap: 1.1rem; }
  .footer-logo-img { width: 44px; height: 44px; }
  .footer-brand { font-size: 0.95rem; }
  .footer-links { flex-direction: column; gap: 0.6rem; align-items: flex-start; }

  /* Back to top */
  .back-top { width: 36px; height: 36px; font-size: 0.95rem; bottom: 0.9rem; right: 0.9rem; }

  /* Reveal — менший зсув на мобільному */
  .reveal { transform: translateY(12px); }
}

