:root {
  --navy: #0a192f;
  --navy-deep: #06101f;
  --navy-soft: #132743;
  --gold: #c5a059;
  --gold-bright: #d4af37;
  --gold-soft: #e8d5a3;
  --ink: #142033;
  --muted: #5c6b7e;
  --paper: #f2f4f7;
  --white: #ffffff;
  --line: rgba(10, 25, 47, 0.1);
  --header-h: 4.4rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-script: "Great Vibes", cursive;
  --font-body: "Manrope", system-ui, sans-serif;
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(197, 160, 89, 0.08), transparent 55%),
    linear-gradient(180deg, #eef1f5 0%, var(--white) 28%, var(--paper) 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: var(--gold);
  color: var(--navy);
  padding: 0.6rem 1rem;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    backdrop-filter 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  min-width: 0;
}

.site-header.is-scrolled .brand-mark {
  color: var(--navy);
}

.brand-mark img {
  width: 2.75rem;
  height: 2.75rem;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  opacity: 0.78;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
}

.site-header.is-scrolled .site-nav a {
  color: var(--navy-soft);
}

.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.55rem 1rem;
  font-weight: 800 !important;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.35rem;
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle {
  border-color: var(--line);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--white);
}

.site-header.is-scrolled .nav-toggle span:not(.sr-only) {
  background: var(--navy);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 18s var(--ease) infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 16, 31, 0.92) 0%, rgba(10, 25, 47, 0.78) 48%, rgba(10, 25, 47, 0.45) 100%),
    linear-gradient(to top, rgba(6, 16, 31, 0.88) 0%, transparent 42%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image: radial-gradient(rgba(197, 160, 89, 0.35) 0.6px, transparent 0.7px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.hero-content {
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: calc(var(--header-h) + 2.5rem) 1.25rem 5.5rem;
  animation: rise 0.9s var(--ease) both;
}

.hero-logo {
  width: clamp(7rem, 16vw, 10.5rem);
  height: auto;
  margin-bottom: 1.1rem;
  filter: drop-shadow(0 10px 28px rgba(0, 0, 0, 0.35));
  animation: float-in 1.1s var(--ease) both;
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.95;
}

.hero-line {
  margin: 0.55rem 0 0;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-script {
  margin: 0.85rem 0 0;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--gold);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

.hero h1.hero-title,
.hero-title {
  margin: 1.1rem 0 0;
  max-width: 22ch;
  font-family: var(--font-script);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--gold);
}

.hero-lede {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-wave {
  position: absolute;
  right: -8%;
  bottom: -18%;
  width: min(58vw, 34rem);
  height: min(42vw, 24rem);
  border-radius: 50% 50% 0 50%;
  background: linear-gradient(135deg, transparent 30%, rgba(197, 160, 89, 0.22) 100%);
  transform: rotate(-12deg);
  pointer-events: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease),
    color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
}

.btn-gold:hover {
  background: var(--gold-bright);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-ghost-dark {
  border: 1px solid rgba(10, 25, 47, 0.2);
  color: var(--navy);
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) 1.25rem;
}

.section-head {
  max-width: 40rem;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-head h2,
.about-panel h2,
.mission-grid h2,
.contact-copy h2,
.featured-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  line-height: 1.15;
  color: var(--navy);
}

.lede {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.values-grid {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: var(--max);
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.values-grid li {
  padding: 1.4rem 1.1rem 1.5rem;
  text-align: center;
  border-top: 2px solid var(--gold);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(242, 244, 247, 0.65));
}

.value-icon {
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.value-icon svg {
  width: 100%;
  height: 100%;
}

.values-grid h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
}

.values-grid p {
  margin: 0.55rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured-service {
  max-width: var(--max);
  margin: 0 auto 1.5rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  min-height: 28rem;
  overflow: hidden;
  background: var(--navy);
  color: var(--white);
}

.featured-copy {
  padding: clamp(1.75rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-copy h3 {
  color: var(--white);
  margin-top: 0.35rem;
}

.featured-copy > p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0.9rem 0 0;
}

.check-list {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.check-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--gold-soft);
  font-weight: 600;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--gold);
}

.featured-visual {
  position: relative;
  min-height: 18rem;
}

.featured-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 25, 47, 0.55), transparent 45%);
}

.services-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.services-grid article {
  padding: 1.5rem 1.25rem 1.6rem;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.72);
}

.services-grid h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.services-grid p {
  margin: 0.65rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-panel {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.about-panel p {
  color: var(--muted);
  font-size: 1.02rem;
}

.about-pillars {
  background: var(--navy);
  color: var(--white);
  padding: 1.75rem 1.5rem;
}

.about-pillars > p {
  margin: 0 0 1rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-pillars ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.about-pillars li {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(197, 160, 89, 0.28);
  font-weight: 600;
}

.about-pillars li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.mission {
  background:
    linear-gradient(180deg, rgba(10, 25, 47, 0.03), transparent),
    radial-gradient(circle at 0% 100%, rgba(197, 160, 89, 0.12), transparent 40%);
}

.mission-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.mission-grid article {
  padding: 1.75rem 1.5rem 1.9rem;
  border: 1px solid rgba(197, 160, 89, 0.45);
  background: rgba(255, 255, 255, 0.78);
}

.mission-grid p {
  color: var(--muted);
}

.mission-quote {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  text-align: center;
  font-family: var(--font-script);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--gold);
}

.contact {
  padding-bottom: 5rem;
}

.contact-shell {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}

.contact-copy,
.contact-card {
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.contact-list > li > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list a,
.contact-list p {
  margin: 0.15rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--gold-soft);
}

.social-row {
  display: flex;
  gap: 1rem;
}

.contact-card {
  background:
    linear-gradient(160deg, rgba(197, 160, 89, 0.18), transparent 55%),
    var(--navy-soft);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.85rem;
  border-left: 1px solid rgba(197, 160, 89, 0.35);
}

.contact-card img {
  width: 5.5rem;
  height: auto;
}

.card-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
}

.card-script {
  margin: 0 0 0.5rem;
  font-family: var(--font-script);
  font-size: 1.55rem;
  color: var(--gold);
}

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.72);
  padding: 1.5rem 1.25rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-brand img {
  width: 2.5rem;
  height: auto;
}

.footer-brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.footer-brand span {
  display: block;
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-zoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .values-grid li:last-child {
    grid-column: 1 / -1;
  }

  .featured-service,
  .about-panel,
  .mission-grid,
  .contact-shell,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    border-left: 0;
    border-top: 1px solid rgba(197, 160, 89, 0.35);
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.75rem 1.25rem 1.25rem;
    background: rgba(6, 16, 31, 0.96);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  }

  .site-header.is-scrolled .site-nav {
    background: rgba(255, 255, 255, 0.98);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-header.is-scrolled .site-nav a {
    border-bottom-color: var(--line);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .hero-title {
    max-width: none;
  }
}

@media (max-width: 560px) {
  .values-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .values-grid li:last-child {
    grid-column: auto;
  }

  .brand-sub {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-media img,
  .hero-content,
  .hero-logo,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
