:root {
  --ink: #0e201a;
  --ink-2: #18372d;
  --cream: #f4efe6;
  --cream-2: #ebe3d7;
  --paper: #fffdf8;
  --orange: #ff6b2c;
  --orange-dark: #db4e15;
  --sage: #a9c7b7;
  --lime: #c9ef79;
  --muted: #66736d;
  --line: rgba(14, 32, 26, 0.14);
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(14, 32, 26, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Tahoma, Arial, sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
summary {
  font: inherit;
}

::selection {
  color: var(--white);
  background: var(--orange);
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 120px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(14, 32, 26, 0.92);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.brand > span:last-child {
  display: grid;
  line-height: 1.2;
}

.brand strong {
  font-size: 15px;
  letter-spacing: -0.2px;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font: 700 9px/1.1 Arial, sans-serif;
  letter-spacing: 1px;
  direction: ltr;
}

.desktop-nav {
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 31px;
}

.desktop-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
  transition: color 180ms ease;
}

.desktop-nav a:hover {
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 12px 17px;
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.header-cta span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
}

.header-cta:hover {
  transform: translateY(-2px);
  background: var(--cream);
}

.mobile-menu {
  display: none;
  position: relative;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 102px 0 92px;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -250px;
  right: -110px;
  border-radius: 50%;
  background: var(--orange);
  filter: blur(160px);
  opacity: 0.13;
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  bottom: -250px;
  left: -80px;
  border-radius: 50%;
  background: var(--sage);
  filter: blur(150px);
  opacity: 0.12;
  z-index: -1;
}

.hero-grid,
.contact-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr);
  align-items: center;
  gap: 76px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2px;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.section-kicker {
  margin-bottom: 17px;
}

.section-kicker.light {
  color: var(--lime);
}

.hero h1 {
  max-width: 700px;
  margin: 24px 0 25px;
  font-size: clamp(50px, 6.1vw, 86px);
  line-height: 1.12;
  letter-spacing: -4.5px;
  font-weight: 900;
}

.hero h1 em {
  display: block;
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255, 255, 255, 0.71);
  font-size: 16px;
  line-height: 2;
}

.hero-lead strong {
  color: var(--white);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 15px 40px rgba(255, 107, 44, 0.22);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: rgba(255, 255, 255, 0.03);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 25px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 700;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-proof b {
  color: var(--lime);
}

.portrait-wrap {
  position: relative;
  min-height: 555px;
  display: grid;
  place-items: center;
}

.portrait-card {
  position: relative;
  z-index: 2;
  width: min(500px, 96%);
  height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 28px;
  background: #172f27;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.35);
}

.portrait-card::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 22, 17, 0.78), transparent 48%);
  pointer-events: none;
}

.portrait-card img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.96) contrast(1.05);
}

.portrait-label {
  position: absolute;
  z-index: 3;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(14, 32, 26, 0.75);
  color: rgba(255, 255, 255, 0.83);
  font-size: 10px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.portrait-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201, 239, 121, 0.12);
}

.portrait-caption {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(14, 32, 26, 0.74);
  backdrop-filter: blur(14px);
}

.portrait-caption small {
  color: rgba(255,255,255,.54);
  font-size: 9px;
}

.portrait-caption strong {
  font-size: 12px;
}

.portrait-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 490px;
  height: 490px;
}

.orbit-two {
  width: 600px;
  height: 600px;
  opacity: 0.45;
}

