:root {
  --midnight: #0D1B2A;
  --midnight-deep: #091521;
  --gold: #B5915A;
  --stone: #DCDBD1;
  --ivory: #F7F5F1;
  --graphite: #1B1B1B;
  --muted: #6a6b68;
  --line: rgba(181, 145, 90, 0.38);
  --serif: "Fraunces", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--graphite);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
}

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

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

.site-header {
  align-items: center;
  background: rgba(9, 21, 33, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(247, 245, 241, 0.08);
  color: var(--ivory);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 22px 54px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1000;
}

.brand,
.nav {
  align-items: center;
  display: flex;
}

.brand {
  flex: 0 0 auto;
  gap: 14px;
  font-family: var(--serif);
  font-size: 27px;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.nav {
  column-gap: clamp(14px, 2.8vw, 46px);
  flex: 1 1 auto;
  flex-wrap: wrap;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 700;
  justify-content: flex-end;
  letter-spacing: clamp(1.8px, 0.22vw, 3px);
  line-height: 1.3;
  row-gap: 12px;
  text-transform: uppercase;
}

.nav a {
  opacity: 0.92;
}

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

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(247, 245, 241, 0.28);
  border-radius: 0;
  color: var(--ivory);
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  padding: 0;
  position: relative;
  width: 46px;
}

.menu-toggle span:not(.sr-only) {
  background: currentColor;
  display: block;
  height: 1px;
  position: absolute;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 18px;
}

.menu-toggle span:nth-child(2) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(4) {
  transform: translateY(6px);
}

.site-header.is-open .menu-toggle span:nth-child(2) {
  transform: rotate(45deg);
}

.site-header.is-open .menu-toggle span:nth-child(3) {
  opacity: 0;
}

.site-header.is-open .menu-toggle span:nth-child(4) {
  transform: rotate(-45deg);
}

main > section,
.footer {
  scroll-margin-top: 24px;
}

.mark {
  background: url("assets/faus-golden.png") center 42% / 360% auto no-repeat;
  border-radius: 50%;
  display: inline-block;
}

.mark-small {
  height: 46px;
  width: 46px;
}

.mark-large {
  height: 82px;
  width: 82px;
}

.mark-footer {
  height: 38px;
  width: 38px;
}

.icon-sprite {
  height: 0;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.hero {
  align-items: center;
  background: var(--midnight-deep);
  color: var(--ivory);
  display: grid;
  min-height: 790px;
  overflow: hidden;
  padding: 130px 24px 80px;
  position: relative;
  text-align: center;
}

.hero::before,
.hero::after {
  content: "";
  inset: 0;
  position: absolute;
}

.hero::before {
  background: url("assets/hero-mediterranean-horizon.png") center center / cover no-repeat;
  transform: scale(1.12);
  animation: heroKenBurns 16s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero::after {
  background:
    linear-gradient(180deg, rgba(9, 21, 33, 0.45) 0%, rgba(9, 21, 33, 0.15) 45%, rgba(9, 21, 33, 0.82) 100%),
    linear-gradient(90deg, rgba(9, 21, 33, 0.86), rgba(9, 21, 33, 0.04), rgba(9, 21, 33, 0.68));
  pointer-events: none;
}

.hero-content {
  margin: auto;
  max-width: 760px;
  position: relative;
  transform: translateY(30px);
  z-index: 1;
}

.hero-content .mark-large,
.hero-content h1,
.hero-content .kicker,
.hero-content .hero-copy {
  animation: heroRise 1.2s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.hero-content .mark-large { animation-delay: 0.15s; }
.hero-content h1 { animation-delay: 0.35s; }
.hero-content .kicker { animation-delay: 0.95s; }
.hero-content .hero-copy { animation-delay: 1.15s; }

.hero-content .rule {
  animation: heroRuleDraw 1.1s cubic-bezier(0.22, 0.61, 0.36, 1) 0.7s both;
  transform-origin: center;
}

@keyframes heroKenBurns {
  from { transform: scale(1.12); }
  to   { transform: scale(1.02); }
}

@keyframes heroRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroRuleDraw {
  from { opacity: 0; transform: scaleX(0); }
  to   { opacity: 1; transform: scaleX(1); }
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
}

h1 {
  font-size: clamp(48px, 7vw, 76px);
  letter-spacing: 14px;
  margin-top: 30px;
  text-transform: uppercase;
}

h2 {
  color: var(--graphite);
  font-size: clamp(34px, 3vw, 44px);
}

.rule,
.eyebrow::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 1px;
}

.rule {
  margin: 22px auto 24px;
  width: 76px;
}

.kicker,
.eyebrow,
h3,
.footer-title {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.kicker {
  margin: 0 0 28px;
}

.hero-copy {
  font-size: 18px;
  margin: 0;
}

.scroll-cue {
  animation: scrollCueFade 1s ease-out 1.6s both;
  border-bottom: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  bottom: 60px;
  height: 28px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%) rotate(45deg);
  width: 28px;
  z-index: 1;
}

@keyframes scrollCueFade {
  from { opacity: 0; }
  to   { opacity: 0.8; }
}

.split-section {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1fr);
}

.section-copy {
  align-self: center;
  max-width: 560px;
  padding: 74px 7vw;
}

.eyebrow {
  margin: 0 0 28px;
}

.eyebrow::after {
  margin-top: 12px;
  width: 66px;
}

.section-copy p:not(.eyebrow),
.founder-copy p:not(.eyebrow),
.approach-copy p:not(.eyebrow),
.heritage-copy p:not(.eyebrow),
.footer p,
.contact-list,
.focus-card p,
.view-card p,
.approach-grid p {
  font-size: 14px;
}

.section-image {
  display: flex;
}

.section-image img {
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  width: 100%;
}

.founder {
  background: var(--ivory);
}

.founder-feature {
  align-items: center;
  display: grid;
  gap: clamp(42px, 6vw, 94px);
  grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
  margin: 0 auto;
  max-width: 1280px;
  padding: 82px 7vw 84px;
}

.founder-copy {
  max-width: 500px;
}

.founder-copy h2 {
  color: var(--midnight);
  font-size: clamp(38px, 4vw, 58px);
}

.founder-copy p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.7;
  margin: 26px 0 0;
}

.founder-copy .signature {
  height: auto;
  margin-top: 30px;
  max-width: 230px;
  mix-blend-mode: multiply;
  width: 58%;
}

.founder-image {
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(9, 21, 33, 0.16);
  overflow: hidden;
}

.founder-image img {
  aspect-ratio: 1.3 / 1;
  height: 100%;
  object-fit: cover;
  object-position: 52% 45%;
}

.focus {
  background: var(--stone);
  padding: 68px 7vw 72px;
}

.section-heading {
  margin: 0 auto 46px;
  max-width: 560px;
  text-align: center;
}

.section-heading .eyebrow::after {
  margin-left: auto;
  margin-right: auto;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1320px;
}

.focus-card {
  border-left: 1px solid rgba(13, 27, 42, 0.15);
  padding: 0 24px;
  text-align: center;
}

.focus-card:first-child {
  border-left: 0;
}

.focus-card h3,
.approach-grid h3 {
  color: var(--graphite);
  font-size: 12px;
  margin: 18px 0 10px;
}

.focus-card p {
  margin: 0;
}

.view {
  background: var(--ivory);
  padding: 76px 7vw 84px;
}

.view-intro {
  display: grid;
  gap: clamp(34px, 5vw, 78px);
  grid-template-columns: minmax(280px, 0.78fr) minmax(420px, 1.22fr);
  margin: 0 auto 58px;
  max-width: 1180px;
}

.view-intro h2 {
  color: var(--midnight);
}

.view-copy p {
  font-size: 15px;
  margin: 0;
  max-width: 720px;
}

.view-copy p + p {
  margin-top: 18px;
}

.view-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  max-width: 1180px;
}

