:root {
  --primary: #0c3b2e;
  --primary-dark: #07261e;
  --primary-mid: #165a45;
  --primary-soft: #e7f2ed;
  --gold: #c9a962;
  --gold-bright: #e0c57a;
  --gold-deep: #9a7b32;
  --ivory: #f7f3ea;
  --ivory-2: #efe8d8;
  --paper: #fffcf7;
  --text: #1a211e;
  --muted: #5c6561;
  --line: rgba(12, 59, 46, 0.12);
  --shadow: 0 18px 50px rgba(12, 59, 46, 0.12);
  --radius: 18px;
  --header-h: 86px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", "Segoe UI", sans-serif;
  --font-num: "Roboto", "Lato", "Courier New", monospace;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--ivory);
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--primary-dark);
  padding: 8px 14px;
  z-index: 10000;
}

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

.num {
  font-family: var(--font-num);
  letter-spacing: 0.02em;
}

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

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-block;
  color: var(--gold-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.18;
  color: var(--primary);
}

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

h2 {
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  margin-bottom: 14px;
}

h3 {
  font-size: 1.45rem;
}

p.lead {
  font-size: 1.08rem;
  color: var(--muted);
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

.header .brand-name,
.header .nav-links > li > a,
.header .nav-links > li > button {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.header.scrolled,
.header.menu-open {
  background: rgba(255, 252, 247, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(12, 59, 46, 0.08);
}

.header.scrolled .brand-name,
.header.scrolled .nav-links > li > a,
.header.scrolled .nav-links > li > button,
.header.menu-open .brand-name,
.header.menu-open .nav-links > li > a,
.header.menu-open .nav-links > li > button {
  color: var(--primary);
  text-shadow: none;
}

.header.scrolled .nav-toggle span,
.header.menu-open .nav-toggle span {
  background: var(--primary);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  z-index: 1002;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  background: rgba(201, 169, 98, 0.16);
}

.caret {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.8;
}

.dropdown,
.mega {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.22s ease;
  z-index: 50;
}

.mega {
  width: min(760px, 92vw);
  left: 50%;
  transform: translate(-40%, 10px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 18px;
  padding: 22px;
  max-height: min(70vh, 520px);
  overflow-y: auto;
}

.nav-links > li:hover > .dropdown,
.nav-links > li:focus-within > .dropdown,
.nav-links > li:hover > .mega,
.nav-links > li:focus-within > .mega,
.nav-links > li.open > .dropdown,
.nav-links > li.open > .mega {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links > li:hover > .mega,
.nav-links > li:focus-within > .mega,
.nav-links > li.open > .mega {
  transform: translate(-40%, 0);
}

.dropdown a,
.mega a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--primary) !important;
  text-shadow: none !important;
  font-size: 0.9rem;
}

.dropdown a:hover,
.mega a:hover {
  background: var(--primary-soft);
}

.mega .mega-title {
  grid-column: 1 / -1;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  padding: 0 10px 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 6px;
}

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

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  margin: 5px auto;
  transition: 0.25s ease;
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  width: 100%;
  height: calc(100vh - 0px);
  min-height: 620px;
  margin-top: calc(var(--header-h) * -1);
  position: relative;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: opacity 1s ease, visibility 1s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide img.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  animation: kenburns 18s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1.08) translateX(0);
  }
  to {
    transform: scale(1.18) translateX(-2%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 38, 30, 0.55) 0%, rgba(7, 38, 30, 0.42) 40%, rgba(7, 38, 30, 0.72) 100%),
    radial-gradient(ellipse at center, transparent 30%, rgba(7, 38, 30, 0.35) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 120px 24px 80px;
  max-width: none;
  margin: 0;
}

.hero-content .eyebrow {
  color: var(--gold-bright);
}

.hero-content h1,
.hero-content p {
  max-width: 900px;
}

.hero-content h1 {
  color: #fff;
  margin: 8px 0 18px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.hero-content p {
  font-size: 1.12rem;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-nav {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 6;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(6px);
  font-size: 1.3rem;
}

.hero-arrow.prev {
  left: 18px;
}

.hero-arrow.next {
  right: 18px;
}

.sparks {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
}

.spark {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold-bright);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 10px var(--gold);
  animation: sparkle 5.5s linear infinite;
}

@keyframes sparkle {
  0% {
    transform: translateY(20px) scale(0.3);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-90vh) scale(1);
    opacity: 0;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(180deg, #e0c57a, #c9a962);
  color: var(--primary-dark);
  box-shadow: 0 10px 24px rgba(201, 169, 98, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 16px 32px rgba(201, 169, 98, 0.45);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.btn-outline.dark {
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline.dark:hover,
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-mid);
}

.trust-bar {
  background: var(--primary);
  color: #fff;
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}

.trust-grid strong {
  display: block;
  font-family: var(--font-num);
  font-size: 1.7rem;
  color: var(--gold-bright);
}

.trust-grid span {
  font-size: 0.88rem;
  opacity: 0.85;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 460px;
  object-fit: contain;
  background: var(--ivory-2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
}

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

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(12, 59, 46, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-media {
  height: 210px;
  background: linear-gradient(180deg, #efe8d8, #e7f2ed);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}

.card-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: pointer;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  margin-bottom: 8px;
}

.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

.card-body a.more {
  display: inline-block;
  margin-top: 12px;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.9rem;
}

.values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.value {
  background: var(--paper);
  padding: 28px 22px;
  border-radius: var(--radius);
  border-top: 3px solid var(--gold);
  box-shadow: 0 8px 24px rgba(12, 59, 46, 0.05);
}

.value span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 14px;
}

.band {
  background: var(--primary);
  color: #fff;
  overflow: hidden;
}

.band h2,
.band h3 {
  color: #fff;
}

.band p {
  color: rgba(255, 255, 255, 0.84);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.page-hero {
  width: 100%;
  min-height: 380px;
  margin-top: calc(var(--header-h) * -1);
  padding: 170px 20px 90px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 38, 30, 0.55), rgba(7, 38, 30, 0.7));
}

.page-hero .inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.page-hero h1 {
  color: #fff;
}

.breadcrumb {
  font-size: 0.88rem;
  opacity: 0.85;
  margin-bottom: 10px;
}

.breadcrumb a {
  color: var(--gold-bright);
}

.list-check li {
  position: relative;
  padding-left: 28px;
  margin: 10px 0;
  color: var(--muted);
}

.list-check li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0;
  top: 9px;
}

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

.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}

.contact-card a {
  color: var(--primary);
  font-weight: 600;
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

.footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.82);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--gold-bright);
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.footer a:hover {
  color: var(--gold-bright);
}

.footer .brand-name {
  color: #fff;
}

.credit {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}

.credit a {
  color: var(--gold-bright);
}

.float-stack {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.08);
}

.float-btn.wa {
  background: #25d366;
}

.float-btn.call {
  background: var(--primary);
}

.float-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.float-btn::after {
  content: attr(data-tip);
  position: absolute;
  right: 62px;
  background: var(--primary-dark);
  color: #fff;
  font-size: 0.75rem;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-family: var(--font-num);
}

.float-btn:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(7, 38, 30, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: min(92vw, 1100px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox .close-x {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--primary);
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  animation: rise 0.8s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.08s;
}

.reveal:nth-child(3) {
  animation-delay: 0.16s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.float-y {
  animation: floaty 5s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.opp-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  background: var(--ivory-2);
  border-radius: var(--radius);
  padding: 10px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.chip {
  background: var(--primary-soft);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.note {
  background: #fff8e8;
  border-left: 4px solid var(--gold);
  padding: 14px 16px;
  border-radius: 8px;
  color: var(--muted);
  margin-top: 20px;
}

@media (max-width: 1024px) {
  .cards,
  .cards.four,
  .values,
  .split,
  .footer-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mega {
    width: 520px;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 74px;
  }

  .brand-name {
    font-size: 1.2rem;
  }

  .brand-name small {
    font-size: 0.55rem;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    height: 100vh;
    background: var(--paper);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 18px 24px;
    gap: 4px;
    overflow-y: auto;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links > li > a,
  .nav-links > li > button {
    color: var(--primary) !important;
    text-shadow: none !important;
    width: 100%;
    justify-content: space-between;
    padding: 12px 8px;
    font-size: 1rem;
  }

  .dropdown,
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none !important;
    display: none;
    width: 100%;
    box-shadow: none;
    border: 0;
    padding: 0 0 8px 12px;
    background: transparent;
    grid-template-columns: 1fr;
  }

  .nav-links > li.open > .dropdown,
  .nav-links > li.open > .mega {
    display: block;
  }

  .nav-links > li.open > .mega {
    display: grid;
    grid-template-columns: 1fr;
  }

  .split,
  .cards,
  .cards.four,
  .cards.two,
  .values,
  .footer-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .split img {
    height: 280px;
  }

  .hero {
    min-height: 560px;
  }

  .hero-arrow {
    display: none;
  }

  .float-stack {
    right: 10px;
    bottom: 12px;
  }

  .float-btn {
    width: 46px;
    height: 46px;
  }
}
