:root {
  --warm-bg: #f5f3ef;
  --warm-bg-alt: #ece8e1;
  --warm-cream: #f0ece6;
  --dark: #1a1815;
  --dark-mid: #2a2621;
  --text: #33302b;
  --text-light: #6b6560;
  --accent: #9c8b75;
  --accent-warm: #b8a68e;
  --white: #fefdfb;
  --glass-border: rgba(255,255,255,0.18);
  --glass-bg: rgba(255,255,255,0.06);
  --shadow-soft: 0 2px 20px rgba(26,24,21,0.06);
  --shadow-deep: 0 8px 40px rgba(26,24,21,0.1);
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--warm-bg);
  overflow-x: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
}

img { max-width:100%; height:auto; display:block; }
a { color: inherit; text-decoration: none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
figure { margin:0; }
figcaption { font-size: 0.78rem; color: var(--text-light); margin-top: 8px; font-style: italic; display:none!important;}

.font-jost { font-family: 'Jost', sans-serif; font-weight: 600; }
.font-vollkorn { font-family: 'Vollkorn', serif; font-weight: 400; font-style: italic; }

h1, h2, h3 { line-height: 1.2; }

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--dark);
  margin-bottom: 1.2em;
}

h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 38px;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--white);
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26,24,21,0.15), inset 0 1px 0 rgba(255,255,255,0.06);
}
.btn-primary:hover {
  background: var(--dark-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,24,21,0.2);
}

.btn-secondary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 14px 34px;
  border-radius: var(--radius);
  border: 1.5px solid var(--accent);
  color: var(--dark);
  transition: all 0.4s var(--ease);
}
.btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: transform 0.4s var(--ease), background 0.3s ease;
  background: rgba(245,243,239,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26,24,21,0.05);
}
.site-header.hidden { transform: translateY(-100%); }
.site-header.scrolled {
  background: rgba(245,243,239,0.95);
  box-shadow: 0 1px 12px rgba(26,24,21,0.06);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header-logo img { height: 28px; width: auto; }

.header-nav {
  display: flex;
  gap: 32px;
}
.header-nav a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  color: var(--text);
  transition: color 0.3s ease;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.4s var(--ease);
}
.header-nav a:hover::after { width: 100%; }
.header-nav a:hover { color: var(--dark); }

.header-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--white);
  transition: all 0.3s var(--ease);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}
.header-cta:hover {
  background: var(--dark-mid);
  transform: translateY(-1px);
}

.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s ease; }

@media (max-width: 860px) {
  .header-nav { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .header-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: rgba(245,243,239,0.97);
    backdrop-filter: blur(20px);
    padding: 24px clamp(20px,4vw,60px);
    gap: 18px;
    border-bottom: 1px solid rgba(26,24,21,0.06);
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(156,139,117,0.15), transparent),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(184,166,142,0.1), transparent),
    linear-gradient(160deg, #1a1815 0%, #2a2621 40%, #1e1c18 100%);
  z-index: 0;
}
.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30h60M30 0v60' stroke='rgba(255,255,255,0.02)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 120px clamp(20px, 4vw, 60px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  margin-bottom: 24px;
}
.hero-text h1 .font-vollkorn { display: block; color: var(--accent-warm); }

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-image-wrap {
  position: relative;
}
.hero-figure {
  max-width: 800px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  position: relative;
}
.hero-figure::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero-figure img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 6s var(--ease);
}
.hero-figure:hover img { transform: scale(1.03); }
.hero-figure figcaption { color: rgba(255,255,255,0.4); padding: 12px 16px; }

@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; padding-top: 140px; }
  .hero-image-wrap { max-width: 600px; }
}

