/* =============================================================
   Fully Forged Studios :: styles.css
   Forge / blacksmith aesthetic. Dark iron + ember accents.
   Single stylesheet, ~no dependencies, mobile-first.
   ============================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Palette */
  --iron-black: #0d0e10;
  --iron-dark:  #16181b;
  --iron:       #22262a;
  --iron-line:  #2a2d31;
  --ash:        #7a7f86;
  --ash-light:  #a8adb3;
  --parchment:  #ece4d3;
  --parchment-dim: #c9c1ad;
  --ember:      #ff7a3d;
  --ember-glow: #ffb347;
  --hot-steel:  #ffe1a8;

  /* Drawn from the medallion artwork */
  --slate:      #2a3744;  /* riveted plate deep blue-grey */
  --slate-mid:  #4b5258;  /* mid plate tone */
  --rust:       #a05a3a;  /* oxidized iron / forged-copper patina */
  --rust-deep:  #6b3a24;  /* deep rust shadow */
  --patina:     #7a6e66;  /* warm grey-brown highlight on iron */

  /* Typography */
  --font-display: "Cinzel", "Trajan Pro", "Times New Roman", serif;
  --font-body:    "EB Garamond", Georgia, "Times New Roman", serif;
  --font-ui:      ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  /* Scale */
  --step--1: clamp(0.875rem, 0.84rem + 0.18vw, 0.95rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.15rem, 1.08rem + 0.4vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.25rem + 0.7vw, 1.7rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.4vw, 2.4rem);
  --step-4:  clamp(2.3rem, 1.8rem + 2.4vw, 3.3rem);
  --step-5:  clamp(2.8rem, 2.1rem + 3.4vw, 4.4rem);

  /* Spacing */
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 5rem;
  --space-7: 7rem;

  /* Layout */
  --container: 1180px;
  --radius: 6px;
  --radius-lg: 10px;
  --shadow-ember: 0 0 0 1px rgba(255, 122, 61, 0.35), 0 12px 30px -10px rgba(255, 122, 61, 0.4);
  --shadow-iron:  0 6px 24px -10px rgba(0, 0, 0, 0.7);

  /* Motion */
  --t-fast: 120ms ease-out;
  --t-base: 200ms ease-out;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea, select { font: inherit; color: inherit; }

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

/* ---------- Base ---------- */
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--parchment);
  background: var(--iron-black);
  background-image:
    radial-gradient(1200px 600px at 50% -200px, rgba(255, 122, 61, 0.08), transparent 70%),
    radial-gradient(900px 500px at 15% 35%, rgba(42, 55, 68, 0.35), transparent 65%),
    radial-gradient(900px 500px at 80% 110%, rgba(160, 90, 58, 0.06), transparent 70%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--ember); color: var(--iron-black); }

:focus-visible {
  outline: 2px solid var(--ember-glow);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--ember);
  color: var(--iron-black);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-weight: 600;
  z-index: 100;
  transition: top var(--t-base);
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
}

.section {
  padding: var(--space-6) 0;
  position: relative;
  z-index: 1;                       /* paint above any sibling .embers so section content reads clean */
  /* needed so the absolutely-positioned .flame-bar child anchors to this section's top */
}

/* Horizontal bar of flickering flames sitting AT each section break.
   Lives as the first child of Forge/Process/About/Contact, positioned absolutely
   at the section's top edge.
   translateY(-100%) shifts the bar entirely above that edge so the bar's BOTTOM
   sits on the boundary line. The glowing coal-line runs along that bottom edge
   (= the section break itself), and the flames rise up from it into the prev section. */
