:root {
  --bg: #090909;
  --surface: rgba(255, 255, 255, 0.05);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f1ea;
  --muted: #b6afa5;
  --gold: #d6b98a;
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1240px;
  --transition: 0.35s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(214, 185, 138, 0.08), transparent 26%),
    radial-gradient(circle at 100% 10%, rgba(255,255,255,0.05), transparent 18%),
    linear-gradient(180deg, #060606 0%, #0b0b0b 100%);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, #fff 0.5px, transparent 0.6px),
    radial-gradient(circle at 80% 60%, #fff 0.5px, transparent 0.6px);
  background-size: 18px 18px, 22px 22px;
  z-index: -2;
}

.mouse-glow {
  position: fixed;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(214, 185, 138, 0.12), transparent 65%);
  filter: blur(16px);
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0.9;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 56px), var(--container));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(214,185,138,0.22), rgba(255,255,255,0.06));
  border: 1px solid rgba(214,185,138,0.22);
  box-shadow: 0 12px 28px rgba(214,185,138,0.12);
}

.logo-mark-inner {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d6b98a, #8f7855);
  color: #111;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.logo-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
}

.logo-copy span {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: #d7d0c7;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}

.nav-btn {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(214,185,138,0.25);
  background: rgba(214,185,138,0.08);
  color: #f8efe1;
  transition: transform var(--transition), background var(--transition);
}

.nav-btn:hover {
  transform: translateY(-2px);
  background: rgba(214,185,138,0.14);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.04);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 0 16px 16px;
  background: rgba(8,8,8,0.96);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  color: #d7d0c7;
}

.hero,
.page-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hero-media,
.hero-media img,
.page-hero-bg,
.page-hero-bg img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img,
.page-hero-bg img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(0.92) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.58) 42%, rgba(0,0,0,0.34) 100%),
    linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.56));
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 70px;
}

.hero-content-single {
  display: block;
}

.hero-copy-wide,
.page-hero-copy {
  padding-left: 72px;
  max-width: 980px;
}

.eyebrow,
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  color: #f0e6d8;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
}

.eyebrow::before,
.section-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff2dc);
  box-shadow: 0 0 14px rgba(214,185,138,0.5);
}

.hero-copy h1,
.page-hero-content h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  max-width: 900px;
}

.hero-copy h1 span,
.page-hero-content h1 span {
  color: var(--gold);
}

.hero-copy p,
.page-hero-content p {
  margin-top: 20px;
  max-width: 720px;
  color: #ddd3c7;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #d6b98a, #8f7855);
  color: #111;
  box-shadow: 0 18px 40px rgba(214,185,138,0.2);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: #fff;
}

.hero-bottom {
  position: relative;
  z-index: 2;
  padding-bottom: 36px;
}

.hero-bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.hero-bottom-grid > div {
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
}

.hero-bottom-grid span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-grid {
  display: grid;
  gap: 28px;
  align-items: center;
}

.section-grid-intro {
  grid-template-columns: 1fr 1fr;
}

.section-copy h2,
.feature-copy h2,
.editorial-copy h2,
.scope-copy h2,
.contact-copy h2,
.section-head h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
  margin-bottom: 14px;
}

.section-copy p,
.feature-copy p,
.editorial-copy p,
.scope-copy p,
.contact-copy p,
.section-head p {
  color: var(--muted);
}

.section-copy p + p,
.feature-copy p + p,
.editorial-copy p + p,
.scope-copy p + p {
  margin-top: 12px;
}

.image-stack {
  position: relative;
  min-height: 560px;
}

.image-card,
.wide-media,
.editorial-frame,
.mosaic-card {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.08);
}

.image-card img,
.wide-media img,
.editorial-frame img,
.mosaic-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-card:hover img,
.wide-media:hover img,
.editorial-frame:hover img,
.mosaic-card:hover img {
  transform: scale(1.04);
}

.image-card.tall {
  height: 520px;
}

.image-card.small {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 52%;
  height: 260px;
}

.floating {
  animation: floatCard 7s ease-in-out infinite;
}

.band-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.015));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 30px;
  align-items: center;
}

.wide-media {
  height: 620px;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: #e7ddd0;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff1d7);
}

.text-link {
  display: inline-block;
  margin-top: 22px;
  color: #f0dfc1;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
}

.editorial-points {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.point-card {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
}

.point-card strong {
  display: block;
  margin-bottom: 4px;
}

.point-card span {
  color: var(--muted);
}

.editorial-frame {
  position: relative;
  height: 700px;
}

.editorial-overlay-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(8,8,8,0.68);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
}

.editorial-overlay-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 4px;
}

.section-head {
  max-width: 860px;
  margin-bottom: 42px;
}

.center-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.timeline-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d6b98a, #8f7855);
  color: #111;
  font-weight: 800;
}

.timeline-item h3 {
  margin-bottom: 6px;
  font-size: 1.16rem;
}

.timeline-item p {
  color: var(--muted);
}

.scope-card {
  padding: 36px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(214,185,138,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(214,185,138,0.12);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.contact-row {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.contact-row + .contact-row {
  margin-top: 16px;
}

.contact-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.contact-row a:hover {
  color: #fff3df;
}

.footer {
  padding-top: 24px;
  background: rgba(255,255,255,0.015);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding-bottom: 22px;
}

.footer-brand {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  margin-bottom: 8px;
}

.footer p,
.footer-links a,
.footer-bottom {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (max-width: 1100px) {
  .section-grid-intro,
  .feature-layout,
  .editorial-grid,
  .contact-grid,
  .footer-grid,
  .hero-bottom-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-wide,
  .page-hero-copy {
    padding-left: 28px;
  }

  .wide-media,
  .editorial-frame {
    height: 520px;
  }
}

@media (max-width: 860px) {
  .nav-links,
  .nav-btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-content,
  .page-hero-content {
    padding: 100px 0 50px;
  }

  .hero-copy-wide,
  .page-hero-copy {
    padding-left: 0;
  }

  .section {
    padding: 74px 0;
  }

  .image-stack {
    min-height: auto;
  }

  .image-card.small {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
    height: 220px;
  }

  .wide-media,
  .editorial-frame {
    height: 320px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  .nav {
    min-height: 74px;
  }

  .hero-copy h1,
  .page-hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-copy p,
  .page-hero-content p {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .contact-card,
  .scope-card,
  .timeline-item {
    padding: 20px;
  }

  .hero-bottom-grid > div {
    padding: 16px;
  }
}