:root {
  --ink: #17211f;
  --muted: #5c6965;
  --paper: #f7f4ee;
  --paper-strong: #efe8dc;
  --white: #ffffff;
  --teal: #097a75;
  --teal-dark: #075552;
  --coral: #e85d45;
  --gold: #f3b33d;
  --line: #ddd7cc;
  --shadow: 0 22px 60px rgba(23, 33, 31, 0.14);
  --mouse-x: 58%;
  --mouse-y: 42%;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 20%, rgba(9, 122, 117, 0.12), transparent 28%),
    radial-gradient(circle at 86% 58%, rgba(232, 93, 69, 0.1), transparent 26%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(247, 244, 238, 0.92);
  border-bottom: 1px solid rgba(221, 215, 204, 0.85);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 1 min(42vw, 520px);
  min-width: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 42px !important;
  height: 42px !important;
  max-width: 42px !important;
  max-height: 42px !important;
  flex: 0 0 42px;
  object-fit: contain;
  background: transparent;
}

.brand-name {
  display: inline-block;
  max-width: min(42vw, 430px);
  overflow: hidden;
  font-size: clamp(0.72rem, 1.1vw, 0.96rem);
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-mark,
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--teal);
  border-radius: 8px;
  font-weight: 900;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.site-nav a {
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
  background: var(--white);
}

.nav-toggle,
.nav-button {
  display: none;
}