.flame-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.4rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-3);
  z-index: 6;
}
.flame-bar::before {
  /* Glowing coal-line — this IS the section break */
  content: "";
  position: absolute;
  left: var(--space-3); right: var(--space-3);
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 61, 0.35) 15%, rgba(255, 179, 71, 0.6) 50%, rgba(255, 122, 61, 0.35) 85%, transparent);
  box-shadow: 0 0 12px rgba(255, 122, 61, 0.45);
  filter: blur(0.3px);
}
.flame-bar span {
  display: inline-flex;
  flex: 1 1 0;
  justify-content: center;
  transform-origin: 50% 100%;
  animation: flame-flicker ease-in-out infinite;
}
.flame-bar span svg {
  color: var(--ember);
  filter: drop-shadow(0 0 8px rgba(255, 122, 61, 0.55));
}
/* Color gradient across the row: rust at edges, hot ember in middle */
.flame-bar span:nth-child(1)  svg,
.flame-bar span:nth-child(14) svg { color: var(--rust); }
.flame-bar span:nth-child(2)  svg,
.flame-bar span:nth-child(13) svg { color: var(--rust); opacity: 0.85; }
.flame-bar span:nth-child(3)  svg,
.flame-bar span:nth-child(12) svg { color: var(--ember); }
.flame-bar span:nth-child(7)  svg,
.flame-bar span:nth-child(8)  svg { color: var(--ember-glow); }
/* Slightly varied sizes for organic feel */
.flame-bar span:nth-child(odd) svg  { transform: scale(0.85); }
.flame-bar span:nth-child(3n)  svg  { transform: scale(1.15); }
/* Flicker timing — each flame on its own clock so it never looks synced */
.flame-bar span:nth-child(1)  { animation-duration: 1.4s; animation-delay:  0s; }
.flame-bar span:nth-child(2)  { animation-duration: 1.8s; animation-delay: -0.3s; }
.flame-bar span:nth-child(3)  { animation-duration: 1.2s; animation-delay: -0.7s; }
.flame-bar span:nth-child(4)  { animation-duration: 1.6s; animation-delay: -1.1s; }
.flame-bar span:nth-child(5)  { animation-duration: 1.3s; animation-delay: -0.4s; }
.flame-bar span:nth-child(6)  { animation-duration: 1.9s; animation-delay: -0.9s; }
.flame-bar span:nth-child(7)  { animation-duration: 1.5s; animation-delay: -1.3s; }
.flame-bar span:nth-child(8)  { animation-duration: 1.7s; animation-delay: -0.2s; }
.flame-bar span:nth-child(9)  { animation-duration: 1.4s; animation-delay: -1.0s; }
.flame-bar span:nth-child(10) { animation-duration: 1.6s; animation-delay: -0.6s; }
.flame-bar span:nth-child(11) { animation-duration: 1.3s; animation-delay: -1.4s; }
.flame-bar span:nth-child(12) { animation-duration: 1.8s; animation-delay: -0.5s; }
.flame-bar span:nth-child(13) { animation-duration: 1.5s; animation-delay: -1.2s; }
.flame-bar span:nth-child(14) { animation-duration: 1.7s; animation-delay: -0.8s; }
@keyframes flame-flicker {
  0%, 100% { transform: scaleY(1)    translateY(0);   opacity: 0.85; }
  20%      { transform: scaleY(1.15) translateY(-1px); opacity: 1; }
  40%      { transform: scaleY(0.9)  translateY(0);   opacity: 0.7; }
  60%      { transform: scaleY(1.1)  translateY(-1px); opacity: 0.95; }
  80%      { transform: scaleY(0.95) translateY(0);   opacity: 0.8; }
}
@media (prefers-reduced-motion: reduce) {
  .flame-bar span { animation: none; }
}
.section-alt {
  /* Translucent so the rising embers behind the ember-zone show through.
     Top layer: slate/rust tint. Bottom layer: iron-dark at ~70% so it reads
     as the same color but lets the ember layer behind glow through. */
  background:
    linear-gradient(180deg, rgba(42, 55, 68, 0.22), rgba(160, 90, 58, 0.06) 60%, rgba(42, 55, 68, 0.16)),
    rgba(22, 24, 27, 0.72);
  border-top: 1px solid var(--iron-line);
  border-bottom: 1px solid var(--iron-line);
}

.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--space-5); }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-4);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--parchment);
  margin-bottom: var(--space-2);
}
.section-lede { color: var(--parchment-dim); font-size: var(--step-1); }

.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--ember);
  margin-bottom: var(--space-2);
}
.section-alt .eyebrow { color: var(--rust); }

.muted { color: var(--ash); }
.small { font-size: var(--step--1); }

