:root {
  --orange: #ff6a3d;
  --paper: #f7f7f5;
  --charcoal: #1e1e1e;
  --grey: #e5e5e5;
  --white: #ffffff;
  --display: "League Spartan", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--charcoal);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
}
body::selection { background: var(--orange); color: var(--charcoal); }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
h1, h2, h3, p, figure { margin-top: 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  background: var(--charcoal);
  color: white;
  padding: 10px 16px;
}
.skip-link:focus { top: 12px; }

.announcement {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 3.2vw, 52px);
  background: var(--charcoal);
  color: var(--paper);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.announcement span { color: var(--orange); }

.site-header {
  position: fixed;
  z-index: 20;
  top: 36px;
  left: 0;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 18px clamp(20px, 3.2vw, 52px);
  pointer-events: none;
  transition: top .25s ease, height .25s ease, padding .25s ease, background .25s ease, box-shadow .25s ease;
}
.site-header > * { pointer-events: auto; }
.brand { position: relative; width: 190px; height: 190px; transition: width .25s ease, height .25s ease; }
.brand img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: left top; transition: opacity .2s ease; }
.brand .logo-light { opacity: 0; }
.site-header nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); padding-top: 12px; font-size: 14px; font-weight: 600; }
.site-header nav > a:not(.pill) { position: relative; }
.site-header nav > a:not(.pill)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -5px; height: 2px; background: currentColor; transition: right .2s ease; }
.site-header nav > a:not(.pill):hover::after { right: 0; }
.site-header.scrolled { top: 0; height: 76px; align-items: center; padding-top: 0; padding-bottom: 0; background: rgba(247,247,245,.95); box-shadow: 0 1px 0 rgba(30,30,30,.12); backdrop-filter: blur(10px); }
.site-header.scrolled .brand { width: 112px; height: 64px; }
.site-header.scrolled .brand img { object-position: left center; }
.site-header.scrolled nav { padding-top: 0; }
body.nav-light .site-header:not(.scrolled) { color: var(--paper); }
body.nav-light .site-header:not(.scrolled) .logo-dark { opacity: 0; }
body.nav-light .site-header:not(.scrolled) .logo-light { opacity: 1; }

