/* ============================================================
   AlGray LLC — Monochrome Design & Visual Identity Studio
   css/style.css — shared stylesheet (homepage, services, contact)
   DARK charcoal-studio grayscale theme
   ============================================================ */

:root {
  --charcoal-studio: #12141A;
  --studio-panel: #1B1E26;
  --darkroom-deep: #232733;
  --deeper-studio: #0D0F14;
  --paper-white: #F5F7FA;
  --body-text: #C4C8CE;
  --graphite-silver: #B9C2CC;
  --warm-silver: #D6B98C;
  --tone-1: #0E1015;
  --tone-2: #1A1D24;
  --tone-3: #262A32;
  --tone-4: #33383F;
  --tone-5: #4A4F56;
  --tone-6: #6C7278;
  --tone-7: #9AA0A6;
  --tone-8: #C6CACF;
  --tone-9: #F5F7FA;
  --line: #D6B98C;
}

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

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

body {
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.7;
  background-color: #12141A;
  color: #C4C8CE;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TONE-SCALE NAV
   ============================================================ */
.tonescale-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #1B1E26;
  width: 100%;
}

.tonescale-nav .tone-strip {
  width: 100%;
  height: 12px;
  display: flex;
  background-color: var(--deeper-studio);
}

.tonescale-nav .tone-strip .tone {
  flex: 1;
}

