:root {
  --bg: #fff9f0;
  --bg-2: #f6ead9;
  --card: #fffdf8;
  --text: #0b1120;
  --muted: #5b6678;
  --muted-2: #7a8494;
  --line: rgba(92, 64, 34, 0.14);
  --line-dark: rgba(255,255,255,0.14);

  --gold: #f08a28;
  --gold-dark: #a95112;
  --gold-light: #ffba6a;
  --gold-soft: #fff0dc;
  --ember: #df5633;
  --ivory: #fffaf2;

  --dark: #0b1120;
  --dark-2: #111827;

  --shadow: 0 24px 70px rgba(84, 54, 22, 0.12);
  --shadow-soft: 0 14px 34px rgba(84, 54, 22, 0.065);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% -10%, rgba(255, 176, 78, 0.36), transparent 33%),
    radial-gradient(circle at 92% 22%, rgba(223, 86, 51, 0.15), transparent 28%),
    radial-gradient(circle at 4% 0%, rgba(11, 17, 32, 0.045), transparent 24%),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 42%, var(--bg-2) 100%);
}

a {
  color: inherit;
}

.page {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 56px;
  position: relative;
  z-index: 1;
}

/* Header */

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 18px 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid white;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.14);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.brand-text strong {
  font-size: 18px;
  line-height: 1.2;
}

.brand-text span {
  font-size: 15px;
  color: var(--muted);
  font-weight: 720;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 17px;
  font-weight: 800;
  color: #263244;
}

.nav-links a {
  text-decoration: none;
}

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

/* Shared typography and actions */

h1 {
  max-width: 920px;
  font-size: clamp(40px, 5.8vw, 64px);
  line-height: 1.02;
  letter-spacing: -2.2px;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}

h2 {
  font-size: 30px;
  line-height: 1.08;
  letter-spacing: -0.9px;
  margin: 0 0 10px;
}

.kicker {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 11px;
  line-height: 1;
}

.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 850;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.button-primary {
  background: var(--dark);
  color: white;
  border: 1px solid rgba(242, 193, 93, 0.40);
  box-shadow: 0 14px 30px rgba(11, 17, 32, 0.18), 0 0 32px rgba(242, 193, 93, 0.12);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 17, 32, 0.22), 0 0 42px rgba(242, 193, 93, 0.18);
}

.email-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  padding: 0;
}

.email-button:hover {
  color: var(--gold);
  text-decoration: underline;
}

/* Homepage */

.hero {
  margin-top: 8px;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(231, 224, 212, 0.86);
  border-radius: 30px;
  padding: 42px 48px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-showcase {
  min-height: 430px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  padding: 58px 56px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 186, 106, 0.32), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,246,232,0.70));
  border-color: rgba(169, 81, 18, 0.16);
}

.hero-copy {
  max-width: 780px;
  position: relative;
  z-index: 1;
}

.hero-showcase h1 {
  max-width: 780px;
}

.hero-subtitle {
  max-width: 760px;
  font-size: 20px;
  color: var(--muted);
  margin: 0 0 26px;
  position: relative;
  z-index: 1;
}

.hero-showcase .hero-subtitle {
  max-width: 720px;
}

.hero .email-button {
  font-size: 18px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.proof-pill {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  color: #354255;
  font-size: 13px;
  font-weight: 760;
}

section {
  margin-top: 34px;
}

.section {
  padding: 28px 34px 34px;
  border: 1px solid rgba(231, 224, 212, 0.95);
  border-radius: 26px;
  background: rgba(255,255,255,0.68);
  box-shadow: var(--shadow-soft);
}

.section-dark {
  background: linear-gradient(135deg, #0b1120 0%, #151b2b 100%);
  color: white;
  border-color: rgba(242, 193, 93, 0.20);
}

.section-dark p {
  color: #d5d9e1;
}

.section-header {
  max-width: 920px;
  margin-bottom: 24px;
}

.section-header p {
  color: var(--muted);
  margin: 0;
  font-size: 17px;
}

.grid-3,
.grid-4 {
  display: grid;
  gap: 16px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(242, 193, 93, 0.35));
}

.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.2px;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

.card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
}

.card li {
  margin: 5px 0;
}

.work-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  text-decoration: none;
}

