/* ============================================================
   MOON ABOVE — Editorial CSS
   Independent Art & Cultural Advisory
   ============================================================ */


/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-light: #f5f5f3;
  --gray-mid: #e8e8e4;
  --gray-text: #0a0a0a;
  --serif: 'EB Garamond', Georgia, serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --nav-h: 72px;
  --max: 1400px;
  --pad: clamp(24px, 5vw, 80px);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.label {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* === LAYOUT === */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* === NAVIGATION === */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-mid);
  z-index: 100;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.nav-logo {
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.language-switcher { display:flex; align-items:center; gap:6px; margin-left:2px; font-size:10px; letter-spacing:.1em; color:var(--gray-text); }
.language-switcher a { color:inherit; padding:4px 0; border-bottom:1px solid transparent; }
.language-switcher a.active { color:var(--black); border-bottom-color:var(--black); }
.language-switcher-mobile { margin:20px 0 0; }
.nav-mobile .language-switcher-mobile a { display:inline-block; border:0; padding:8px 0; font-size:11px; }
.nav-mobile .language-switcher-mobile a.active { border-bottom:1px solid var(--black); }

.nav-links a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--black);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  background: transparent;
  color: var(--black);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-dropdown-trigger span {
  font-size: 13px;
  line-height: 1;
  transition: transform 0.2s;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -22px;
  width: 290px;
  padding: 22px 0 10px;
  background: var(--white);
  border: 1px solid var(--gray-mid);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 120;
}

.nav-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: 0.03em;
}

.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { background: var(--gray-light); }

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown-trigger span,
.nav-dropdown:focus-within .nav-dropdown-trigger span {
  transform: rotate(180deg);
}

/* Contact CTA button in nav */
.nav-links a.nav-cta {
  background: var(--black);
  color: var(--white);
  padding: 8px 18px;
  letter-spacing: 0.1em;
  margin-left: 8px;
  transition: background 0.2s, opacity 0.2s;
}

.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover  { background: #333; opacity: 1; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--black);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  padding: 32px var(--pad) 40px;
  z-index: 99;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-mid);
  color: var(--black);
  text-decoration: none;
}

.nav-mobile-group {
  border-bottom: 1px solid var(--gray-mid);
  padding: 14px 0 12px;
}

.nav-mobile-group-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-bottom: 8px;
}

.nav-mobile a.nav-mobile-sub {
  border: 0;
  padding: 9px 0 9px 18px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: none;
}

/* Contact CTA in mobile nav — black pill like desktop */
.nav-mobile-cta {
  display: block;
  margin-top: 20px;
  background: var(--black) !important;
  color: var(--white) !important;
  text-align: center;
  padding: 16px 0 !important;
  border: none !important;
  letter-spacing: 0.12em;
  font-size: 11px !important;
  font-weight: 400;
  text-transform: uppercase;
}

.nav-mobile-cta:hover {
  background: #333 !important;
  color: var(--white) !important;
}

/* === PAGE WRAPPER === */
.page-wrap { padding-top: var(--nav-h); }

/* === HERO — HOMEPAGE === */
.hero-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-h));
  align-items: stretch;
  padding: 0;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(60px, 8vw, 120px) var(--pad) clamp(60px, 8vw, 120px) var(--pad);
  padding-left: var(--pad);
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: var(--black);
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 300;
  line-height: 1.7;
  color: var(--black);
  max-width: 320px;
  margin-bottom: 48px;
}

.hero-right {
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CTA LINK === */
.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
  transition: opacity 0.2s;
}

.cta-link:hover { opacity: 0.5; }

.cta-link .arrow { font-size: 14px; transition: transform 0.2s; }
.cta-link:hover .arrow { transform: translateX(4px); }

.conversation-cta {
  padding: 34px 0;
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
}

.conversation-cta-inner {
  display: flex;
  justify-content: flex-end;
}

/* === SECTION BASE === */
section {
  padding: clamp(80px, 10vw, 140px) 0;
}

section.bordered {
  border-top: 1px solid var(--gray-mid);
}

/* === APPROACH SECTION === */
.approach-section {
  border-top: 1px solid var(--gray-mid);
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.approach-left .section-label {
  margin-bottom: 40px;
}

.approach-headline {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.approach-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
  max-width: 440px;
}

.approach-right {
  padding-top: 16px;
}

.process-list {
  border-top: 1px solid var(--gray-mid);
}

.process-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.process-num {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--gray-text);
  width: 28px;
  flex-shrink: 0;
}

.process-name {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
}

/* === SERVICES SECTION (2-col) === */
.services-section {
  border-top: 1px solid var(--gray-mid);
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-right: 1px solid var(--gray-mid);
}

.service-col:last-child {
  border-right: none;
}

.service-content {
  padding: clamp(40px, 5vw, 80px) clamp(32px, 4vw, 64px);
}

.service-image {
  background: var(--gray-light);
  overflow: hidden;
  min-height: 400px;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-label {
  margin-bottom: 32px;
}

.service-title {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-divider {
  width: 24px;
  height: 1px;
  background: var(--black);
  margin-bottom: 28px;
}

.service-text {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  margin-bottom: 32px;
  color: var(--black);
}

.service-list {
  margin-bottom: 40px;
}

.service-list li {
  font-size: 13px;
  font-weight: 300;
  line-height: 2;
  color: var(--black);
}

/* === METHOD SECTION === */
.method-section {
  border-top: 1px solid var(--gray-mid);
  background: var(--gray-light);
}

.method-label { margin-bottom: 60px; }

.method-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--gray-mid);
}

.method-step {
  padding: 32px 0;
  border-right: 1px solid var(--gray-mid);
  padding-right: 32px;
}

.method-step:last-child { border-right: none; }

.method-num {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  color: var(--black);
  line-height: 1;
  margin-bottom: 12px;
}

.method-name {
  font-size: 12px;
  font-weight: 300;
  font-family: var(--serif);
  font-style: italic;
  color: var(--black);
}