.tonescale-nav .tone-strip .tone-1 { background-color: #0E1015; }
.tonescale-nav .tone-strip .tone-2 { background-color: #1A1D24; }
.tonescale-nav .tone-strip .tone-3 { background-color: #262A32; }
.tonescale-nav .tone-strip .tone-4 { background-color: #33383F; }
.tonescale-nav .tone-strip .tone-5 { background-color: #4A4F56; }
.tonescale-nav .tone-strip .tone-6 { background-color: #6C7278; }
.tonescale-nav .tone-strip .tone-7 { background-color: #9AA0A6; }
.tonescale-nav .tone-strip .tone-8 { background-color: #C6CACF; }
.tonescale-nav .tone-strip .tone-9 { background-color: #F5F7FA; }

.tonescale-nav .tone-strip .tone + .tone {
  border-left: 1px solid #D6B98C;
}

.tonescale-nav .nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.tonescale-nav .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #F5F7FA;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tonescale-nav .brand .aperture {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.tonescale-nav .brand .apl {
  color: #F5F7FA;
}

.tonescale-nav .brand .ay {
  color: #B9C2CC;
}

.tonescale-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
}

.tonescale-nav .nav-links li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tonescale-nav .nav-links .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

.tonescale-nav .nav-links .dot.a { background-color: #33383F; }
.tonescale-nav .nav-links .dot.b { background-color: #6C7278; }

.tonescale-nav .nav-links a {
  color: #C4C8CE;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 2px;
  position: relative;
}

.tonescale-nav .nav-links a:hover {
  color: #B9C2CC;
}

.tonescale-nav .nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background-color: #B9C2CC;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 1px solid #33383F;
  padding: 10px 12px;
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background-color: #F5F7FA;
}

/* ============================================================
   HERO — SOFTBOX-STUDIO
   ============================================================ */
.softbox-hero {
  background-color: #12141A;
  width: 100%;
  overflow: hidden;
}

.softbox-hero .hero-grid {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 40px;
  align-items: center;
  padding: 84px 24px 90px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy .hero-eyebrow {
  display: inline-block;
  background-color: #B9C2CC;
  color: #12141A;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-copy h1 {
  color: #F5F7FA;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}

.hero-copy h1 .contrast {
  color: #B9C2CC;
}

.hero-copy .hero-sub {
  color: #C4C8CE;
  font-size: 18px;
  line-height: 1.7;
  max-width: 34em;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  cursor: pointer;
  border: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background-color: #F5F7FA;
  color: #12141A;
}

.btn-primary:hover {
  background-color: #E5E8EC;
}

.btn-ghost {
  background: none;
  border: 1px solid #B9C2CC;
  color: #B9C2CC;
}

.btn-ghost:hover {
  background-color: #B9C2CC;
  color: #12141A;
}

/* Studio set graphic */
.studio-set {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #0D0F14;
  overflow: hidden;
  border: 1px solid #33383F;
}

/* horizon line */
.studio-set .floor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40%;
  background-color: #111318;
}

.studio-set .floor::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 10px;
  background-color: #232733;
}

/* backdrop paper roll top-right */
.studio-set .backdrop-roll {
  position: absolute;
  top: -14px;
  right: -30px;
  width: 120px;
  height: 240px;
  background-color: #2B3037;
  border-left: 2px solid #C4C8CE;
  transform: rotate(-8deg);
  filter: brightness(0.89);
}

/* softbox */
.studio-set .softbox {
  position: absolute;
  left: 8%;
  bottom: 28%;
  width: 38%;
  height: 32%;
  background-color: #232733;
  transform: rotate(-12deg);
}

.studio-set .softbox .head {
  position: absolute;
  top: -8%;
  left: 4%;
  width: 92%;
  height: 26%;
  background-color: #F5F7FA;
  border-radius: 10px;
}

.studio-set .softbox .lamp {
  position: absolute;
  top: 26%;
  left: 10%;
  width: 80%;
  height: 44%;
  background-color: #EAECEF;
  border-radius: 8px;
}

.studio-set .softbox .pedestal {
  position: absolute;
  top: 72%;
  left: 46%;
  width: 3px;
  height: 40%;
  background-color: #6C7278;
}

.studio-set .softbox .foot {
  position: absolute;
  top: 112%;
  left: 46%;
  width: 60px;
  height: 4px;
  background-color: #6C7278;
}

/* camera on tripod */
.studio-set .tripod {
  position: absolute;
  right: 16%;
  bottom: 28%;
  width: 30%;
  height: 44%;
}

.studio-set .tripod .cam {
  position: absolute;
  top: 0;
  left: 22%;
  width: 56%;
  height: 34%;
  background-color: #2E333A;
  border-radius: 6px;
}

.studio-set .tripod .lens {
  position: absolute;
  top: 8%;
  left: 2%;
  width: 34%;
  height: 56%;
  background-color: #4A4F56;
  border-radius: 6px;
}

.studio-set .tripod .vf {
  position: absolute;
  top: -6%;
  left: 40%;
  width: 26%;
  height: 16%;
  background-color: #4A4F56;
}

.studio-set .tripod .leg {
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 70%;
  background-color: #6C7278;
}

.studio-set .tripod .leg.l1 { left: 20%; transform: rotate(-14deg); }
.studio-set .tripod .leg.l2 { left: 42%; }
.studio-set .tripod .leg.l3 { left: 66%; transform: rotate(14deg); }

/* gray card on easel */
.studio-set .easel {
  position: absolute;
  left: 26%;
  bottom: 24%;
  width: 14%;
  height: 22%;
}

.studio-set .easel .card {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid #9AA0A6;
}

.studio-set .easel .card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-color: #6C7278;
}

.studio-set .easel .card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-color: #9AA0A6;
}

/* contact sheet at front */
.studio-set .sheet {
  position: absolute;
  left: 6%;
  bottom: 6%;
  width: 30%;
  height: 20%;
  background-color: #0E1015;
  border: 1px solid #C6CACF;
  transform: rotate(-4deg);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 3px;
  padding: 4px;
}

.studio-set .sheet .frame {
  border: 1px solid #33383F;
}

.studio-set .sheet .frame.f1 { background-color: #4A4F56; }
.studio-set .sheet .frame.f2 { background-color: #6C7278; }
.studio-set .sheet .frame.f3 { background-color: #9AA0A6; }
.studio-set .sheet .frame.f4 { background-color: #2E333A; }
.studio-set .sheet .frame.f5 { background-color: #7C8288; }
.studio-set .sheet .frame.f6 { background-color: #5A5F66; }

/* loupe */
.studio-set .loupe {
  position: absolute;
  left: 2%;
  bottom: 2%;
  width: 16%;
  height: 16%;
  background-color: #B9C2CC;
  border-radius: 50%;
  border: 2px solid #EAECEF;
  transform: rotate(-12deg);
}

.studio-set .loupe::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 22%;
  width: 40%;
  height: 16%;
  background-color: #6C7278;
  border-radius: 3px;
  transform: rotate(-40deg);
}

/* drying print on line */
.studio-set .dryline {
  position: absolute;
  top: 8%;
  left: 4%;
  right: 6%;
  height: 2px;
  background-color: #C6CACF;
}

.studio-set .print {
  position: absolute;
  top: 10%;
  left: 6%;
  width: 12%;
  height: 18%;
  background-color: #F5F7FA;
  border: 1px solid #9AA0A6;
}

.studio-set .print::before {
  content: "";
  position: absolute;
  top: 14%;
  left: 10%;
  right: 10%;
  height: 40%;
  background-color: #9AA0A6;
}

/* tone curve card */
.studio-set .curve {
  position: absolute;
  right: 4%;
  bottom: 6%;
  width: 18%;
  height: 20%;
  background-color: #1B1E26;
  border: 1px solid #9AA0A6;
  transform: rotate(6deg);
}

.studio-set .curve .curveline {
  position: absolute;
  left: 10%;
  right: 10%;
  top: 60%;
  bottom: 10%;
  border-bottom: 2px solid #F5F7FA;
  border-radius: 50%;
}

/* ============================================================
   CONTACT-SHEET ROWS
   ============================================================ */
.contactsheet-rows {
  background-color: #12141A;
  padding: 90px 0;
}

.rows-heading {
  max-width: 1200px;
  margin: 0 auto 44px;
  padding: 0 24px;
}

.rows-heading h2 {
  color: #B9C2CC;
  font-size: 36px;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.rows-heading .rows-intro {
  color: #C4C8CE;
  font-size: 18px;
  max-width: 40em;
}

.sheet-row {
  max-width: 1200px;
  margin: 0 auto 12px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  background-color: #1B1E26;
  border: 1px solid #D6B98C;
  position: relative;
}

.sheet-row .sheet-inner {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  width: 100%;
}

.frame-strip {
  width: 48px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-self: center;
}

.frame-strip .fr {
  height: 34px;
  border: 1px solid #33383F;
}

.frame-strip .fr.g1 { background-color: #1A1D24; }
.frame-strip .fr.g2 { background-color: #262A32; }
.frame-strip .fr.g3 { background-color: #33383F; }
.frame-strip .fr.g4 { background-color: #4A4F56; }

.frame-strip .fr.sel {
  outline: 1px solid #B9C2CC;
  position: relative;
}

.frame-strip .fr.sel::after {
  content: "";
  position: absolute;
  right: -7px;
  top: 50%;
  width: 5px;
  height: 5px;
  background-color: #B9C2CC;
  border-radius: 50%;
  transform: translateY(-50%);
}

.sheet-row .row-body h3 {
  color: #F5F7FA;
  font-size: 24px;
  margin-bottom: 8px;
}

.sheet-row .row-body p {
  color: #C4C8CE;
  font-size: 16px;
  max-width: 48em;
}

.gray-card-chip {
  width: 64px;
  height: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  border: 1px solid #9AA0A6;
  justify-self: center;
}

.gray-card-chip .quad {
  background-color: #2E333A;
}

.gray-card-chip .quad.q1 { background-color: #6C7278; }
.gray-card-chip .quad.q2 { background-color: #9AA0A6; }
.gray-card-chip .quad.q3 { background-color: #C6CACF; }

.chip-label {
  text-align: center;
  color: #C4C8CE;
  font-size: 13px;
  letter-spacing: 0.08em;
  margin-top: 8px;
  text-transform: uppercase;
  justify-self: center;
}

/* ============================================================
   DENSITY METRIC BAND
   ============================================================ */
.metric-band {
  background-color: #232733;
  padding: 70px 24px;
}

.metric-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  padding: 10px 30px;
  text-align: center;
  position: relative;
}

.metric-item + .metric-item {
  border-left: 1px solid #D6B98C;
}

.metric-item .metric-num {
  color: #F5F7FA;
  font-size: 56px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.metric-item .metric-label {
  color: #C4C8CE;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ============================================================
   STATEMENT BAND
   ============================================================ */
.statement-band {
  background-color: #1B1E26;
  padding: 80px 24px;
  border-top: 1px solid #33383F;
  border-bottom: 1px solid #33383F;
}

.statement-inner {
  max-width: 800px;
  margin: 0 auto;
  border-left: 4px solid #B9C2CC;
  padding-left: 28px;
  position: relative;
  z-index: 1;
}

.statement-inner .quote-text {
  color: #F5F7FA;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 500;
}

.statement-inner p.attr {
  margin-top: 18px;
  color: #C4C8CE;
  font-size: 15px;
  letter-spacing: 0.06em;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background-color: #12141A;
  padding: 90px 24px;
  text-align: center;
}

.cta-inner {
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #B9C2CC;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-inner p {
  color: #C4C8CE;
  font-size: 18px;
  margin-bottom: 30px;
}

/* ============================================================
   FORMATTED EDITORIAL BLOCK (for longer body text on index)
   ============================================================ */
.editorial {
  background-color: #12141A;
  padding: 80px 0;
}

.editorial .container {
  max-width: 820px;
}

.editorial h2 {
  color: #B9C2CC;
  font-size: 34px;
  margin-bottom: 20px;
}

.editorial p {
  color: #C4C8CE;
  font-size: 17px;
  margin-bottom: 18px;
}

.editorial h3 {
  color: #F5F7FA;
  font-size: 22px;
  margin: 30px 0 12px;
}

.editorial .two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 28px;
}

/* ============================================================
   FOOTER — DRYING-LINE
   ============================================================ */
.dryingline-footer {
  background-color: #0D0F14;
  padding-top: 50px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.dryingline-footer .print-line {
  width: 100%;
  height: 14px;
  position: relative;
  background-color: #0D0F14;
}

.dryingline-footer .print-line .cord {
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 2px;
  background-color: #6C7278;
}

.dryingline-footer .print-line .snippet {
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 9px;
  background-color: #666B71;
}

.dryingline-footer .print-line .p1 { left: 6%; }
.dryingline-footer .print-line .p2 { left: 30%; }
.dryingline-footer .print-line .p3 { left: 55%; }
.dryingline-footer .print-line .p4 { left: 80%; }

.dryingline-footer .foot-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 40px;
  text-align: center;
}

.foot-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.foot-brand .aperture {
  width: 24px;
  height: 24px;
}

.foot-brand .wordmark {
  color: #F5F7FA;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.foot-brand .wordmark .ay {
  color: #B9C2CC;
}

.foot-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: center;
  margin: 22px 0 24px;
}

.foot-links a {
  color: #C4C8CE;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.foot-links a:hover {
  color: #F5F7FA;
  text-decoration: underline;
}

.loupe-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}

.loupe-divider .g-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.loupe-divider .g-dot.da { background-color: #4A4F56; }
.loupe-divider .g-dot.db { background-color: #9AA0A6; }

.loupe-divider .loupe-g {
  width: 18px;
  height: 18px;
  border: 2px solid #B9C2CC;
  border-radius: 50%;
  position: relative;
}

.loupe-divider .loupe-g::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 55%;
  width: 40%;
  height: 12%;
  background-color: #B9C2CC;
  transform: rotate(-45deg);
}

.legal-line {
  color: #C4C8CE;
  font-size: 14px;
  line-height: 1.7;
}

.legal-line a {
  color: #B9C2CC;
  text-decoration: none;
}

.legal-line a:hover {
  color: #F5F7FA;
}

/* ============================================================
   SERVICES + CONTACT SECONDARY PAGE SHARED
   ============================================================ */
.page-hero {
  background-color: #12141A;
  padding: 70px 24px 60px;
  border-bottom: 1px solid #33383F;
}

.page-hero .container {
  max-width: 860px;
}

.page-hero .eyebrow {
  display: inline-block;
  background-color: #B9C2CC;
  color: #12141A;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 14px;
  font-weight: 600;
  margin-bottom: 22px;
}

.page-hero h1 {
  color: #F5F7FA;
  font-size: 46px;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-hero h1 .contrast {
  color: #B9C2CC;
}

.page-hero p {
  color: #C4C8CE;
  font-size: 18px;
  max-width: 40em;
}

/* Services page detailed service blocks */
.service-blocks {
  padding: 70px 0;
  background-color: #12141A;
}

.service-blocks .container {
  max-width: 900px;
}

.service-block {
  padding: 40px 0;
  border-bottom: 1px solid #33383F;
}

.service-block:first-of-type {
  border-top: none;
}

.service-block .service-head {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 16px;
}

.service-block .service-num {
  color: #9AA0A6;
  font-size: 18px;
  letter-spacing: 0.1em;
  border-top: 2px solid #B9C2CC;
  padding-top: 4px;
}

.service-block h2 {
  color: #B9C2CC;
  font-size: 26px;
  letter-spacing: -0.01em;
}

.service-block p {
  color: #C4C8CE;
  font-size: 17px;
  margin-bottom: 16px;
  max-width: 60em;
}

.service-block ul {
  color: #C4C8CE;
  margin: 0 0 8px 22px;
}

.service-block li {
  margin-bottom: 8px;
}

.process-overview {
  background-color: #1B1E26;
  padding: 70px 0;
  border-top: 1px solid #33383F;
  border-bottom: 1px solid #33383F;
}

.process-overview .container {
  max-width: 900px;
}

.process-overview h2 {
  color: #B9C2CC;
  font-size: 32px;
  margin-bottom: 14px;
}

.process-overview h2 + p {
  color: #C4C8CE;
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 46em;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.process-step {
  background-color: #12141A;
  border: 1px solid #33383F;
  padding: 22px 24px;
}

.process-step .step-index {
  color: #9AA0A6;
  font-size: 13px;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
}

.process-step h3 {
  color: #F5F7FA;
  font-size: 19px;
  margin-bottom: 8px;
}

.process-step p {
  color: #C4C8CE;
  font-size: 16px;
  max-width: 40em;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 50px;
  align-items: start;
}

.contact-info h2 {
  color: #B9C2CC;
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-info p {
  color: #C4C8CE;
  font-size: 16px;
  margin-bottom: 20px;
}

.contact-info .info-row {
  padding: 16px 0;
  border-bottom: 1px solid #33383F;
}

.contact-info .info-row .info-label {
  color: #9AA0A6;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-info .info-row .info-value {
  color: #EAECEF;
  font-size: 17px;
}

.contact-info .info-row a {
  color: #B9C2CC;
  text-decoration: none;
}

.contact-info .info-row a:hover {
  text-decoration: underline;
}

.contact-form-wrap h2 {
  color: #B9C2CC;
  font-size: 22px;
  margin-bottom: 20px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  color: #C4C8CE;
  font-size: 14px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background-color: #1B1E26;
  border: 1px solid #33383F;
  color: #EAECEF;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 16px;
  border-radius: 4px;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: #B9C2CC;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .form-status {
  margin-top: 14px;
  color: #B9C2CC;
  display: none;
}

.contact-form .form-status.show {
  display: block;
}

/* FAQ accordion on contact */
.mini-faq {
  max-width: 1000px;
  margin: 0 auto;
  padding: 70px 24px;
}

.mini-faq h2 {
  color: #B9C2CC;
  font-size: 30px;
  margin-bottom: 26px;
}

.faq-item {
  border: 1px solid #33383F;
  background-color: #1B1E26;
  margin-bottom: 12px;
}

.faq-item .faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #F5F7FA;
  font-size: 18px;
  text-align: left;
  padding: 16px 22px;
  cursor: pointer;
  font-family: inherit;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item .faq-q .fx {
  color: #9AA0A6;
  font-size: 20px;
}

.faq-item .faq-a {
  display: none;
  padding: 0 22px 18px;
  color: #C4C8CE;
  font-size: 16px;
}

.faq-item.open .faq-a {
  display: block;
}

/* ============================================================
   SCROLL-REVEAL
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav-toggle {
    display: flex;
  }

  .tonescale-nav .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background-color: #232733;
    padding: 12px;
    border-top: 1px solid #33383F;
  }

  .tonescale-nav .nav-links.open {
    display: flex;
  }

  .tonescale-nav .nav-links li {
    justify-content: space-between;
    gap: 12px;
    border-bottom: 1px solid #2E333A;
    padding: 10px 4px;
  }

  .softbox-hero .hero-grid {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .studio-set {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .sheet-row .sheet-inner {
    grid-template-columns: 64px 1fr;
  }

  .sheet-row .sheet-inner .gray-slot {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 14px;
  }

  .metric-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 24px;
  }

  .metric-item + .metric-item {
    border-left: none;
  }

  .editorial .two-col {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero-copy h1 {
    font-size: 31px;
  }

  .hero-copy .hero-sub {
    font-size: 16px;
  }

  .sheet-row .sheet-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .frame-strip {
    margin: 0 auto;
  }

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

  .statement-inner {
    padding-left: 18px;
  }

  .statement-inner .quote-text {
    font-size: 21px;
  }

  .metric-item .metric-num {
    font-size: 44px;
  }

  .page-hero h1 {
    font-size: 34px;
  }

  .foot-links {
    flex-direction: column;
    gap: 10px;
  }

  .legal-line {
    font-size: 13px;
  }
}