.view-card {
  border-left: 1px solid rgba(13, 27, 42, 0.15);
  padding: 0 42px;
  text-align: center;
}

.view-card:first-child {
  border-left: 0;
}

.view-card h3 {
  color: var(--graphite);
  font-size: 12px;
  margin: 18px 0 10px;
}

.view-card p {
  margin: 0;
}

.icon,
.mini-icon {
  color: var(--gold);
  display: inline-block;
  fill: none;
  height: 54px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  width: 54px;
}

.approach {
  background: var(--midnight);
  color: var(--ivory);
  display: grid;
  gap: 80px;
  grid-template-columns: minmax(280px, 440px) 1fr;
  overflow: hidden;
  padding: 76px 7vw 90px;
  position: relative;
}

.approach h2 {
  color: var(--ivory);
}

.approach-copy {
  max-width: 440px;
  position: relative;
  z-index: 1;
}

.approach-copy p:not(.eyebrow) {
  margin-bottom: 30px;
}

.outline-button {
  border: 1px solid var(--gold);
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 3px;
  min-width: 150px;
  padding: 13px 22px;
  text-transform: uppercase;
}

.outline-button:hover {
  background: var(--gold);
  color: var(--midnight);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.approach-grid article {
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 20px;
  grid-template-columns: 58px 1fr;
  padding: 34px 42px;
}

.approach-grid article:nth-child(-n + 2) {
  border-top: 0;
}

.approach-grid h3 {
  color: var(--ivory);
  margin-top: 0;
}

.approach-grid p {
  margin: 0;
}

.mini-icon {
  height: 54px;
  width: 54px;
}

.pattern {
  background-image:
    linear-gradient(45deg, transparent 48%, rgba(181, 145, 90, 0.18) 49%, rgba(181, 145, 90, 0.18) 51%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, rgba(181, 145, 90, 0.18) 49%, rgba(181, 145, 90, 0.18) 51%, transparent 52%);
  background-size: 58px 58px;
  bottom: -80px;
  opacity: 0.75;
  position: absolute;
  right: -34px;
  top: 0;
  width: 210px;
}

.heritage {
  min-height: clamp(500px, 34vw, 620px);
  overflow: hidden;
  position: relative;
}

.heritage img {
  height: clamp(500px, 34vw, 620px);
  object-fit: cover;
}

.heritage::after {
  background: linear-gradient(90deg, rgba(247, 245, 241, 0.98) 0%, rgba(247, 245, 241, 0.94) 34%, rgba(247, 245, 241, 0.56) 58%, rgba(247, 245, 241, 0.08) 76%, transparent 100%);
  content: "";
  inset: 0;
  position: absolute;
}

.heritage-copy {
  left: 7vw;
  max-width: min(640px, 54vw);
  position: absolute;
  top: clamp(76px, 6vw, 108px);
  z-index: 1;
}

.heritage-copy h2 {
  font-size: clamp(34px, 3.4vw, 52px);
  max-width: 660px;
}

.heritage-copy p:not(.eyebrow) {
  max-width: 500px;
}

.footer {
  background: var(--midnight);
  color: var(--ivory);
  padding: 58px 7vw 26px;
}

.footer-grid {
  display: grid;
  gap: 54px;
  grid-template-columns: 1.35fr 1fr 1fr;
  margin: 0 auto;
  max-width: 1220px;
}

.footer-brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 4px;
  margin: 20px 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.footer-brand p {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-title {
  color: var(--ivory);
  margin: 0 0 16px;
}

.footer-title::after {
  background: var(--gold);
  content: "";
  display: block;
  height: 1px;
  margin-top: 12px;
  width: 60px;
}

.contact-list {
  display: grid;
  font-style: normal;
  gap: 22px;
  padding-top: 47px;
}

.signup {
  border: 1px solid var(--gold);
  display: grid;
  grid-template-columns: 1fr 52px;
  height: 48px;
  margin-top: 22px;
}

.signup input {
  background: transparent;
  border: 0;
  color: var(--ivory);
  font: inherit;
  min-width: 0;
  padding: 0 18px;
}

.signup button {
  background: var(--gold);
  border: 0;
  color: var(--ivory);
  cursor: pointer;
  font-size: 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 219, 209, 0.18);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin: 48px auto 0;
  max-width: 1220px;
  padding-top: 24px;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.18s; }
.reveal-delay-3 { transition-delay: 0.28s; }
.reveal-delay-4 { transition-delay: 0.38s; }

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-content .mark-large,
  .hero-content h1,
  .hero-content .rule,
  .hero-content .kicker,
  .hero-content .hero-copy,
  .scroll-cue {
    animation: none;
  }

  .hero::before { transform: none; }

  .hero-content .mark-large,
  .hero-content h1,
  .hero-content .kicker,
  .hero-content .hero-copy,
  .hero-content .rule {
    opacity: 1;
    transform: none;
  }

  .scroll-cue {
    opacity: 0.8;
    transform: translateX(-50%) rotate(45deg);
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: center;
    gap: 24px;
    padding: 24px;
  }

  .nav {
    column-gap: 18px;
    letter-spacing: 2px;
    max-width: 680px;
    row-gap: 10px;
  }

  .split-section,
  .approach,
  .view-intro,
  .founder-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    max-width: none;
  }

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

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

  .focus-card:nth-child(odd) {
    border-left: 0;
  }

  .view-card {
    border-left: 0;
    border-top: 1px solid rgba(13, 27, 42, 0.15);
    padding: 32px;
  }

  .view-card:first-child {
    border-top: 0;
  }

  .focus-card {
    border-top: 1px solid rgba(13, 27, 42, 0.15);
    padding: 32px;
  }

  .focus-card:nth-child(-n + 2) {
    border-top: 0;
  }

  .contact-list {
    padding-top: 0;
  }
}