.floating-chip {
  position: absolute;
  z-index: 5;
  min-width: 118px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(244, 239, 230, 0.95);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.floating-chip b {
  color: var(--orange);
  font: 900 23px/1 Arial, sans-serif;
}

.floating-chip span {
  font-size: 10px;
  font-weight: 800;
}

.chip-web {
  top: 105px;
  right: auto;
  left: -18px;
}

.chip-media {
  bottom: 106px;
  left: -18px;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-items {
  min-height: 102px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.trust-items div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.trust-items strong {
  color: var(--orange);
  font: 900 28px/1 Arial, sans-serif;
}

.trust-items span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.trust-items > i {
  width: 1px;
  height: 34px;
  background: var(--line);
}

.intro-section {
  background: var(--cream);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.5fr 1.3fr 0.68fr;
  align-items: start;
  gap: 60px;
}

.intro-copy h2,
.section-head h2,
.campaigns-copy h2,
.confidence-card h2,
.faq-grid h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(37px, 4.5vw, 60px);
  line-height: 1.22;
  letter-spacing: -2.6px;
}

.intro-copy h2 span {
  color: var(--orange);
}

.intro-copy > p {
  max-width: 690px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
}

.intro-note {
  padding: 25px;
  border-top: 4px solid var(--orange);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.intro-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  margin-bottom: 19px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 30px rgba(14, 32, 26, 0.14);
}

.intro-note span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.intro-note p {
  margin: 12px 0 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.9;
}

.services-section {
  background: var(--paper);
}

.section-head {
  margin-bottom: 55px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
}

.section-head > p {
  width: min(370px, 100%);
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.service-card {
  min-height: 315px;
  position: relative;
  padding: 34px;
  overflow: hidden;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  transition: background 200ms ease, color 200ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  left: -95px;
  bottom: -95px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.1;
}

.service-card:hover {
  background: var(--ink);
  color: var(--white);
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-top span {
  color: var(--orange);
  font: 900 12px/1 Arial, sans-serif;
}

.service-top b {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.service-card h3 {
  margin: 48px 0 14px;
  font-size: 23px;
  line-height: 1.4;
}

.service-card p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.95;
}

.service-card:hover p,
.service-card:hover small {
  color: rgba(255, 255, 255, 0.65);
}

.service-card small {
  position: absolute;
  right: 34px;
  bottom: 27px;
  color: var(--muted);
  font: 800 10px/1 Arial, sans-serif;
  letter-spacing: 0.4px;
}

.work-section {
  background: var(--cream);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(14, 32, 26, 0.05);
  transition: transform 230ms ease, box-shadow 230ms ease;
}

.project-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.project-visual {
  height: 260px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(14, 32, 26, 0.1);
  background: var(--card-bg, #d8e8df);
}

.tone-orange { --card-bg: #f7b08e; --card-ink: #7c2e0f; }
.tone-sage { --card-bg: #b9d5c6; --card-ink: #163f32; }
.tone-blue { --card-bg: #bcdbe3; --card-ink: #164556; }
.tone-cream { --card-bg: #e7d8bf; --card-ink: #604a29; }
.tone-pink { --card-bg: #e9c6cf; --card-ink: #6e2e40; }
.tone-lime { --card-bg: #d3ed9c; --card-ink: #395510; }

.browser-bar {
  height: 43px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 17px;
  border-bottom: 1px solid rgba(14, 32, 26, 0.09);
  background: rgba(255, 255, 255, 0.55);
}

.browser-bar span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--card-ink);
  opacity: 0.32;
}

.project-code {
  position: absolute;
  right: 31px;
  bottom: 27px;
  color: var(--card-ink);
  font: 900 83px/0.9 Arial, sans-serif;
  letter-spacing: -7px;
  opacity: 0.9;
}

.mock-lines {
  position: absolute;
  top: 79px;
  left: 30px;
  width: 42%;
  display: grid;
  gap: 11px;
}

.mock-lines i {
  height: 9px;
  border-radius: 99px;
  background: var(--card-ink);
  opacity: 0.14;
}

.mock-lines i:nth-child(2) { width: 72%; }
.mock-lines i:nth-child(3) { width: 47%; }

.mock-button {
  position: absolute;
  width: 72px;
  height: 26px;
  top: 139px;
  left: 30px;
  border-radius: 99px;
  background: var(--card-ink);
  opacity: 0.72;
}

.project-body {
  padding: 26px 28px 28px;
}

.project-category {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.project-body h3 {
  margin: 8px 0 9px;
  font: 900 25px/1.2 Arial, Tahoma, sans-serif;
}

.project-body p {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.project-link {
  margin-top: 21px;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: ltr;
}

.project-link span {
  color: var(--muted);
  font: 700 10px/1 Arial, sans-serif;
}

.project-link b {
  color: var(--orange);
}

.more-work {
  margin-top: 23px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
}

.more-work summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 23px;
  font-size: 13px;
  font-weight: 900;
}

.more-work summary::-webkit-details-marker,
.all-campaigns summary::-webkit-details-marker,
.faq-list summary::-webkit-details-marker,
.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.more-work summary span {
  color: var(--muted);
  font-size: 10px;
}

.more-work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  padding: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.more-work-grid a {
  min-height: 86px;
  position: relative;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 19px;
  background: var(--paper);
  transition: background 180ms ease;
}

.more-work-grid a:hover {
  background: #f6f1e9;
}

.more-work-grid span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
}

.more-work-grid strong {
  font: 900 15px/1.3 Arial, Tahoma, sans-serif;
}

.more-work-grid b {
  position: absolute;
  left: 19px;
  top: 31px;
}

.campaigns-section {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.campaigns-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  left: -250px;
  bottom: -250px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.018);
}

.campaigns-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 80px;
}

.campaigns-copy h2 {
  margin-top: 8px;
}

.campaigns-copy > p {
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 2;
}

.campaign-tags {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  direction: ltr;
}

.campaign-tags span {
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.62);
  font: 700 9px/1 Arial, sans-serif;
}

.campaigns-panel {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
}

.panel-head {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-head strong {
  font-size: 14px;
}

.panel-head span {
  color: var(--lime);
  font: 800 10px/1 Arial, sans-serif;
}

.campaign-link-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
}

.campaign-link-grid a {
  min-height: 64px;
  display: grid;
  grid-template-columns: 30px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.07);
  transition: background 180ms ease, transform 180ms ease;
}

.campaign-link-grid a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.campaign-link-grid a > span {
  color: var(--orange);
  font: 900 10px/1 Arial, sans-serif;
}

.campaign-link-grid strong {
  font-size: 10px;
}

.campaign-link-grid b {
  color: rgba(255, 255, 255, 0.5);
}

.all-campaigns {
  margin-top: 10px;
}

.all-campaigns summary {
  cursor: pointer;
  list-style: none;
  padding: 13px;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 10px;
  font-weight: 800;
}

.all-campaigns > div {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.all-campaigns a {
  padding: 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.69);
  font-size: 9px;
}

.all-campaigns a span {
  float: left;
}

.process-section {
  background: var(--paper);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  min-height: 260px;
  padding: 28px 25px;
  border-left: 1px solid var(--line);
}

.process-grid article:first-child {
  border-right: 1px solid var(--line);
}

.process-grid > article > span {
  color: var(--orange);
  font: 900 12px/1 Arial, sans-serif;
}

.process-grid h3 {
  margin: 72px 0 13px;
  font-size: 19px;
}

.process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

.confidence-section {
  background: var(--cream);
}

.confidence-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
}

.confidence-card {
  min-height: 500px;
  position: relative;
  overflow: hidden;
  padding: 48px;
  border-radius: 24px;
  background: var(--ink);
  color: var(--white);
}

.confidence-card::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  left: -150px;
  bottom: -150px;
  border: 55px solid var(--orange);
  border-radius: 50%;
  opacity: 0.7;
}

.confidence-card h2 {
  margin-top: 9px;
  font-size: clamp(35px, 4vw, 52px);
}

.confidence-card p {
  max-width: 480px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 2;
}

.confidence-card > a {
  position: absolute;
  z-index: 2;
  right: 48px;
  bottom: 44px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.confidence-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--line);
}

.confidence-list > div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 18px;
  padding: 23px 27px;
  background: var(--paper);
}

.confidence-list > div > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--orange);
  font: 900 10px/1 Arial, sans-serif;
}