/* === WHY SECTION === */
.why-section {
  border-top: 1px solid var(--gray-mid);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-left {}

.why-section-label { margin-bottom: 60px; }

.why-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-mid);
}

.why-row:last-child { border-bottom: 1px solid var(--gray-mid); }

.why-label-col {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--black);
  padding-top: 2px;
}

.why-text-col {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--black);
}

.why-image {
  background: var(--gray-light);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === FINAL CTA === */
.final-cta {
  border-top: 1px solid var(--gray-mid);
}

.final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.final-cta-text {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  max-width: 560px;
}

/* === INNER PAGE HERO === */
.page-hero {
  border-bottom: 1px solid var(--gray-mid);
  padding: clamp(60px, 8vw, 120px) 0 clamp(40px, 5vw, 80px);
}

.page-hero-label { margin-bottom: 24px; }

.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  max-width: 900px;
  margin-bottom: 24px;
}

.page-hero-sub {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  color: var(--black);
}

/* === PAGE CONTENT === */
.page-content {
  padding: clamp(60px, 8vw, 120px) 0;
}

.content-body {
  max-width: 720px;
}

.content-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
}

.content-body h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-top: 48px;
  margin-bottom: 20px;
}

.content-body h3 {
  font-size: 18px;
  margin-top: 36px;
  margin-bottom: 16px;
}

.content-body ul, .content-body ol {
  margin: 20px 0 20px 24px;
}

.content-body li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 8px;
  list-style: disc;
}

/* === TWO-COL LAYOUT === */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

/* === INSIGHTS / ARTICLES === */
.insights-grid {
  display: grid;
  gap: 0;
}

.article-row {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--gray-mid);
  transition: opacity 0.2s;
  cursor: pointer;
}

.article-row:last-child { border-bottom: 1px solid var(--gray-mid); }
.article-row:hover { opacity: 0.6; }

.article-date {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  font-weight: 400;
}

.article-title {
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.3;
}

.article-arrow {
  font-size: 18px;
  color: var(--black);
}

/* === ARTICLE DETAIL === */
.article-hero-image {
  width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  background: var(--gray-light);
  margin-top: clamp(40px, 5vw, 80px);
  margin-bottom: clamp(40px, 5vw, 80px);
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
}

/* === CONTACT === */
.contact-hero .page-hero-sub {
  max-width: 720px;
  font-size: 17px;
  font-weight: 400;
  color: #0a0a0a;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.contact-info {
  color: #0a0a0a;
}

.contact-info > .label {
  margin-bottom: 18px;
}

.contact-info > h2,
.contact-form-head h2 {
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
  margin-bottom: 28px;
  color: #0a0a0a;
}

.contact-info p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: #0a0a0a;
  margin: 0;
}

.contact-process {
  border-top: 1px solid #0a0a0a;
}

.contact-process-step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.contact-process-step > span {
  padding-top: 3px;
  font-family: var(--serif);
  font-size: 17px;
  color: #0a0a0a;
}

.contact-process-step h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .01em;
  color: #0a0a0a;
}

.contact-process-note {
  margin-top: 28px !important;
  padding-left: 16px;
  border-left: 2px solid #0a0a0a;
}

.pricing-accordion {
  margin-top: 30px;
  border-top: 1px solid #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
}

.pricing-accordion > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  color: #0a0a0a;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.pricing-accordion > summary::-webkit-details-marker { display: none; }
.pricing-accordion > summary:focus-visible {
  outline: 1px solid #0a0a0a;
  outline-offset: 5px;
}

.pricing-accordion-icon {
  flex: 0 0 auto;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}

.pricing-accordion[open] .pricing-accordion-icon { transform: rotate(45deg); }
.pricing-accordion-content { padding: 4px 0 28px; animation: pricingReveal .25s ease both; }
@keyframes pricingReveal {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: none; }
}

.pricing-intro {
  margin-bottom: 24px !important;
  font-size: 13px !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
}

.pricing-engagement {
  padding: 24px 0;
  border-top: 1px solid var(--gray-mid);
}

.pricing-engagement-head {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 7px 12px;
}

.pricing-engagement-number {
  grid-row: 1 / span 2;
  padding-top: 2px;
  font-family: var(--serif);
  font-size: 15px;
  color: var(--gray-text);
}

.pricing-engagement h3 {
  min-width: 0;
  overflow-wrap: anywhere;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.15;
}

.pricing-engagement-price { grid-column: 2; }
.pricing-engagement-price span,
.pricing-engagement-meta span,
.pricing-engagement-deliverables > span {
  display: block;
  margin-bottom: 4px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.4;
  text-transform: uppercase;
  color: var(--gray-text);
}

.pricing-engagement-price strong {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.pricing-engagement-meta {
  margin: 17px 0 16px 42px;
  display: grid;
  gap: 14px;
}

.contact-info .pricing-engagement-meta p {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.55;
}

.pricing-engagement-deliverables {
  margin: 0 0 18px 42px;
}

.pricing-engagement-deliverables ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-engagement-deliverables li {
  position: relative;
  padding: 7px 0 7px 13px;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.5;
}

.pricing-engagement-deliverables li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gray-text);
}

.pricing-engagement-link {
  display: inline-flex;
  gap: 8px;
  margin-left: 42px;
  padding-bottom: 4px;
  border-bottom: 1px solid #0a0a0a;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.pricing-engagement-link span { transition: transform .2s; }
.pricing-engagement-link:hover span { transform: translateX(3px); }
.pricing-engagement-link:focus-visible { outline: 1px solid #0a0a0a; outline-offset: 4px; }

.contact-info .pricing-note-general {
  margin-top: 5px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-mid);
  color: var(--gray-text);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
}

.service-pricing-accordion {
  max-width: 820px;
  margin-top: 34px;
}

.service-pricing-accordion .pricing-accordion-content { padding-bottom: 26px; }
.service-pricing-accordion .pricing-engagement { padding-top: 26px; }
.service-pricing-accordion .pricing-engagement-head {
  grid-template-columns: 32px minmax(220px, 1fr) minmax(180px, auto);
  align-items: start;
  gap: 12px 24px;
}
.service-pricing-accordion .pricing-engagement-number { grid-row: 1; }
.service-pricing-accordion .pricing-engagement-price {
  grid-column: 3;
  text-align: right;
}
.service-pricing-accordion .pricing-engagement-meta {
  grid-template-columns: minmax(160px, .65fr) minmax(280px, 1.35fr);
  gap: 24px;
}
.service-pricing-accordion .pricing-engagement-meta p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}
.service-pricing-accordion .pricing-engagement-deliverables ul {
  columns: 2;
  column-gap: 28px;
}
.service-pricing-accordion .pricing-engagement-deliverables li {
  break-inside: avoid;
  font-size: 12px;
}
.service-pricing-accordion .pricing-note-general {
  margin-top: 4px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-mid);
  color: var(--gray-text);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.65;
}

