/* ============================================================
   COMMISSIONS (com-*)
   Editorial paper/ink redesign.
   ============================================================ */

.com-page {
  --paper:   var(--parchment-lightest);
  --paper-2: var(--parchment-light);
  --paper-3: var(--parchment);
  --line:    #d6cbb8;
  --ink-2:   #3a3026;
  --ink-3:   #6b5a44;
  --ink-4:   #9a8a72;

  --display: var(--font-display);
  --body:    var(--font-body);
  --accent:  var(--font-accent);
  --mono:    var(--font-mono, ui-monospace, "SFMono-Regular", "Menlo", "Consolas", monospace);

  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  position: relative;
}
.com-page::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none; z-index: 0;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(120,90,55,0.04), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(120,90,55,0.04), transparent 60%);
}
.com-page > * { position: relative; z-index: 1; }
:where(.com-page a) { color: inherit; text-decoration: none; }

/* ── Section base ────────────────────────────────── */
.com-section { max-width: 1340px; margin: 0 auto; padding: 80px 40px; }
.com-section-head { margin-bottom: 40px; max-width: 920px; }
.com-section-head--row { display: flex; justify-content: space-between; align-items: end; max-width: none; gap: 48px; }
.com-section-head__r { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 8px; text-align: right; }
.com-section-head__r a { color: var(--ink); text-decoration: underline; text-underline-offset: 4px; font-weight: 500; }
.com-kicker {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--rouge);
  margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 12px;
}
.com-kicker::after { content: ""; width: 48px; height: 1px; background: var(--rouge); opacity: 0.45; }
.com-h {
  font-family: var(--display);
  font-size: 50px; line-height: 1.04; letter-spacing: -0.005em;
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--ink);
  text-wrap: balance;
}
.com-h em { font-family: var(--accent); font-style: italic; color: var(--sepia); font-weight: 400; }
.com-lede {
  font-size: 18px; line-height: 1.55;
  color: var(--ink-2); max-width: 720px; margin: 0; text-wrap: pretty;
}

