:root {
  --deep-red: #5b0a0a;
  --deep-red-bright: #7a0d0d;
  --black: #0b0b0b;
  --white: #f7f5f2;
  --white-strong: #ffffff;
  --muted: rgba(247, 245, 242, 0.7);
  --line: rgba(247, 245, 242, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --radius: 24px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Sora", sans-serif;
  background: radial-gradient(1200px circle at 10% 10%, rgba(91, 10, 10, 0.5), transparent 60%),
    radial-gradient(900px circle at 90% 20%, rgba(91, 10, 10, 0.35), transparent 55%),
    var(--black);
  color: var(--white);
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(247, 245, 242, 0.08) 1px, transparent 0);
  background-size: 26px 26px;
  opacity: 0.25;
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(420px circle at var(--mx, 55%) var(--my, 12%), rgba(122, 13, 13, 0.35), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
  z-index: -2;
}

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

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 6vw;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white-strong);
  color: var(--black);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transform: translateY(-140%);
  transition: transform 0.2s ease;
  z-index: 100;
}

.skip-link:focus {
  transform: translateY(0);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(247, 245, 242, 0.9);
  outline-offset: 2px;
}

.no-js [data-animate] {
  opacity: 1;
  transform: translateY(0);
}

.js [data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--delay, 0s);
}

.js [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  width: 380px;
  height: 380px;
  background: rgba(91, 10, 10, 0.7);
  filter: blur(120px);
  opacity: 0.5;
  animation: float 18s ease-in-out infinite;
}

.orb--one {
  top: -80px;
  left: -100px;
}

.orb--two {
  bottom: 10%;
  right: -60px;
  width: 320px;
  height: 320px;
  animation-delay: -6s;
}

.orb--three {
  top: 40%;
  left: 60%;
  width: 260px;
  height: 260px;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(40px, -30px, 0);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 6vw;
  background: rgba(11, 11, 11, 0.65);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  background: rgba(11, 11, 11, 0.9);
}

.logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav a {
  position: relative;
  color: var(--muted);
  transition: color 0.3s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s ease;
}

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

.nav a:hover::after {
  width: 100%;
}

.nav a[aria-current="page"] {
  color: var(--white-strong);
}

.nav a[aria-current="page"]::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: transform 0.3s ease;
}

.site-header.nav-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--deep-red);
  color: var(--white-strong);
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: 0 12px 30px rgba(91, 10, 10, 0.35);
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--deep-red-bright);
}

.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--white);
  box-shadow: none;
}

.btn--outline:hover {
  background: rgba(247, 245, 242, 0.08);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--white);
  box-shadow: none;
}

.btn--light {
  background: var(--white-strong);
  color: var(--deep-red);
}

.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 60px;
  padding: 120px 8vw 80px;
  position: relative;
  overflow: hidden;
}

.section,
.cta {
  position: relative;
  overflow: hidden;
}

.hero > *:not(.graphics),
.section > *:not(.graphics),
.cta > *:not(.graphics) {
  position: relative;
  z-index: 2;
}

.hero > .graphics,
.section > .graphics,
.cta > .graphics {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.graphics {
  pointer-events: none;
}

.graphic-mark {
  position: absolute;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: clamp(3rem, 10vw, 10rem);
  color: rgba(247, 245, 242, 0.08);
  mix-blend-mode: screen;
  top: var(--mark-top, 6%);
  right: var(--mark-right, auto);
  bottom: var(--mark-bottom, auto);
  left: var(--mark-left, 6vw);
  transform: var(--mark-transform, none);
}

.graphic-ring {
  position: absolute;
  width: var(--ring-size, 320px);
  height: var(--ring-size, 320px);
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 242, 0.18);
  box-shadow: 0 0 80px rgba(91, 10, 10, 0.35);
  top: var(--ring-top, auto);
  right: var(--ring-right, auto);
  bottom: var(--ring-bottom, auto);
  left: var(--ring-left, auto);
}

.graphic-ring--accent {
  border-color: rgba(91, 10, 10, 0.6);
  box-shadow: 0 0 110px rgba(91, 10, 10, 0.45);
}

.graphic-line {
  position: absolute;
  width: 140%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(247, 245, 242, 0.5), transparent);
  opacity: var(--line-opacity, 0.6);
  transform: rotate(var(--line-rotate, -10deg));
  top: var(--line-top, 30%);
  left: var(--line-left, -20%);
}

.graphic-line--thin {
  height: 1px;
  opacity: 0.4;
}

