:root {
  --black: #0c0c0c;
  --dark: #1e1e1e;
  --white: #ffffff;
  --gray: #bfbfbf;
  --gold: #cfaf6d;
  --gold-dark: #b8944a;
  --card: #1f1f1f;
  --line: #333333;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.15;
  margin: 0 0 0.55em;
  font-weight: 600;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  background: var(--gold);
  color: var(--black);
  padding: 8px 12px;
  z-index: 30;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(12, 12, 12, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 80px;
}

.brand img {
  height: 44px;
  width: auto;
}

.nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav a {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 10px;
}

.nav a:hover,
.nav a.is-active {
  color: var(--gold);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid transparent;
}

.btn:hover {
  text-decoration: none;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
}

.btn-gold:hover {
  background: var(--gold-dark);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.15) 0%, rgba(12, 12, 12, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.hero-lead,
.hero-units {
  max-width: 640px;
  color: var(--gray);
}

.hero-actions,
.academy-actions,
.unit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.about,
.services,
.brides,
.academy,
.units,
.gallery {
  padding: 72px 0;
}

.about-grid,
.brides-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.portrait img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.portrait figcaption {
  margin-top: 14px;
  color: var(--gray);
}

.portrait strong {
  display: block;
  color: var(--gold);
  margin-bottom: 6px;
}

.quote {
  margin: 40px auto 0;
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--gray);
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

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

.service-card,
.unit-card,
.academy-box {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.service-card img,
.unit-card img,
.brides-photos img,
.gallery-grid img {
  width: 100%;
  object-fit: cover;
}

.service-card img {
  height: 240px;
}

.service-body,
.unit-body {
  padding: 22px;
}

.service-body ul,
.brides ul {
  padding-left: 18px;
  color: var(--gray);
}

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
}

.pillars li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  color: var(--gold);
  font-size: 0.9rem;
}

.brides {
  background: var(--dark);
}

.brides-photos {
  display: grid;
  gap: 12px;
}

.brides-photos img {
  height: 250px;
  border-radius: 12px;
}

.note {
  color: var(--gray);
  font-size: 0.92rem;
}

.academy-box {
  padding: 40px;
}

.unit-card img {
  height: 280px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  height: 220px;
  border-radius: 12px;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 24px;
}

.footer-grid img {
  height: 42px;
  width: auto;
  margin-bottom: 12px;
}

.copy {
  text-align: center;
  color: var(--gray);
  font-size: 0.82rem;
  margin: 28px 0 0;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 25;
  background: #25d366;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-weight: 700;
  cursor: pointer;
}

.wa-menu {
  position: fixed;
  right: 18px;
  bottom: 70px;
  z-index: 25;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  display: grid;
  gap: 8px;
  min-width: 220px;
}

.wa-menu a {
  display: block;
  color: var(--white);
  padding: 10px 12px;
  border-radius: 8px;
}

.wa-menu a:hover {
  background: var(--dark);
  text-decoration: none;
  color: var(--gold);
}

@media (max-width: 980px) {
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: var(--black);
    border-bottom: 1px solid var(--line);
    padding: 12px 16px 20px;
  }

  .nav.is-open {
    display: block;
  }

  .nav ul {
    flex-direction: column;
  }

  .about-grid,
  .brides-grid,
  .service-grid,
  .units-grid,
  .gallery-grid,
  .footer-grid,
  .pillars {
    grid-template-columns: 1fr;
  }
}
