:root {
  --paper: #f7f2e9;
  --paper-strong: #eee6d8;
  --ink: #20231f;
  --ink-soft: #4b504a;
  --tomato: #a63b2b;
  --tomato-dark: #79271e;
  --herb: #466048;
  --mustard: #d8a72e;
  --line: rgba(32, 35, 31, 0.2);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --header-h: 76px;
  --page: min(1260px, calc(100vw - 64px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body { margin: 0; overflow-x: hidden; background: var(--paper); color: var(--ink); font: 16px/1.6 var(--sans); }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
:focus-visible { outline: 3px solid var(--mustard); outline-offset: 4px; }
.page-shell { width: var(--page); margin-inline: auto; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; padding: 10px 14px; background: var(--ink); color: #fff; transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: var(--header-h); padding: 0 max(24px, calc((100vw - 1400px) / 2)); display: flex; align-items: center; justify-content: space-between; color: #fff; border-bottom: 1px solid rgba(255,255,255,.18); transition: .35s ease; }
.site-header.scrolled { color: var(--ink); background: rgba(247,242,233,.94); border-color: var(--line); backdrop-filter: blur(16px); }
.brand, .header-actions, .main-nav { display: flex; align-items: center; }
.brand { min-width: 196px; gap: 12px; }
.brand-mark { width: 36px; aspect-ratio: 1; display: inline-grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font: .78rem/1 var(--serif); }
.brand-name { font: 1.08rem var(--serif); }
.main-nav { gap: clamp(20px,3vw,42px); }
.main-nav a { position: relative; font-size: .72rem; font-weight: 600; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; inset: auto 0 -8px; height: 1px; background: currentColor; transform: scaleX(0); transition: transform .3s var(--ease); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { min-width: 196px; justify-content: flex-end; gap: 18px; }
.language-toggle, .menu-toggle { border: 0; background: transparent; cursor: pointer; }
.language-toggle { display: flex; gap: 5px; padding: 8px; font-size: .72rem; font-weight: 600; opacity: .78; }
.language-toggle .active { text-decoration: underline; text-underline-offset: 4px; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 12px 8px; }
.menu-toggle span { display: block; width: 26px; height: 1px; margin: 6px auto; background: currentColor; transition: transform .3s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.hero { position: relative; min-height: min(900px,94svh); display: flex; align-items: center; overflow: hidden; background: linear-gradient(120deg,#17231c 0%,#2d3c30 47%,#8f4434 100%); color: #fff; }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .12; 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='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.28'/%3E%3C/svg%3E"); }
.hero-portrait { position: absolute; z-index: 1; inset: 0 0 0 auto; width: min(49vw,760px); height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.88) contrast(1.03); }
.hero-shade { position: absolute; z-index: 2; inset: 0; background: linear-gradient(90deg,rgba(12,19,15,.94) 0%,rgba(12,19,15,.66) 42%,rgba(12,19,15,.02) 75%); }
.hero-content { position: relative; z-index: 3; width: min(730px,56vw); margin-left: max(32px,calc((100vw - 1260px)/2)); padding-top: var(--header-h); }
.eyebrow { margin: 0 0 20px; font-size: .7rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.hero h1, h2, h3 { font-family: var(--serif); font-weight: 500; }
.hero h1 { margin: 0; font-size: clamp(4.8rem,10.2vw,9.4rem); line-height: .9; }
.hero-statement { margin: 24px 0 12px; font: clamp(2rem,4vw,4rem)/1 var(--serif); }
.hero-copy { max-width: 610px; margin: 0; color: rgba(255,255,255,.78); font-size: 1.04rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { min-height: 50px; padding: 14px 22px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; font-size: .74rem; font-weight: 600; text-transform: uppercase; transition: .25s var(--ease); }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--mustard); color: var(--ink); }
.button-primary:hover { background: #efc14f; }
.button-ghost { border-color: rgba(255,255,255,.52); color: #fff; }
.button-ghost:hover { background: #fff; color: var(--ink); }
.button-dark { background: var(--ink); color: #fff; }
.button-dark:hover { background: var(--herb); }
.hero-note { position: absolute; z-index: 3; right: 28px; bottom: 104px; margin: 0; writing-mode: vertical-rl; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue { position: absolute; z-index: 3; bottom: 28px; left: 50%; width: 36px; height: 56px; border: 1px solid rgba(255,255,255,.5); border-radius: 30px; }
.scroll-cue span { position: absolute; top: 11px; left: 50%; width: 3px; height: 9px; border-radius: 2px; background: #fff; animation: scroll 1.8s infinite; }
@keyframes scroll { 0% { transform: translate(-50%,0); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(-50%,20px); opacity: 0; } }

.journey { padding: 130px 0 0; background: var(--paper); }
.journey-intro, .brands-intro { display: grid; grid-template-columns: 100px minmax(0,1.55fr) minmax(260px,.7fr); gap: clamp(30px,5vw,80px); align-items: end; padding-bottom: 92px; border-bottom: 1px solid var(--line); }
.chapter-mark { margin: 0; font: 1rem var(--serif); color: var(--tomato); }
.journey-intro h2, .brands-intro h2, .diary-heading h2, .career h2, .contact h2 { margin: 0; font-size: clamp(3rem,6vw,6.4rem); line-height: .98; }
.journey-lead, .brands-intro > p:last-child, .diary-heading > p { margin: 0 0 6px; color: var(--ink-soft); }
.journey-track { position: relative; padding-top: 40px; }
.journey-line { position: absolute; top: 0; bottom: 80px; left: 49px; width: 1px; background: var(--line); }
.journey-line span { display: block; width: 3px; height: var(--progress,0%); margin-left: -1px; background: var(--tomato); transition: height .35s ease; }
.journey-stop { position: relative; min-height: 760px; padding: 105px 0 105px 150px; display: grid; grid-template-columns: minmax(300px,.8fr) minmax(360px,1.05fr); gap: clamp(60px,9vw,150px); align-items: center; }
.journey-stop::before { content: ""; position: absolute; left: 42px; top: 50%; width: 15px; aspect-ratio: 1; border: 2px solid var(--tomato); border-radius: 50%; background: var(--paper); transition: background .3s ease, transform .3s ease; }
.journey-stop.is-active::before { background: var(--tomato); transform: scale(1.25); }
.journey-stop-reverse .stop-copy { order: 2; }
.journey-stop-reverse .stop-image { order: 1; justify-self: start; }
.stop-copy { max-width: 520px; }
.stop-number { margin: 0 0 64px; color: var(--tomato); font: 1.3rem var(--serif); }
.stop-copy h3 { margin: 0 0 28px; font-size: clamp(2.7rem,4.6vw,5rem); line-height: 1; }
.stop-copy > p:not(.stop-number):not(.eyebrow) { max-width: 470px; margin: 0 0 30px; color: var(--ink-soft); }
.source-link { display: inline-flex; gap: 16px; align-items: center; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: .76rem; font-weight: 600; text-transform: uppercase; }
.source-link:hover { color: var(--tomato); }
.stop-image { position: relative; display: block; width: min(100%,560px); overflow: hidden; background: var(--paper-strong); }
.stop-image.portrait { aspect-ratio: 4/5; }
.stop-image.square { aspect-ratio: 1; }
.stop-image.landscape { aspect-ratio: 4/3; }
.stop-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.stop-image:hover img, .diary-tile:hover img { transform: scale(1.035); }
.media-label { position: absolute; right: 12px; bottom: 12px; padding: 8px 10px; background: rgba(32,35,31,.9); color: #fff; font-size: .64rem; font-weight: 600; text-transform: uppercase; }
.experience-invitation { padding: 68px 0; display: grid; grid-template-columns: 1fr 1fr auto; gap: clamp(30px,5vw,72px); align-items: center; border-top: 1px solid var(--line); }
.experience-invitation h2 { margin: 0; font-size: clamp(2.4rem,4.4vw,5rem); line-height: 1; }
.experience-invitation > p { margin: 0; color: var(--ink-soft); }

.instagram-diary { padding: 130px 0; background: var(--tomato-dark); color: #fff; }
.diary-heading { display: grid; grid-template-columns: 1.3fr .7fr; gap: 80px; align-items: end; margin-bottom: 72px; }
.diary-heading > p { color: rgba(255,255,255,.7); }
.diary-grid { display: grid; grid-template-columns: .78fr 1.15fr .9fr; grid-template-rows: 280px 280px; gap: 18px; }
.diary-tile { position: relative; overflow: hidden; background: #311b17; }
.diary-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.tile-tall { grid-row: 1/3; }
.tile-wide { grid-column: 2/4; }
.tile-wide img { object-position: center 42%; }
.tile-square { grid-column: 2/4; }
.diary-tile::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(transparent,rgba(0,0,0,.82)); }
.diary-tile > span { position: absolute; z-index: 2; inset: auto 20px 18px; display: flex; align-items: end; justify-content: space-between; gap: 18px; }
.diary-tile strong { font: 1.45rem/1.1 var(--serif); }
.diary-tile small { flex: 0 0 auto; font-size: .64rem; text-transform: uppercase; }
.diary-follow { padding-top: 36px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.25); margin-top: 36px; }
.diary-follow p { display: flex; gap: 20px; margin: 0; }
.diary-follow p span { color: rgba(255,255,255,.66); }

.brands { padding: 130px 0; background: var(--paper-strong); }
.brand-path { margin-top: 68px; display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand-path article { padding: 40px clamp(24px,3vw,46px) 44px 0; }
.brand-path article + article { padding-left: clamp(24px,3vw,46px); border-left: 1px solid var(--line); }
.brand-path span { color: var(--tomato); font: 1rem var(--serif); }
.brand-path h3 { margin: 56px 0 18px; font-size: 2rem; line-height: 1.05; }
.brand-path p { margin: 0; color: var(--ink-soft); }
.brand-footer { margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand-footer p { margin: 0; font-size: .8rem; text-transform: uppercase; }

.career { padding: 130px 0; background: #16201a; color: #fff; }
.career-layout { display: grid; grid-template-columns: .72fr 1fr; gap: clamp(60px,10vw,160px); align-items: center; }
.career-image { position: relative; }
.career-image img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center 30%; }
.career-image a { position: absolute; inset: auto 12px 12px; padding: 8px 10px; background: rgba(22,32,26,.9); font-size: .64rem; text-transform: uppercase; }
.career-copy > p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.68); }
.career-line { margin: 54px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.2); }
.career-line li { padding: 15px 0; display: grid; grid-template-columns: 80px 1fr; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.2); }
.career-line span { color: var(--mustard); font-size: .75rem; text-transform: uppercase; }
.career-line strong { font-weight: 500; }

.contact { padding: 150px 0; background: var(--tomato); color: #fff; text-align: center; }
.contact-inner { max-width: 950px; }
.contact h2 { margin-inline: auto; }
.contact p:not(.eyebrow) { max-width: 620px; margin: 28px auto 36px; color: rgba(255,255,255,.75); }
.site-footer { padding: 46px max(32px,calc((100vw - 1260px)/2)); display: grid; grid-template-columns: 1fr auto; gap: 30px; background: var(--ink); color: #fff; }
.site-footer > div:first-child { display: flex; align-items: center; gap: 12px; }
.site-footer > div p, .footer-meta, .photo-credit { margin: 0; }
.footer-links { display: flex; gap: 28px; font-size: .76rem; text-transform: uppercase; }
.footer-meta, .photo-credit { color: rgba(255,255,255,.55); font-size: .68rem; }
.photo-credit { grid-column: 2; text-align: right; }

.js-ready [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js-ready [data-reveal].revealed { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .main-nav { gap: 18px; }
  .brand, .header-actions { min-width: 150px; }
  .journey-intro, .brands-intro { grid-template-columns: 70px 1fr; }
  .journey-lead, .brands-intro > p:last-child { grid-column: 2; }
  .journey-stop { padding-left: 110px; gap: 55px; }
  .journey-line { left: 35px; }
  .journey-stop::before { left: 28px; }
  .experience-invitation { grid-template-columns: 1fr 1fr; }
  .experience-invitation .button { grid-column: 2; justify-self: start; }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; --page: min(100% - 36px,680px); }
  .site-header { height: var(--header-h); padding-inline: 18px; }
  .brand, .header-actions { min-width: 0; }
  .brand-name { font-size: .96rem; }
  .main-nav { position: fixed; inset: var(--header-h) 0 0; display: flex; flex-direction: column; align-items: flex-start; gap: 0; padding: 32px 28px; background: var(--paper); color: var(--ink); transform: translateX(100%); visibility: hidden; transition: transform .35s var(--ease), visibility .35s; }
  .main-nav.open { transform: none; visibility: visible; }
  .main-nav a { width: 100%; padding: 20px 0; border-bottom: 1px solid var(--line); font: 2rem/1 var(--serif); text-transform: none; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: block; }
  .hero { min-height: 92svh; align-items: flex-end; }
  .hero-portrait { inset: 0; width: 100%; height: 100%; object-position: center 38%; opacity: .82; }
  .hero-shade { background: linear-gradient(0deg,rgba(12,19,15,.96) 5%,rgba(12,19,15,.38) 70%,rgba(12,19,15,.18)); }
  .hero-content { width: auto; margin: 0 20px; padding: 0 0 88px; }
  .hero h1 { font-size: clamp(4rem,18vw,7rem); }
  .hero-statement { font-size: clamp(1.9rem,8vw,3rem); }
  .hero-copy { max-width: 570px; font-size: .94rem; }
  .hero-note { display: none; }
  .scroll-cue { display: none; }
  .journey, .instagram-diary, .brands, .career { padding-top: 90px; }
  .journey-intro, .brands-intro, .diary-heading { grid-template-columns: 1fr; gap: 24px; padding-bottom: 54px; }
  .chapter-mark { display: none; }
  .journey-lead, .brands-intro > p:last-child { grid-column: auto; }
  .journey-intro h2, .brands-intro h2, .diary-heading h2, .career h2, .contact h2 { font-size: clamp(2.8rem,11vw,5rem); }
  .journey-track { padding-top: 0; }
  .journey-line { left: 8px; bottom: 20px; }
  .journey-stop { min-height: 0; padding: 76px 0 76px 42px; grid-template-columns: 1fr; gap: 40px; }
  .journey-stop::before { left: 1px; top: 85px; }
  .journey-stop-reverse .stop-copy, .journey-stop-reverse .stop-image { order: initial; }
  .stop-number { margin-bottom: 30px; }
  .stop-copy h3 { font-size: clamp(2.5rem,10vw,4.2rem); }
  .stop-image { width: min(100%,520px); justify-self: start; }
  .experience-invitation { padding: 52px 0; grid-template-columns: 1fr; }
  .experience-invitation .button { grid-column: auto; }
  .diary-heading { margin-bottom: 46px; }
  .diary-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 430px 290px; }
  .tile-tall { grid-row: 1; }
  .tile-wide { grid-column: 2; }
  .tile-square { grid-column: 1/3; }
  .brand-path { grid-template-columns: 1fr; }
  .brand-path article, .brand-path article + article { padding: 32px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .brand-path article:last-child { border-bottom: 0; }
  .brand-path h3 { margin-top: 22px; }
  .brand-footer { align-items: flex-start; flex-direction: column; }
  .career-layout { grid-template-columns: 1fr; gap: 60px; }
  .career-image { max-width: 500px; }
  .contact { padding: 100px 0; }
}

@media (max-width: 520px) {
  :root { --page: calc(100% - 28px); }
  .brand-mark { width: 32px; }
  .header-actions { gap: 4px; }
  .language-toggle { padding-inline: 4px; }
  .hero-content { margin-inline: 16px; }
  .hero h1 { font-size: clamp(3.65rem,18vw,5.4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .journey-stop { padding-left: 34px; }
  .journey-line { left: 6px; }
  .journey-stop::before { left: 0; width: 13px; }
  .stop-copy h3 { font-size: 2.65rem; }
  .diary-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3,410px); }
  .tile-tall, .tile-wide, .tile-square { grid-column: auto; grid-row: auto; }
  .diary-follow, .diary-follow p { align-items: flex-start; flex-direction: column; }
  .diary-follow { gap: 24px; }
  .diary-follow p { gap: 4px; }
  .career-line li { grid-template-columns: 64px 1fr; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 24px; }
  .footer-links { flex-wrap: wrap; gap: 14px 22px; }
  .photo-credit { grid-column: 1; text-align: left; }
}

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

@media (max-width: 820px) {
  .js-ready [data-reveal] { opacity: 1; transform: none; }
}