.contact-form-wrap {
  color: #0a0a0a;
}

.contact-form-head {
  margin-bottom: 40px;
}

.contact-form-head .label {
  margin-bottom: 18px;
}

.contact-form-head h2 {
  margin-bottom: 12px;
}

.contact-form-head p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: #0a0a0a;
}

.form-section-label {
  margin: 34px 0 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #0a0a0a;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0a0a0a;
}

.contact-detail {
  margin-bottom: 32px;
}

.contact-detail-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.contact-detail-value {
  font-size: 14px;
  font-weight: 300;
}

/* === FORM === */
.contact-form {}

.form-row {
  margin-bottom: 24px;
}

.form-row label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  margin-bottom: 10px;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid #b8b8b2;
  background: #fff;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: #0a0a0a;
  padding: 14px 15px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: #0a0a0a;
  box-shadow: 0 0 0 1px #0a0a0a;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: #555550;
  opacity: 1;
}

.form-row textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--black);
  border: none;
  padding: 18px 40px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-top: 16px;
}

.btn-submit:hover {
  background: var(--gray-text);
}

.form-success {
  padding: 20px 0;
  font-size: 14px;
  font-weight: 300;
  border-top: 1px solid var(--gray-mid);
  display: none;
}

/* === ABOUT PAGE === */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-overview { padding-bottom: 0; }
.about-founder { padding-top: clamp(40px, 5vw, 72px); }

.about-image {
  background: var(--gray-light);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === PROCESS PAGE === */
.process-page-steps { border-top: 1px solid var(--gray-mid); }

.process-page-item {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 60px;
  padding: clamp(40px, 5vw, 72px) 0;
  border-bottom: 1px solid var(--gray-mid);
  align-items: start;
}

.process-page-num {
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 400;
  line-height: 1;
  color: var(--black);
}

.process-page-title {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  margin-bottom: 16px;
}

.process-page-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--black);
}

/* === FULL-WIDTH IMAGE BAND === */
.image-band {
  width: 100%;
  aspect-ratio: 21/7;
  overflow: hidden;
  background: var(--gray-light);
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === PLACEHOLDER IMAGE === */
.img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === FOOTER === */
footer.site-footer {
  border-top: 1px solid var(--gray-mid);
  padding: clamp(40px, 5vw, 72px) 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand-name {
  display: inline-block;
  font-family: 'Inter', 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 12px;
}

.footer-brand-tag {
  font-size: 12px;
  font-weight: 300;
  color: var(--gray-text);
  margin-bottom: 32px;
}

.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 12px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--black);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gray-text); }

.footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: color 0.2s;
  line-height: 1;
}

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

.footer-bottom {
  border-top: 1px solid var(--gray-mid);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-copy {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-text);
}

.footer-aside {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-text);
}

.footer-aside a {
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-mid);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}

.footer-aside a:hover { color: var(--black); border-color: var(--gray-text); }

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 11px;
  font-weight: 300;
  color: var(--gray-text);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

/* === FLASH MESSAGES === */
.flash {
  padding: 12px 24px;
  font-size: 13px;
  margin-bottom: 24px;
  border: 1px solid;
}

.flash.success { border-color: #2d7a2d; color: #2d7a2d; background: #f0f8f0; }
.flash.error   { border-color: #c0392b; color: #c0392b; background: #fdf0ee; }

/* === ADMIN PANEL === */
.admin-body {
  font-family: var(--sans);
  background: #f7f7f5;
  min-height: 100vh;
}

.admin-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 56px;
  background: var(--black);
  display: flex;
  align-items: center;
  z-index: 200;
}

.admin-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 24px;
}

.admin-bar-brand {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.admin-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.admin-bar-right a {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.admin-bar-right a:hover { color: var(--white); }

.admin-layout {
  display: flex;
  padding-top: 56px;
  min-height: 100vh;
}

.admin-sidebar {
  width: 220px;
  background: var(--white);
  border-right: 1px solid var(--gray-mid);
  position: fixed;
  top: 56px;
  bottom: 0;
  overflow-y: auto;
  padding: 32px 0;
  flex-shrink: 0;
}

.admin-sidebar-section {
  margin-bottom: 32px;
}

.admin-sidebar-title {
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-text);
  padding: 0 24px;
  margin-bottom: 8px;
}

.admin-sidebar a {
  display: block;
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  padding: 10px 24px;
  transition: background 0.15s;
  border-left: 2px solid transparent;
}

.admin-sidebar a:hover { background: var(--gray-light); }
.admin-sidebar a.active {
  border-left-color: var(--black);
  background: var(--gray-light);
  font-weight: 400;
}

.admin-main {
  margin-left: 220px;
  flex: 1;
  padding: 40px 48px;
  max-width: 1100px;
}

.admin-page-title {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 32px;
  color: var(--black);
}

/* Admin table */
.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  font-size: 13px;
}

.admin-table th {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  font-weight: 400;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-mid);
}

.admin-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-mid);
  font-weight: 300;
  color: var(--black);
  vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #fbfbf9; }

.admin-table a { color: var(--black); border-bottom: 1px solid var(--gray-mid); }