.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 135, 45, 0.48);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.08);
}

.work-card p {
  min-height: 78px;
}

.work-card ul {
  min-height: 86px;
}

.tag {
  width: fit-content;
  display: inline-flex;
  margin-bottom: 14px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: var(--gold-soft);
  font-size: 12px;
  font-weight: 850;
}

.work-card .bottom {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
  font-weight: 900;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
}

.hover-arrow {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  overflow: visible;
  transform: translateY(0px);
}

.hover-arrow .arrow-line {
  stroke-dasharray: 7;
  stroke-dashoffset: 7;
  transition: stroke-dashoffset 0.22s ease;
}

.hover-arrow .arrow-head {
  transition: transform 0.22s ease;
}

.work-card:hover .hover-arrow .arrow-line {
  stroke-dashoffset: 0;
}

.work-card:hover .hover-arrow .arrow-head {
  transform: translateX(2px);
}

.note {
  border-left: 3px solid var(--gold);
  padding: 16px 18px;
  background: rgba(255, 245, 220, 0.48);
  border-radius: 16px;
  color: #4a5568;
}

.cta-panel {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 112px;
}

.cta-panel > div:first-child {
  max-width: 620px;
}

.cta-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-panel h2 {
  margin-bottom: 8px;
}

/* Process page */

.process-intro {
  display: block;
  margin-top: 8px;
  padding: 7px 6px 1px;
}

.process-intro-copy {
  max-width: 900px;
}

.process-intro h1 {
  max-width: 860px;
  margin-bottom: 18px;
}

.process-intro-copy p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.process-board {
  overflow: hidden;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
}

.process-rows {
  display: grid;
  gap: 12px;
  width: 100%;
}

.process-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
  box-shadow: 0 10px 26px rgba(84, 54, 22, 0.045);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  background: var(--dark);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.2px;
  box-shadow: 0 12px 24px rgba(11, 17, 32, 0.14);
}

.process-row h3 {
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: -0.25px;
}

.process-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.process-control .card p {
  min-height: 72px;
}

.process-contact {
  margin-top: 34px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 112px;
  padding: 28px 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 186, 106, 0.20), transparent 36%),
    rgba(255,255,255,0.62);
  box-shadow: var(--shadow-soft);
}

.process-contact > div:first-child {
  max-width: 620px;
}

.process-contact h2 {
  margin-bottom: 8px;
}

.process-contact p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.process-contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Legal page */

.legal-cover {
  margin-top: 6px;
  padding: 8px 6px 9px;
}

.legal-cover h1 {
  max-width: 780px;
  margin-bottom: 18px;
}

.legal-cover p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.legal-registry {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.64);
  box-shadow: var(--shadow-soft);
}

.legal-registry-main {
  padding: 30px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 186, 106, 0.24), transparent 38%),
    rgba(255,250,242,0.74);
}

.registry-label {
  display: block;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-registry-main h2 {
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -1.1px;
}

.legal-registry-main > p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 16px;
}

.registry-contact {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(169, 81, 18, 0.15);
}

.registry-contact span,
.registry-item span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.registry-contact p {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
}

.registry-contact a,
.legal-scope a,
.legal-email-strip a {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: none;
}

.legal-registry-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.registry-item {
  padding: 24px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.registry-item:nth-child(even) {
  border-right: 0;
}

.registry-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.registry-item-wide {
  grid-column: span 2;
  border-right: 0;
}

.registry-item strong {
  display: block;
  color: var(--text);
  font-size: 16px;
  line-height: 1.45;
}

.legal-scope {
  margin-top: 34px;
  padding: 26px 28px 30px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 186, 106, 0.16), transparent 34%),
    rgba(255,255,255,0.54);
  box-shadow: var(--shadow-soft);
}

.legal-scope-head {
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.legal-scope-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.legal-scope-head h2 {
  margin: 0;
  max-width: none;
  font-size: clamp(30px, 3.1vw, 42px);
  letter-spacing: -1px;
}

.legal-scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.legal-scope-grid > div {
  padding: 20px 22px 0;
  border-right: 1px solid var(--line);
}

.legal-scope-grid > div:first-child {
  padding-left: 0;
}

.legal-scope-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.legal-scope-grid h3 {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: -0.25px;
}

.legal-scope-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.legal-email-strip {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 24px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.54);
  box-shadow: var(--shadow-soft);
}

