﻿:root {
  --bg: #11100e;
  --bg-elev: #191612;
  --bg-card: #1f1914;
  --line: #3d3329;
  --line-soft: #5a4938;
  --text: #ece3d6;
  --muted: #bca98f;
  --title: #f8f2ea;
  --stone: #ae8b64;
  --wa: #25d366;
  --max: 1240px;
  --r-1: 10px;
  --r-2: 14px;
  --ease: cubic-bezier(0.25,0.46,0.45,0.94);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 15% -18%, #2a2118 0, transparent 42%), var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: 'Cormorant Garamond', Georgia, serif; color: var(--title); }
p { margin: 0; }

.site-header { min-height: 100vh; position: relative; border-bottom: 1px solid var(--line); }

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: auto auto; gap: .75rem; align-items: center;
  padding: 1rem;
}

.nav.scrolled {
  background: rgba(17,16,14,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand { text-decoration: none; display: inline-flex; flex-direction: column; }
.brand-main { font-size: .96rem; font-weight: 600; letter-spacing: .09em; }
.brand-sub { font-size: .68rem; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }

.menu-toggle {
  justify-self: end;
  min-width: 44px; min-height: 44px;
  border: 1px solid rgba(255,255,255,.4);
  background: transparent;
  color: var(--text);
  font-weight: 600;
}

.nav-links {
  grid-column: 1/-1;
  display: none;
  list-style: none;
  margin: 0;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: var(--r-1);
  background: rgba(20,18,15,.98);
}

.nav-links.open { display: grid; gap: .35rem; }
.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #e3d6c5;
}

.hero {
  min-height: 100vh;
  width: 100%;
  padding: 7rem 1rem 2.2rem;
  display: grid;
  align-items: end;
  position: relative;
}

.hero-media { position: absolute; inset: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; }
.hero-video-mobile { display: none; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(0,0,0,.78) 12%, rgba(0,0,0,.34) 55%, rgba(0,0,0,.72) 100%),
    linear-gradient(to top, rgba(7,6,5,.86) 0%, rgba(7,6,5,.25) 36%, rgba(7,6,5,.72) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-kicker {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: .75rem;
}

.hero h1 {
  font-size: clamp(1.95rem, 5.2vw, 4.2rem);
  line-height: .98;
  margin-bottom: 1rem;
}
.hero h1 span { display: block; }

.hero-copy {
  color: #d5c5b1;
  font-size: 1.03rem;
  max-width: 60ch;
  margin-bottom: 1.35rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .65rem; }

.btn {
  min-height: 44px;
  padding: .72rem 1.1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: transform .25s var(--ease);
}

.btn-light {
  border-color: rgba(255,255,255,.58);
  color: var(--title);
  background: rgba(255,255,255,.06);
}

.btn-wa { background: var(--wa); color: #082610; }

main > .section,
main > .trust-band {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: 1rem;
}

.section { padding-top: 5rem; padding-bottom: 5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: .15em; font-size: .72rem; color: var(--muted); }
.section-head { margin-bottom: 1.8rem; }
.section-head h2 { margin-top: .45rem; font-size: clamp(2rem, 5vw, 3.4rem); line-height: .95; }

.trust-band {
  padding: 2.2rem 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .45rem;
  background: linear-gradient(to right, rgba(174,139,100,.07), rgba(174,139,100,.01));
}

.trust-band article {
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(25,22,18,.52);
  padding: .8rem;
}

.trust-band strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  display: block;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.metric-value {
  display: flex !important;
  align-items: baseline;
  gap: .12em;
  margin-bottom: .2rem;
}

.metric-prefix {
  font-size: 1em;
  letter-spacing: .01em;
}

.metric-label {
  display: block;
  font-size: .94rem;
  color: var(--muted);
  line-height: 1.2;
}

.services-grid { display: grid; gap: 1rem; }
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: linear-gradient(165deg, rgba(35,29,23,.86), rgba(24,20,16,.96));
  padding: 1.4rem;
}
.service-card h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: .45rem; }
.service-card p { color: var(--muted); }

.featured-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.feature-card {
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.feature-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.feature-info { padding: .9rem; display: grid; gap: .35rem; }
.feature-info h3 { font-size: 1.42rem; }
.feature-info p { color: var(--muted); font-size: .92rem; }

.reels-strip {
  display: flex;
  gap: .8rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .25rem;
}
.reels-strip::-webkit-scrollbar { display: none; }
.drag-scroll { cursor: grab; user-select: none; }
.drag-scroll.is-dragging { cursor: grabbing; }
.video-card {
  flex: 0 0 200px;
  aspect-ratio: 9 / 16;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #100d0a;
  cursor: pointer;
  scroll-snap-align: start;
}
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.video-card img { filter: saturate(.82) contrast(1.06) brightness(.88); }
.video-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.67) 0%, rgba(0,0,0,.1) 58%, rgba(0,0,0,.48) 100%);
}
.video-card .play { position: absolute; inset: 0; display: grid; place-items: center; font-size: 1.9rem; color: #fff; z-index: 1; }
.video-card .meta {
  position: absolute;
  left: .45rem;
  right: .45rem;
  bottom: .45rem;
  z-index: 1;
  font-size: .72rem;
  color: #f1e4d4;
  display: flex;
  justify-content: space-between;
}

.archive-filters { margin-bottom: 1rem; display: flex; flex-wrap: wrap; gap: .5rem; }
.archive-nav {
  display: none;
  justify-content: flex-end;
  gap: .55rem;
  margin: 0 0 .9rem;
}
.archive-arrow {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #16120f;
  color: #efe2d2;
  font-size: 1rem;
  cursor: pointer;
}
.archive-arrow:disabled {
  opacity: .35;
  cursor: default;
}
.filter {
  min-height: 42px;
  padding: .45rem .95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #1a1511;
  color: #dcc9b2;
}
.filter.is-active { border-color: var(--stone); color: #fff1dd; }

.archive-grid {
  display: flex;
  gap: .9rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: .25rem;
}
.archive-grid::-webkit-scrollbar { display: none; }
.archive-card {
  flex: 0 0 min(82vw, 390px);
  scroll-snap-align: start;
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  overflow: hidden;
  background: var(--bg-card);
  cursor: pointer;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.archive-card img {
  width: 100%;
  aspect-ratio: auto;
  height: 260px;
  object-fit: cover;
}
.archive-card p { padding: .75rem .85rem; color: var(--muted); font-size: .85rem; }
.archive-card.muted { opacity: .2; filter: grayscale(.35); }

.textual-grid { display: grid; gap: 1rem; }
.textual-grid article {
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: #1b1611;
  padding: 1.2rem;
}
.textual-grid h2 { margin-top: .45rem; margin-bottom: .8rem; font-size: clamp(1.9rem, 4vw, 2.7rem); }
.textual-grid p + p { margin-top: .7rem; }

.about { display: grid; gap: 1rem; }
.about-media { border: 1px solid var(--line); border-radius: var(--r-2); overflow: hidden; }
.about-media img { width: 100%; height: min(72vh, 760px); object-fit: cover; object-position: center; }
.about-copy {
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: linear-gradient(160deg, rgba(35,28,21,.78), rgba(22,18,14,.94));
  padding: 1.2rem;
}
.about-copy h2 { margin-top: .45rem; margin-bottom: .8rem; font-size: clamp(2rem, 5vw, 3.1rem); }
.about-copy p { color: #e7dccf; font-size: 1.07rem; }
.about-copy p + p { margin-top: .65rem; }

.contact { display: grid; gap: 1rem; }
.contact-card, .contact-form {
  border: 1px solid var(--line);
  border-radius: var(--r-2);
  background: #1b1612;
  padding: 1.2rem;
}
.contact-card h2 { margin-top: .45rem; margin-bottom: .9rem; font-size: clamp(2rem, 5vw, 3rem); }
.contact-card p + p { margin-top: .55rem; }

.contact-form { display: grid; gap: .5rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #544333;
  border-radius: 8px;
  background: #0f0c0a;
  color: var(--text);
  font: inherit;
  padding: .68rem;
}

.footer { border-top: 1px solid var(--line); color: var(--muted); text-align: center; padding: 1.3rem 1rem 2rem; }
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-decoration: none;
  display: grid;
  place-items: center;
  z-index: 35;
  background: var(--wa);
  color: #082610;
  font-weight: 700;
}

.viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4,4,4,.95);
  padding: 1rem;
}
.viewer.open { display: flex; }

.viewer-close, .viewer-nav, .video-play {
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(255,255,255,.33);
  border-radius: 999px;
  background: rgba(0,0,0,.45);
  color: #fff;
}

.viewer-close { position: absolute; top: 1rem; right: 1rem; }
.viewer-nav { position: absolute; top: 50%; transform: translateY(-50%); }
.viewer-nav.prev { left: 1rem; }
.viewer-nav.next { right: 1rem; }

#image-viewer figure { margin: 0; width: min(1200px, 100%); }
#image-viewer-media { width: 100%; max-height: 80vh; object-fit: contain; }
#image-viewer-caption { color: #d7c7b4; text-align: center; margin-top: .45rem; }
.viewer-count { position: absolute; right: 1rem; bottom: 1rem; color: #d9c9b6; }

.video-frame {
  width: min(430px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.3);
  overflow: hidden;
  position: relative;
  background: #000;
}

#video-viewer-media { width: 100%; height: 100%; object-fit: cover; }
.video-title { position: absolute; left: .65rem; right: .65rem; top: .65rem; z-index: 1; color: #f2e7da; font-size: .84rem; }
.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  z-index: 1;
}
.video-progress { position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: rgba(255,255,255,.28); }
.video-progress span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, #d7bb9d, #25d366); }

[data-animate] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-animate].in { opacity: 1; transform: translateY(0); }

@media (hover: hover) {
  .btn:hover { transform: translateY(-2px); }
  .feature-card:hover, .archive-card:hover { transform: translateY(-4px); }
}

@media (min-width: 760px) {
  .brand {
    flex-direction: column;
    align-items: flex-start;
    gap: .18rem;
    white-space: normal;
  }
  .brand-sub {
    font-size: .68rem;
    line-height: 1;
  }
  .trust-band { grid-template-columns: repeat(4, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card img { height: 300px; }
  .archive-card img {
    aspect-ratio: auto;
    height: 300px;
  }
  .textual-grid { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1.05fr .95fr; }
  .contact { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav {
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 2.2rem;
  }
  .menu-toggle { display: none; }
  .nav-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: .9rem;
    border: 0;
    background: transparent;
    padding: 0;
    grid-column: auto;
    margin-left: auto;
  }
  .nav-cta { display: inline-flex; }

  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-card img { height: 260px; }
  .archive-nav { display: flex; }
  .archive-card img {
    aspect-ratio: auto;
    height: 260px;
  }
  .video-card { flex-basis: 220px; }
  .archive-card { flex-basis: 360px; }
  .hero h1 span { white-space: nowrap; }
}

@media (max-width: 760px) {
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
  .viewer-nav { top: auto; bottom: 1rem; transform: none; }
  .viewer-nav.prev { left: 1rem; }
  .viewer-nav.next { right: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