/* ── Hero ────────────────────────────────────────── */
.com-hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: var(--paper);
}
.com-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 50%;
  filter: brightness(0.55) saturate(0.9);
}
.com-hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,0.55) 0%, rgba(20,16,12,0.65) 50%, rgba(20,16,12,0.95) 100%),
    linear-gradient(90deg, rgba(20,16,12,0.45) 0%, rgba(20,16,12,0.1) 60%, transparent 100%),
    radial-gradient(ellipse at 20% 70%, rgba(168,122,37,0.22), transparent 55%);
}
.com-hero__inner {
  position: relative; z-index: 2;
  max-width: 1340px; margin: 0 auto;
  padding: 110px 40px 130px;
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 80px; align-items: end;
}
.com-hero__kicker {
  font-family: var(--mono); font-size: 11.5px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 14px;
}
.com-hero__kicker::after { content: ""; width: 64px; height: 1px; background: var(--gold); opacity: 0.5; }
.com-hero__h {
  font-family: var(--display);
  font-size: 82px; line-height: 0.96; letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0 0 22px;
  color: var(--paper);
}
.com-hero__h em { font-family: var(--accent); font-style: italic; color: var(--gold); font-weight: 400; }
.com-hero__p {
  font-size: 20px; line-height: 1.55;
  color: rgba(245,240,232,0.94);
  max-width: 580px;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.com-hero__p em { font-style: italic; color: var(--gold); }
.com-hero__actions {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
  margin-bottom: 28px;
}
.com-btn-primary {
  background: var(--paper); color: var(--ink);
  font-family: var(--display); font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 16px 24px;
  display: inline-flex; align-items: center; gap: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  transition: background 0.15s ease;
}
.com-btn-primary:hover { background: var(--gold); color: var(--ink); }
.com-btn-primary .arrow {
  font-family: var(--body); font-style: italic;
  border-left: 1px solid rgba(26,22,18,0.25);
  padding-left: 14px;
}
.com-btn-ghost {
  background: transparent; color: var(--paper);
  font-family: var(--display); font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 14px 22px;
  border: 1px solid rgba(245,240,232,0.4);
  transition: border-color 0.15s ease;
}
.com-btn-ghost:hover { border-color: var(--paper); }
.com-hero__trust {
  font-family: var(--body); font-style: italic;
  font-size: 15.5px;
  color: rgba(245,240,232,0.85);
  display: flex; gap: 22px; flex-wrap: wrap; align-items: center;
}
.com-hero__trust b {
  color: var(--gold); font-weight: 600; font-style: normal;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
}
.com-hero__stats {
  border-left: 1px solid rgba(245,240,232,0.18);
  padding-left: 40px; padding-bottom: 14px;
}
.com-hero__stat {
  padding: 18px 0;
  border-bottom: 1px solid rgba(245,240,232,0.12);
}
.com-hero__stat:last-child { border-bottom: 0; }
.com-hero__stat .n { font-family: var(--display); font-size: 38px; line-height: 1; color: var(--paper); }
.com-hero__stat .n em { font-family: var(--accent); font-style: italic; color: var(--gold); font-weight: 400; }
.com-hero__stat .n .tail { font-size: 15px; font-family: var(--body); color: rgba(245,240,232,0.7); margin-left: 6px; }
.com-hero__stat .l { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(245,240,232,0.78); margin-top: 6px; }
.com-hero__stat .s { font-family: var(--body); font-style: italic; font-size: 14px; color: rgba(245,240,232,0.78); margin-top: 4px; }

/* ── Trusted-to-score strip (early credit proof) ──── */
.com-marquee { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.com-marquee__inner {
  max-width: 1180px; margin: 0 auto; padding: 34px 40px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.com-marquee__label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--rouge); font-weight: 600;
  white-space: nowrap; line-height: 1;
  display: inline-flex; align-items: center; gap: 12px;
}
.com-marquee__label::before,
.com-marquee__label::after {
  content: ""; width: 26px; height: 1px;
  background: var(--rouge); opacity: 0.42;
}
.com-marquee__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 22px 46px;
}
.com-cred {
  display: flex; flex-direction: column; gap: 4px;
  align-items: center; text-align: center;
}
.com-cred__title {
  font-family: var(--display); font-size: 16px;
  color: var(--ink); line-height: 1.1; letter-spacing: 0.01em;
}
.com-cred__by {
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--sepia);
}
@media (max-width: 700px) {
  .com-marquee__inner { padding: 28px 22px; gap: 18px; }
  .com-marquee__list { gap: 18px 28px; }
}

/* ── Mediums (what I write for) ───────────────────── */
.com-genres { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.com-genre {
  background: var(--paper); border: 1px solid var(--line);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color 0.15s ease;
}
.com-genre:hover { border-color: var(--sepia); }
.com-genre:hover .com-genre__icon { border-color: var(--rouge); color: var(--rouge); }
.com-genre__row { display: flex; gap: 14px; align-items: center; }
.com-genre__icon {
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  background-color: var(--paper-3);
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--sepia);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.com-genre__icon svg { width: 24px; height: 24px; }
.com-genre__cat {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rouge); font-weight: 600;
}
.com-genre__h {
  font-family: var(--display); font-size: 19px;
  line-height: 1.1; font-weight: 500;
  margin: 4px 0 0; color: var(--ink);
}
.com-genre__h em { font-family: var(--accent); font-style: italic; color: var(--sepia); font-weight: 400; }
.com-genre p {
  font-size: 14.5px; line-height: 1.55;
  color: var(--ink-2); margin: 0; text-wrap: pretty;
}
.com-genre__tags {
  margin-top: auto; padding-top: 12px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.08em; color: var(--ink-3);
  display: flex; flex-wrap: wrap; gap: 4px;
}
.com-genre__tags span { border: 1px solid var(--line); padding: 3px 7px; }

