:root {
  --ink: #111a22;
  --ink-soft: #26343f;
  --ivory: #f2efe8;
  --paper: #fbfaf7;
  --copper: #b7462f;
  --copper-dark: #8f3424;
  --line: #d8d3ca;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(100% - 48px, 1380px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  color: var(--ivory);
  border-bottom: 1px solid rgba(242, 239, 232, .2);
}
.wordmark { display: flex; align-items: center; gap: 12px; font-weight: 650; letter-spacing: -.01em; }
.wordmark-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(242, 239, 232, .55);
  border-radius: 50%;
  font-size: 11px;
  letter-spacing: .08em;
}
nav { display: flex; align-items: center; gap: 30px; font-size: 14px; }
nav a { opacity: .78; transition: opacity .2s ease; }
nav a:hover, nav a:focus-visible { opacity: 1; }
.nav-cta { border: 1px solid rgba(242, 239, 232, .45); border-radius: 999px; padding: 10px 16px; }

.hero {
  position: relative;
  min-height: 860px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 170px max(24px, calc((100vw - 1380px) / 2)) 74px;
  background: var(--ink);
  color: var(--ivory);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(183, 70, 47, .18), transparent 30%);
  pointer-events: none;
}
.hero-lines { position: absolute; inset: 0 0 0 56%; opacity: .26; transform: skewX(-12deg); }
.hero-lines span { position: absolute; top: -10%; bottom: -10%; width: 1px; background: linear-gradient(transparent, var(--copper), transparent); }
.hero-lines span:nth-child(1) { left: 10%; }
.hero-lines span:nth-child(2) { left: 40%; }
.hero-lines span:nth-child(3) { left: 70%; }
.eyebrow { position: relative; margin-bottom: 24px; color: #c7c0b5; font-size: 12px; font-weight: 650; letter-spacing: .2em; text-transform: uppercase; }
h1 {
  position: relative;
  margin: 0;
  max-width: 1000px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(72px, 11.5vw, 176px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: -.07em;
}
.hero-bottom {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 680px) auto;
  justify-content: space-between;
  align-items: end;
  gap: 48px;
  margin-top: 74px;
}
.hero-lead { margin: 0; max-width: 650px; color: #d8d2c8; font-size: clamp(18px, 2vw, 24px); line-height: 1.5; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 20px; border-radius: 999px; font-size: 14px; font-weight: 650; }
.button-primary { background: var(--copper); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: var(--copper-dark); }
.button-quiet { border: 1px solid rgba(242, 239, 232, .35); color: var(--ivory); }

.profile-section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 56px;
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: 140px 0;
}
.section-label { padding-top: 12px; color: var(--copper); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.profile-copy { display: grid; grid-template-columns: 1.7fr 1fr; gap: 78px; }
.statement { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(38px, 5vw, 72px); line-height: 1.08; letter-spacing: -.035em; }
.statement em { color: var(--copper); font-style: italic; }
.body-copy { padding-top: 12px; color: #55616a; font-size: 17px; line-height: 1.75; }
.body-copy p { margin: 0 0 24px; }

.impact-section { padding: 120px max(24px, calc((100vw - 1380px) / 2)); background: var(--copper); color: white; }
.section-heading { display: grid; grid-template-columns: 1fr 3fr; gap: 56px; margin-bottom: 72px; }
.section-label.light { color: #f3c1b7; }
h2 { margin: 0; max-width: 900px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(42px, 5.4vw, 76px); font-weight: 400; line-height: 1.05; letter-spacing: -.045em; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.28); }
.impact-card { min-height: 285px; padding: 40px 32px 20px 0; border-right: 1px solid rgba(255,255,255,.28); }
.impact-card + .impact-card { padding-left: 32px; }
.impact-card:last-child { border-right: 0; }
.impact-value { font-family: Georgia, "Times New Roman", serif; font-size: clamp(56px, 7vw, 100px); letter-spacing: -.06em; }
.impact-card p { max-width: 320px; margin: 26px 0 0; color: #f6d5cf; font-size: 16px; line-height: 1.55; }

.expertise-section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 56px;
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: 140px 0;
}
.expertise-content { min-width: 0; }
.expertise-intro {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  align-items: end;
  gap: 72px;
  padding-bottom: 72px;
}
.expertise-intro h2, .brands-section h2 { color: var(--ink); }
.expertise-intro p, .brands-lead { margin: 0; color: #55616a; font-size: 17px; line-height: 1.7; }
.expertise-list { border-top: 1px solid var(--line); }
.expertise-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
}
.expertise-number { padding-top: 6px; color: var(--copper); font-family: Georgia, "Times New Roman", serif; font-size: 18px; }
.expertise-row h3, .journey-title h3 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(30px, 3vw, 46px); font-weight: 400; letter-spacing: -.035em; }
.expertise-row > div > p { max-width: 760px; margin: 16px 0 24px; color: #55616a; font-size: 16px; line-height: 1.7; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: #5a666f; font-size: 12px; }

.journey-section { padding: 130px max(24px, calc((100vw - 1380px) / 2)); background: var(--ink-soft); color: var(--ivory); }
.journey-header { display: grid; grid-template-columns: 1fr 3fr; gap: 56px; margin-bottom: 76px; }
.journey-list { border-top: 1px solid rgba(242,239,232,.22); }
.journey-item {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.8fr;
  gap: 48px;
  padding: 36px 0 42px;
  border-bottom: 1px solid rgba(242,239,232,.22);
}
.journey-period { padding-top: 7px; color: #bfc6ca; font-size: 13px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.journey-title h3 { font-size: 32px; }
.journey-title p { margin: 10px 0 0; color: #d8d2c8; font-size: 14px; line-height: 1.5; }
.journey-copy { margin: 3px 0 0; color: #bbc3c8; font-size: 15px; line-height: 1.7; }

.brands-section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 56px;
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: 135px 0;
}
.brands-section h2 { max-width: 1000px; }
.brands-lead { max-width: 720px; margin-top: 30px; }
.brand-cloud { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 54px; }
.brand-cloud span { padding: 13px 16px; border: 1px solid var(--line); background: white; font-size: 14px; }

.today-section { padding: 125px max(24px, calc((100vw - 1380px) / 2)); background: var(--copper); color: white; }
.today-copy { display: grid; grid-template-columns: 1fr 3fr; gap: 56px; margin-bottom: 76px; }
.today-copy h2 { max-width: 1040px; }
.today-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.today-card { min-height: 320px; display: flex; flex-direction: column; align-items: flex-start; padding: 36px; border: 1px solid rgba(255,255,255,.34); transition: background .2s ease, transform .2s ease; }
.today-card:hover, .today-card:focus-visible { background: rgba(255,255,255,.08); transform: translateY(-3px); }
.today-kicker { color: #f3c1b7; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.today-card strong { margin-top: 48px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(36px, 4vw, 58px); font-weight: 400; letter-spacing: -.04em; }
.today-card p { max-width: 420px; margin: 16px 0 0; color: #f6d5cf; line-height: 1.6; }
.card-link { margin-top: auto; padding-top: 42px; font-size: 14px; font-weight: 650; }
.card-link b { margin-left: 4px; font-weight: 400; }

.contact-section {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 56px;
  width: min(100% - 48px, 1380px);
  margin: 0 auto;
  padding: 140px 0;
}
.contact-title { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(44px, 6vw, 86px); line-height: 1.03; letter-spacing: -.055em; }
.contact-email { display: inline-block; margin-top: 55px; padding-bottom: 8px; border-bottom: 1px solid var(--copper); color: var(--copper); font-size: clamp(18px, 2.2vw, 30px); font-weight: 650; }

footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px max(24px, calc((100vw - 1380px) / 2)); background: var(--ink); color: #aeb6bc; font-size: 13px; }
footer p { margin: 0; color: var(--ivory); font-weight: 650; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; }

@media (max-width: 900px) {
  .site-header { width: min(100% - 32px, 1380px); }
  nav a:not(.nav-cta) { display: none; }
  .hero { min-height: 760px; padding-inline: 20px; }
  .hero-bottom, .profile-section, .profile-copy, .section-heading,
  .expertise-section, .expertise-intro, .journey-header, .brands-section,
  .today-copy, .contact-section { grid-template-columns: 1fr; }
  .hero-bottom { align-items: start; margin-top: 54px; }
  .profile-section { width: min(100% - 40px, 1380px); padding: 90px 0; }
  .profile-copy, .section-heading { gap: 36px; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card, .impact-card + .impact-card { min-height: 0; padding: 34px 0 44px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.28); }
  .impact-card:last-child { border-bottom: 0; }
  .expertise-section, .brands-section, .contact-section { width: min(100% - 40px, 1380px); padding: 90px 0; }
  .expertise-intro, .journey-header, .today-copy { gap: 34px; }
  .journey-section, .today-section { padding-block: 90px; }
  .journey-item { grid-template-columns: 1fr 2fr; gap: 26px; }
  .journey-copy { grid-column: 2; }
  .today-cards { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .wordmark > span:last-child { display: none; }
  h1 { font-size: clamp(64px, 23vw, 96px); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .button { width: 100%; }
  .expertise-row { grid-template-columns: 52px 1fr; gap: 12px; }
  .journey-item { grid-template-columns: 1fr; }
  .journey-copy { grid-column: 1; }
  .today-card { min-height: 290px; padding: 28px; }
  footer { flex-direction: column; }
  .footer-links { gap: 16px; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--ink);
  color: var(--ivory);
}
.error-panel {
  width: min(100%, 760px);
  padding: clamp(36px, 7vw, 80px);
  border: 1px solid rgba(242, 239, 232, .22);
}
.error-code {
  margin: 0 0 20px;
  color: #f3c1b7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.error-title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 8vw, 92px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
}
.error-copy {
  max-width: 560px;
  margin: 28px 0 36px;
  color: #d8d2c8;
  font-size: 18px;
  line-height: 1.65;
}
