:root {
  --burgundy: #7a1d2b;
  --burgundy-dark: #5c1520;
  --burgundy-soft: #9a2a3c;
  --ink: #121417;
  --ink-2: #1c2128;
  --slate: #3a414b;
  --muted: #6b7280;
  --line: #e5e7eb;
  --paper: #f6f4f1;
  --white: #ffffff;
  --accent: #c4a574;
  --shadow: 0 18px 50px rgba(18, 20, 23, 0.12);
  --radius: 14px;
  --header-h: 96px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.topbar {
  background: var(--ink);
  color: #d7dbe0;
  font-size: 13.5px;
  letter-spacing: .02em;
}
.topbar .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 36px;
  flex-wrap: wrap;
}
.topbar a { color: #e8eaed; }
.topbar a:hover { color: #fff; }
.topbar span { opacity: .85; }

header.site {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-width: 0;
}
.logo img { display: none; }
.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--ink);
}
.brand-top {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--slate);
}
.brand-name {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--burgundy);
}
.brand-sub {
  margin-top: 3px;
  font-size: 12px;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > a, .drop > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  border-radius: 8px;
}
.nav > a:hover, .drop > button:hover,
.nav > a.active { color: var(--burgundy); }
.drop { position: relative; }
.drop-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 8px;
  display: none;
}
.drop:hover .drop-menu, .drop:focus-within .drop-menu { display: block; }
.drop-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 15px;
  color: var(--ink-2);
}
.drop-menu a:hover { background: var(--paper); color: var(--burgundy); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 0;
  cursor: pointer;
  transition: .2s ease;
}
.btn-primary { background: var(--burgundy); color: #fff; }
.btn-primary:hover { background: var(--burgundy-dark); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-outline {
  background: #fff;
  color: var(--burgundy);
  border: 1px solid var(--burgundy);
}
.btn-outline:hover { background: var(--burgundy); color: #fff; }
.nav-cta { margin-left: 8px; }
.burger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
}
.burger span {
  display: block; height: 2px; background: var(--ink);
  margin: 6px 11px; border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 78vh;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.1s ease;
}
.hero-slide.active { opacity: 1; }
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,13,16,.82) 0%, rgba(12,13,16,.45) 55%, rgba(12,13,16,.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 0 80px;
}
.kicker {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
}
.hero h1 {
  font-family: "Outfit", sans-serif;
  font-size: clamp(36px, 5.4vw, 68px);
  line-height: 1.05;
  font-weight: 700;
  max-width: 16ch;
  margin-bottom: 22px;
}
.hero p.lead {
  font-size: 20px;
  max-width: 58ch;
  color: #e6e8ec;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-dots {
  position: absolute; z-index: 3; left: 0; right: 0; bottom: 22px;
  display: flex; justify-content: center; gap: 8px;
}
.hero-dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.4); cursor: pointer;
}
.hero-dots button.active { background: #fff; width: 26px; border-radius: 8px; }

/* Sections */
section { padding: 88px 0; }
.section-head { max-width: 720px; margin-bottom: 40px; }
.section-head h2, .page-hero h1, h2 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.15;
}
h2 { font-size: clamp(28px, 3.2vw, 40px); margin-bottom: 14px; }
h3 { font-family: "Outfit", sans-serif; font-size: 22px; margin-bottom: 10px; }
.muted { color: var(--muted); }
.paper { background: var(--paper); }
.dark {
  background: var(--ink);
  color: #e8eaed;
}
.dark h2, .dark h3 { color: #fff; }
.dark .muted { color: #b4bac3; }

.grid-3, .grid-2, .grid-4 {
  display: grid;
  gap: 22px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18,20,23,.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card img { height: 190px; width: 100%; object-fit: cover; }
.card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.card-body p { color: var(--slate); margin-bottom: 16px; flex: 1; }
.link {
  color: var(--burgundy);
  font-weight: 700;
  font-size: 15px;
}
.link:hover { text-decoration: underline; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.stat {
  padding: 26px 20px;
  border-left: 3px solid var(--burgundy);
  background: #fff;
  border-radius: 0 12px 12px 0;
}
.stat b {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  color: var(--burgundy);
  margin-bottom: 4px;
}
.stat span { color: var(--slate); font-size: 15px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
}
.check li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
}
.check li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 14px; height: 14px;
  background: var(--burgundy);
  border-radius: 3px;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.2 11.6 2.8 8.2l1.2-1.2 2.2 2.2 5.8-5.8 1.2 1.2z'/></svg>") center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.2 11.6 2.8 8.2l1.2-1.2 2.2 2.2 5.8-5.8 1.2 1.2z'/></svg>") center / contain no-repeat;
}

.page-hero {
  background: var(--ink) center/cover no-repeat;
  color: #fff;
  padding: 86px 0 70px;
  position: relative;
}
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,13,16,.82), rgba(12,13,16,.4));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero p { max-width: 62ch; color: #dfe3e8; font-size: 19px; }

.gal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gal-item {
  margin: 0;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
}
.gal-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.gal-item:hover img { transform: scale(1.04); }
.gal-item figcaption { display: none; }
.lightbox {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(8,9,11,.92);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 82vh; object-fit: contain; border-radius: 8px; }
.lightbox p { display: none; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 14px;
  color: var(--slate);
}
@media (max-width: 900px) {
  .gal-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gal-grid { grid-template-columns: 1fr; }
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.step .num {
  font-family: "Outfit", sans-serif;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
}

.cta-band {
  background: linear-gradient(120deg, var(--burgundy-dark), var(--burgundy-soft));
  color: #fff;
  padding: 64px 0;
}
.cta-band h2 { color: #fff; }
.cta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

footer.site {
  background: #0d0f12;
  color: #c5cad1;
  padding: 56px 0 24px;
  font-size: 15px;
}
.foot-grid {
  display: grid;
  grid-template-columns: minmax(340px, 2.3fr) 0.85fr 0.85fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
footer h4 {
  color: #fff;
  margin: 0 0 14px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.35;
}
footer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
footer a:hover { color: #fff; }
.foot-brand {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.foot-logo {
  box-sizing: border-box;
  height: 82.5%;
  width: auto;
  max-height: 82.5%;
  object-fit: contain;
  object-position: left top;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 8px 10px;
  margin: 0;
}
.foot-addr {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.foot-addr h4 { margin-bottom: 0; }
.foot-name { white-space: nowrap; }
.foot-addr h4 { margin-bottom: 0; }
.foot-name { white-space: nowrap; }
.foot-addr p + p { margin-top: 0; }
.seo-box {
  margin: 8px 0 18px;
  color: #8b9096;
  font-size: 12px;
}
.seo-box summary {
  cursor: pointer;
  color: #6e7378;
  font-size: 12px;
}
.seo-box p { margin: 8px 0 0; line-height: 1.55; }

.legal {
  border-top: 1px solid #262b32;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #8b929c;
  font-size: 13.5px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-box {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-box strong { display: block; margin-bottom: 6px; }
.contact-box a { color: var(--burgundy); font-weight: 700; }
.contact-box a.btn,
.contact-box a.btn-primary { color: #fff; }

.job {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
.job h3 { margin-bottom: 6px; }
.job .tag { display: none; }
.tag {
  display: inline-block;
  background: var(--paper);
  color: var(--slate);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 13px;
  margin-right: 6px;
  margin-bottom: 10px;
}

.prose p { margin-bottom: 14px; color: var(--slate); }
.prose h2 { margin-top: 8px; }

@media (max-width: 980px) {
  .grid-3, .grid-4, .stat-row, .split, .foot-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(36px + var(--header-h));
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 12px 20px 20px;
    align-items: stretch;
  }
  .drop-menu { position: static; box-shadow: none; border: 0; display: block; }
  .burger { display: block; }
  header.site { position: sticky; }
  .logo img { height: 56px; }
  .brand-name { font-size: 16px; }
  .brand-sub { display: none; }
}
@media (max-width: 700px) {
  .grid-3, .grid-4, .stat-row, .split, .foot-grid, .contact-grid, .grid-2 { grid-template-columns: 1fr; }
  .hero { min-height: 88vh; }
  .hero-content { min-height: 88vh; }
  .split img { height: 260px; }
  section { padding: 64px 0; }
  .foot-brand { flex-direction: column; align-items: flex-start; }
  .foot-logo { height: 96px; width: auto; max-height: none; }
}

.dispo-form { margin-top: 16px; display: grid; gap: 12px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dispo-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.dispo-form input, .dispo-form select, .dispo-form textarea {
  font: inherit; font-weight: 400; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 8px; width: 100%;
}
.dispo-form button { justify-self: start; margin-top: 6px; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