.legal-email-strip::after {
  content: "";
}

.legal-email-strip span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: center;
}

.legal-email-strip p {
  justify-self: center;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  text-align: center;
}

.legal-updated-bottom {
  margin: 18px 6px 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: none;
}

/* Privacy page */

.privacy-cover-simple {
  margin-top: 8px;
  padding: 2px 6px 5px;
}

.privacy-cover-simple h1 {
  max-width: 780px;
  margin-bottom: 18px;
}

.privacy-cover-simple p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 20px;
}

.privacy-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  margin-top: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,0.54);
  box-shadow: var(--shadow-soft);
}

.privacy-facts > div {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.privacy-facts > div:last-child {
  border-right: 0;
}

.privacy-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.privacy-facts p {
  margin: 0;
  color: var(--text);
  font-size: 14.5px;
  line-height: 1.35;
  font-weight: 760;
}

.privacy-document-card {
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 186, 106, 0.12), transparent 34%),
    rgba(255,255,255,0.64);
  box-shadow: var(--shadow-soft);
}

.privacy-document-head {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,250,242,0.52);
}

.privacy-document-head span {
  justify-self: center;
  text-align: center;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.privacy-document-head p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.privacy-document-body {
  display: grid;
}

.privacy-text-row {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}

.privacy-text-row:last-child {
  border-bottom: 0;
}

.privacy-text-row h2 {
  justify-self: center;
  text-align: center;
  max-width: 170px;
  margin: 0;
  font-size: 18px;
  line-height: 1.12;
  letter-spacing: -0.25px;
}

.privacy-text-row p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
}

.privacy-text-row a {
  color: var(--gold-dark);
  font-weight: 900;
  text-decoration: none;
}

.privacy-updated-simple {
  margin: 18px 6px 0;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 650;
}

/* Toast */

.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 50;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Footer */