.hot {
  background: linear-gradient(180deg, var(--hot-steel), var(--ember-glow) 45%, var(--ember) 75%, var(--rust));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 24px rgba(255, 122, 61, 0.25);
}

.link-like { color: var(--ember-glow); font-weight: 600; }
.link-strong {
  color: var(--ember-glow);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast), color var(--t-fast);
}
.link-strong:hover, .link-strong:focus-visible { color: var(--hot-steel); border-bottom-color: currentColor; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: var(--step-0);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base), color var(--t-base);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: linear-gradient(180deg, var(--ember-glow), var(--ember));
  color: var(--iron-black);
  box-shadow: 0 6px 20px -8px rgba(255, 122, 61, 0.6);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-ember);
}
.btn-ghost {
  background: transparent;
  color: var(--parchment);
  border-color: var(--iron-line);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  border-color: var(--ember);
  color: var(--ember-glow);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 14, 16, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--iron-line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  color: var(--parchment);
}
.brand-mark {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 122, 61, 0.35), 0 4px 14px -6px rgba(0, 0, 0, 0.6);
}
.brand-word-accent { color: var(--ember); }

.nav-bar { justify-content: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  z-index: 1;                       /* paint above the .embers sibling so hero content reads clean */
  padding: var(--space-7) 0 var(--space-6);
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='140' height='140'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1   0 0 0 0 0.8   0 0 0 0 0.5   0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: overlay;
}
.hero-inner { position: relative; text-align: center; max-width: 880px; }

/* Ember zone — wraps Hero + Services so rising embers carry from the very top
   of the page down to the bottom-of-Services section break. Positioning context
   for the .embers child below. Longer durations slow each ember down so they
   visibly traverse the taller zone, and an animated `bottom` makes them travel
   the full container height regardless of viewport size. */
.ember-zone {
  position: relative;
  overflow: hidden;
}

/* Rising ember particles */
.embers {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.embers span {
  position: absolute;
  bottom: -6px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ember);
  box-shadow: 0 0 6px 1px rgba(255, 122, 61, 0.55);
  animation: ember-rise linear infinite;
  will-change: transform, opacity;
}
.embers span:nth-child(odd)  { width: 2px; height: 2px; }
.embers span:nth-child(1)  { left:  4%; animation-duration:  9s; animation-delay:  0s; }
.embers span:nth-child(2)  { left: 11%; animation-duration: 12s; animation-delay: -4s; }
.embers span:nth-child(3)  { left: 18%; animation-duration:  8s; animation-delay: -2s; }
.embers span:nth-child(4)  { left: 24%; animation-duration: 11s; animation-delay: -6s; }
.embers span:nth-child(5)  { left: 30%; animation-duration: 10s; animation-delay: -1s; }
.embers span:nth-child(6)  { left: 37%; animation-duration:  9s; animation-delay: -5s; }
.embers span:nth-child(7)  { left: 43%; animation-duration: 12s; animation-delay: -8s; }
.embers span:nth-child(8)  { left: 49%; animation-duration:  9s; animation-delay: -3s; }
.embers span:nth-child(9)  { left: 55%; animation-duration: 11s; animation-delay: -0.5s; }
.embers span:nth-child(10) { left: 61%; animation-duration:  8s; animation-delay: -7s; }
.embers span:nth-child(11) { left: 67%; animation-duration: 10s; animation-delay: -3.5s; }
.embers span:nth-child(12) { left: 73%; animation-duration: 13s; animation-delay: -9s; }
.embers span:nth-child(13) { left: 79%; animation-duration:  9s; animation-delay: -1.5s; }
.embers span:nth-child(14) { left: 85%; animation-duration: 11s; animation-delay: -6.5s; }
.embers span:nth-child(15) { left: 91%; animation-duration: 10s; animation-delay: -4.5s; }
.embers span:nth-child(16) { left: 96%; animation-duration: 12s; animation-delay: -8.5s; }
.embers span:nth-child(17) { left: 14%; animation-duration: 11s; animation-delay: -5.5s; }
.embers span:nth-child(18) { left: 81%; animation-duration: 11s; animation-delay: -2.5s; }
/* Each ember translates from bottom: -6px upward by --ezh (set from JS to the
   exact ember-zone height) so it climbs the full zone from bottom to top no
   matter the viewport. Falls back to 120vh if JS hasn't run yet. */