/* ── Packages (3 scope cards, no prices) ─────────── */
.com-packages-wrap {
  background: var(--paper-2);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.com-packages { display: grid; grid-template-columns: 1fr 1.1fr 1fr; gap: 16px; align-items: stretch; }
.com-pkg {
  background: var(--paper); border: 1px solid var(--line);
  padding: 36px 30px 28px;
  display: flex; flex-direction: column;
  position: relative;
}
.com-pkg--featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.com-pkg--featured::before {
  content: "Most projects";
  position: absolute; top: -1px; right: -1px;
  background: var(--gold); color: var(--ink);
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 5px 10px; font-weight: 700;
}
.com-pkg__num {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 16px;
  display: flex; justify-content: space-between; align-items: baseline;
}
.com-pkg--featured .com-pkg__num { color: var(--gold); }
.com-pkg__num .px { font-family: var(--display); font-weight: 600; }
.com-pkg__h {
  font-family: var(--display); font-size: 28px;
  line-height: 1.05; font-weight: 500;
  margin: 0 0 8px; color: var(--ink);
}
.com-pkg--featured .com-pkg__h { color: var(--paper); }
.com-pkg__h em { font-family: var(--accent); font-style: italic; color: var(--sepia); font-weight: 400; }
.com-pkg--featured .com-pkg__h em { color: var(--gold); }
.com-pkg__for {
  font-family: var(--body); font-style: italic;
  color: var(--ink-3);
  margin-bottom: 18px;
  font-size: 14.5px; text-wrap: pretty;
}
.com-pkg--featured .com-pkg__for { color: rgba(245,240,232,0.65); }
.com-pkg__scope {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.com-pkg--featured .com-pkg__scope { color: rgba(245,240,232,0.6); border-color: rgba(245,240,232,0.18); }
.com-pkg__scope b { color: var(--ink); font-family: var(--display); font-size: 16px; font-weight: 600; }
.com-pkg--featured .com-pkg__scope b { color: var(--paper); }
.com-pkg__list { list-style: none; padding: 0; margin: 0 0 22px; flex: 1; }
.com-pkg__list li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.com-pkg--featured .com-pkg__list li { color: rgba(245,240,232,0.85); }
.com-pkg__list li::before {
  content: ""; position: absolute;
  left: 0; top: 12px;
  width: 12px; height: 2px;
  background: var(--rouge);
}
.com-pkg--featured .com-pkg__list li::before { background: var(--gold); }
.com-pkg__list li b { font-weight: 600; color: var(--ink); }
.com-pkg--featured .com-pkg__list li b { color: var(--paper); }
.com-pkg__cta {
  font-family: var(--display); font-size: 11.5px;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  padding: 13px 18px;
  text-align: center;
  border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper);
  transition: background 0.15s ease, border-color 0.15s ease;
}
.com-pkg__cta:hover { background: var(--sepia); border-color: var(--sepia); color: var(--paper); }
.com-pkg--featured .com-pkg__cta { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.com-pkg--featured .com-pkg__cta:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ── Process ─────────────────────────────────────── */
.com-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.com-process__step {
  background: var(--paper); border: 1px solid var(--line);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  min-height: 240px;
}
.com-process__n {
  font-family: var(--display); font-size: 48px;
  color: var(--paper-3); line-height: 1; margin-bottom: 16px;
  font-weight: 500;
}
.com-process__tag {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rouge); font-weight: 600;
  margin-bottom: 8px;
}
.com-process__step h3 {
  font-family: var(--display); font-size: 22px;
  line-height: 1.15; font-weight: 500;
  margin: 0 0 12px; color: var(--ink);
}
.com-process__step h3 em { font-family: var(--accent); font-style: italic; color: var(--sepia); font-weight: 400; }
.com-process__step p { font-size: 15.5px; line-height: 1.55; color: var(--ink-2); margin: 0; text-wrap: pretty; }

/* ── Case videos ─────────────────────────────────── */
.com-videos { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.com-video { display: flex; flex-direction: column; }
.com-video__thumb {
  position: relative; aspect-ratio: 16/9;
  border: 1px solid var(--line);
  overflow: hidden; cursor: pointer;
  background-color: var(--paper-3);
}
.com-video__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.com-video__play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(20,16,12,0.18);
  border: 0; cursor: pointer; color: var(--paper);
  transition: background 0.2s ease;
}
.com-video__thumb:hover .com-video__play { background: rgba(20,16,12,0.36); }
.com-video__play svg {
  width: 70px; height: 70px;
  background: var(--paper); color: var(--ink);
  border-radius: 50%; padding: 18px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}
.com-video__label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rouge); margin: 14px 0 4px;
}
.com-video__h {
  font-family: var(--display); font-size: 22px;
  line-height: 1.15; font-weight: 500;
  margin: 0 0 8px; color: var(--ink);
}
.com-video__h em { font-family: var(--accent); font-style: italic; color: var(--sepia); font-weight: 400; }
.com-video__desc { font-size: 15px; color: var(--ink-2); line-height: 1.5; margin: 0; text-wrap: pretty; }