.pill {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.pill:hover { transform: translateY(-2px); }
.pill-solid { background: var(--orange); color: var(--charcoal); }
.pill-solid:hover { background: var(--charcoal); color: var(--paper); }
.pill-outline-light { border-color: rgba(255,255,255,.8); color: white; }
.pill-outline-light:hover { background: white; color: var(--charcoal); }
.pill-outline-dark { border-color: var(--charcoal); color: var(--charcoal); }
.pill-outline-dark:hover { background: var(--charcoal); color: var(--paper); }
.pill-dark { background: var(--charcoal); color: white; gap: 40px; }
.pill-dark:hover { background: white; color: var(--charcoal); }

.kicker {
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero {
  min-height: 920px;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  align-items: end;
  gap: clamp(24px, 5vw, 84px);
  padding: 210px clamp(20px, 5.2vw, 84px) 70px;
  background: var(--paper);
}
.hero-copy { position: relative; z-index: 2; padding-bottom: 48px; }
.hero h1 {
  margin-bottom: 30px;
  font-family: var(--display);
  font-size: clamp(66px, 7.2vw, 116px);
  font-weight: 600;
  letter-spacing: -.055em;
  line-height: .84;
  text-transform: uppercase;
}
.hero h1 span { color: var(--orange); }
.hero-intro { max-width: 590px; margin-bottom: 32px; font-size: 18px; }
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.arrow-link { display: inline-flex; gap: 14px; align-items: center; padding-bottom: 4px; border-bottom: 1.5px solid currentColor; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.arrow-link span { font-size: 19px; line-height: 1; transition: transform .2s ease; }
.arrow-link:hover span { transform: translate(2px, -2px); }
.hero-image { margin: 0; align-self: stretch; min-height: 650px; position: relative; overflow: hidden; background: var(--grey); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; filter: saturate(.9) contrast(1.04); }
.hero-image::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(30,30,30,.08); pointer-events: none; }
.hero-image figcaption { position: absolute; bottom: 18px; right: 18px; padding: 8px 12px; background: var(--paper); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }

.manifesto { padding: 52px clamp(20px, 5.2vw, 84px); background: var(--orange); }
.manifesto p { max-width: 1220px; margin: 0; font-family: var(--display); font-size: clamp(38px, 5.1vw, 76px); font-weight: 600; letter-spacing: -.045em; line-height: .98; text-transform: uppercase; }
.manifesto strong { color: var(--paper); font-weight: 600; }

.services { padding: 130px clamp(20px, 3.2vw, 52px); background: var(--paper); }
.section-title { display: grid; grid-template-columns: .65fr 1.4fr .7fr; align-items: end; gap: 34px; margin-bottom: 64px; }
.section-title .kicker { align-self: start; }
.section-title h2, .online h2, .about h2, .start h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(54px, 6vw, 92px);
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: .88;
  text-transform: uppercase;
}
.section-title > p:last-child { margin: 0; font-size: 16px; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.service-card { min-height: 830px; position: relative; overflow: hidden; }
.service-card-content { position: relative; z-index: 2; height: 100%; display: flex; flex-direction: column; align-items: flex-start; padding: clamp(28px, 3.5vw, 54px); }
.service-photo > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 36%; }
.image-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,.12), rgba(10,10,10,.82) 72%, rgba(10,10,10,.95)); }
.service-photo { color: white; }
.service-orange { display: grid; grid-template-rows: 1fr 260px; background: var(--orange); color: var(--charcoal); }
.service-small-image { overflow: hidden; margin: 0 40px 40px; }
.service-small-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 36%; }
.card-number { margin-bottom: auto; font-family: var(--display); font-size: 18px; font-weight: 700; }
.service-card h3 { margin: 120px 0 22px; font-family: var(--display); font-size: clamp(50px, 5.2vw, 78px); font-weight: 600; letter-spacing: -.045em; line-height: .86; text-transform: uppercase; }
.service-card-content > p:not(.card-number) { max-width: 590px; font-size: 16px; }
.service-card ul { width: 100%; list-style: none; margin: 26px 0 32px; padding: 0; }
.service-card li { padding: 10px 0; border-top: 1px solid currentColor; font-size: 13px; }
.service-card li:last-child { border-bottom: 1px solid currentColor; }
.service-card li::before { content: "+"; margin-right: 10px; font-weight: 800; }

.location-line { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 24px; padding: 28px clamp(20px, 3.2vw, 52px); background: var(--charcoal); color: var(--paper); font-family: var(--display); font-size: clamp(17px, 2vw, 26px); font-weight: 600; text-transform: uppercase; }
.location-line b { color: var(--orange); font-size: 28px; }

.online { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 720px; background: var(--paper); }
.online-image { min-height: 640px; overflow: hidden; }
.online-image img { width: 100%; height: 100%; object-fit: cover; }
.online-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(50px, 7vw, 110px); }
.online h2 { margin-bottom: 32px; font-size: clamp(52px, 5.6vw, 86px); }
.online-copy > p:not(.kicker) { max-width: 520px; margin-bottom: 30px; font-size: 17px; }