/* Admin form */
.admin-form { max-width: 760px; }

.admin-form-section {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  padding: 32px;
  margin-bottom: 24px;
}

.admin-form-section-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-mid);
}

.admin-field {
  margin-bottom: 24px;
}

.admin-field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.admin-field input[type="text"],
.admin-field input[type="email"],
.admin-field input[type="password"],
.admin-field input[type="url"],
.admin-field select,
.admin-field textarea {
  width: 100%;
  border: 1px solid var(--gray-mid);
  background: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  -webkit-appearance: none;
}

.admin-field input:focus,
.admin-field textarea:focus,
.admin-field select:focus {
  border-color: var(--black);
}

.admin-field textarea { min-height: 180px; resize: vertical; }

.admin-field-hint {
  font-size: 11px;
  color: var(--gray-text);
  margin-top: 6px;
}

.admin-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* Admin buttons */
.btn-admin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  cursor: pointer;
  border: 1px solid;
  transition: all 0.2s;
  border-radius: 0;
  text-decoration: none;
}

.btn-admin-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-admin-primary:hover { background: #333; border-color: #333; }

.btn-admin-ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--gray-mid);
}

.btn-admin-ghost:hover { border-color: var(--black); }

.btn-admin-danger {
  background: transparent;
  color: #c0392b;
  border-color: #c0392b;
  font-size: 11px;
  padding: 6px 14px;
}

.btn-admin-danger:hover { background: #c0392b; color: var(--white); }

.btn-admin-sm {
  font-size: 10px;
  padding: 6px 14px;
}

/* Admin actions bar */
.admin-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

/* Status badges */
.badge {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid;
  font-weight: 400;
}

.badge-published { color: #2d7a2d; border-color: #2d7a2d; }
.badge-draft     { color: var(--gray-text); border-color: var(--gray-mid); }
.badge-unread    { color: var(--black); border-color: var(--black); background: var(--black); color: var(--white); }
.badge-read      { color: var(--gray-text); border-color: var(--gray-mid); }

/* Dashboard stats */
.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--gray-mid);
  padding: 28px 32px;
}

.stat-num {
  font-family: var(--serif);
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: var(--black);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
}

/* Admin login */
.admin-login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.admin-login-box {
  width: 100%;
  max-width: 420px;
  padding: 0 24px;
}

.admin-login-brand {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.admin-login-sub {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 48px;
}

/* Checkbox */
.admin-checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.admin-checkbox-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--gray-mid);
  cursor: pointer;
}

.admin-checkbox-row label {
  font-size: 13px;
  font-weight: 300;
  color: var(--black);
  cursor: pointer;
}

/* Media grid */
.media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.media-item {
  border: 1px solid var(--gray-mid);
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}

.media-item:hover { border-color: var(--black); }

.media-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--gray-light);
}

.media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-info {
  padding: 10px;
}

.media-name {
  font-size: 11px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* === INSTALL WIZARD === */
.install-wrap {
  min-height: 100vh;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 24px;
}

.install-brand {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
  text-align: center;
}

.install-tagline {
  font-size: 12px;
  color: var(--gray-text);
  margin-bottom: 56px;
  text-align: center;
}

.install-box {
  width: 100%;
  max-width: 600px;
}

.install-steps {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--gray-mid);
}

.install-step-ind {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.install-step-ind.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.install-step-ind.done {
  color: #2d7a2d;
  border-bottom-color: #2d7a2d;
}

.install-title {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 8px;
}

.install-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-text);
  margin-bottom: 40px;
  line-height: 1.6;
}

.install-form-row { margin-bottom: 24px; }

.install-form-row label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.install-form-row input {
  width: 100%;
  border: 1px solid var(--gray-mid);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--black);
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.2s;
  background: var(--white);
  border-radius: 0;
}

.install-form-row input:focus { border-color: var(--black); }

.check-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-mid);
  font-size: 13px;
  font-weight: 300;
}

.check-row:first-child { border-top: 1px solid var(--gray-mid); }

.check-icon { font-size: 16px; width: 24px; text-align: center; }
.check-ok   { color: #2d7a2d; }
.check-fail { color: #c0392b; }
.check-warn { color: #e67e22; }

.install-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-mid);
}

.btn-install {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--black);
  cursor: pointer;
  background: var(--black);
  color: var(--white);
  transition: background 0.2s;
  border-radius: 0;
}