/* ── Listen · press-play featured tracks ─────────── */
.com-listen { background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.com-listen__inner { max-width: 1340px; margin: 0 auto; padding: 80px 40px; }
.com-listen__head { margin-bottom: 40px; }
.com-listen__head .com-lede a { color: var(--rouge); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.com-ft-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.com-ft { display: flex; flex-direction: column; }
.com-ft__cover {
  position: relative; aspect-ratio: 1 / 1; width: 100%;
  border: 1px solid var(--line);
  background-color: var(--paper-3);
  background-size: cover; background-position: center;
  cursor: pointer; padding: 0;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.15s ease;
}
.com-ft__cover:hover { border-color: var(--sepia); }
.com-ft__play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(20,16,12,0.55); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; padding-left: 3px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.com-ft__cover:hover .com-ft__play { background: var(--rouge); transform: scale(1.08); }
.com-ft__dur {
  position: absolute; right: 8px; bottom: 8px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  background: rgba(20,16,12,0.72); color: var(--paper);
  padding: 2px 7px;
}
.com-ft__body { padding-top: 14px; }
.com-ft__title { font-family: var(--display); font-size: 19px; line-height: 1.15; font-weight: 500; margin: 0; color: var(--ink); }
.com-ft__title a { color: inherit; }
.com-ft__title a:hover { color: var(--sepia); }
.com-ft__album { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sepia); margin-top: 5px; }

/* ── Credits ─────────────────────────────────────── */
.com-credits-wrap {
  position: relative;
  background: var(--ink); color: var(--paper);
  overflow: hidden;
}
.com-credits-wrap__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.32; filter: grayscale(0.4);
}
.com-credits-wrap__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,16,12,0.45) 0%, rgba(20,16,12,0.75) 100%);
}
.com-credits-section {
  position: relative; z-index: 1;
  max-width: 1340px; margin: 0 auto;
  padding: 80px 40px;
}
.com-credits-section .com-kicker { color: var(--gold); }
.com-credits-section .com-kicker::after { background: var(--gold); }
.com-credits-section .com-h { color: var(--paper); }
.com-credits-section .com-h em { color: var(--gold); }
.com-credits-section .com-lede { color: rgba(245,240,232,0.78); }
.com-credits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px 28px; }
.com-credit {
  display: flex; justify-content: space-between; gap: 12px; align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(245,240,232,0.18);
  font-size: 15px;
  color: rgba(245,240,232,0.92);
}
.com-credit span {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

/* ── Recent work (blog projects) ─────────────────── */
.com-recent { background: var(--paper); }
.com-recent__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.com-recent__card { display: flex; flex-direction: column; }
.com-recent__cover {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border: 1px solid var(--line);
  background-color: var(--paper-3);
  margin-bottom: 14px;
  display: block;
}
.com-recent__date {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 4px;
}
.com-recent__title {
  font-family: var(--display); font-size: 20px;
  line-height: 1.2; font-weight: 500;
  margin: 0 0 8px; color: var(--ink);
}
.com-recent__title a { color: inherit; }
.com-recent__title a:hover { color: var(--sepia); }
.com-recent__link {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--rouge); font-weight: 500;
  margin-top: auto;
}