.graphic-grid {
  position: absolute;
  inset: var(--grid-inset, 10% 6%);
  border: 1px solid rgba(247, 245, 242, 0.12);
  background-image: linear-gradient(rgba(247, 245, 242, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 245, 242, 0.12) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: var(--grid-opacity, 0.22);
  transform: rotate(var(--grid-rotate, 0deg));
}

.graphic-dots {
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(circle, rgba(247, 245, 242, 0.4) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: 0.35;
  top: var(--dots-top, 20%);
  left: var(--dots-left, 8%);
  transform: rotate(var(--dots-rotate, 0deg));
}

.hero__content h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.6rem, 3.8vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  color: var(--muted);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  background: rgba(91, 10, 10, 0.8);
  border: 1px solid rgba(247, 245, 242, 0.3);
  transform: rotate(45deg);
  box-shadow: 0 0 12px rgba(91, 10, 10, 0.6);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 520px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 28px 0 34px;
}

.hero__metrics {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.hero__metrics span {
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
}

.hero__metrics strong {
  display: block;
  font-size: 1rem;
  color: var(--white);
  margin-top: 6px;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-mark {
  position: absolute;
  width: 70%;
  max-width: 360px;
  opacity: 0.08;
  filter: grayscale(100%);
}

.portrait-card {
  background: rgba(11, 11, 11, 0.85);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  border-radius: 22px;
  width: 320px;
  height: 420px;
  object-fit: cover;
}

.portrait-card .eyebrow {
  margin-bottom: 12px;
}

.portrait-card h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}

.portrait-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero__badge {
  position: absolute;
  bottom: -30px;
  left: 10%;
  background: var(--white-strong);
  color: var(--deep-red);
  padding: 16px 22px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.blog-page .hero__badge {
  left: auto;
  right: 8%;
  bottom: -24px;
}

.hero__badge span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero__badge strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
}

.scroll-cue {
  position: absolute;
  left: 8vw;
  bottom: 30px;
  width: 2px;
  height: 40px;
  background: var(--line);
  overflow: hidden;
}

.scroll-cue span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.marquee {
  position: relative;
  border-top: 1px solid rgba(247, 245, 242, 0.18);
  border-bottom: 1px solid rgba(247, 245, 242, 0.18);
  overflow: hidden;
  padding: 22px 0;
  background: linear-gradient(120deg, rgba(91, 10, 10, 0.72), rgba(11, 11, 11, 0.95));
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.95), rgba(11, 11, 11, 0));
  opacity: 0.9;
}

.marquee::before {
  left: 0;
}

.marquee::after {
  right: 0;
  transform: scaleX(-1);
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 6vw;
  width: max-content;
  animation: marquee 22s linear infinite;
  will-change: transform;
}

.marquee__track span {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 242, 0.2);
  background: rgba(11, 11, 11, 0.65);
  font-family: "Cormorant Garamond", serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(247, 245, 242, 0.88);
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.45);
}

.marquee__track span::after {
  content: "";
  position: absolute;
  inset: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(247, 245, 242, 0.08);
  pointer-events: none;
}

.marquee__track span:nth-child(odd) {
  background: rgba(91, 10, 10, 0.75);
  border-color: rgba(247, 245, 242, 0.3);
  color: var(--white-strong);
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.section {
  padding: 110px 8vw;
}

.section__header {
  max-width: 640px;
  margin-bottom: 48px;
}

.section__header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section__lead {
  color: var(--muted);
}

.section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.section__actions .btn {
  box-shadow: none;
}

.section--contrast {
  background: rgba(91, 10, 10, 0.18);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.service-card {
  background: rgba(11, 11, 11, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.service-card--detail {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(247, 245, 242, 0.3);
}

.service-card__icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 0;
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.icon-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(247, 245, 242, 0.2);
  background: rgba(11, 11, 11, 0.65);
  color: var(--white-strong);
  box-shadow: inset 0 0 0 1px rgba(91, 10, 10, 0.5);
}

.icon-badge svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-card__action {
  margin-top: auto;
  padding-top: 10px;
}

.service-card li {
  color: var(--white);
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--deep-red-bright);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.sector-card {
  background: rgba(11, 11, 11, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 245, 242, 0.3);
}

.sector-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.sector-card p {
  color: var(--muted);
  margin-bottom: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-list span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--white);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.post-meta__item {
  display: grid;
  gap: 4px;
}

.post-meta__item span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.65rem;
}

.post-meta__item strong {
  color: var(--white);
  font-weight: 600;
}

.blog-post {
  max-width: 760px;
  display: grid;
  gap: 18px;
}

.blog-post h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
}

.blog-post h3 {
  font-size: 1.3rem;
}

.blog-post p {
  color: var(--muted);
}

.blog-post__list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.blog-post__list li {
  position: relative;
  padding-left: 18px;
  color: var(--white);
}

.blog-post__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--deep-red-bright);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}

.campaign-card {
  background: rgba(11, 11, 11, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.3s ease, border 0.3s ease;
}

.campaign-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 245, 242, 0.3);
}