.confidence-list p {
  margin: 0;
  display: grid;
  gap: 4px;
}

.confidence-list strong {
  font-size: 14px;
}

.confidence-list small {
  color: var(--muted);
  font-size: 10px;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 100px;
}

.faq-grid > div:first-child > p {
  max-width: 360px;
  color: var(--muted);
  font-size: 12px;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 900;
}

.faq-list summary span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font: 400 18px/1 Arial, sans-serif;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -4px 0 24px;
  padding-left: 60px;
  color: var(--muted);
  font-size: 12px;
  line-height: 2;
}

.contact-section {
  padding: 25px 0 0;
  background: var(--paper);
}

.contact-card {
  min-height: 560px;
  position: relative;
  overflow: hidden;
  padding: 75px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 70px;
  border-radius: 32px 32px 0 0;
  background: var(--ink);
  color: var(--white);
  isolation: isolate;
}

.contact-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 430px;
  height: 430px;
  right: -250px;
  bottom: -270px;
  border: 70px solid var(--orange);
  border-radius: 50%;
}

.contact-copy h2 {
  margin-top: 8px;
}

.contact-copy h2 em {
  color: var(--orange);
  font-style: normal;
}

.contact-copy p {
  max-width: 590px;
  margin: 23px 0 31px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 2;
}

.button-light {
  background: var(--white);
  color: var(--ink);
}

.button-light:hover {
  background: var(--lime);
}

