:root {
  --navy: #0b1220;
  --navy-2: #111a2d;
  --navy-3: #19243a;
  --paper: #f4f1e9;
  --paper-2: #e9e3d8;
  --ink: #101724;
  --muted: #6d7480;
  --gold: #c5a46d;
  --gold-soft: #e1cfac;
  --white: #ffffff;
  --line-dark: rgba(255, 255, 255, 0.12);
  --line-light: rgba(16, 23, 36, 0.13);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  z-index: 100;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.03) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(0,0,0,.03) 0 1px, transparent 1px);
  background-size: 16px 16px, 22px 22px;
  mix-blend-mode: soft-light;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255,255,255,.08);
  background: rgba(11, 18, 32, .74);
  backdrop-filter: blur(16px);
}

.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  color: var(--white);
}

/* O monograma se alinha pelo centro, não pelo flex-end dos textos: a seta sobe
   acima da altura das maiúsculas e encostar a base dele na linha do "CRVH"
   deixaria o conjunto visualmente caído. */
.brand-logo {
  display: block;
  align-self: center;
  margin-right: 2px;
}

.brand-logo img {
  display: block;
  height: 36px;
  width: auto;
}

.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
}

.brand-sub {
  font-size: 9px;
  letter-spacing: .32em;
  padding-bottom: 3px;
  color: var(--gold-soft);
}

.nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: rgba(255,255,255,.78);
  font-size: 13px;
}

.nav a {
  transition: color .2s ease;
}

.nav a:hover {
  color: var(--white);
}

.nav-cta {
  border: 1px solid rgba(197,164,109,.7);
  padding: 10px 16px;
  color: var(--gold-soft) !important;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: white;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 35%, rgba(197,164,109,.10), transparent 30%),
    linear-gradient(135deg, #09111f 0%, #0e1728 54%, #111827 100%);
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.16fr .84fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 44px;
  height: 1px;
  background: var(--gold);
}

.hero h1,
.section h2,
.contact-section h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(54px, 7vw, 94px);
}

.hero h1 span {
  color: var(--gold-soft);
}

.hero-text {
  max-width: 620px;
  margin: 30px 0 0;
  color: rgba(255,255,255,.7);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 40px;
}

.button {
  min-width: 162px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  transition: transform .2s ease, background .2s ease;
}

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

.button-primary {
  background: var(--gold-soft);
  color: #0c1422;
}

.button-ghost {
  border: 1px solid rgba(255,255,255,.28);
  color: white;
}

.hero-panel {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  backdrop-filter: blur(10px);
  padding: 26px;
  overflow: hidden;
}

.panel-label {
  font-size: 10px;
  letter-spacing: .28em;
  color: rgba(255,255,255,.45);
}

.panel-graphic {
  position: absolute;
  inset: 64px 0 64px;
  display: grid;
  place-items: center;
}

.panel-axis {
  position: absolute;
  width: 1px;
  height: 76%;
  background: linear-gradient(to bottom, transparent, rgba(197,164,109,.65), transparent);
}

.panel-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(197,164,109,.28);
}

.panel-ring-1 {
  width: 230px;
  height: 230px;
}

.panel-ring-2 {
  width: 330px;
  height: 330px;
  border-style: dashed;
  animation: rotate 24s linear infinite;
}

.panel-core {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(197,164,109,.8);
  background: rgba(197,164,109,.08);
  font-family: "Playfair Display", serif;
  font-size: 46px;
  color: var(--gold-soft);
}

.panel-footer {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,.44);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(197,164,109,.08);
  border-radius: 50%;
}

.hero-orbit-one {
  width: 680px;
  height: 680px;
  right: -270px;
  top: -200px;
}

.hero-orbit-two {
  width: 420px;
  height: 420px;
  left: -210px;
  bottom: -160px;
}

.hero-footer {
  position: relative;
  z-index: 2;
  margin-top: 92px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: rgba(255,255,255,.38);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.section-light {
  background: var(--paper);
}

.section-dark {
  background: var(--navy);
  color: white;
}

.split-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 110px;
}

.section-kicker {
  margin-bottom: 20px;
  color: #927a53;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--gold-soft);
}

.section h2,
.contact-section h2 {
  font-size: clamp(40px, 5vw, 68px);
}

.section-copy {
  padding-top: 24px;
}

.section-copy p {
  margin: 0 0 24px;
  color: #616975;
}

.section-copy .lead {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.55;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading p {
  margin: 0 0 4px;
  color: rgba(255,255,255,.55);
}

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

.feature-card {
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,.012));
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(197,164,109,.5);
}

.card-index {
  color: rgba(255,255,255,.35);
  font-size: 10px;
  letter-spacing: .18em;
}