@keyframes ember-rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; background: var(--ember); }
  8%   { opacity: 1; }
  50%  { transform: translateY(calc(-0.5 * var(--ezh, 120vh))) translateX(10px); background: var(--ember-glow); }
  100% { transform: translateY(calc(-1.02 * var(--ezh, 120vh))) translateX(-6px) scale(0.35); opacity: 0; background: var(--rust); }
}
@media (prefers-reduced-motion: reduce) {
  .embers { display: none; }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-5);
  line-height: 1.05;
  letter-spacing: 0.005em;
  margin-bottom: var(--space-3);
  color: var(--parchment);
}
.hero-lede {
  font-size: var(--step-1);
  color: var(--parchment-dim);
  max-width: 640px;
  margin: 0 auto var(--space-4);
}
.hero-ctas {
  display: flex; gap: var(--space-2); justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--space-5);
}
.hero-proof {
  display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap;
  font-family: var(--font-ui); font-size: 0.92rem;
  color: var(--ash-light);
}
.hero-proof li { display: inline-flex; align-items: center; gap: 0.5rem; }
.hero-proof span { color: var(--ember); }

/* ---------- Cards grid (services + forge) ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-3);
}
.services-grid { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.forge-grid    { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

.card {
  background: var(--iron-dark);
  border: 1px solid var(--iron-line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.card:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: var(--shadow-iron);
}
.card-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255, 122, 61, 0.12), rgba(255, 122, 61, 0.04));
  color: var(--ember);
  border-radius: var(--radius);
  margin-bottom: var(--space-2);
  border: 1px solid rgba(255, 122, 61, 0.3);
}
.card-icon[data-tone="rust"] {
  background: linear-gradient(180deg, rgba(160, 90, 58, 0.16), rgba(160, 90, 58, 0.04));
  color: var(--rust);
  border-color: rgba(160, 90, 58, 0.4);
}
.card-icon[data-tone="patina"] {
  background: linear-gradient(180deg, rgba(122, 110, 102, 0.18), rgba(122, 110, 102, 0.05));
  color: var(--patina);
  border-color: rgba(122, 110, 102, 0.45);
}
.card-icon[data-tone="hot-steel"] {
  background: linear-gradient(180deg, rgba(255, 225, 168, 0.18), rgba(255, 179, 71, 0.05));
  color: var(--hot-steel);
  border-color: rgba(255, 225, 168, 0.4);
}
.card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  margin-bottom: 0.5rem;
  color: var(--parchment);
}

/* ---------- Portfolio cards ---------- */
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--iron-dark);
  border: 1px solid var(--iron-line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.portfolio-card:hover {
  border-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: var(--shadow-iron);
}
.portfolio-thumb {
  aspect-ratio: 3 / 2;
  background: linear-gradient(135deg, var(--iron), var(--iron-dark));
  display: flex; align-items: center; justify-content: center;
  color: var(--ash);
  border-bottom: 1px solid var(--iron-line);
}
.portfolio-thumb img { width: 100%; height: 100%; object-fit: cover; }
.portfolio-card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: var(--step-2); padding: var(--space-2) var(--space-3) 0;
  color: var(--parchment);
}
.portfolio-card p { padding: 0 var(--space-3) var(--space-3); color: var(--parchment-dim); margin-top: 0.5rem; }

.portfolio-card-empty { border-style: dashed; }
.portfolio-card-empty:hover { border-style: solid; }