.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 120px); padding: 140px clamp(20px, 7vw, 110px); background: var(--charcoal); color: var(--paper); }
.about h2 { font-size: clamp(56px, 6vw, 92px); }
.about h2 span { color: var(--orange); }
.about-body { padding-top: 44px; color: #d6d6d1; }
.about-body .lead { color: white; font-size: 23px; line-height: 1.45; }
.credentials { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.credentials span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.32); font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

.start { display: grid; grid-template-columns: 1fr 420px; align-items: center; gap: 80px; padding: 110px max(20px, calc((100vw - 1180px)/2)); background: var(--orange); }
.start .kicker { color: var(--charcoal); }
.start h2 { margin-bottom: 26px; font-size: clamp(58px, 6.6vw, 98px); }
.start-copy > p:last-child { max-width: 570px; font-size: 18px; }
.price-block { padding: 40px 36px; background: var(--paper); text-align: center; box-shadow: 14px 14px 0 var(--charcoal); }
.price-block > p { margin-bottom: 12px; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.price { font-family: var(--display); font-size: 118px; font-weight: 700; letter-spacing: -.06em; line-height: .9; }
.price sup { position: relative; top: 15px; margin-right: 4px; font-size: 36px; vertical-align: top; }
.price-block > span { display: block; margin: 10px 0 26px; font-size: 13px; }
.price-block .pill { width: 100%; }
.email-link { display: block; margin-top: 18px; font-size: 12px; }
.email-link strong { border-bottom: 1px solid var(--charcoal); }

footer { min-height: 250px; display: grid; grid-template-columns: 1.25fr .75fr .75fr; align-items: end; gap: 36px; padding: 58px clamp(20px, 5.2vw, 84px); background: var(--charcoal); color: var(--paper); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; }
footer > img { width: 210px; }
footer p { margin: 0; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }

@media (max-width: 980px) {
  /* Grid/flex children must be allowed to shrink below their content width. */
  main, main section, main section > *, .service-grid > *, footer > * { min-width: 0; }
  main { overflow-wrap: anywhere; }
  .site-header { height: 92px; }
  .brand { width: 145px; height: 145px; }
  .site-header nav > a:not(.pill) { display: none; }
  .hero { min-height: auto; grid-template-columns: 1fr 1fr; padding-top: 180px; }
  .hero h1 { font-size: clamp(62px, 8vw, 82px); }
  .hero-image { min-height: 600px; }
  .section-title { grid-template-columns: 1fr; }
  .section-title > p:last-child { max-width: 600px; }
  .service-card { min-height: 760px; }
  .online { grid-template-columns: 1fr 1fr; }
  .about { gap: 50px; }
  .start { grid-template-columns: 1fr 370px; gap: 50px; }
}

@media (max-width: 720px) {
  .announcement { height: 32px; font-size: 9px; }
  .site-header { top: 32px; height: 76px; padding-top: 12px; }
  .brand { width: 108px; height: 108px; }
  .site-header.scrolled { top: 0; height: 68px; padding-top: 0; padding-bottom: 0; }
  .site-header.scrolled .brand { width: 92px; height: 56px; }
  .site-header nav { padding-top: 4px; }
  .site-header nav .pill { min-height: 38px; padding: 8px 16px; font-size: 10px; }
  .hero { display: flex; flex-direction: column; gap: 34px; padding: 150px 20px 48px; }
  .hero-copy { width: 100%; padding-bottom: 0; }
  .hero h1 { font-size: clamp(58px, 17vw, 84px); margin-bottom: 24px; }
  .hero-intro { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-image { width: 100%; min-height: 520px; }
  .manifesto { padding-top: 40px; padding-bottom: 40px; }
  .services { padding: 84px 12px; }
  .section-title { padding: 0 8px; margin-bottom: 40px; }
  .section-title h2, .online h2, .about h2, .start h2 { font-size: clamp(48px, 14vw, 70px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 700px; }
  .service-orange { grid-template-rows: 1fr 220px; }
  .service-small-image { margin: 0 24px 24px; }
  .service-card h3 { margin-top: 80px; }
  .location-line { align-items: flex-start; flex-direction: column; gap: 8px; }
  .location-line b { display: none; }
  .location-line span::before { content: "+"; margin-right: 10px; color: var(--orange); }
  .online { grid-template-columns: 1fr; }
  .online-image { min-height: 460px; }
  .online-copy { padding: 70px 20px; }
  .about { grid-template-columns: 1fr; gap: 22px; padding: 90px 20px; }
  .about-body { padding-top: 0; }
  .about-body .lead { font-size: 20px; }
  .start { grid-template-columns: 1fr; gap: 44px; padding: 80px 20px 96px; }
  .price-block { min-width: 0; max-width: 100%; padding: 34px 22px; box-shadow: 9px 9px 0 var(--charcoal); }
  .email-link { overflow-wrap: anywhere; }
  .price { font-size: 102px; }
  footer { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); min-height: 330px; align-items: start; overflow-wrap: anywhere; }
  footer > img { width: 150px; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy > *, .hero-image { animation: rise .7s both; }
  .hero h1 { animation-delay: .08s; }
  .hero-intro { animation-delay: .16s; }
  .hero-actions { animation-delay: .24s; }
  .hero-image { animation-delay: .14s; }
  @keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
}