.campaign-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.campaign-card__top h3 {
  margin: 0;
  font-size: 1.4rem;
}

.campaign-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.campaign-card__list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.campaign-card__list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.campaign-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--deep-red-bright);
}

.campaign-card__list strong {
  color: var(--white);
  font-weight: 600;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.kpi-card {
  background: rgba(11, 11, 11, 0.75);
  border: 1px solid rgba(247, 245, 242, 0.16);
  border-radius: var(--radius);
  padding: 26px;
}

.kpi-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.kpi-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 10, 10, 0.65);
  border: 1px solid rgba(247, 245, 242, 0.2);
  color: var(--white-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.kpi-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.kpi-tag {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--muted);
}

.kpi-card h3 {
  margin: 4px 0 0;
  font-size: 1.4rem;
}

.kpi-card p {
  color: var(--muted);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.step {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

.step__number {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.step h3 {
  margin: 14px 0 8px;
}

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

.section--impact {
  background: rgba(11, 11, 11, 0.6);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.impact-card {
  background: rgba(91, 10, 10, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid rgba(247, 245, 242, 0.12);
}

.impact-card h3 {
  margin-bottom: 12px;
}

.impact-card p {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.78);
  overflow: hidden;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(247, 245, 242, 0.3);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
}

.faq-item[open] summary::after {
  content: "-";
  border-color: rgba(247, 245, 242, 0.4);
}

.faq-item__content {
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item__content p {
  margin: 0;
}

.hero--services .hero__visual {
  align-items: flex-start;
}

.hero--services .portrait-card {
  padding: 20px;
}

.hero--services .portrait-card img {
  width: 300px;
  height: 400px;
}

.notice-card {
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: 18px;
  border: 1px solid rgba(247, 245, 242, 0.18);
  background: rgba(11, 11, 11, 0.65);
  color: var(--muted);
}

.notice-card strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.pricing-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.pricing-card {
  border-radius: var(--radius);
  padding: 26px;
  border: 1px solid rgba(247, 245, 242, 0.12);
  background: rgba(11, 11, 11, 0.7);
}

.pricing-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.pricing-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(91, 10, 10, 0.65);
  border: 1px solid rgba(247, 245, 242, 0.2);
  color: var(--white-strong);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.pricing-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card h3 {
  margin-bottom: 0;
}

.pricing-card p {
  color: var(--muted);
}

.bio {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
  align-items: center;
}

.bio__content h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 2.8vw, 3rem);
  margin-bottom: 18px;
}

.bio__content p {
  color: var(--muted);
  margin-bottom: 18px;
}

.bio__actions {
  margin-top: 24px;
}

.bio__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bio__gallery img {
  border-radius: 22px;
  border: 1px solid var(--line);
  width: 100%;
  height: auto;
}

.bio__gallery img:nth-child(1) {
  grid-column: span 2;
}

.cta {
  padding: 90px 8vw;
  background: linear-gradient(120deg, rgba(91, 10, 10, 0.75), rgba(11, 11, 11, 0.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cta__content {
  max-width: 620px;
}

.cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.2rem, 3.2vw, 3.6rem);
  margin-bottom: 16px;
}

.cta p {
  color: var(--white-strong);
  margin-bottom: 24px;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.contact__form {
  display: grid;
  gap: 18px;
  background: rgba(11, 11, 11, 0.7);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
}

.contact__form label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.contact__form input,
.contact__form select,
.contact__form textarea {
  background: rgba(11, 11, 11, 0.7);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  color: var(--white);
}

.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(247, 245, 242, 0.4);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 1.4em;
  font-size: 0.9rem;
  color: var(--muted);
}

.form-message.is-error {
  color: #f5b4b4;
}

.form-message.is-success {
  color: var(--white-strong);
}

.contact__info {
  background: rgba(91, 10, 10, 0.2);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(247, 245, 242, 0.12);
}

.contact__info h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.contact__info p {
  color: var(--muted);
  margin-bottom: 20px;
}

.contact__details {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.contact__details span {
  font-size: 0.95rem;
  color: var(--white);
}

body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(11, 11, 11, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 999;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__content {
  width: min(92vw, 520px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.95);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: left;
}

.modal__content h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  margin-bottom: 12px;
}

.modal__content p {
  color: var(--muted);
  margin-bottom: 20px;
}

.modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 60px 8vw 50px;
  border-top: 1px solid var(--line);
  background: rgba(11, 11, 11, 0.9);
}

.footer__brand img {
  width: 60px;
  height: 60px;
  margin-bottom: 14px;
}

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

.footer__links {
  display: block;
}

.footer__links ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.footer__links a {
  color: var(--muted);
}

.footer__links a:hover {
  color: var(--white-strong);
}

.footer__meta {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.social {
  display: flex;
  gap: 14px;
}

.social a {
  color: var(--white);
}

@media (max-width: 1100px) {
  .hero {
    gap: 48px;
  }

  .section {
    padding: 100px 6vw;
  }

  .section__header {
    max-width: 100%;
  }

  .hero__metrics {
    gap: 24px;
  }

  .card-grid,
  .sector-grid,
  .impact-grid,
  .campaign-grid,
  .kpi-grid,
  .pricing-flow,
  .faq-grid {
    gap: 20px;
  }
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .btn--ghost {
    display: none;
  }

  .nav {
    position: fixed;
    top: 78px;
    right: 6vw;
    background: rgba(11, 11, 11, 0.95);
    border: 1px solid var(--line);
    padding: 20px;
    border-radius: 16px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .site-header.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }

  .hero__visual {
    order: -1;
  }

  .hero__badge {
    left: 50%;
    transform: translateX(-50%);
  }

  .blog-page .hero__badge {
    right: auto;
    bottom: -18px;
  }

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

  .scroll-cue {
    display: none;
  }

  .graphic-mark {
    font-size: clamp(2.6rem, 12vw, 7rem);
    letter-spacing: 0.3em;
  }
}

@media (max-width: 600px) {
  .site-header {
    padding: 16px 5vw;
  }

  .hero {
    padding: 90px 5vw 70px;
  }

  .section {
    padding: 90px 5vw;
  }

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

  .hero__metrics {
    flex-direction: column;
  }

  .blog-page .hero__badge {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    transform: none;
    margin-top: 16px;
  }

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

  .bio__gallery img {
    height: auto;
  }

  .marquee::before,
  .marquee::after {
    width: 80px;
  }

  .marquee__track span {
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    padding: 6px 14px;
  }

  .graphic-line {
    display: none;
  }

  .graphic-grid {
    inset: 14% 8%;
    opacity: 0.16;
  }

  .graphic-dots {
    width: 160px;
    height: 160px;
    opacity: 0.25;
  }

  .hero__content,
  .section__header,
  .service-card,
  .sector-card,
  .impact-card,
  .step,
  .bio__content,
  .campaign-card,
  .kpi-card,
  .pricing-card,
  .faq-item,
  .cta__content,
  .notice-card,
  .contact__info,
  .contact__form,
  .footer__brand,
  .footer__meta {
    text-align: center;
  }

  .hero__actions,
  .section__actions,
  .tag-list,
  .post-meta,
  .hero__metrics,
  .contact__details,
  .social {
    justify-content: center;
    align-items: center;
  }

  .hero__metrics > div {
    text-align: center;
  }

  .section__header {
    margin-left: auto;
    margin-right: auto;
  }

  .service-card__top,
  .campaign-card__top,
  .pricing-card__top,
  .kpi-card__top {
    justify-content: center;
  }

  .faq-item summary {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .faq-item__content {
    text-align: center;
  }

  .service-card ul,
  .campaign-card__list,
  .blog-post__list {
    padding-left: 0;
  }

  .service-card li,
  .campaign-card__list li,
  .blog-post__list li {
    padding-left: 0;
    text-align: center;
  }

  .service-card li::before,
  .campaign-card__list li::before,
  .blog-post__list li::before {
    display: none;
  }

  .step {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 16px;
  }

  .step:first-child {
    border-top: none;
    padding-top: 0;
  }

  .contact__form label {
    text-align: center;
  }

  .portrait-card,
  .post-meta__item {
    text-align: center;
    justify-items: center;
  }

  .blog-page .hero__content,
  .blog-page .section__header,
  .blog-page .notice-card,
  .blog-page .portrait-card,
  .blog-page .blog-post,
  .blog-page .blog-post h2,
  .blog-page .blog-post h3,
  .blog-page .blog-post p {
    text-align: left;
  }

  .blog-page .hero__actions,
  .blog-page .section__actions,
  .blog-page .tag-list,
  .blog-page .post-meta {
    justify-content: flex-start;
    align-items: flex-start;
  }

  .blog-page .post-meta__item {
    text-align: left;
    justify-items: start;
  }

  .blog-page .blog-post__list {
    padding-left: 0;
  }

  .blog-page .blog-post__list li {
    padding-left: 18px;
    text-align: left;
  }

  .blog-page .blog-post__list li::before {
    display: block;
  }

  .contact__form input,
  .contact__form select,
  .contact__form textarea {
    text-align: left;
  }

  .modal__content {
    text-align: center;
  }

  .modal__actions {
    justify-content: center;
  }

  .footer__links ul {
    justify-items: center;
  }

  .nav ul {
    align-items: center;
    text-align: center;
  }
}

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

  .orb,
  .marquee__track,
  .scroll-cue span {
    animation: none;
  }

  .btn,
  .service-card,
  .sector-card,
  .faq-item {
    transition: none;
  }
}