.lang-toggle {
  min-height: 38px;
  padding: 8px 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.22);
  border-radius: 2px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.lang-toggle:hover {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: min(560px, calc(78vh - 20px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-overlay,
.hero-spotlight {
  position: absolute;
  inset: 0;
}

.home-hero .hero-media {
  background: url("https://images.unsplash.com/photo-1517935706615-2717063c2225?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.service-hero .hero-media {
  background: url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-overlay {
  background: linear-gradient(90deg, rgba(8, 29, 28, 0.82), rgba(8, 29, 28, 0.46) 54%, rgba(8, 29, 28, 0.2));
}

.hero-spotlight {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(243, 179, 61, 0.38), transparent 19rem),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.16) 46%, transparent 52% 100%);
  mix-blend-mode: screen;
  opacity: 0.86;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(820px, 100%);
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 72px) clamp(46px, 6vw, 66px);
}

.hero-content.narrow {
  width: min(820px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 7vw, 6.6rem);
}

.page-intro h1 {
  max-width: 17ch;
  font-size: clamp(2.55rem, 5vw, 4.75rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
}

h3 {
  font-size: 1.35rem;
}

.hero-copy {
  width: min(580px, 100%);
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions,
.cta-band {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 28px;
}

.hero-proof {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--coral);
}

.button.primary:hover {
  background: #ce4934;
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.button,
.service-card,
.blog-card,
.directory-card,
.timeline article,
.package-grid article {
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.service-card:hover,
.blog-card:hover,
.directory-card:hover,
.timeline article:hover,
.package-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(23, 33, 31, 0.18);
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: riseIn 680ms ease both;
}

@keyframes riseIn {
  from {
    opacity: 1;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  background: var(--ink);
  color: var(--white);
}

.stats-band div {
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-band strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
}

.section,
.page-intro,
.service-grid,
.service-studio,
.service-directory,
.service-builder,
.growth-lab,
.blog-grid,
.contact-layout,
.featured-article {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.section,
.page-intro {
  padding: clamp(64px, 9vw, 110px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.section-lead,
.page-intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.5vw, 1.3rem);
}

.page-intro p {
  width: min(760px, 100%);
  margin-top: 22px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-bottom: clamp(64px, 8vw, 100px);
}

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

.service-card,
.directory-card,
.service-preview,
.metric-panel,
.fit-result,
.faq-list details,
.package-grid article,
.blog-card,
.contact-form,
.contact-panel,
.featured-article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 280px;
  padding: 26px;
}

.service-card h3 {
  margin-top: 28px;
}

.service-card p,
.directory-card p,
.service-preview p,
.metric-panel p,
.fit-result p,
.faq-list p,
.package-grid p,
.blog-card p,
.featured-article p,
.image-copy p,
.timeline p,
.contact-panel p,
.contact-form label {
  color: var(--muted);
}

.service-studio {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 18px;
  padding-bottom: clamp(64px, 8vw, 100px);
}

.service-tabs,
.fit-picker {
  display: grid;
  gap: 10px;
}

.tab-button,
.fit-button {
  min-height: 48px;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.tab-button:hover,
.fit-button:hover,
.tab-button.active,
.fit-button.active {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.service-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 38px);
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.service-preview h3 {
  font-size: clamp(1.8rem, 3vw, 3.2rem);
}

.metric-panel {
  display: grid;
  align-content: center;
  min-height: 230px;
  padding: 26px;
  color: var(--white);
  background: radial-gradient(circle at top right, rgba(243, 179, 61, 0.55), transparent 36%), var(--teal-dark);
  transform: translateZ(24px);
}

.metric-panel span {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 850;
}

.metric-panel strong {
  margin: 12px 0;
  color: var(--gold);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
}

.metric-panel p {
  color: rgba(255, 255, 255, 0.78);
}

.growth-lab {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-top: 0;
}

.growth-copy p {
  color: var(--muted);
}

.industry-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.industry-button {
  min-height: 42px;
  padding: 10px 13px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 850;
  cursor: pointer;
}

.industry-button:hover,
.industry-button.active {
  color: var(--white);
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-1px);
}

.industry-panel {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(243, 179, 61, 0.35), transparent 30%),
    linear-gradient(135deg, rgba(7, 85, 82, 0.96), rgba(23, 33, 31, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.industry-panel h3 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 3.35rem);
}

.industry-panel p {
  color: rgba(255, 255, 255, 0.76);
}

.industry-stack {
  display: grid;
  gap: 6px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.industry-stack span,
.scenario-metrics span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.industry-stack strong {
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
  line-height: 1.15;
}

.scenario-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.scenario-metrics article {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.scenario-metrics strong {
  color: var(--white);
  font-size: 1.08rem;
  line-height: 1.2;
}

.image-copy {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.fit-picker {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.fit-button {
  text-align: center;
}

.fit-result {
  margin-top: 16px;
  padding: 24px;
  background: linear-gradient(135deg, #ffffff, #f7efe1);
}

.image-copy.reverse {
  grid-template-columns: minmax(280px, 0.85fr) minmax(280px, 0.9fr);
}

.image-copy.reverse img {
  order: 2;
}

.image-copy img,
.featured-article img,
.blog-card img,
.contact-panel img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.image-copy img {
  height: clamp(360px, 48vw, 560px);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 12px;
  height: 12px;
  background: var(--teal);
  border-radius: 50%;
}

.cta-band {
  justify-content: space-between;
  margin-top: clamp(28px, 4vw, 52px);
  padding: clamp(36px, 6vw, 64px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--teal-dark);
}

.cta-band h2 {
  max-width: 780px;
}

.faq-section {
  padding-top: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
}

.faq-list summary {
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 14px 0 0;
}

.process {
  padding-top: 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 36px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timeline article {
  padding: 24px;
  background: var(--white);
  border-top: 5px solid var(--gold);
  border-radius: 8px;
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 900;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

.featured-article {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.8fr);
  gap: 32px;
  align-items: center;
  margin-bottom: 22px;
  padding: 18px;
}

.featured-article img {
  height: 390px;
}

.tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  color: var(--teal-dark);
  background: #dcefeb;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding-bottom: clamp(38px, 6vw, 70px);
}

.services-visual {
  position: relative;
  margin: 0;
}

.services-visual img {
  width: 100%;
  height: clamp(300px, 36vw, 480px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.services-visual figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 18px;
  color: var(--white);
  background: rgba(7, 85, 82, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.services-visual span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-visual strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: clamp(64px, 8vw, 100px);
}

.directory-card {
  min-height: 320px;
  padding: 28px;
}

.directory-card h2 {
  margin-top: 28px;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.directory-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff 0%, #f5ead8 100%);
}

.directory-card.accent {
  color: var(--white);
  background: var(--teal-dark);
}

.directory-card.accent p,
.directory-card.accent .text-link {
  color: rgba(255, 255, 255, 0.82);
}

.service-builder {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  padding-top: 0;
}

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

.package-grid article {
  padding: 24px;
}

.package-grid span {
  color: var(--coral);
  font-weight: 900;
  letter-spacing: 0.08em;
}

.budget-tool {
  display: grid;
  gap: 16px;
}

.budget-slider-card {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.92), rgba(23, 33, 31, 0.96)),
    var(--ink);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 2px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.16);
}

.budget-slider-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.budget-slider-top span {
  color: rgba(255, 253, 248, 0.72);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.budget-slider-top strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 0.95;
}

.budget-slider {
  width: 100%;
  accent-color: var(--gold);
  cursor: grab;
}

.budget-slider:active {
  cursor: grabbing;
}

.budget-scale {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.budget-scale span:nth-child(2),
.budget-scale span:nth-child(3) {
  text-align: center;
}

.budget-scale span:last-child {
  text-align: right;
}

.budget-panel {
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 2px;
}

.budget-panel h3 {
  margin-top: 10px;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 18px 0 clamp(64px, 8vw, 100px);
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  height: 190px;
  border-radius: 8px 8px 0 0;
}

.blog-card div {
  padding: 22px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.75fr);
  gap: 22px;
  padding-bottom: clamp(64px, 8vw, 100px);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 750;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-panel {
  overflow: hidden;
}

.contact-panel img {
  height: 260px;
  border-radius: 8px 8px 0 0;
}

.contact-details {
  padding: 28px;
}

.contact-details dl {
  display: grid;
  gap: 18px;
  margin: 26px 0 0;
}

.contact-details dt {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-details dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

/* Premium editorial restyle */
:root {
  --ink: #111111;
  --muted: #5f5c58;
  --paper: #f6f1e8;
  --paper-strong: #ebe3d7;
  --white: #fffdf8;
  --teal: #111111;
  --teal-dark: #141414;
  --coral: #d71920;
  --gold: #c9a45d;
  --line: #d8d0c3;
  --shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
}

body {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  font-family: "Helvetica Neue", Arial, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

body::before {
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 25, 32, 0.09), transparent 24%),
    radial-gradient(circle at 88% 72%, rgba(201, 164, 93, 0.08), transparent 26%);
}

.site-header {
  padding-block: 18px;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}

.brand {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}

.brand-mark,
.card-icon {
  border-radius: 2px;
  background: var(--coral);
}

.site-nav a {
  border-radius: 2px;
  color: var(--ink);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--white);
  background: var(--ink);
}

.hero {
  min-height: min(650px, calc(86vh - 20px));
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
}

.hero-media {
  filter: grayscale(0.82) contrast(1.08);
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), transparent 45%);
}

.hero-spotlight {
  background:
    radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(215, 25, 32, 0.36), transparent 18rem),
    linear-gradient(115deg, transparent 0 44%, rgba(255, 253, 248, 0.13) 47%, transparent 53% 100%);
  opacity: 0.72;
}

.hero-content {
  padding-top: clamp(90px, 12vw, 150px);
  padding-bottom: clamp(62px, 8vw, 92px);
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(4rem, 9vw, 8.4rem);
}

h2 {
  font-size: clamp(2.4rem, 4.8vw, 5.2rem);
}

h3 {
  letter-spacing: -0.01em;
}

.eyebrow {
  color: var(--coral);
  letter-spacing: 0.18em;
}

.hero .eyebrow,
.cta-band .eyebrow {
  color: var(--coral);
}

.hero-copy {
  max-width: 520px;
  color: rgba(255, 253, 248, 0.78);
}

.button {
  border-radius: 2px;
  letter-spacing: 0.01em;
}

.button.primary {
  background: var(--coral);
}

.button.secondary {
  color: var(--white);
  background: rgba(255, 253, 248, 0.06);
  border-color: rgba(255, 253, 248, 0.44);
}

.hero-proof span,
.tag {
  border-radius: 2px;
}

.stats-band {
  background: var(--white);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.stats-band div {
  border-right: 1px solid var(--line);
}

.stats-band strong {
  color: var(--coral);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.stats-band span {
  color: var(--muted);
}

.service-card,
.directory-card,
.service-preview,
.metric-panel,
.fit-result,
.faq-list details,
.package-grid article,
.blog-card,
.contact-form,
.contact-panel,
.featured-article,
.industry-panel,
.industry-stack,
.scenario-metrics article {
  border-radius: 2px;
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: none;
}

.service-preview,
.fit-result,
.featured-article,
.contact-form,
.contact-panel,
.directory-card {
  background: var(--white);
}

.service-card:hover,
.blog-card:hover,
.directory-card:hover,
.timeline article:hover,
.package-grid article:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.tab-button,
.fit-button,
.industry-button {
  border-radius: 2px;
  background: transparent;
  border-color: rgba(17, 17, 17, 0.22);
}

.tab-button:hover,
.fit-button:hover,
.industry-button:hover,
.tab-button.active,
.fit-button.active,
.industry-button.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.18), transparent 34%),
    #111111;
}

.metric-panel {
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(215, 25, 32, 0.16), transparent 42%),
    linear-gradient(135deg, #fffdf8, #eee4d4);
  border-color: rgba(17, 17, 17, 0.18);
}

.metric-panel span,
.metric-panel p {
  color: var(--muted);
}

.industry-panel {
  background:
    radial-gradient(circle at 90% 12%, rgba(215, 25, 32, 0.28), transparent 28%),
    linear-gradient(135deg, #29231f, #5d171a 52%, #181514);
}

.metric-panel strong,
.industry-stack span,
.scenario-metrics span,
.calculator-result span {
  color: var(--coral);
}

.industry-stack,
.scenario-metrics article {
  background: rgba(255, 253, 248, 0.055);
  border-color: rgba(255, 253, 248, 0.18);
}

.image-copy img,
.featured-article img,
.blog-card img,
.contact-panel img,
.services-visual img {
  border-radius: 2px;
  filter: grayscale(0.18) contrast(1.03);
}

.text-link {
  color: var(--ink);
  text-decoration-color: var(--coral);
}

.check-list li::before {
  border-radius: 0;
  background: var(--coral);
}

.site-footer {
  background: #111111;
}

.cta-band {
  border-top: 6px solid var(--coral);
}

.cta-band .button.primary {
  min-height: 58px;
  padding-inline: 28px;
  color: var(--ink);
  background: var(--white);
}

@media (max-width: 980px) {
  .stats-band,
  .service-grid,
  .service-grid.three,
  .service-directory,
  .timeline,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .image-copy,
  .image-copy.reverse,
  .services-intro,
  .service-studio,
  .service-preview,
  .service-builder,
  .growth-lab,
  .featured-article,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .service-tabs {
    grid-template-columns: repeat(5, minmax(110px, 1fr));
    overflow-x: auto;
  }

  .image-copy.reverse img {
    order: 0;
  }
}

@media (max-width: 760px) {
  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    justify-content: initial;
    gap: 8px;
    padding: 12px 16px;
  }

  .brand {
    gap: 12px;
    min-width: 0;
  }

  .brand-logo {
    width: 54px !important;
    height: 54px !important;
    max-width: 54px !important;
    max-height: 54px !important;
    flex: 0 0 54px;
  }

  .brand-name {
    max-width: min(44vw, 210px);
    white-space: normal;
    line-height: 1.08;
    font-size: clamp(0.8rem, 3.6vw, 0.95rem);
    font-weight: 900;
  }

  .nav-button {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(17, 17, 17, 0.16);
    border-radius: 2px;
    background: rgba(255, 253, 248, 0.72);
    cursor: pointer;
  }

  .nav-button span,
  .nav-button span::before,
  .nav-button span::after {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    content: "";
  }

  .nav-button span::before {
    transform: translateY(-7px);
  }

  .nav-button span::after {
    transform: translateY(5px);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .site-nav a {
    border-radius: 8px;
  }

  .hero {
    min-height: 560px;
  }

  h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .service-grid,
  .service-grid.three,
  .service-directory,
  .fit-picker,
  .timeline,
  .blog-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .stats-band {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .stats-band::-webkit-scrollbar {
    display: none;
  }

  .stats-band div {
    min-width: 172px;
    scroll-snap-align: start;
  }

  .lang-toggle {
    min-width: 50px;
    min-height: 44px;
    margin-left: 0;
    padding: 8px 10px;
    border-radius: 2px;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
  }

  .directory-card.featured {
    grid-column: auto;
  }

  .service-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .service-preview,
  .metric-panel {
    min-height: auto;
  }

  .growth-lab,
  .industry-panel,
  .growth-copy {
    width: calc(100vw - 36px);
    max-width: calc(100vw - 36px);
    min-width: 0;
  }

  .scenario-metrics {
    grid-template-columns: 1fr;
  }

  .hero-spotlight {
    opacity: 0.55;
  }

  .contact-form .full,
  .contact-form button {
    grid-column: auto;
  }

  .site-footer,
  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

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