/* ============================================================
   AXIUM DEVELOPMENT
   Design system: fixed charcoal dark theme + electric azure
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', 'Palatino', serif;
  --font-sans: 'Inter Tight', system-ui, -apple-system, sans-serif;

  /* Color - fixed dark palette */
  --ink: #f0f4f8;
  --ink-2: #d9e2ec;
  --ink-3: #a8b6c8;
  --ink-4: #6b7d94;
  --line: #353232;
  --line-2: #474242;
  --canvas: #1f1e1e;
  --canvas-2: #272525;
  --canvas-3: #302e2e;
  --canvas-4: #242222;
  --canvas-5: #2a2828;

  --brand: #e0eaf5;
  --brand-2: #c5d6ec;
  --brand-3: #a8c0dd;
  --accent: #46b6ff;          /* sky azure — text + buttons */
  --accent-2: #2f9bf0;        /* hover / pressed */
  --accent-soft: rgba(70, 182, 255, 0.12);
  --accent-glow: rgba(70, 182, 255, 0.26);
  --violet: #7c4dcf;
  --violet-glow: rgba(124, 77, 207, 0.45);
  --brand-gradient: linear-gradient(135deg, #7c4dcf 0%, #5a5fe0 50%, #3a8dff 100%);
  --azure-gradient: var(--brand-gradient); /* legacy alias */

  --success: #0d9488;
  --warning: #d97706;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --radius-sm: 6px;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 180ms;
  --dur: 320ms;
  --dur-slow: 600ms;

  /* Shadows - restrained, used purposefully */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p { margin: 0; }

/* ---------- LAYOUT ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 720px) {
  .container { padding: 0 40px; }
}

/* ---------- TYPOGRAPHY ---------- */
.eyebrow,
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-glow);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 24px;
  max-width: 800px;
}

.section-lede {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0 0 48px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--canvas);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn--ghost:hover {
  background: var(--canvas-2);
  border-color: var(--ink-4);
}

.btn--lg {
  padding: 16px 28px;
  font-size: 16px;
}

.btn--sm {
  padding: 9px 18px;
  font-size: 14px;
}

.btn--block {
  width: 100%;
}

.link {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--dur-fast) var(--ease);
}
.link:hover { opacity: 0.7; }

.link--arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: none;
}
.link--arrow svg { transition: transform var(--dur-fast) var(--ease); }
.link--arrow:hover svg { transform: translate(2px, -2px); }

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(31, 30, 30, 0.84);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}
@media (min-width: 720px) {
  .nav__inner { padding: 16px 40px; }
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  transition: opacity var(--dur-fast) var(--ease);
}
.nav__brand:hover { opacity: 0.82; }

.brand-logo-mark {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-mark {
  height: 32px;
}

.brand-wordmark {
  display: block;
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 44px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0;
  color: var(--ink-2);
}
@media (min-width: 880px) {
  .nav__links { display: flex; }
}
.nav__links a {
  position: relative;
  transition: color var(--dur-fast) var(--ease);
}
.nav__links a:hover { color: var(--accent); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__actions .btn {
  font-family: var(--font-sans);
  font-size: 14px;
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 100px 0 120px;
  overflow: hidden;
  isolation: isolate;
}
@media (min-width: 720px) {
  .hero { padding: 140px 0 160px; }
}
@media (min-width: 1024px) {
  .hero { padding: 160px 0 180px; }
}

/* Abstract brand-swirl backdrop behind the headline */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, var(--canvas) 0%, rgba(31,30,30,0.78) 34%, rgba(31,30,30,0.2) 66%, rgba(31,30,30,0.45) 100%),
    linear-gradient(180deg, rgba(31,30,30,0.35) 0%, transparent 26%, transparent 58%, var(--canvas) 100%),
    url("assets/hero-swirl-v2.png");
  background-size: cover, cover, cover;
  background-position: center, center, 60% center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 0 0 32px;
}