@media (max-width: 700px) {
  .site-header {
    align-items: center;
    flex-direction: row;
    padding: 18px 20px;
  }

  .brand {
    font-size: 18px;
    letter-spacing: 3px;
  }

  .nav {
    align-items: flex-start;
    background: var(--midnight-deep);
    border-bottom: 1px solid rgba(247, 245, 241, 0.1);
    border-top: 1px solid rgba(247, 245, 241, 0.08);
    flex-direction: column;
    flex-wrap: nowrap;
    font-size: 10px;
    justify-content: flex-start;
    left: 0;
    max-width: none;
    opacity: 0;
    padding: 20px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .site-header.is-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 4px 0;
  }

  .menu-toggle {
    display: flex;
  }

  main > section,
  .footer {
    scroll-margin-top: 58px;
  }

  .heritage {
    scroll-margin-top: 0;
  }

  .hero {
    min-height: 760px;
    padding-top: 190px;
  }

  h1 {
    letter-spacing: 8px;
  }

  h2 {
    font-size: 36px;
  }

  .split-section,
  .focus,
  .view,
  .founder-feature,
  .approach,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .founder-feature {
    gap: 34px;
    padding-bottom: 44px;
    padding-top: 56px;
  }

  .founder-copy h2 {
    font-size: 38px;
  }

  .founder-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .founder-image img {
    aspect-ratio: 1 / 1;
    object-position: 52% 42%;
  }

  .section-copy {
    padding: 56px 0;
  }

  .split-section .section-image {
    margin-left: calc(50% - 50vw);
    width: 100vw;
  }

  .split-section .section-image img {
    aspect-ratio: 3 / 2;
    height: auto;
    min-height: 0;
  }

  .focus-grid,
  .view-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .focus-card,
  .focus-card:nth-child(-n + 2),
  .view-card,
  .approach-grid article,
  .approach-grid article:nth-child(-n + 2) {
    border-left: 0;
    border-top: 1px solid rgba(13, 27, 42, 0.15);
  }

  .focus-card:first-child,
  .view-card:first-child,
  .approach-grid article:first-child {
    border-top: 0;
  }

  .approach-grid article {
    grid-template-columns: 48px 1fr;
    padding: 26px 0;
  }

  .heritage img {
    aspect-ratio: 4 / 3;
    height: auto;
    object-position: 58% 50%;
  }

  .heritage::after {
    display: none;
  }

  .heritage {
    background: var(--ivory);
    display: flex;
    flex-direction: column-reverse;
    min-height: 0;
  }

  .heritage-copy {
    left: auto;
    max-width: none;
    padding: 64px 24px 42px;
    position: relative;
    right: auto;
    top: auto;
  }

  .heritage-copy p:not(.eyebrow) {
    max-width: 34rem;
  }

  .footer-bottom {
    gap: 14px;
    flex-direction: column;
  }
}