/* ---------- Testimonial (inside Forge section) ---------- */
.testimonial {
  margin: var(--space-5) auto 0;
  max-width: 760px;
  padding: var(--space-4) var(--space-4);
  background: linear-gradient(180deg, rgba(160, 90, 58, 0.06), transparent);
  border: 1px solid var(--iron-line);
  border-left: 3px solid var(--ember);
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 0;
  left: var(--space-3);
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--ember);
  opacity: 0.35;
  transform: translateY(-30%);
}
.testimonial-quote {
  margin: 0 0 var(--space-3);
  font-family: var(--font-body);
  font-size: var(--step-1);
  font-style: italic;
  color: var(--parchment);
  line-height: 1.55;
}
.testimonial-quote p { margin: 0; }
.testimonial-author {
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: var(--parchment-dim);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.testimonial-author strong { color: var(--ember-glow); font-weight: 600; }

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-3);
  max-width: 1000px;
  margin: 0 auto;
}
.faq-item {
  background: var(--iron-dark);
  border: 1px solid var(--iron-line);
  border-radius: var(--radius-lg);
  padding: var(--space-3);
  transition: border-color var(--t-base);
}
.faq-item:hover { border-color: var(--ember); }
.faq-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  color: var(--parchment);
  margin-bottom: var(--space-2);
  line-height: 1.25;
}
.faq-a {
  color: var(--parchment-dim);
  margin: 0;
}
.faq-a a {
  color: var(--ember-glow);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-fast);
}
.faq-a a:hover, .faq-a a:focus-visible { border-bottom-color: currentColor; }

/* ---------- Process ---------- */
.process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-3);
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: var(--space-4) var(--space-3) var(--space-3);
  background: var(--iron-dark);
  border: 1px solid var(--iron-line);
  border-radius: var(--radius-lg);
}
.process-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.5rem;
  color: var(--rust);
  opacity: 0.7;
  position: absolute;
  top: 0.5rem; right: 1rem;
  letter-spacing: 0.05em;
  text-shadow: 0 1px 0 var(--rust-deep);
}
.process-step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step-2);
  color: var(--parchment);
  margin-bottom: 0.5rem;
}
.process-step p { color: var(--parchment-dim); }

/* ---------- About ---------- */
.about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: var(--space-5);
  align-items: center;
}
.about-body p { color: var(--parchment-dim); margin-bottom: var(--space-2); max-width: 60ch; }
.about-mark {
  justify-self: center;
  filter: drop-shadow(0 0 30px rgba(255, 122, 61, 0.18));
}
.about-mark img {
  width: 280px;
  height: 280px;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}
@media (max-width: 768px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-mark { order: -1; }
}

/* ---------- Contact ---------- */
.contact-direct-wide {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-3);
  max-width: 820px;
  margin: 0 auto;
}
.contact-pill {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: var(--space-3);
  background: var(--iron-dark);
  border: 1px solid var(--iron-line);
  border-radius: var(--radius-lg);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  color: var(--parchment);
}
.contact-pill:hover, .contact-pill:focus-visible {
  border-color: var(--ember);
  transform: translateY(-2px);
  box-shadow: var(--shadow-iron);
}
.contact-pill-head {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.contact-pill-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(180deg, rgba(255, 122, 61, 0.12), rgba(255, 122, 61, 0.04));
  color: var(--ember);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 122, 61, 0.3);
}
.contact-pill-label {
  font-family: var(--font-ui);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 600;
  color: var(--parchment-dim);
}
.contact-pill-value {
  display: block;
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--parchment);
  letter-spacing: 0.005em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contact-pill:hover .contact-pill-value,
.contact-pill:focus-visible .contact-pill-value { color: var(--ember-glow); }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--iron-line);
  background: var(--iron-black);
  padding: var(--space-4) 0;
  margin-top: var(--space-5);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-display); font-weight: 700;
  color: var(--parchment);
  letter-spacing: 0.04em;
}
.footer-brand img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(255, 122, 61, 0.3);
}
.footer-nav { display: flex; gap: var(--space-3); font-family: var(--font-ui); font-size: 0.92rem; flex-wrap: wrap; }
.footer-nav a { color: var(--parchment-dim); transition: color var(--t-fast); }
.footer-nav a:hover, .footer-nav a:focus-visible { color: var(--ember-glow); }
.footer-meta { font-family: var(--font-ui); font-size: 0.85rem; color: var(--ash); flex-basis: 100%; text-align: center; padding-top: var(--space-2); border-top: 1px solid var(--iron-line); margin-top: var(--space-2); }
.footer-updated { display: inline-block; margin-left: 0.5rem; opacity: 0.75; }