/* USP */
.usp {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--warm-bg);
}
.usp h2 { text-align: center; margin-bottom: 48px; }
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}
.usp-item {
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(26,24,21,0.04);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.8);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.usp-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-deep);
}
.usp-num {
  font-family: 'Vollkorn', serif;
  font-style: italic;
  font-size: 2rem;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.usp-item p { font-size: 0.95rem; color: var(--text); }

@media (max-width: 700px) {
  .usp-grid { grid-template-columns: 1fr; max-width: 420px; }
}

/* LOCAL CONTEXT */
.local-context {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--dark);
  overflow: hidden;
}
.local-context-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 70% 30%, rgba(156,139,117,0.08), transparent),
    radial-gradient(ellipse 40% 50% at 20% 70%, rgba(184,166,142,0.06), transparent);
}
.local-context-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(255,255,255,0.015)'/%3E%3C/svg%3E");
  background-size: 24px 24px;
}
.local-context-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.local-context h2 { color: var(--white); }
.local-context h2 .font-vollkorn { color: var(--accent-warm); }
.local-context p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
}

/* GALLERY */
.gallery-section {
  padding: clamp(60px, 8vw, 100px) 0 clamp(60px, 8vw, 100px);
  background: var(--warm-cream);
}
.gallery-header { margin-bottom: 48px; }
.gallery-header h2 { text-align: center; margin-bottom: 0; }

.gallery-masonry {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 0 8px;
}
.gallery-col { display: flex; flex-direction: column; gap: 8px; }
.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,24,21,0.12), transparent 40%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-item:hover::after { opacity: 1; }

@media (max-width: 900px) { .gallery-masonry { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .gallery-masonry { grid-template-columns: 1fr 1fr; gap: 6px; padding: 0 6px; } }

/* YOUTUBE */
.youtube-section {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--dark-mid);
  overflow: hidden;
}
.youtube-bg-layer {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(156,139,117,0.08), transparent),
    linear-gradient(180deg, var(--dark-mid) 0%, #1e1c18 100%);
}
.youtube-bg-layer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(156,139,117,0.3), transparent);
}

.youtube-section h2 {
  position: relative;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}
.youtube-section h2 .font-vollkorn { color: var(--accent-warm); }

.youtube-wrap {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.06);
}
.youtube-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* COMBINED MEDIA */
.combined-media {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--warm-bg);
}
.combined-media h2 { text-align: center; }

.media-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1080px;
  margin: 0 auto;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
  background: var(--white);
  border: 1px solid rgba(26,24,21,0.04);
}

.ba-slider {
  position: relative;
  width: 100%;
  padding-bottom: 66.667%;
  overflow: hidden;
  cursor: ew-resize;
}
.ba-after, .ba-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-after { z-index: 1; }
.ba-before-wrap {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  clip-path: inset(0 50% 0 0);
}
.ba-before {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  transform: translateX(-50%);
}
.ba-handle-line { flex: 1; width: 2px; background: var(--white); opacity: 0.8; }
.ba-handle-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  color: var(--dark);
  flex-shrink: 0;
}

.timelapse-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 66.667%;
  overflow: hidden;
}
.timelapse-wrap img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 760px) { .media-duo { grid-template-columns: 1fr; } }

/* PROBLEM SOLUTION */
.problem-solution {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--warm-cream);
}
.ps-layout {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 40px;
  max-width: 800px;
  align-items: start;
  margin:0 auto;
}
.ps-accent {
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--accent), var(--accent-warm));
  align-self: stretch;
  margin-top: 12px;
}
.ps-content h2 { margin-bottom: 20px; }
.ps-content p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--text);
}

/* BENEFITS */
.benefits {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--dark);
}
.benefits h2 { text-align: center; color: var(--white); }
.benefits h2 .font-vollkorn { color: var(--accent-warm); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.benefit-card {
  padding: 36px 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 0.4s var(--ease), background 0.4s ease;
}
.benefit-card:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}
.benefit-icon {
  color: var(--accent-warm);
  margin-bottom: 20px;
}
.benefit-card h3 { color: var(--white); font-size: 1.1rem; }
.benefit-card p { color: rgba(255,255,255,0.55); font-size: 0.93rem; }

@media (max-width: 760px) { .benefits-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* FEATURES */
.features {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--warm-bg);
}
.features h2 { max-width: 600px; }

.features-list {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(26,24,21,0.07);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--text);
}
.feature-dash {
  width: 24px;
  height: 2px;
  background: var(--accent);
  flex-shrink: 0;
  border-radius: 1px;
}