.hero__title-accent {
  display: block;
  font-style: italic;
  font-weight: 300;
  color: var(--accent);
  margin-top: 0.1em;
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.6;
  color: var(--ink-3);
  max-width: 640px;
  margin: 0 0 40px;
}
.hero__lede strong { color: var(--ink); font-weight: 600; }

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  font-size: 14px;
  color: var(--ink-3);
}
.hero__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust svg { color: var(--accent); flex-shrink: 0; }

/* ---------- AUDIENCE ---------- */
.audience { padding: 120px 0; }

.audience__inner {
  display: grid;
  gap: 64px;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) {
  .audience__inner {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 80px;
    align-items: start;
  }
}

.trades {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
@media (min-width: 560px) {
  .trades { grid-template-columns: repeat(3, 1fr); }
}

.trade {
  background: var(--canvas);
  padding: 20px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.trade--cta {
  padding: 0;
}

.trade__link {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding: 20px 18px;
  color: #ffffff;
  background: var(--azure-gradient);
  transition: opacity var(--dur-fast) var(--ease);
}
.trade__link:hover { opacity: 0.86; }

.trade__icon {
  font-size: 16px;
  color: var(--ink-4);
}
.trade__link .trade__icon { color: inherit; }

/* ---------- PROCESS ---------- */
.process {
  position: relative;
  padding: 120px 0;
  background: var(--azure-gradient);
  color: #ffffff;
  overflow: hidden;
}

.process__inner { position: relative; }

.process .section-eyebrow { color: var(--accent); }
.process .section-title { color: var(--ink); }

.process__header { margin-bottom: 64px; }

.steps {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.step {
  padding: 32px;
  background: rgba(31, 30, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.step__num {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 14px;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 24px;
}

.step__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  color: var(--ink);
}

.step__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-3);
  margin: 0;
}

/* ---------- PRICING ---------- */
.pricing {
  padding: 120px 0;
  background: var(--canvas-4);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing__header {
  text-align: center;
  margin-bottom: 64px;
}
.pricing__header .section-title { margin-left: auto; margin-right: auto; }
.pricing__header .section-eyebrow { justify-content: center; }
.pricing__header .section-lede { margin-left: auto; margin-right: auto; text-align: center; }

.plans {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

.plan {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.plan:hover {
  transform: translateY(-4px);
  border-color: var(--ink-4);
  box-shadow: var(--shadow-lg);
}

.plan--featured {
  border-color: rgba(70, 182, 255, 0.68);
  background: linear-gradient(135deg, var(--canvas) 0%, var(--accent-soft) 100%);
}
.plan--featured:hover {
  border-color: var(--accent);
}

.plan__badge {
  position: absolute;
  top: -12px;
  right: 32px;
  background: var(--azure-gradient);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.plan__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.plan__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
  color: var(--ink);
}

.plan__type {
  font-size: 12px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0;
}

.plan__price {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  margin: 0 0 12px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 2px;
}
.plan__price-currency {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink-3);
  margin-right: -4px;
}
.plan__price-num {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  letter-spacing: -0.03em;
}
.plan__price-plus {
  font-size: 1.5rem;
  color: var(--ink-3);
  margin: 0 6px;
  font-weight: 300;
}
.plan__price-period {
  font-size: 1rem;
  color: var(--ink-3);
  margin-left: 2px;
}
.plan__price--custom .plan__price-num {
  font-size: clamp(2rem, 4vw, 3rem);
}

.plan__tagline {
  font-size: 15px;
  color: var(--ink-3);
  margin: 0 0 28px;
  line-height: 1.5;
}

.plan__features {
  margin: 0 0 32px;
  flex-grow: 1;
}
.plan__features li {
  font-size: 14.5px;
  color: var(--ink-2);
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  line-height: 1.45;
}
.plan__features li:last-child { border-bottom: none; }
.plan__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 16px;
  height: 16px;
  background: var(--accent-soft);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3.5 8 6.5 11 12.5 5' fill='none' stroke='%2346b6ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
}
.plan__features li strong { color: var(--ink); font-weight: 600; }

.pricing__footnote {
  text-align: center;
  margin-top: 48px;
  font-size: 14px;
  color: var(--ink-3);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- WORK ---------- */
.work {
  padding: 120px 0;
  background: var(--canvas-2);
}

.work__header { margin-bottom: 64px; }

.work-carousel {
  position: relative;
}

.work-carousel__viewport {
  overflow: hidden;
  /* vertical padding gives the active card's lifted shadow room to breathe */
  padding: 30px 0 44px;
  outline: none;
}
.work-carousel__viewport:focus-visible {
  box-shadow: inset 0 0 0 2px var(--accent);
  border-radius: var(--radius-lg);
}

.work-carousel__track {
  display: flex;
  gap: 28px;
  align-items: center;
  will-change: transform;
  transition: transform var(--dur-slow) var(--ease);
}

.work-slide {
  flex: 0 0 min(82vw, 430px);
  /* inactive cards sit back: slightly smaller and dimmed */
  transform: scale(0.9);
  opacity: 0.4;
  cursor: pointer;
  transition: transform var(--dur-slow) var(--ease),
              opacity var(--dur-slow) var(--ease),
              box-shadow var(--dur) var(--ease);
}
@media (min-width: 960px) {
  .work-slide { flex-basis: 430px; }
}
.work-slide:not(.is-active):hover {
  opacity: 0.72;
  transform: scale(0.93);
}
.work-slide.is-active {
  transform: scale(1);
  opacity: 1;
  cursor: default;
}

@media (prefers-reduced-motion: reduce) {
  .work-carousel__track,
  .work-slide { transition: none; }
}

.work-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--canvas);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--dur-fast) var(--ease), border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
}
.carousel-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: var(--canvas-3);
}
.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.carousel-status {
  min-width: 104px;
  text-align: center;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
/* the centered card is lifted with a soft shadow (transition lives on .work-slide) */
.work-slide.is-active {
  box-shadow: var(--shadow-lg);
}

.case__visual {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #2a1a5c 0%, #3a3a9e 55%, #5a8bff 100%);
  position: relative;
  overflow: hidden;
}
.case__visual--alt {
  background: linear-gradient(135deg, #3a2a7a 0%, #4a4ac0 50%, #6a7bff 100%);
}
.case__visual--three {
  background: linear-gradient(135deg, #2a1a5c 0%, #4a3aa0 50%, #7c4dcf 100%);
}
.case__visual-mock {
  position: absolute;
  inset: 24px;
  background: rgba(255, 255, 255, 0.95);
  color: #0a1628;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

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

.mock-window {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  background: #f7fafc;
  border-bottom: 1px solid #e2e8f0;
}
.mock-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line-2);
}
.mock-dot:nth-child(1) { background: #ff5f57; }
.mock-dot:nth-child(2) { background: #ffbd2e; }
.mock-dot:nth-child(3) { background: #28ca42; }

.case__visual-content {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.case__visual-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: #0a1628;
  margin: 0 0 4px;
}
.case__visual-sub {
  font-size: 13px;
  color: #4a5568;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.case__body { padding: 28px; }
.case__client {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: -0.005em;
}
.case__location {
  font-size: 12px;
  color: var(--ink-4);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.case__result {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 20px;
}
.case__result strong { color: var(--accent); font-weight: 600; }

/* ---------- TEAM ---------- */
.founder {
  padding: 120px 0;
  background: var(--canvas-5);
}

.founder__inner {
  display: grid;
  gap: 72px;
  grid-template-columns: 1fr;
}

.founder__portrait {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.founder__team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (min-width: 720px) {
  .founder__team { gap: 24px; }
}

.founder-headshot {
  margin: 0;
}

.founder-headshot__frame {
  aspect-ratio: 4 / 5;
  background: var(--canvas-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.founder-headshot__frame img {
  display: block;
  width: 100%;
  height: 116%;
  object-fit: cover;
  object-position: 50% 22%;
}

/* Crop the side portraits with extra headroom and the centre one tight
   to the top of the frame, so the centre founder reads slightly taller */
.founder-headshot:nth-child(1) .founder-headshot__frame img,
.founder-headshot:nth-child(3) .founder-headshot__frame img {
  object-position: 50% 10%;
}
.founder-headshot:nth-child(2) .founder-headshot__frame img {
  object-position: 50% 62%;
}

.founder-headshot figcaption {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ink-3);
}

.founder__body {
  max-width: 800px;
  margin: 0 auto;
}

.founder__copy { margin-bottom: 32px; }
.founder__copy p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.founder__copy strong { color: var(--ink); font-weight: 600; }

.founder__sign {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  font-size: 1.125rem !important;
}

/* ---------- FAQ ---------- */
.faq {
  padding: 120px 0;
  background: var(--canvas-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq__inner {
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.faq__header { margin-bottom: 48px; }

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq__item {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--dur-fast) var(--ease);
}
.faq__item[open] { border-color: var(--accent); }
.faq__item:hover { border-color: var(--ink-4); }
.faq__item[open]:hover { border-color: var(--accent); }

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0625rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--dur-fast) var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink-4);
  line-height: 0.8;
  transition: transform var(--dur) var(--ease), color var(--dur-fast) var(--ease);
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq__item summary:hover { color: var(--accent); }

.faq__item p {
  padding: 0 28px 24px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-3);
  margin: 0;
}

/* ---------- CONTACT ---------- */
.contact {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

/* Same brand-swirl backdrop as the hero, faded to canvas at both ends */
.contact__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(90deg, var(--canvas) 0%, rgba(31,30,30,0.78) 34%, rgba(31,30,30,0.2) 66%, rgba(31,30,30,0.45) 100%),
    linear-gradient(180deg, var(--canvas) 0%, transparent 30%, transparent 62%, var(--canvas) 100%),
    url("assets/hero-swirl-v2.png");
  background-size: cover, cover, cover;
  background-position: center, center, 60% center;
  background-repeat: no-repeat, no-repeat, no-repeat;
}

.contact__inner {
  display: grid;
  gap: 80px;
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) {
  .contact__inner {
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
  }
}

.contact__direct {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.contact__phone,
.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
  transition: all var(--dur-fast) var(--ease);
  background: var(--canvas);
}
.contact__phone:hover,
.contact__email:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}
.contact__phone svg,
.contact__email svg { color: var(--accent); }

.contact__form {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 720px) {
  .contact__form { padding: 28px 24px; }
}

.form-row {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  margin-bottom: 20px;
}
@media (min-width: 560px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.field { display: block; margin-bottom: 20px; }
.field__label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--canvas-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  transition: border-color var(--dur-fast) var(--ease), background-color var(--dur-fast) var(--ease);
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-4); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--canvas);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.form__success {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  color: var(--accent);
  font-size: 14.5px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
/* keep it hidden until the form is actually submitted —
   display:flex above would otherwise override the hidden attribute */
.form__success[hidden] { display: none; }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--canvas-2);
  color: var(--ink-3);
  border-top: 1px solid var(--line);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .footer__inner {
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
  }
}

.footer .brand-logo-mark { height: 36px; }
.footer .brand-wordmark { height: 34px; }

.footer__tag {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--ink-2);
  margin: 20px 0 0;
  max-width: 280px;
  line-height: 1.4;
}

.footer__cols {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .footer__cols { grid-template-columns: repeat(3, 1fr); }
}

.footer__h {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
  margin: 0 0 16px;
}

.footer__col ul li {
  margin-bottom: 10px;
  font-size: 14.5px;
}
.footer__col a {
  color: var(--ink-2);
  transition: color var(--dur-fast) var(--ease);
}
.footer__col a:hover { color: var(--accent); }

.footer__base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 0;
  font-size: 13px;
  color: var(--ink-4);
}
.footer__base a { color: inherit; }
.footer__base a:hover { color: var(--accent); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  [data-parallax] { transform: none !important; }
}
