/* ============================================================
   ROOT & RESET
   ============================================================ */
:root {
  --bg:         #0a0a0a;
  --surface:    #111111;
  --surface2:   #161616;
  --gold:       #C9A84C;
  --gold-hover: #E8C96A;
  --gold-dim:   rgba(201, 168, 76, 0.15);
  --gold-glow:  rgba(201, 168, 76, 0.20);
  --gold-border:rgba(201, 168, 76, 0.20);
  --text:       #F0F0F0;
  --muted:      #888888;
  --border:     rgba(201, 168, 76, 0.15);
  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Inter', system-ui, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:     4px;
  --max-w:      1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { color: inherit; text-decoration: none; }
button { cursor: pointer; background: none; border: none; font-family: inherit; }
ul { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-alt { background: var(--surface); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text);
}
.gold-line {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px auto 0;
}

/* ============================================================
   SCROLL ANIMATION
   ============================================================ */
.reveal, .fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible, .fade-in-up.visible {
  opacity: 1;
  transform: none;
}
.fade-in-up { transition-delay: 0.1s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), backdrop-filter var(--transition);
}
#navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.logo { display: flex; align-items: center; }
.logo-mark {
  font-family: var(--font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 2px;
}
.svg-logo-nav {
  display: block;
  height: 70px;
  width: auto;
}
.svg-logo-footer {
  display: block;
  height: auto;
  max-height: 90px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
  transition: color var(--transition);
  padding: 2px 0;
}
.lang-btn:hover, .lang-btn.active { color: var(--gold); }
.lang-sep { color: var(--border); font-size: 11px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { text-align: center; }
.mobile-menu ul li { margin-bottom: 24px; }
.mobile-menu ul li a {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--text);
  transition: color var(--transition);
}
.mobile-menu ul li a:hover { color: var(--gold); }
.mob-lang { margin-top: 8px; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: url('./фото на сайт/photo_2026-03-31_23-49-07.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.22;
}
.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 256px;
  opacity: 0.35;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 24px 0;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  word-break: break-word;
  white-space: normal;
}

.hero-heading {
  font-size: clamp(40px, 7.5vw, 72px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 40px;
  letter-spacing: 0.5px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  animation: scrollBounce 1.8s ease-in-out infinite;
  margin: 0 auto;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50%       { transform: rotate(45deg) translateY(8px); opacity: 0.4; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 36px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: #0a0a0a;
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  box-shadow: 0 0 24px var(--gold-glow);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px var(--gold-glow);
}
.btn-full { width: 100%; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--gold);
  padding: 36px 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px var(--gold-glow);
  border-color: var(--gold);
}
.service-card:hover .service-icon { transform: scale(1.1); }

.service-icon {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  transition: transform var(--transition);
}
.service-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ============================================================
   PORTFOLIO / GALLERY
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 16px;
  break-inside: avoid;
  cursor: pointer;
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.75);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
  gap: 12px;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-zoom {
  width: 48px; height: 48px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  line-height: 1;
}
.gallery-overlay p {
  font-size: 13px;
  color: var(--text);
  text-align: center;
  letter-spacing: 0.5px;
}
.gallery-item.hidden { display: none; }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lb-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  text-align: center;
}
.lb-img-wrap img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  object-fit: contain;
}
.lb-caption {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  letter-spacing: 0.5px;
}
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  transition: var(--transition);
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--gold-dim);
  color: var(--gold);
  border-color: var(--gold);
}
.lb-close {
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  font-size: 20px;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev, .lb-next {
  top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 32px;
  display: flex; align-items: center; justify-content: center;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ============================================================
   REVIEWS CAROUSEL
   ============================================================ */
.reviews-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.reviews-track-outer {
  flex: 1;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}
.review-card:hover {
  box-shadow: 0 0 24px var(--gold-glow);
  border-color: rgba(201,168,76,0.35);
}

.review-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.review-city {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

.carousel-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--muted);
  transition: var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: var(--gold-dim);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
  width: 20px;
  border-radius: 3px;
}

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: start;
}

.calc-form { display: flex; flex-direction: column; gap: 36px; }

.calc-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.area-input-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: var(--surface2);
  border-radius: 2px;
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--bg);
  box-shadow: 0 0 0 1px var(--gold);
  transition: transform var(--transition);
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  border: 2px solid var(--bg);
}

.area-display {
  display: flex;
  align-items: center;
  gap: 8px;
}
.area-display input[type="number"] {
  width: 80px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
  padding: 8px 12px;
  outline: none;
  transition: border-color var(--transition);
}
.area-display input[type="number"]:focus { border-color: var(--gold); }
.area-display span { color: var(--muted); font-size: 14px; }