.btn-install:hover { background: #333; }
.btn-install-ghost { background: var(--white); color: var(--black); }
.btn-install-ghost:hover { background: var(--gray-light); }

.progress-bar-wrap {
  width: 100%;
  height: 2px;
  background: var(--gray-mid);
  margin-bottom: 16px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: var(--black);
  transition: width 0.5s ease;
}

.install-log {
  background: #0a0a0a;
  color: #9e9e9e;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.8;
  padding: 24px;
  min-height: 200px;
  max-height: 360px;
  overflow-y: auto;
  margin-top: 24px;
}

.install-log .log-ok   { color: #4caf50; }
.install-log .log-err  { color: #f44336; }
.install-log .log-info { color: #90caf9; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .hero-home { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { aspect-ratio: 16/9; }
  .hero-left { padding: 60px var(--pad); }

  .approach-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-col { grid-template-columns: 1fr; border-right: none; border-bottom: 1px solid var(--gray-mid); }
  .service-image { min-height: 280px; }
  .service-col:last-child { border-bottom: none; }

  .method-timeline { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; }

  .two-col-layout { grid-template-columns: 1fr; gap: 40px; }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .process-page-item { grid-template-columns: 60px 1fr; gap: 32px; }
  .process-page-item > *:last-child { grid-column: 2; }

  .final-cta-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-headline { font-size: clamp(36px, 10vw, 56px); }

  .method-timeline { grid-template-columns: 1fr 1fr; }
  .method-step { border-right: none; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
  transition: color 0.2s;
  line-height: 1;
}

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

.footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal { gap: 16px; }

  .dashboard-stats { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 24px; }

  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .article-row { grid-template-columns: 1fr; gap: 8px; }
  .article-date { display: none; }

  .why-row { grid-template-columns: 1fr; gap: 8px; }
  .why-label-col { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); }
  .admin-grid-2 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --pad: 20px; }
  .method-timeline { grid-template-columns: 1fr; }
  .install-steps { display: none; }
  .dashboard-stats { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════════
   REPOSITIONING 2026 — homepage, engagement cards, method,
   service pages, founder section. Appended block; overrides where
   noted are intentional.
   ══════════════════════════════════════════════════════════════ */

/* Hero additions --------------------------------------------------- */
.hero-sub { max-width: 460px; }           /* widen for longer subhead */
.cta-link--muted { border-bottom-color: var(--gray-mid); }
.hero-ctas { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-credibility {
  margin-top: 40px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--gray-text);
}
.hero-moon { width: 100%; height: 100%; min-height: 340px; background: #ede9e3;
  display: flex; align-items: center; justify-content: center; }

/* Section head ----------------------------------------------------- */
.section-head { max-width: 680px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(26px, 3vw, 40px); margin-top: 16px; }
.section-intro { margin-top: 20px; font-size: 15px; font-weight: 300;
  line-height: 1.75; color: var(--gray-text); max-width: 620px; }
.section-intro a { color: var(--black); }

/* Engagement cards (spec §7) -------------------------------------- */
.engagement-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--gray-mid); border-left: 1px solid var(--gray-mid);
}
.engagement-card {
  display: flex; flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid);
  background: var(--white); transition: background 0.25s;
}
.engagement-card:hover { background: var(--gray-light); }
.ec-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 22px; }
.ec-num { font-family: var(--serif); font-size: 20px; color: var(--gray-text); }
.ec-dur { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); }
.ec-title { font-size: clamp(22px, 2.4vw, 30px); line-height: 1.1; margin-bottom: 12px; }
.ec-tagline { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--black); margin-bottom: 18px; }
.ec-intro { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray-text); margin-bottom: 26px; }
.ec-meta { border-top: 1px solid var(--gray-mid); margin-top: auto; margin-bottom: 24px; }
.engagement-card--executive-brand-advisory .ec-meta { margin-top: 0; }
.ec-meta-row { display: grid; grid-template-columns: 96px 1fr; gap: 16px;
  padding: 11px 0; border-bottom: 1px solid var(--gray-mid); }
.ec-meta-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-text); }
.ec-meta-val { font-size: 12px; font-weight: 300; line-height: 1.5; color: var(--black); }
.ec-cta { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); display: inline-flex; align-items: center; gap: 10px; }
.engagement-card:hover .ec-cta .arrow { transform: translateX(4px); }
.ec-cta .arrow { transition: transform 0.2s; }

.pricing-note { margin-top: 44px; text-align: center; }
.pricing-note p { font-size: 13px; font-weight: 300; color: var(--gray-text);
  max-width: 620px; margin: 0 auto; line-height: 1.7; }
.price-floor { margin-top: 10px; color: var(--black) !important; }

.home-pricing-accordion {
  max-width: none;
  margin: 0;
  padding: clamp(28px, 3vw, 44px);
  border-top: 0;
  border-right: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  background: #f5f5f3;
  text-align: left;
}

.home-pricing-accordion > summary {
  padding: 0 0 19px;
  border-bottom: 1px solid var(--gray-mid);
}

.home-pricing-accordion .pricing-accordion-content {
  padding: 24px 0 0;
}

.home-pricing-copy {
  color: var(--black);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
}

.home-pricing-copy p { margin: 0 0 22px; }

.home-pricing-copy a {
  padding-bottom: 2px;
  color: var(--black);
  transition: border-color .2s;
}

.home-pricing-links {
  margin: 4px 0 26px;
  border-top: 1px solid var(--gray-mid);
}

.home-pricing-links a {
  position: relative;
  display: block;
  padding: 13px 26px 13px 0;
  border-bottom: 1px solid var(--gray-mid);
}

.home-pricing-link-main {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  font-size: 10px;
  letter-spacing: .055em;
  line-height: 1.45;
  text-transform: uppercase;
}

.home-pricing-link-main strong {
  font-weight: 500;
  overflow-wrap: anywhere;
}

.home-pricing-link-main b {
  flex: 0 0 auto;
  font-weight: 600;
  text-align: right;
}

.home-pricing-duration {
  display: block;
  margin-top: 6px;
  color: var(--gray-text);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.45;
}

.home-pricing-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: transform .2s;
}

.home-pricing-links a:hover .home-pricing-arrow { transform: translate(3px,-50%); }

.home-pricing-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  border-bottom: 1px solid var(--black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-pricing-copy a:focus-visible { outline: 1px solid var(--black); outline-offset: 3px; }

/* When brands call us (spec §14) ---------------------------------- */
.triggers-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--gray-mid);
}
.trigger-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px;
  padding: 26px 20px; border-bottom: 1px solid var(--gray-mid);
  transition: background 0.25s; }
.trigger-item:nth-child(odd) { padding-right: clamp(20px, 4vw, 64px); }
.trigger-item:nth-child(even) { padding-left: clamp(20px, 4vw, 64px);
  border-left: 1px solid var(--gray-mid); }
.trigger-item:hover { background: var(--gray-light); }
.trigger-item:hover .trigger-num { transform: translateX(4px); }
.trigger-num { font-family: var(--serif); font-size: 18px; color: var(--gray-text); }
.trigger-num { transition: transform 0.25s; }
.trigger-item p { font-size: 15px; font-weight: 300; line-height: 1.55; }

/* Method — homepage (spec §15) ------------------------------------ */
.method-stages {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-mid); border-left: 1px solid var(--gray-mid);
}
.method-stage { padding: clamp(24px, 2.5vw, 34px);
  border-right: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid);
  transition: background 0.25s; }