.card-icon {
  margin: auto 0 34px;
  color: var(--gold-soft);
  font-size: 35px;
  font-weight: 300;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
}

.feature-card p {
  margin: 0;
  color: rgba(255,255,255,.53);
  font-size: 14px;
}

.principles-section {
  background: #f0ece3;
}

.principles-intro {
  max-width: 760px;
  margin-bottom: 62px;
}

.principles-list {
  border-top: 1px solid var(--line-light);
}

.principle-item {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 32px 0;
  border-bottom: 1px solid var(--line-light);
}

.principle-number {
  color: #9c8258;
  font-size: 11px;
  letter-spacing: .14em;
}

.principle-item h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
}

.principle-item p {
  margin: 0;
  color: #6b7078;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 25%, rgba(197,164,109,.09), transparent 24%),
    #0d1524;
  color: white;
  padding: 105px 0;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 100px;
  align-items: center;
}

.contact-copy p {
  max-width: 600px;
  margin-top: 24px;
  color: rgba(255,255,255,.55);
}

.contact-card {
  border: 1px solid rgba(255,255,255,.12);
  padding: 34px;
  background: rgba(255,255,255,.025);
}

.contact-small {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.4);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--gold-soft);
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 3vw, 31px);
}

.contact-divider {
  height: 1px;
  background: rgba(255,255,255,.1);
  margin: 26px 0;
}

.contact-status {
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.contact-status i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #79a47e;
}

.site-footer {
  background: #080e18;
  color: white;
}

.footer-inner {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand {
  transform: scale(.88);
  transform-origin: left center;
}

.footer-inner p {
  margin: 0;
  color: rgba(255,255,255,.38);
  font-size: 11px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay {
  transition-delay: .1s;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 900px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    height: calc(100vh - 82px);
    background: rgba(8,14,24,.98);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 34px 20px;
    font-size: 20px;
  }

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

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-grid,
  .split-layout,
  .section-heading,
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-panel {
    min-height: 360px;
  }

  .hero-footer {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 270px;
  }

  .section {
    padding: 90px 0;
  }

  .principle-item {
    grid-template-columns: 54px 1fr;
    gap: 20px;
  }

  .principle-item p {
    grid-column: 2;
  }
}

@media (max-width: 580px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    height: 72px;
  }

  .brand-mark {
    font-size: 25px;
  }

  .brand-logo img {
    height: 30px;
  }

  .nav {
    top: 72px;
    height: calc(100vh - 72px);
  }

  .hero {
    padding-top: 124px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(46px, 13vw, 64px);
  }

  .hero-text {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-panel {
    min-height: 320px;
  }

  .panel-ring-1 {
    width: 180px;
    height: 180px;
  }

  .panel-ring-2 {
    width: 250px;
    height: 250px;
  }

  .panel-core {
    width: 92px;
    height: 92px;
    font-size: 38px;
  }

  .panel-footer {
    gap: 10px;
    flex-wrap: wrap;
  }

  .hero-footer {
    margin-top: 58px;
  }

  .section h2,
  .contact-section h2 {
    font-size: 42px;
  }

  .section-copy .lead {
    font-size: 19px;
  }

  .principle-item {
    grid-template-columns: 42px 1fr;
  }

  .principle-item h3 {
    font-size: 25px;
  }

  .footer-inner {
    padding: 26px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* CRVH supplied visual assets */
.hero-image-panel {
  padding: 0;
  min-height: 500px;
  background: #09111f;
}

.hero-image-panel > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,12,21,.05) 40%, rgba(7,12,21,.82) 100%);
}

.hero-image-panel .panel-label,
.hero-image-panel .panel-footer {
  z-index: 2;
}

.hero-image-panel .panel-label {
  position: absolute;
  top: 24px;
  left: 26px;
}

.about-logo-card {
  position: relative;
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid rgba(16,23,36,.12);
  aspect-ratio: 4 / 3;
  background: radial-gradient(118% 140% at 50% 0%, var(--navy-3) 0%, var(--navy-2) 52%, var(--navy) 100%);
  box-shadow: 0 24px 55px rgba(10,15,25,.12);
}

/* gold hairline echoing the plaque in the hero image */
.about-logo-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(197,164,109,.22);
  pointer-events: none;
}

/* <picture> is inline by default and would collapse the card's fixed height */
.about-logo-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-logo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 66px 70px;
  filter: drop-shadow(0 16px 28px rgba(0,0,0,.45));
}

@media (max-width: 900px) {
  .hero-image-panel { min-height: 420px; }
  .about-logo-card img { padding: 56px 58px; }
}

@media (max-width: 580px) {
  .hero-image-panel { min-height: 340px; }
  .about-logo-card::after { inset: 10px; }
  .about-logo-card img { padding: 42px 40px; }
}