/* ── FAQ ─────────────────────────────────────────── */
.com-faq {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.com-faq__item {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.com-faq__num {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rouge); margin-bottom: 10px;
}
.com-faq__q {
  font-family: var(--display); font-size: 19px;
  line-height: 1.25; font-weight: 500;
  margin: 0 0 10px; color: var(--ink);
}
.com-faq__a { font-size: 15.5px; color: var(--ink-2); line-height: 1.55; text-wrap: pretty; }
.com-faq__a a { color: var(--rouge); text-decoration: underline; text-underline-offset: 2px; }
.com-faq__a b { font-weight: 600; color: var(--ink); }

/* ── Inquiry / contact form ──────────────────────── */
.com-inquiry-wrap {
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
}
.com-inquiry-wrap::before {
  content: ""; position: absolute;
  right: -120px; top: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(168,122,37,0.16), transparent 65%);
  pointer-events: none;
}
.com-inquiry-wrap::after {
  content: ""; position: absolute;
  left: -120px; bottom: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(138,44,48,0.10), transparent 65%);
  pointer-events: none;
}
.com-inquiry {
  position: relative; z-index: 1;
  max-width: 1340px; margin: 0 auto;
  padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 70px; align-items: start;
}
.com-inquiry__l { padding-top: 8px; }
.com-inquiry__tag {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.com-inquiry__tag::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.com-inquiry__h {
  font-family: var(--display);
  font-size: 44px; line-height: 1.05; font-weight: 500;
  margin: 0 0 18px;
  color: var(--paper);
}
.com-inquiry__h em { font-family: var(--accent); font-style: italic; color: var(--gold); font-weight: 400; }
.com-inquiry__p {
  font-size: 16px; line-height: 1.55;
  color: rgba(245,240,232,0.82);
  margin: 0 0 22px;
  max-width: 460px;
  text-wrap: pretty;
}
.com-inquiry__meta {
  font-family: var(--mono); font-size: 11px;
  color: rgba(245,240,232,0.7);
  letter-spacing: 0.04em;
  line-height: 1.7;
  padding-top: 22px;
  border-top: 1px solid rgba(245,240,232,0.18);
}
.com-inquiry__meta a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.com-inquiry__meta b { font-family: var(--display); color: var(--paper); font-weight: 600; }

.com-form { display: grid; gap: 18px; }
.com-form__field { display: grid; gap: 8px; }
.com-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .com-form__row { grid-template-columns: 1fr; } }
.com-form__field label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}
.com-form__field input,
.com-form__field textarea,
.com-form__field select {
  background: rgba(20,16,12,0.55);
  border: 1px solid rgba(245,240,232,0.22);
  color: var(--paper);
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  outline: none;
  font-family: var(--body);
  transition: border-color 0.15s ease;
}
.com-form__field input::placeholder,
.com-form__field textarea::placeholder { color: rgba(245,240,232,0.45); font-style: italic; }
.com-form__field input:focus,
.com-form__field textarea:focus,
.com-form__field select:focus { border-color: var(--gold); }
.com-form__field textarea { min-height: 130px; resize: vertical; }
.com-form__field select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23e8c87a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}
.com-form__field select option { color: #1a1612; }
.com-form__submit {
  background: var(--paper); color: var(--ink);
  font-family: var(--display); font-size: 12.5px;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  padding: 16px 24px;
  border: 1px solid var(--paper);
  display: inline-flex; align-items: center; gap: 14px;
  cursor: pointer;
  align-self: start;
  transition: background 0.15s ease;
}
.com-form__submit:hover { background: var(--gold); border-color: var(--gold); }
.com-form__note {
  font-family: var(--mono); font-size: 10.5px;
  color: rgba(245,240,232,0.6); letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 4px;
}
.com-form__note a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ── Responsive ──────────────────────────────────── */
@media (max-width: 1100px) {
  .com-hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 70px 40px 80px; }
  .com-hero__stats { border-left: 0; border-top: 1px solid rgba(245,240,232,0.18); padding-left: 0; padding-top: 24px; }
  .com-genres { grid-template-columns: 1fr 1fr; }
  .com-packages { grid-template-columns: 1fr; }
  .com-process { grid-template-columns: 1fr; }
  .com-videos { grid-template-columns: 1fr; }
  .com-ft-grid { grid-template-columns: 1fr 1fr; }
  .com-credits { grid-template-columns: 1fr 1fr; }
  .com-recent__grid { grid-template-columns: 1fr 1fr; }
  .com-inquiry { grid-template-columns: 1fr; gap: 40px; }
  .com-section-head--row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .com-section-head__r { text-align: left; }
}