/* SOCIAL PROOF */
.social-proof {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--warm-cream);
}
.sp-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.sp-inner h2 { margin-bottom: 16px; }
.sp-inner > p {
  color: var(--text-light);
  font-size: 1.02rem;
  margin-bottom: 36px;
}
#googleReviewsBlock { margin-bottom: 32px; }

/* ABOUT ME */
.about-me {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--warm-bg);
}
.about-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 900px;
}
.about-image figure {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.7s var(--ease);
}
.about-image figure:hover img { transform: scale(1.03); }
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text); font-size: 1rem; line-height: 1.8; margin-bottom: 16px; }
.about-charm {
  font-family: 'Vollkorn', serif;
  font-style: italic;
  color: var(--accent);
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .about-layout { grid-template-columns: 1fr; max-width: 500px; }
  .about-image figure { max-width: 240px; }
}

/* DRONE */
.drone-section {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--dark);
}
.drone-section h2 { text-align: center; color: var(--white); }
.drone-section h2 .font-vollkorn { color: var(--accent-warm); }
.drone-intro {
  text-align: center;
  max-width: 680px;
  margin: -16px auto 48px;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
}

.drone-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}
.drone-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s var(--ease);
  padding: 0 20px;
}
.drone-slide {
  min-width: 380px;
  max-width: 400px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.5s var(--ease);
  aspect-ratio:3 / 2;
}
.drone-slide:hover { transform: scale(1.02); }
.drone-slide img { width: 100%; height: auto; display: block; }

.drone-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.drone-prev, .drone-next {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.drone-prev:hover, .drone-next:hover {
  background: rgba(255,255,255,0.15);
}

@media (max-width: 500px) {
  .drone-slide { min-width: 280px; max-width: 300px; }
}

/* FAQ */
.faq {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--warm-cream);
}
.faq h2 { text-align: center; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(26,24,21,0.08);
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s ease;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  position: relative;
  width: 20px; height: 20px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.4s var(--ease);
}
.faq-icon::before { top: 50%; left: 0; width: 20px; height: 2px; transform: translateY(-50%); }
.faq-icon::after { top: 0; left: 50%; width: 2px; height: 20px; transform: translateX(-50%); }

.faq-q[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
  padding: 0;
}
.faq-a.open {
  max-height: 300px;
  padding: 0 0 22px;
}
.faq-a p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* CTA */
.cta-section {
  position: relative;
  padding: clamp(100px, 12vw, 160px) 0;
  background: var(--warm-bg);
  overflow: hidden;
}
.cta-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 30% 50%, rgba(156,139,117,0.08), transparent),
    radial-gradient(ellipse 50% 50% at 80% 40%, rgba(184,166,142,0.06), transparent);
}
.cta-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40' stroke='rgba(156,139,117,0.06)' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.cta-inner {
  position: relative;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p {
  color: var(--text-light);
  margin-bottom: 36px;
  font-size: 1.05rem;
}

/* CONTACT */
.contact {
  position: relative;
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--dark);
  overflow: hidden;
}
.contact-bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 50%, rgba(156,139,117,0.06), transparent);
}
.contact-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='40' cy='40' r='0.8' fill='rgba(255,255,255,0.025)'/%3E%3C/svg%3E");
  background-size: 40px 40px;
}

.contact-inner {
  position: relative;
  text-align: center;
}
.contact h2 { color: var(--white); margin-bottom: 36px; }

.contact-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-link {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s ease;
  position: relative;
}
.contact-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--accent-warm);
  transition: width 0.4s var(--ease);
}
.contact-link:hover { color: var(--white); }
.contact-link:hover::after { width: 100%; }

/* FOOTER */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.6; }
.footer-contact {
  display: flex;
  gap: 24px;
}
.footer-contact a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s ease;
}
.footer-contact a:hover { color: rgba(255,255,255,0.8); }
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.3s ease;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease);
}
.lightbox.active img { transform: scale(1); }
.lightbox-close {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 2rem;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10;
}
.lightbox-close:hover { color: var(--white); }
