@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500&family=Outfit:wght@300;400;500&display=swap");

:root {
  --navy: #062640;
  --navy-deep: #031827;
  --navy-light: #0c3b5b;
  --ivory: #f2d8b4;
  --ivory-soft: #f7e9d5;
  --line: rgba(242, 216, 180, 0.2);
  --muted: rgba(247, 233, 213, 0.62);
  --pad: clamp(24px, 6vw, 100px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--navy-deep); }
body { margin: 0; color: var(--ivory-soft); background: var(--navy); font-family: "Outfit", "Noto Sans SC", sans-serif; font-weight: 300; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
.page-noise { position: fixed; inset: 0; z-index: 20; pointer-events: none; opacity: .025; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E"); }

.site-header { position: fixed; z-index: 15; top: 0; left: 0; width: 100%; height: 94px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: .35s ease; }
.site-header.is-scrolled { height: 72px; background: rgba(3, 24, 39, .82); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { width: 46px; }
.brand span { display: flex; flex-direction: column; gap: 3px; }
.brand strong { font-size: 15px; font-weight: 400; letter-spacing: .16em; }
.brand small { font-size: 8px; letter-spacing: .28em; opacity: .72; }
.site-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 48px); }
.site-nav a { position: relative; font-size: 11px; letter-spacing: .08em; padding: 28px 0; }
.site-nav a:after { content: ""; position: absolute; left: 0; bottom: 19px; width: 0; height: 1px; background: var(--ivory); transition: width .3s; }
.site-nav a:hover:after, .site-nav a.is-active:after { width: 100%; }
.site-nav em { display: block; margin-top: 4px; color: var(--muted); font-size: 8px; font-style: normal; letter-spacing: .18em; text-transform: uppercase; }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 12px; }
.menu-toggle span { display: block; height: 1px; background: var(--ivory); margin: 6px 0; }

.hero { min-height: 100svh; position: relative; overflow: hidden; display: flex; align-items: flex-end; padding: 160px var(--pad) clamp(110px, 14vh, 160px); background: var(--navy-deep); }
.hero-image { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,24,39,.97) 0%, rgba(3,24,39,.55) 48%, rgba(3,24,39,.25)), linear-gradient(0deg, var(--navy-deep), transparent 40%), url("https://images.unsplash.com/photo-1446776811953-b23d57bd21aa?auto=format&fit=crop&w=2200&q=85") center/cover; animation: drift 20s ease-in-out infinite alternate; }
.hero:after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 70% 35%, transparent 0, rgba(3,24,39,.12) 36%, rgba(3,24,39,.7) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.kicker { margin: 0 0 24px; color: var(--ivory); font-size: 10px; letter-spacing: .27em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 28px; font-size: clamp(58px, 8.4vw, 142px); font-weight: 300; line-height: .98; letter-spacing: -.07em; }
.hero-intro { margin: 0; max-width: 480px; color: var(--muted); font-size: clamp(14px, 1.3vw, 18px); letter-spacing: .08em; }
.horizon { position: absolute; z-index: 1; top: 43%; right: -22%; width: 72%; aspect-ratio: 2/1; border-top: 1px solid var(--ivory); border-radius: 50%; opacity: .7; filter: drop-shadow(0 0 8px rgba(242,216,180,.65)); animation: horizon-in 2.5s ease-out both; }
.stars i { position: absolute; z-index: 2; width: 15px; height: 15px; top: 28%; right: 28%; background: var(--ivory); transform: rotate(45deg); animation: twinkle 3s ease-in-out infinite; clip-path: polygon(50% 0, 61% 39%, 100% 50%, 61% 61%, 50% 100%, 39% 61%, 0 50%, 39% 39%); }
.stars i:nth-child(2) { width: 38px; height: 38px; top: 34%; right: 20%; animation-delay: .8s; }
.stars i:nth-child(3) { width: 9px; height: 9px; top: 23%; right: 17%; animation-delay: 1.5s; }
.stars i:nth-child(4) { width: 6px; height: 6px; top: 18%; right: 33%; animation-delay: 2.2s; }
.scroll-cue { position: absolute; z-index: 3; right: var(--pad); bottom: 45px; display: flex; align-items: center; gap: 15px; font-size: 9px; letter-spacing: .18em; }
.scroll-cue i { width: 60px; height: 1px; background: var(--ivory); transform-origin: right; animation: cue 2s ease-in-out infinite; }