.contact-details {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details a {
  min-height: 93px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-details span {
  color: rgba(255, 255, 255, 0.46);
  font: 700 9px/1 Arial, Tahoma, sans-serif;
}

.contact-details strong {
  font: 800 13px/1.3 Arial, Tahoma, sans-serif;
}

.contact-details b {
  color: var(--orange);
}

.site-footer {
  padding: 34px 0;
  background: #091611;
  color: var(--white);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-brand .brand-mark {
  width: 35px;
  height: 35px;
  font-size: 16px;
}

.footer-inner p,
.footer-inner > a:last-child {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 70;
  left: 22px;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 13px 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: #1ea660;
  color: var(--white);
  box-shadow: 0 15px 38px rgba(14, 32, 26, 0.3);
  font-size: 11px;
  font-weight: 900;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.floating-whatsapp b {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.17);
}

@media (max-width: 1020px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .mobile-menu {
    display: block;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    padding: 9px 13px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
  }

  .mobile-menu nav {
    position: absolute;
    top: 48px;
    left: 0;
    width: 210px;
    overflow: hidden;
    display: grid;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 12px;
    background: var(--ink-2);
    box-shadow: var(--shadow);
  }

  .mobile-menu nav a {
    padding: 13px 16px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    font-size: 11px;
  }

  .hero-layout,
  .campaigns-grid,
  .confidence-grid,
  .faq-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .eyebrow,
  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-lead {
    margin-inline: auto;
  }

  .portrait-wrap {
    margin-top: 25px;
  }

  .intro-grid {
    grid-template-columns: 1fr 1.6fr;
  }

  .intro-note {
    grid-column: 2;
  }

  .campaigns-grid,
  .faq-grid {
    gap: 55px;
  }

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

  .process-grid article:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .contact-card {
    padding: 60px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 18px, 1180px);
  }

  .section {
    padding: 82px 0;
  }

  .hero {
    padding: 72px 0 65px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2.7px;
  }

  .hero-lead {
    font-size: 14px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    gap: 11px 17px;
  }

  .portrait-wrap {
    min-height: 485px;
  }

  .portrait-card {
    height: 445px;
  }

  .portrait-card img {
    height: 100%;
  }

  .orbit-one {
    width: 380px;
    height: 380px;
  }

  .orbit-two {
    width: 450px;
    height: 450px;
  }

  .chip-web { right: auto; left: -4px; top: 92px; }
  .chip-media { left: -4px; bottom: 80px; }

  .trust-items {
    padding: 22px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 19px;
  }

  .trust-items > i {
    display: none;
  }

  .trust-items div {
    justify-content: center;
  }

  .trust-items strong {
    font-size: 22px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .projects-grid,
  .more-work-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .projects-grid {
    gap: 10px;
  }

  .intro-grid {
    gap: 28px;
  }

  .intro-note {
    grid-column: auto;
  }

  .intro-copy h2,
  .section-head h2,
  .campaigns-copy h2,
  .confidence-card h2,
  .faq-grid h2,
  .contact-copy h2 {
    font-size: 38px;
    letter-spacing: -1.8px;
  }

  .section-head {
    margin-bottom: 38px;
    display: grid;
    gap: 21px;
  }

  .service-card {
    min-height: 410px;
    padding: 24px 16px;
  }

  .service-card h3 {
    margin-top: 34px;
    font-size: 21px;
    line-height: 1.45;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.85;
  }

  .service-card small {
    right: 16px;
    bottom: 18px;
    font-size: 10px;
    line-height: 1.5;
  }

  .project-visual {
    height: 175px;
  }

  .project-code {
    right: 20px;
    font-size: 58px;
  }

  .project-body {
    padding: 20px 14px 22px;
  }

  .project-body h3 {
    font-size: 21px;
    line-height: 1.35;
  }

  .project-body p {
    min-height: 105px;
    font-size: 13px;
    line-height: 1.75;
  }

  .project-category {
    font-size: 11px;
    line-height: 1.5;
  }

  .project-link span {
    font-size: 11px;
  }

  .more-work-grid span,
  .campaign-link-grid a > span {
    font-size: 11px;
  }

  .more-work-grid strong {
    font-size: 16px;
  }

  .campaign-link-grid strong,
  .all-campaigns a {
    font-size: 12px;
  }

  .campaigns-panel {
    padding: 17px;
  }

  .campaign-link-grid,
  .all-campaigns > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid article,
  .process-grid article:nth-child(3) {
    min-height: 220px;
    border-right: 1px solid var(--line);
  }

  .process-grid h3 {
    margin-top: 47px;
    font-size: 20px;
  }

  .process-grid p {
    font-size: 13px;
    line-height: 1.8;
  }

  .confidence-card {
    min-height: 500px;
    padding: 34px;
  }

  .confidence-card > a {
    right: 34px;
    bottom: 34px;
  }

  .confidence-list > div {
    padding: 19px;
  }

  .confidence-list strong {
    font-size: 16px;
  }

  .confidence-list small {
    font-size: 12px;
    line-height: 1.6;
  }

  .faq-list summary {
    font-size: 16px;
  }

  .faq-list details > p {
    padding-left: 0;
    font-size: 14px;
  }

  .contact-section {
    padding-inline: 0;
  }

  .contact-card {
    width: 100%;
    padding: 50px 25px;
    border-radius: 0;
    gap: 45px;
  }

  .contact-details a {
    grid-template-columns: 1fr auto;
  }

  .contact-details a span {
    grid-column: 1 / -1;
    margin-bottom: -18px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp span {
    display: none;
  }

  .floating-whatsapp {
    padding: 9px;
    left: 14px;
    bottom: 14px;
  }
}

@media (max-width: 430px) {
  .service-card {
    min-height: 440px;
  }

  .project-visual {
    height: 155px;
  }

  .project-body p {
    min-height: 125px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