.radio-group, .checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.radio-option, .check-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  min-width: 120px;
}
.radio-option:has(input:checked),
.check-option:has(input:checked) {
  border-color: var(--gold);
  background: var(--gold-dim);
}
.radio-option:hover, .check-option:hover {
  border-color: rgba(201,168,76,0.4);
}
.radio-option input, .check-option input { display: none; }
.radio-option span, .check-option span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}
.radio-option small, .check-option small {
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
}

/* Calc result */
.calc-result {
  background: var(--surface2);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  position: sticky;
  top: 96px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  overflow: hidden;
}
.result-label {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.result-price {
  font-family: var(--font-head);
  font-size: clamp(18px, 4vw, 28px);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
  word-break: break-word;
}
.result-disclaimer {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  font-size: 20px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-val {
  font-size: 15px;
  color: var(--text);
  transition: color var(--transition);
}
a.contact-val:hover { color: var(--gold); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}
.social-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: var(--transition);
}
.social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 16px var(--gold-glow);
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}
.form-field input,
.form-field textarea {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: #444; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: rgba(201,168,76,0.08);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 14px;
}
.form-success.show { display: flex; }
.form-success span { font-size: 18px; }

/* Contact method selector */
.method-selector { margin-bottom: 4px; }
.method-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.method-tabs {
  display: flex;
  gap: 8px;
}
.method-tab {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.method-tab:hover {
  border-color: rgba(201,168,76,0.4);
  color: var(--text);
}
.method-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-dim);
}
.method-tab svg { flex-shrink: 0; }

/* Method sections */
.method-section {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.method-section.active {
  display: flex;
  animation: methodFadeIn 0.3s ease;
}
@keyframes methodFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Telegram copy wrap */
.copy-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.copy-textarea {
  flex: 1;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 10px 14px;
  resize: none;
  line-height: 1.55;
  outline: none;
}
.btn-copy {
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-copy:hover { background: var(--gold-dim); }

/* Method helper text */
.method-helper {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.55;
}
.method-helper a { color: var(--gold); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--surface);
  padding: 56px 0 32px;
}
.footer-top-border {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin-bottom: 48px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 40px;
}
.footer-brand { display: flex; flex-direction: column; gap: 10px; }
.footer-tagline { font-size: 13px; color: var(--muted); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  transition: color var(--transition);
  letter-spacing: 0.5px;
}
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .calc-wrap {
    grid-template-columns: 1fr;
  }
  .calc-result {
    position: static;
  }
  .review-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .svg-logo-footer { max-height: 70px; max-width: 160px; }
  .nav-inner { height: 64px; padding: 0 16px; justify-content: flex-end; position: relative; }
  .logo {
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -8px);
    z-index: 1001;
    pointer-events: auto;
    transition: opacity 0.4s ease;
  }
  .svg-logo-nav { height: 216px; }
  .hero-eyebrow { font-size: 10px; letter-spacing: 2px; }
  .hero-content { padding-top: 230px; }

  .gallery-masonry { columns: 2; }

  .services-grid { grid-template-columns: 1fr; }

  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }

  .review-card { flex: 0 0 85vw; }
  .carousel-btn { display: none; }

  .radio-group, .checkbox-group { gap: 8px; }
  .radio-option, .check-option { min-width: calc(50% - 4px); flex: none; }

  .hero-stats { gap: 20px; }
  .stat-divider { height: 30px; }

  .container { padding: 0 16px; }

  .method-tabs { flex-direction: column; }

  .copy-wrap { flex-direction: column; }
  .btn-copy { width: 100%; text-align: center; }
}

@media (max-width: 480px) {
  .svg-logo-nav { height: 200px; }
  .svg-logo-footer { max-height: 60px; max-width: 140px; }
  .nav-inner { height: 60px; }
  .hero-content { padding-top: 220px; }
  .gallery-masonry { columns: 1; }
  .section { padding: 64px 0; }
  .container { padding: 0 12px; }

  .radio-option, .check-option { min-width: 100%; flex: none; }
  .radio-option span, .check-option span { font-size: 13px; }

  .btn { padding: 12px 24px; font-size: 12px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 300px; }

  .stat-num { font-size: 26px; }
  .stat-divider { display: none; }
  .hero-stats { flex-direction: column; gap: 16px; }

  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-prev, .lb-next { width: 40px; height: 40px; font-size: 22px; }

  .footer-inner { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
}