.footer {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-brand {
  font-weight: 780;
  color: #3b4658;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--muted);
  text-decoration: none;
}

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

/* Responsive */


@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    padding: 32px;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .cta-panel,
  .process-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .footer {
    flex-direction: column;
  }

  .legal-registry,
  .legal-registry-details,
  .legal-scope-grid {
    grid-template-columns: 1fr;
  }

  .legal-registry-main {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .registry-item,
  .registry-item:nth-child(even),
  .registry-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .registry-item:last-child {
    border-bottom: 0;
  }

  .registry-item-wide {
    grid-column: auto;
  }

  .legal-scope-grid > div,
  .legal-scope-grid > div:first-child,
  .legal-scope-grid > div:last-child {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .legal-scope-grid > div:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .legal-email-strip {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .legal-email-strip::after {
    display: none;
  }

  .legal-email-strip p {
    justify-self: start;
    text-align: left;
  }

  .privacy-facts,
  .privacy-document-head,
  .privacy-text-row {
    grid-template-columns: 1fr;
  }

  .privacy-facts > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .privacy-facts > div:last-child {
    border-bottom: 0;
  }

  .privacy-document-head span,
  .privacy-text-row h2 {
    justify-self: start;
    text-align: left;
  }

  .privacy-text-row h2 {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .page {
    width: min(100% - 28px, 1080px);
    padding-top: 20px;
  }

  .nav-links {
    gap: 12px;
    font-size: 13px;
  }

  .hero,
  .section {
    padding: 24px;
    border-radius: 22px;
  }

  .hero-showcase {
    min-height: auto;
  }

  .process-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .process-contact,
  .legal-email-strip,
  .privacy-document-head,
  .privacy-text-row {
    padding: 22px;
  }
}

/* DHL project editorial page */

.project-page-editorial {
  max-width: 1180px;
}

.editorial-back {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.editorial-back .back-arrow {
  position: relative;
  top: -1px;
  display: inline-block;
  transition: transform 0.18s ease;
}

.editorial-back:hover {
  color: var(--text);
}

.editorial-back:hover .back-arrow {
  transform: translateX(-4px);
}

.project-plain-hero {
  margin-top: 22px;
  max-width: 1120px;
  padding: 0 0 30px;
}

.project-plain-hero h1 {
  margin: 0 0 18px;
  max-width: none;
  font-size: clamp(58px, 7.2vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  white-space: nowrap;
}

.project-plain-hero p {
  max-width: 1080px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.36;
}

.editorial-strip {
  margin-top: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.editorial-strip > div {
  padding: 24px 24px 24px 0;
  border-right: 1px solid var(--line);
}

.editorial-strip > div + div {
  padding-left: 24px;
}

.editorial-strip > div:last-child {
  border-right: 0;
}

.editorial-strip span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.editorial-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.workflow-composition {
  margin-top: 54px;
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(310px, 0.94fr);
  grid-template-areas:
    "shot1 copy1"
    "shot1 shot2"
    "copy2 shot2";
  gap: 30px 46px;
  align-items: start;
}

.result-composition {
  margin-top: 68px;
  display: grid;
  grid-template-columns: minmax(330px, 0.72fr) minmax(300px, 0.96fr);
  gap: 54px;
  align-items: start;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}

.composition-shot {
  margin: 0;
  position: relative;
}

.composition-shot img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 44px rgba(84, 54, 22, 0.115));
}

.composition-shot-one {
  grid-area: shot1;
  width: min(100%, 445px);
  justify-self: start;
}

.composition-shot-two {
  grid-area: shot2;
  width: min(100%, 445px);
  justify-self: end;
  align-self: start;
}

.composition-shot-three {
  width: min(100%, 410px);
  justify-self: start;
}

.composition-copy {
  position: relative;
  max-width: 480px;
  padding-top: 4px;
}

.composition-copy-one {
  grid-area: copy1;
  align-self: start;
}

.composition-copy-two {
  grid-area: copy2;
  align-self: start;
  max-width: 440px;
}

.composition-copy-three {
  max-width: 610px;
  padding-top: 6px;
}

.composition-stars {
  display: flex;
  align-items: center;
  gap: 7px;
  width: min(100%, 360px);
  margin-bottom: 18px;
  color: #e98622;
}

.composition-stars span {
  display: inline-block;
  font-size: 17px;
  line-height: 1;
  color: #e98622;
  text-shadow: 0 8px 20px rgba(233, 134, 34, 0.18);
}

.composition-stars::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 10px;
  background: linear-gradient(90deg, rgba(169, 81, 18, 0.42), transparent);
}

.composition-copy h2,
.editorial-scope h2 {
  margin: 8px 0 12px;
  color: var(--text);
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.composition-copy p,
.scope-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.58;
}

.composition-copy::after {
  content: "";
  display: block;
  width: 86px;
  height: 1px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--gold-dark), transparent);
  opacity: 0.55;
}


.result-note {
  margin-top: 24px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.result-note p {
  margin: 0;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.55;
}

.result-note p:last-child {
  border-bottom: 0;
}

.result-note strong {
  color: var(--text);
}

.editorial-scope {
  margin-top: 70px;
  display: grid;
  grid-template-columns: minmax(250px, 0.5fr) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.scope-grid {
  display: grid;
  gap: 16px;
}

.scope-grid p {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.scope-grid p:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.scope-grid strong {
  color: var(--text);
}

@media (max-width: 1100px) {
  .project-plain-hero h1 {
    font-size: clamp(54px, 7vw, 82px);
  }
}

@media (max-width: 980px) {
  .project-plain-hero h1 {
    white-space: normal;
  }

  .editorial-strip,
  .workflow-composition,
  .result-composition,
  .editorial-scope {
    grid-template-columns: 1fr;
  }

  .workflow-composition {
    grid-template-areas:
      "copy1"
      "shot1"
      "copy2"
      "shot2";
  }

  .composition-shot-one,
  .composition-shot-two,
  .composition-shot-three,
  .composition-copy {
    justify-self: start;
  }

  .editorial-strip > div,
  .editorial-strip > div + div {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .editorial-strip > div:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .project-plain-hero h1 {
    font-size: clamp(50px, 15vw, 72px);
    white-space: normal;
  }

  .workflow-composition,
  .result-composition {
    margin-top: 46px;
    gap: 28px;
  }

  .composition-stars {
    width: 100%;
  }
}