.method-stage:hover { background: var(--gray-light); }
.method-stage:hover .method-stage-num { transform: translateX(4px); }
.method-stage-num { font-size: 10px; letter-spacing: 0.1em; color: var(--gray-text); display: block; margin-bottom: 22px; }
.method-stage-num { transition: transform 0.25s; }
.method-stage-name { font-size: 22px; margin-bottom: 14px; }
.method-stage-q { font-size: 13px; font-weight: 300; line-height: 1.65; color: var(--gray-text); }
.method-home-cta { display:flex; flex-wrap:wrap; gap:24px 40px; margin-top:44px; }
.home-sketch-form {
  scroll-margin-top: calc(var(--nav-h) + 24px);
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:clamp(40px,6vw,90px);
  margin-top:48px;
  padding:clamp(32px,4vw,56px);
  background:var(--gray-light);
  border:1px solid var(--gray-mid);
}
.home-sketch-copy .label { margin-bottom:18px; }
.home-sketch-copy h3 { max-width:430px; margin-bottom:14px; font-size:clamp(26px,3vw,40px); }
.home-sketch-copy p { max-width:480px; font-size:14px; line-height:1.7; }
.home-sketch-field label {
  display:block;
  margin-bottom:10px;
  font-size:10px;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.home-sketch-field textarea {
  width:100%;
  min-height:150px;
  padding:18px;
  resize:vertical;
  border:1px solid #b8b8b2;
  border-radius:0;
  background:#fff;
  color:var(--black);
  font:400 15px/1.6 var(--sans);
  outline:none;
}
.home-sketch-field input {
  width:100%;
  margin-bottom:20px;
  padding:14px 15px;
  border:1px solid #b8b8b2;
  border-radius:0;
  background:#fff;
  color:var(--black);
  font:400 15px var(--sans);
  outline:none;
}
.home-sketch-field select {
  width:100%;
  min-height:48px;
  margin-bottom:16px;
  padding:11px 14px;
  border:1px solid var(--gray-mid);
  border-radius:0;
  background:var(--white);
  color:var(--black);
  font:300 14px var(--sans);
}
.home-sketch-field select:focus { border-color:var(--black); box-shadow:0 0 0 1px var(--black); outline:none; }
.home-sketch-field [hidden] { display:none !important; }
.home-sketch-field input:focus { border-color:var(--black); box-shadow:0 0 0 1px var(--black); }
.home-sketch-field input::placeholder { color:#555550; opacity:1; }
.home-sketch-field textarea:focus { border-color:var(--black); box-shadow:0 0 0 1px var(--black); }
.home-sketch-field textarea::placeholder { color:#555550; opacity:1; }
.home-sketch-actions { display:flex; justify-content:space-between; align-items:center; gap:24px; margin-top:14px; }
.home-sketch-actions > span { font-size:11px; line-height:1.5; }
.home-sketch-actions button {
  flex:none;
  padding:15px 22px;
  border:0;
  background:var(--black);
  color:#fff;
  font:600 10px var(--sans);
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
}
.home-sketch-actions button:disabled { cursor:wait; opacity:.65; }
.home-sketch-contact {
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:18px 28px;
  padding-top:28px;
  font-size:13px;
}
.home-sketch-contact > span { color:#555550; }
@media(max-width:768px) {
  .home-sketch-form { grid-template-columns:1fr; }
  .home-sketch-actions { align-items:flex-start; flex-direction:column; }
  .home-sketch-contact { align-items:flex-start; flex-direction:column; }
}

/* Selected experience (spec §18) ---------------------------------- */
.experience-logos {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--gray-mid); border-left: 1px solid var(--gray-mid);
}
.experience-logo-slot {
  aspect-ratio: 2/1; display: flex; align-items: center; justify-content: center;
  border-right: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid);
  background: var(--white); overflow: hidden;
  transition: background 0.25s;
}
.experience-logo-slot:hover { background: var(--gray-light); }
.experience-logo-slot:hover .experience-wordmark {
  color: var(--black);
  transform: scale(1.04);
}
.experience-wordmark {
  color: #969696;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  transition: color 0.25s, transform 0.25s;
}
.experience-wordmark--evian { font-family: var(--serif); font-style: italic; text-transform: lowercase; }
.experience-wordmark--puma { font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.experience-wordmark--uniqlo { font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.experience-wordmark--zalando { font-weight: 500; letter-spacing: -0.05em; text-transform: lowercase; }
.experience-wordmark--microsoft { font-weight: 400; letter-spacing: -0.04em; }
.experience-wordmark--psg { font-family: var(--serif); font-weight: 500; letter-spacing: 0.12em; }
.experience-wordmark--suntory { font-weight: 500; letter-spacing: 0.02em; text-transform: uppercase; }
.experience-wordmark--uber-eats { font-weight: 700; letter-spacing: -0.05em; }
.experience-note { margin-top: 24px; font-size: 12px; font-weight: 300;
  line-height: 1.6; color: var(--gray-text); max-width: 620px; }

/* Founder-led (spec §20) ------------------------------------------ */
.founder-home-inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.founder-home-text h2 { font-size: clamp(26px, 3vw, 40px); margin: 16px 0 24px; }
.founder-home-text p { font-size: 15px; font-weight: 300; line-height: 1.8; margin-bottom: 20px; max-width: 520px; }
.founder-home-bio { color: var(--gray-text); }
.founder-home-portrait { aspect-ratio: 4/5; background: var(--gray-light); overflow: hidden; }
.founder-home-portrait img { width: 100%; height: 100%; object-fit: cover; }
.portrait-placeholder { width: 100%; height: 100%; display: flex; align-items: center;
  justify-content: center; text-align: center; }
.portrait-placeholder span { font-size: 10px; letter-spacing: 0.08em; color: #c8c8c2; text-transform: uppercase; line-height: 1.8; }

/* Home insights — inverted band ----------------------------------- */
.home-insights { background: var(--black); color: #fff; padding: clamp(60px, 8vw, 100px) 0; }
.home-insights-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; }
.home-insights-header .label { color: #fff; }
.home-insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(24px, 3vw, 44px);
  border-top: 1px solid rgba(255,255,255,0.18); }
.home-insight-item { display: block; padding-top: 32px; color: #fff; position: relative; transition: opacity 0.2s; }
.home-insight-item:hover { opacity: 0.6; }
.home-insight-item:not(:first-child)::before { content: ''; position: absolute; top: 0; bottom: 0;
  left: calc(-1 * clamp(12px, 1.5vw, 22px)); width: 1px; background: rgba(255,255,255,0.18); }
.home-insight-img { aspect-ratio: 3/2; background: rgba(255,255,255,0.06); margin-bottom: 18px; overflow: hidden; }
.home-insight-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.home-insight-item:hover .home-insight-img img { transform: scale(1.03); }
.home-insight-date { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 10px; }
.home-insight-title { font-family: var(--serif); font-size: clamp(17px, 1.6vw, 22px); line-height: 1.2; }
.home-insight-excerpt { margin: 12px 0 0; max-width: 42ch; font-size: 12px; line-height: 1.55; font-weight: 300; color: rgba(255,255,255,0.68); }

/* Final CTA additions --------------------------------------------- */
.final-cta-right { max-width: 340px; }
.final-cta-sub { font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray-text); margin-bottom: 20px; }

/* ── Service pages (spec §12) ────────────────────────────────────── */
.service-hero { padding: clamp(56px, 7vw, 100px) 0 clamp(36px, 4vw, 64px); border-bottom: 1px solid var(--gray-mid); }
.service-hero .label { margin-bottom: 16px; }
.service-hero h1 { font-size: clamp(34px, 4.4vw, 60px); letter-spacing: -0.02em; line-height: 1.05; max-width: 900px; }
.service-hero-sub { margin-top: 22px; font-size: 16px; font-weight: 300; line-height: 1.7; max-width: 560px; color: var(--black); }
.service-hero-meta { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.service-hero-meta > div { }
.service-hero-meta .label { display: block; margin-bottom: 6px; }
.service-hero-meta .val { font-family: var(--serif); font-size: 19px; }

.service-section { padding: clamp(44px, 6vw, 88px) 0; border-bottom: 1px solid var(--gray-mid); }
.service-section:last-of-type { border-bottom: none; }
.service-grid { display: grid; grid-template-columns: 280px 1fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.service-grid .label { padding-top: 4px; }
.service-grid h2 { font-size: clamp(22px, 2.4vw, 30px); }
.service-list { columns: 2; column-gap: 40px; }
.service-list.one-col { columns: 1; }
.service-list li { break-inside: avoid; font-size: 14px; font-weight: 300; line-height: 1.5;
  padding: 10px 0; border-bottom: 1px solid var(--gray-mid); display: flex; gap: 12px; }
.service-list li::before { content: '—'; color: var(--gray-text); }
.service-outputs-note { margin-top: 24px; font-size: 13px; font-weight: 300; line-height: 1.7; color: var(--gray-text); max-width: 620px; }
.service-questions li { font-size: 16px; font-weight: 300; line-height: 1.5; padding: 14px 0;
  border-bottom: 1px solid var(--gray-mid); }
.service-prose p { font-size: 15px; font-weight: 300; line-height: 1.8; max-width: 620px; margin-bottom: 16px; }
.service-outcome { background: var(--black); color: #fff; }
.service-outcome .service-grid h2 { color: #fff; }
.service-outcome .label { color: rgba(255,255,255,0.55); }
.service-outcome p { font-family: var(--serif); font-size: clamp(20px, 2.4vw, 30px); line-height: 1.3; max-width: 640px; }
.service-value .label { margin-bottom: 18px; }
.service-value-heading { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); column-gap: clamp(36px, 6vw, 90px); align-items: start; }
.service-value-heading h2 { font-size: clamp(30px, 4vw, 52px); line-height: 1.08; max-width: 620px; }
.service-value-heading > p { font-size: 15px; font-weight: 300; line-height: 1.75; max-width: 640px; }
.service-value-heading .service-value-intro { grid-column: 2; color: var(--gray-text); }
.service-value-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(36px, 6vw, 90px); margin-top: clamp(44px, 6vw, 76px); }
.service-value-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 54px); }
.service-value-column { border-top: 1px solid var(--black); padding: 18px 16px 0; margin: 0 -16px; transition: background 0.25s; }
.service-value-column:hover { background: var(--gray-light); }
.service-value-column h3 { font-family: var(--sans); font-size: 11px; font-weight: 500; letter-spacing: 0.12em; line-height: 1.35; text-transform: uppercase; margin-bottom: 18px; transition: transform 0.25s; }
.service-value-column:hover h3 { transform: translateX(4px); }
.service-value-column li { border-top: 1px solid var(--gray-mid); padding: 12px 0; font-size: 14px; font-weight: 300; line-height: 1.55; }
.service-value-column li:first-child { border-top: none; }
.service-value-anchor { border-top: 1px solid var(--black); margin-top: clamp(42px, 5vw, 68px); padding-top: 18px; max-width: 990px; font-size: 15px; font-weight: 400; line-height: 1.65; }
.service-value-rationale { font-family: var(--serif); font-size: clamp(20px, 2.35vw, 29px); font-style: italic; line-height: 1.35; max-width: 990px; margin-top: 24px; }
.service-value-notes { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(36px, 6vw, 90px); border-top: 1px solid var(--gray-mid); margin-top: 34px; }
.service-value-notes p { border-bottom: 1px solid var(--gray-mid); padding: 18px 0; font-size: 13px; font-weight: 300; line-height: 1.7; }
.service-value-disclaimer { border-top: 1px solid var(--gray-mid); margin-top: 32px; padding-top: 18px; max-width: 920px; color: var(--gray-text); font-size: 11px; font-weight: 300; line-height: 1.65; }
.service-cta-band { padding: clamp(48px, 6vw, 88px) 0; }
.service-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; }
.service-cta-inner h2 { font-size: clamp(22px, 2.6vw, 34px); max-width: 520px; }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .engagement-cards { grid-template-columns: 1fr; }
  .triggers-grid { grid-template-columns: 1fr; }
  .trigger-item:nth-child(even) { padding-left: 0; border-left: none; }
  .trigger-item:nth-child(odd) { padding-right: 0; }
  .method-stages { grid-template-columns: 1fr 1fr; }
  .experience-logos { grid-template-columns: 1fr 1fr; }
  .founder-home-inner { grid-template-columns: 1fr; }
  .founder-home-portrait { max-width: 360px; }
  .home-insights-grid { grid-template-columns: 1fr; gap: 0; }
  .home-insight-item { border-top: 1px solid rgba(255,255,255,0.18); padding: 28px 0 0; }
  .home-insight-item::before { display: none; }
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-list { columns: 1; }
  .service-value-heading { grid-template-columns: 1fr; gap: 20px; }
  .service-value-heading .service-value-intro { grid-column: 1; margin-top: 0; }
  .service-value-grid,
  .service-value-grid--three,
  .service-value-notes { grid-template-columns: 1fr; gap: 34px; }
  .service-value-notes { gap: 0; }
}
@media (max-width: 560px) {
  .method-stages { grid-template-columns: 1fr; }
  .experience-logos { grid-template-columns: 1fr 1fr; }
  .hero-credibility { font-size: 10px; }
  .home-pricing-link-main { display: block; }
  .home-pricing-link-main b { display: block; margin-top: 5px; text-align: left; }
  .service-pricing-accordion .pricing-engagement-head {
    grid-template-columns: 30px minmax(0, 1fr);
  }
  .service-pricing-accordion .pricing-engagement-price {
    grid-column: 2;
    text-align: left;
  }
  .service-pricing-accordion .pricing-engagement-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .service-pricing-accordion .pricing-engagement-deliverables ul { columns: 1; }
}

/* Selected Work (spec §19) ---------------------------------------- */
.work-attribution { font-size: 12px; font-weight: 300; line-height: 1.6; color: var(--gray-text);
  max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.work-cases { display: flex; flex-direction: column; gap: clamp(40px, 5vw, 72px); }
.work-case { border-top: 1px solid var(--gray-mid); padding-top: clamp(28px, 3vw, 44px); }
.work-case-image { aspect-ratio: 16/7; overflow: hidden; background: var(--gray-light); margin-bottom: 28px; }
.work-case-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.work-case:hover .work-case-image img { transform: scale(1.02); }
.work-empty { font-size: 14px; padding: 36px 0; border-top: 1px solid var(--gray-mid); border-bottom: 1px solid var(--gray-mid); }
.work-case-head { margin-bottom: 28px; }
.work-case-num { font-family: var(--sans); font-size: 11px; letter-spacing: 0.1em; color: var(--gray-text); }
.work-case-brand { font-size: clamp(24px, 3vw, 38px); margin: 10px 0 8px; }
.work-case-context { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--gray-text); }
.work-case-row { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 16px 0; border-bottom: 1px solid var(--gray-mid); }
.work-case-val { font-size: 14px; font-weight: 300; line-height: 1.6; }
.work-case-val.is-todo { color: #a08a3a; font-style: italic; }
.work-case-foot { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; padding-top: 20px; }
.work-case-attr { font-size: 12px; color: var(--gray-text); }
@media (max-width: 720px) { .work-case-row { grid-template-columns: 1fr; gap: 6px; } }

/* Founder video (spec §21) ---------------------------------------- */
.founder-video { margin: 0; }
.fv-frame { position: relative; width: 100%; aspect-ratio: var(--fv-ratio, 16/9);
  background: var(--gray-light); overflow: hidden; }
.fv-media { width: 100%; height: 100%; object-fit: cover; display: block; }
.fv-placeholder { display: flex; align-items: center; justify-content: center; text-align: center; }
.fv-placeholder span { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #c8c8c2; line-height: 1.8; }
.fv-cap { margin-top: 20px; }
.fv-title { font-family: var(--serif); font-size: clamp(19px, 2.2vw, 26px); line-height: 1.2; margin-bottom: 8px; }
.fv-sub { font-size: 14px; font-weight: 300; line-height: 1.7; color: var(--gray-text); max-width: 560px; }
.fv-transcript { margin-top: 16px; }
.fv-transcript summary { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); cursor: pointer; }
.fv-transcript-body { margin-top: 14px; font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--gray-text); max-width: 620px; }
@media (max-width: 700px) { .fv-frame { aspect-ratio: 4/5; } }

/* Shared hover language for structured blocks across inner pages */
.process-item,
.method-step,
.why-row,
.process-page-item,
.work-case-row,
.service-list li,
.service-questions li,
.article-row,
.conf-block {
  transition: background 0.25s;
}

.process-item:hover,
.method-step:hover,
.why-row:hover,
.process-page-item:hover,
.work-case-row:hover,
.service-list li:hover,
.service-questions li:hover,
.article-row:hover,
.conf-block:hover {
  background: var(--gray-light);
  opacity: 1;
}

.process-item .process-num,
.method-step .method-num,
.process-page-item .process-page-num,
.work-case-row .work-case-num {
  transition: transform 0.25s;
}

.process-item:hover .process-num,
.method-step:hover .method-num,
.process-page-item:hover .process-page-num,
.work-case-row:hover .work-case-num {
  transform: translateX(4px);
}
.service-faq-item {
  padding: 0 0 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #e8e8e4;
}
.service-faq-item:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}
.service-faq-item h2 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}
.service-faq-item p {
  max-width: 780px;
  margin: 0;
  line-height: 1.65;
}
.service-faq-item summary {
  position: relative;
  padding-right: 36px;
  cursor: pointer;
  list-style: none;
  font-family: var(--serif);
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 400;
  line-height: 1.12;
}
.service-faq-item summary::-webkit-details-marker { display: none; }
.service-faq-item summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  font-family: var(--sans);
  font-size: 20px;
  font-weight: 300;
}
.service-faq-item[open] summary::after { content: "−"; }
.service-faq-item[open] summary { margin-bottom: 12px; }