.section { padding: clamp(110px, 15vw, 220px) var(--pad); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 170px); }
.section-heading h2, .strategy h2, .contact h2 { margin: 0; font-size: clamp(42px, 6vw, 94px); font-weight: 300; line-height: 1.08; letter-spacing: -.06em; }
.about { background: var(--ivory-soft); color: var(--navy-deep); }
.about .kicker { color: var(--navy-light); }
.about-copy { align-self: end; max-width: 680px; }
.about-copy .lead { font-size: clamp(22px, 2.6vw, 38px); line-height: 1.45; letter-spacing: -.03em; }
.about-copy > p:not(.lead) { color: rgba(3,24,39,.65); font-size: 15px; line-height: 2; }
.fact-line { margin-top: 70px; padding-top: 18px; border-top: 1px solid rgba(3,24,39,.24); display: flex; justify-content: space-between; font-size: 11px; letter-spacing: .14em; }
.fact-line span { opacity: .5; text-transform: uppercase; }
.fact-line strong { font-weight: 400; }

.brand-story { position: relative; overflow: hidden; padding: clamp(120px, 15vw, 220px) var(--pad); display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 170px); background: var(--navy-deep); }
.story-heading, .story-copy, .belief-grid { position: relative; z-index: 2; }
.story-heading h2 { margin: 0; font-size: clamp(54px, 7.5vw, 120px); font-weight: 300; line-height: .98; letter-spacing: -.07em; }
.story-english { margin: 0 0 34px; color: var(--muted); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; }
.story-copy { align-self: end; max-width: 720px; }
.story-copy .lead { color: var(--ivory-soft); font-size: clamp(21px, 2.2vw, 34px); line-height: 1.55; letter-spacing: -.02em; }
.story-copy > p:not(.lead) { color: var(--muted); font-size: 14px; line-height: 2; }
.story-tagline { display: block; margin-top: 55px; color: var(--ivory); font-size: clamp(24px, 3vw, 48px); font-weight: 300; letter-spacing: -.03em; }
.belief-grid { grid-column: 1 / -1; margin-top: clamp(70px, 10vw, 140px); display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.belief { min-height: 190px; padding: 30px clamp(24px, 3vw, 48px) 25px 0; border-bottom: 1px solid var(--line); }
.belief + .belief { padding-left: clamp(24px, 3vw, 48px); border-left: 1px solid var(--line); }
.belief span { color: var(--muted); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; }
.belief p { max-width: 320px; margin: 42px 0 0; font-size: clamp(17px, 1.5vw, 23px); line-height: 1.65; }
.story-orbit { position: absolute; width: min(70vw, 1000px); aspect-ratio: 1; right: -34vw; top: -28vw; border: 1px solid var(--line); border-radius: 50%; opacity: .75; }
.story-orbit:before, .story-orbit:after { content: ""; position: absolute; inset: 12%; border: 1px solid var(--line); border-radius: 50%; }
.story-orbit:after { inset: 28%; }
.story-orbit i, .story-orbit span { position: absolute; border-radius: 50%; background: var(--ivory); box-shadow: 0 0 20px rgba(242,216,180,.8); }
.story-orbit i { width: 7px; height: 7px; left: 5%; top: 43%; }
.story-orbit span { width: 18px; height: 18px; left: 24%; top: 81%; }

.focus { background: var(--navy); align-items: start; }
.focus-grid { border-top: 1px solid var(--line); }
.focus-card { min-height: 138px; display: grid; grid-template-columns: 46px 1fr auto; gap: 25px; align-items: center; border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.focus-card:before { content: ""; position: absolute; inset: 0; background: var(--ivory); transform: translateY(101%); transition: transform .5s cubic-bezier(.22,1,.36,1); }
.focus-card:hover:before { transform: translateY(0); }
.focus-card > * { position: relative; z-index: 1; transition: color .35s; }
.focus-card:hover > * { color: var(--navy-deep); }
.focus-card > span { font-size: 9px; opacity: .55; }
.focus-card h3 { margin: 0 0 7px; font-size: clamp(22px, 2.2vw, 34px); font-weight: 300; letter-spacing: -.03em; }
.focus-card p { margin: 0; color: var(--muted); font-size: 9px; letter-spacing: .18em; text-transform: uppercase; }
.focus-card:hover p { color: rgba(3,24,39,.6); }
.focus-card i { color: var(--muted); font-size: 11px; font-style: normal; letter-spacing: .08em; }

.strategy { min-height: 100svh; position: relative; overflow: hidden; padding: clamp(120px, 15vw, 220px) var(--pad); background: var(--navy-deep); }
.strategy-backdrop { position: absolute; inset: 0; opacity: .24; background: linear-gradient(90deg, var(--navy-deep) 10%, transparent), url("https://images.unsplash.com/photo-1517976547714-720226b864c1?auto=format&fit=crop&w=2200&q=80") center/cover; filter: saturate(.25); }
.strategy .section-heading { position: relative; z-index: 2; max-width: 820px; }
.orbit { position: absolute; width: 90vw; height: 90vw; border: 1px solid var(--line); border-radius: 50%; right: -50vw; top: -20vw; }
.orbit span { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--ivory); left: 8%; top: 26%; box-shadow: 0 0 22px var(--ivory); }
.strategy-list { position: relative; z-index: 2; max-width: 700px; margin: 110px 0 0 auto; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.strategy-list li { display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); }
.strategy-list span { color: var(--muted); font-size: 10px; }
.strategy-list h3 { margin-bottom: 8px; font-size: 30px; font-weight: 300; }
.strategy-list p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }

.contact { min-height: 86svh; padding: 140px var(--pad) 100px; display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; background: var(--ivory-soft); color: var(--navy-deep); }
.contact .kicker { color: var(--navy-light); }
.contact h2 { position: relative; z-index: 2; max-width: 1000px; }
.email { position: relative; z-index: 2; align-self: flex-start; margin-top: 80px; padding-bottom: 12px; border-bottom: 1px solid var(--navy-deep); font-size: clamp(22px, 3vw, 48px); letter-spacing: -.02em; }
.email span { display: inline-block; margin-left: 20px; transition: transform .3s; }
.email:hover span { transform: translate(8px,-8px); }
.contact-star { position: absolute; right: 8vw; top: 18%; width: min(34vw, 440px); aspect-ratio: 1; background: var(--ivory); clip-path: polygon(50% 0, 57% 43%, 100% 50%, 57% 57%, 50% 100%, 43% 57%, 0 50%, 43% 43%); opacity: .42; }

footer { padding: 45px var(--pad); display: grid; grid-template-columns: 1fr 1fr auto; align-items: end; gap: 40px; background: var(--navy-deep); border-top: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 14px; font-size: 11px; line-height: 1.7; letter-spacing: .08em; }
.footer-brand img { width: 45px; }
.footer-brand small { color: var(--muted); font-size: 8px; letter-spacing: .2em; }
footer p, footer > span { margin: 0; color: var(--muted); font-size: 9px; line-height: 1.8; letter-spacing: .06em; }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .9s ease, transform .9s cubic-bezier(.22,1,.36,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.focus-card:nth-child(2), .strategy-list li:nth-child(2) { transition-delay: .08s; }
.focus-card:nth-child(3), .strategy-list li:nth-child(3) { transition-delay: .16s; }
.focus-card:nth-child(4) { transition-delay: .24s; }
.focus-card:nth-child(5) { transition-delay: .32s; }

@keyframes drift { to { transform: scale(1.05) translate3d(-1%, -1%, 0); } }
@keyframes twinkle { 50% { opacity: .35; transform: rotate(45deg) scale(.55); } }
@keyframes horizon-in { from { transform: scaleX(0); opacity: 0; } }
@keyframes cue { 50% { transform: scaleX(.35); opacity: .4; } }

@media (max-width: 860px) {
  .site-header { height: 72px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: 72px 0 auto; padding: 30px var(--pad) 45px; display: flex; flex-direction: column; align-items: stretch; gap: 0; background: rgba(3,24,39,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(18px); transform: translateY(-120%); opacity: 0; transition: .35s ease; }
  .site-nav.is-open { transform: translateY(0); opacity: 1; }
  .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); }
  .site-nav a:after { display: none; }
  .hero { padding-bottom: 95px; }
  .hero h1 { font-size: clamp(40px, 11.5vw, 52px); }
  .hero-image { background-position: 60% center; }
  .horizon { width: 110%; right: -55%; top: 42%; }
  .stars i:nth-child(2) { right: 18%; }
  .scroll-cue { left: var(--pad); right: auto; bottom: 34px; }
  .section { grid-template-columns: 1fr; gap: 70px; }
  .about-copy { max-width: none; }
  .brand-story { grid-template-columns: 1fr; gap: 65px; }
  .story-copy { max-width: none; }
  .belief-grid { grid-template-columns: 1fr; }
  .belief { min-height: 0; padding: 25px 0 32px; }
  .belief + .belief { padding-left: 0; border-left: 0; }
  .belief p { margin-top: 24px; }
  .story-orbit { width: 130vw; right: -85vw; top: -20vw; }
  .focus-card { grid-template-columns: 32px 1fr; min-height: 120px; }
  .focus-card i { display: none; }
  .strategy-list { margin-top: 80px; }
  .contact { min-height: 72svh; }
  .contact-star { width: 65vw; right: -20vw; top: 18%; }
  footer { grid-template-columns: 1fr; align-items: start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
}