@media (max-width: 700px) {
  .com-section { padding: 60px 22px; }
  .com-hero__inner { padding: 56px 22px 64px; }
  .com-hero__h { font-size: 52px; }
  .com-h { font-size: 32px; }
  .com-genres { grid-template-columns: 1fr; }
  .com-credits { grid-template-columns: 1fr; }
  .com-recent__grid { grid-template-columns: 1fr; }
  .com-faq { grid-template-columns: 1fr; }
  .com-inquiry { padding: 60px 22px; }
  .com-ft-grid { grid-template-columns: 1fr; }
}

/* ── Linkable marquee credits ────────────────────── */
.com-cred__link {
  display: flex; flex-direction: column; gap: 3px;
  transition: color 0.15s ease;
}
.com-cred__link .com-cred__title { transition: color 0.15s ease; text-underline-offset: 3px; }
.com-cred__link:hover .com-cred__title { color: var(--rouge); text-decoration: underline; }
.com-cred__link:hover .com-cred__by { color: var(--rouge); }

/* ── Linkable Select-credits titles (on ink) ─────── */
.com-credit__title {
  font-family: var(--body);
  color: var(--paper);
  transition: color 0.15s ease;
}
.com-credit__title:not(.com-credit__title--plain) {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(232,200,122,0.4);
  text-decoration-thickness: 1px;
}
.com-credit__title:not(.com-credit__title--plain):hover { color: var(--gold); text-decoration-color: var(--gold); }

/* ── Featured testimonial band (master-of-craft) ─── */
.com-feature {
  background: var(--ink); color: var(--paper);
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(245,240,232,0.12);
}
.com-feature::before {
  content: ""; position: absolute;
  right: -120px; top: -90px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(168,122,37,0.16), transparent 65%);
  pointer-events: none;
}
.com-feature__inner {
  position: relative; z-index: 1;
  max-width: 1000px; margin: 0 auto;
  padding: 76px 40px;
  text-align: center;
}
.com-feature__mark {
  display: block;
  font-family: var(--display); font-size: 86px; line-height: 0.5;
  color: var(--gold); opacity: 0.5;
  height: 46px;
}
.com-feature__quote {
  font-family: var(--body);
  font-size: 25px; line-height: 1.5;
  color: var(--paper);
  margin: 0 0 28px;
  text-wrap: pretty;
}
.com-feature__quote em { font-family: var(--accent); font-style: italic; color: var(--gold); }
.com-feature__by { display: flex; flex-direction: column; gap: 5px; align-items: center; }
.com-feature__name {
  font-family: var(--display); font-size: 16px;
  letter-spacing: 0.03em; color: var(--paper); font-weight: 600;
}
.com-feature__role {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(245,240,232,0.7);
}
.com-feature__role a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

/* ── Vouch beside the inquiry form ───────────────── */
.com-inquiry__vouch {
  margin: 0 0 24px;
  padding: 6px 0 6px 20px;
  border-left: 2px solid var(--gold);
  max-width: 460px;
}
.com-inquiry__vouch-q {
  font-family: var(--body); font-style: italic;
  font-size: 17.5px; line-height: 1.5;
  color: var(--paper);
  margin: 0 0 9px;
}
.com-inquiry__vouch-cite {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin: 0;
}
.com-inquiry__vouch-name { color: var(--gold); font-weight: 600; }
.com-inquiry__vouch a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 700px) {
  .com-feature__inner { padding: 56px 22px; }
  .com-feature__quote { font-size: 21px; }
}
