/* ════════════════════════════════════════════════════
   NISHAM PORTFOLIO — style2.css
   Sections, Components & Responsive
   Editorial Vintage · Scandinavian Studio Aesthetic
════════════════════════════════════════════════════ */

/* ─── SECTION BASE ─── */
.section {
  padding: var(--space-2xl) 8%;
  position: relative;
  background: var(--bg-primary);
}

/* Section masthead (editorial header group) */
.section-masthead {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 80px;
  position: relative;
}

.sm-rule-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 28px;
  width: 60px;
}

.sm-rule { width: 100%; }
.sm-rule.thick { height: 2px; background: var(--ink); }
.sm-rule.thin  { height: 1px; background: var(--rule-medium); width: 80%; }

.section-kicker {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 14px;
}

.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.section-headline em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.section-dek {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
  max-width: 480px;
}

.sm-issue {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ─── WORK SECTION ─── */
.work-section {
  background: var(--bg-warm);
  padding-top: var(--space-2xl);
}

.projects-editorial {
  display: flex;
  flex-direction: column;
  gap: 72px;
  max-width: 1300px;
  margin: 0 auto;
}

.project-editorial-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

/* ─── PROJECT CARD (EDITORIAL STYLE) ─── */
.project-editorial {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  cursor: none;
  transition: opacity 0.4s;
}

.project-editorial:hover { opacity: 0.88; }

.project-editorial.large {
  grid-template-columns: 1.4fr 0.6fr;
}

/* Column layout variants */
.pe-image-wrap--right { order: 2; }
.pe-info--left { order: 1; }

.project-editorial-row .project-editorial {
  grid-template-columns: 1fr;
  gap: 24px;
}

.pe-image-wrap {
  position: relative;
  overflow: hidden;
}

.pe-image {
  width: 100%;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s var(--ease-slow), filter 0.6s;
  filter: sepia(0.2) saturate(0.8) brightness(0.95);
}

.project-editorial:hover .pe-image {
  transform: scale(1.03);
  filter: sepia(0.1) saturate(0.9) brightness(1);
}

.project-editorial.large .pe-image {
  aspect-ratio: 16/7;
}

.project-editorial-row .pe-image {
  aspect-ratio: 4/3;
}

.pe-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(242, 236, 224, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

/* Scan line effect on hover */
.pe-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(242, 236, 224, 0.015) 3px,
    rgba(242, 236, 224, 0.015) 4px
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.project-editorial:hover .pe-image-wrap::after { opacity: 1; }

.pe-info { display: flex; flex-direction: column; gap: 16px; }

.pe-meta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pe-number {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.1em;
}

.pe-category {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(92, 79, 68, 0.07);
  padding: 3px 10px;
  border: 1px solid var(--rule-thin);
}

.pe-year {
  font-size: 0.62rem;
  color: var(--text-faint);
  letter-spacing: 0.06em;
  margin-left: auto;
}

.pe-rule {
  height: 1px;
  background: var(--rule-thin);
  width: 100%;
}

.pe-title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.pe-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
}

.pe-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--rule-medium);
  padding-bottom: 3px;
  width: fit-content;
  cursor: none;
  transition: letter-spacing 0.4s var(--ease-slow), border-color 0.3s;
}

.pe-link:hover {
  letter-spacing: 0.24em;
  border-color: var(--ink);
}

.pe-link-arrow {
  transition: transform 0.3s var(--ease-slow);
}

.pe-link:hover .pe-link-arrow { transform: translate(2px, -2px); }

/* ─── SERVICES SECTION ─── */
.services-section {
  background: var(--bg-section);
}

.services-layout {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 120px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.services-header-col {
  position: sticky;
  top: 120px;
}

.services-intro {
  font-family: var(--font-serif);
  font-size: 1.0rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 24px;
}

.services-list-col {
  display: flex;
  flex-direction: column;
}

/* ─── SERVICE ITEM (EDITORIAL) ─── */
.service-editorial {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 0;
  border-top: 1px solid var(--rule-thin);
  cursor: none;
  transition: padding-left 0.5s var(--ease-slow);
  position: relative;
}

.service-editorial:last-child {
  border-bottom: 1px solid var(--rule-thin);
}

.service-editorial:hover { padding-left: 10px; }

.se-number {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  padding-top: 4px;
  min-width: 24px;
  transition: color 0.3s;
}

.service-editorial:hover .se-number { color: var(--accent); }

.se-content { flex: 1; }

.se-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.2;
  transition: color 0.3s;
}

.service-editorial:hover .se-title { color: var(--accent); }

.se-desc {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

.se-arrow {
  font-size: 1.1rem;
  color: var(--text-faint);
  transition: transform 0.4s var(--ease-slow), color 0.3s;
  padding-top: 2px;
}

.service-editorial:hover .se-arrow {
  transform: translate(4px, -4px);
  color: var(--ink);
}

/* ─── PROCESS SECTION ─── */
.process-section { background: var(--bg-deeper); }

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

.process-step-editorial {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pse-number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(92, 79, 68, 0.2);
  line-height: 1;
}

.pse-rule {
  height: 1px;
  background: var(--rule-thin);
  width: 48px;
  transition: width 0.4s var(--ease-slow), background 0.4s;
}

.pse-rule--active {
  background: var(--accent);
  width: 72px;
}

.pse-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.pse-desc {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.85;
}

/* ─── ABOUT SECTION ─── */
.about-section { background: var(--bg-alt); }

.about-editorial {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 100px;
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

/* About text column */
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin: 20px 0 36px;
}

.about-headline em {
  font-style: italic;
  color: var(--accent);
}

.about-pull-quote {
  margin-bottom: 36px;
}

.apq-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.65;
  padding-left: 20px;
  border-left: 2px solid var(--rule-medium);
}

.apq-rule {
  height: 1px;
  background: var(--rule-thin);
  margin-top: 24px;
}

.about-body {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.95;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.about-stats-editorial {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-thin);
}

.ase-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ase-number {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
}

.ase-rule {
  display: block;
  height: 1px;
  background: var(--rule-thin);
  width: 28px;
}

.ase-label {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.about-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.discipline-tag {
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--rule-thin);
  padding: 5px 14px;
  background: rgba(242, 236, 224, 0.5);
  transition: all 0.3s;
}

.discipline-tag:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ─── PORTRAIT EDITORIAL FRAME — Enhanced Analog Treatment ─── */
.about-portrait-col {
  position: relative;
  padding-top: 24px;
}

/* Magazine folio strip */
.portrait-folio {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-left: 2px;
}

.pf-vol, .pf-page {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-family: var(--font-body);
}

.pf-line {
  flex: 1;
  height: 1px;
  background: var(--rule-thin);
  max-width: 60px;
}

/* Main frame wrapper */
.portrait-editorial-frame {
  position: relative;
}

/* Mat board — aged paper backing */
.pef-mat {
  position: relative;
  background: var(--parchment);
  padding: 12px 12px 0;
  box-shadow:
    0 2px 8px rgba(44, 36, 32, 0.08),
    0 8px 32px rgba(44, 36, 32, 0.06),
    inset 0 0 0 1px rgba(92, 79, 68, 0.12);
}

/* Print registration marks */
.pef-register {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}

.pr-mark {
  position: absolute;
  font-size: 0.6rem;
  color: rgba(92, 79, 68, 0.25);
  font-family: monospace;
  line-height: 1;
  font-weight: 400;
}

.pr-mark-tl { top:  4px; left:  4px; }
.pr-mark-tr { top:  4px; right: 4px; }
.pr-mark-bl { bottom: 50px; left:  4px; }
.pr-mark-br { bottom: 50px; right: 4px; }

/* Border containers */
.pef-border-outer {
  border: 1px solid rgba(92, 79, 68, 0.2);
  padding: 4px;
  background: rgba(44, 36, 32, 0.03);
}

.pef-border-inner {
  border: 1px solid rgba(92, 79, 68, 0.1);
  overflow: hidden;
  position: relative;
  display: block;
}

/* The portrait image itself */
.portrait-editorial-img {
  width: 100%;
  height: auto;
  display: block;
  /* Analog film color treatment:
     - Slight sepia to warm the neutral cream background
     - Desaturated to look developed, not digital
     - Brightness slightly pulled down for moody editorial feel
     - Contrast slightly up for deeper shadows
  */
  filter:
    sepia(0.18)
    saturate(0.82)
    brightness(0.94)
    contrast(1.06)
    hue-rotate(-3deg);
  transition: filter 1.2s var(--ease-slow);
}

.portrait-editorial-frame:hover .portrait-editorial-img {
  /* On hover — slightly fresher, like viewing under better light */
  filter:
    sepia(0.08)
    saturate(0.9)
    brightness(0.97)
    contrast(1.03)
    hue-rotate(-1deg);
}

/* Layer 1: Warm halation / light leak film overlay */
.pef-film-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 15% 5%,  rgba(255, 240, 190, 0.18) 0%, transparent 45%),
    radial-gradient(ellipse at 90% 90%, rgba(180, 130, 70, 0.10)  0%, transparent 40%),
    radial-gradient(ellipse at 50% 50%, rgba(240, 220, 180, 0.04) 0%, transparent 70%);
  mix-blend-mode: screen;
  z-index: 2;
}

/* Layer 2: Analog grain / noise simulation */
.pef-grain-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='0.25'/%3E%3C/svg%3E");
  opacity: 0.45;
  mix-blend-mode: multiply;
  z-index: 3;
}

/* Layer 3: Edge burn / vignette (darkened corners like old photo) */
.pef-burn-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center,
      transparent 42%,
      rgba(26, 18, 12, 0.28) 80%,
      rgba(26, 18, 12, 0.45) 100%
    );
  z-index: 4;
  mix-blend-mode: multiply;
}

/* Layer 4: Scan lines — subtle horizontal lines like printed photo */
.pef-scan-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(26, 18, 12, 0.025) 3px,
    rgba(26, 18, 12, 0.025) 4px
  );
  z-index: 5;
}

/* Editorial caption block — redesigned */
.pef-caption {
  padding: 14px 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--parchment);
  border-top: 1px solid rgba(92, 79, 68, 0.1);
}

.pef-caption-rule {
  width: 1px;
  height: 38px;
  background: linear-gradient(to bottom, var(--rule-medium), transparent);
  flex-shrink: 0;
  margin-top: 2px;
}

.pef-caption-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pef-caption-text {
  font-family: var(--font-serif);
  font-size: 0.73rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.pef-caption-text em {
  font-style: italic;
  color: var(--text-faint);
}

.pef-caption-num {
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* Decorative corner crop marks (positioned on the outer frame) */
.pef-corner {
  position: absolute;
  width: 16px;
  height: 16px;
  z-index: 8;
}

.pef-corner-tl { top: -1px;   left: -1px;  border-top: 1px solid rgba(92, 79, 68, 0.4); border-left:  1px solid rgba(92, 79, 68, 0.4); }
.pef-corner-tr { top: -1px;   right: -1px; border-top: 1px solid rgba(92, 79, 68, 0.4); border-right: 1px solid rgba(92, 79, 68, 0.4); }
.pef-corner-bl { bottom: -1px; left: -1px;  border-bottom: 1px solid rgba(92, 79, 68, 0.4); border-left:  1px solid rgba(92, 79, 68, 0.4); }
.pef-corner-br { bottom: -1px; right: -1px; border-bottom: 1px solid rgba(92, 79, 68, 0.4); border-right: 1px solid rgba(92, 79, 68, 0.4); }

/* Portrait annotation strip */
.portrait-annotation {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.pa-line {
  flex: 1;
  height: 1px;
  background: var(--rule-thin);
}

.pa-line--short {
  max-width: 30px;
}

.pa-text {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
}

/* Side running text — vertical magazine folio */
.portrait-side-text {
  position: absolute;
  right: -32px;
  top: 60px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  opacity: 0.7;
  transform: rotate(180deg);
}



/* ─── CONTACT SECTION ─── */
.contact-section { background: var(--bg-primary); }

.contact-editorial {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-header {
  margin-bottom: 72px;
}

.contact-dek {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 20px;
}

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

.cd-section {
  margin-bottom: 48px;
}

.cd-label {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
  display: block;
  font-weight: 400;
  font-family: var(--font-body);
}

.cd-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cd-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-thin);
  cursor: none;
  transition: padding-left 0.4s var(--ease-slow);
}

a.cd-item:hover { padding-left: 8px; }

.cd-item-label {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.cd-item-value {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--ink);
  font-style: italic;
}

.cd-socials {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cd-social {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--rule-thin);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: none;
  transition: color 0.3s, padding-left 0.4s var(--ease-slow);
}

.cd-social:hover { color: var(--ink); padding-left: 8px; }

.cd-social-arrow {
  transition: transform 0.3s;
}

.cd-social:hover .cd-social-arrow { transform: translate(2px, -2px); }

/* Contact form */
.contact-form-editorial {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--rule-medium);
  padding: 48px;
  background: rgba(242, 236, 224, 0.5);
  position: relative;
}

/* Corner accents on form */
.contact-form-editorial::before,
.contact-form-editorial::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
}

.contact-form-editorial::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.contact-form-editorial::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--ink);
  border-right: 2px solid var(--ink);
}

.cfe-header {
  margin-bottom: 36px;
}

.cfe-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 12px;
}

.cfe-rule {
  height: 1px;
  background: var(--rule-thin);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px 0;
  border-bottom: 1px solid var(--rule-thin);
}

.form-field:last-of-type { border-bottom: none; margin-bottom: 28px; }

.ff-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 8px 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-style: italic;
  outline: none;
  resize: none;
  transition: border-color 0.3s;
  cursor: none;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-faint);
  font-style: italic;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: var(--rule-medium);
}

.form-field select {
  -webkit-appearance: none;
  appearance: none;
  font-style: normal;
  color: var(--text-body);
  cursor: none;
}

.form-field select option {
  background: var(--parchment);
  color: var(--ink);
  font-style: normal;
}

/* ─── FOOTER (EDITORIAL COLOPHON) ─── */
.footer-editorial {
  background: var(--ink);
  padding: 60px 8%;
}

.fe-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.fe-top {
  margin-bottom: 40px;
}

.fe-rule-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
}

.fe-rule { width: 100%; }
.fe-rule.thick { height: 1px; background: rgba(255, 255, 255, 0.2); }
.fe-rule.thin  { height: 1px; background: rgba(255, 255, 255, 0.08); }

.fe-brand {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
}

.fe-logo {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.01em;
}

.fe-tagline {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.35);
}

.fe-links {
  display: flex;
  gap: 32px;
}

.fe-link {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 236, 224, 0.4);
  transition: color 0.3s;
  cursor: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.fe-link:hover {
  color: var(--cream);
  border-bottom-color: rgba(242, 236, 224, 0.3);
}

.fe-colophon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.65rem;
  color: rgba(242, 236, 224, 0.25);
  letter-spacing: 0.08em;
}

.fe-edition {
  font-style: italic;
  font-family: var(--font-serif);
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 1.1s var(--ease-slow), transform 1.1s var(--ease-slow);
}

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

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .about-editorial { grid-template-columns: 1fr; gap: 60px; }
  .services-layout { grid-template-columns: 1fr; gap: 60px; }
  .services-header-col { position: static; }
  .contact-body { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 1024px) {
  .project-editorial { grid-template-columns: 1fr; gap: 28px; }
  .project-editorial.large { grid-template-columns: 1fr; }
  .pe-image-wrap--right { order: 0; }
  .pe-info--left { order: 0; }
  .project-editorial-row { grid-template-columns: 1fr; }
  .editorial-spread,
  .brand-editorial,
  .data-editorial { display: none; }
  .phase-content { max-width: 100%; }
  .right-content, .left-content { text-align: center; margin: 0 auto; }
  .process-editorial { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .about-stats-editorial { gap: 24px; }
}

@media (max-width: 768px) {
  :root {
    --space-xl: 80px;
    --space-2xl: 100px;
  }

  .nav-links { display: none; }
  .nav-center-rule { display: none; }
  .nav-inner { padding: 16px 24px; }

  .hero-headline { font-size: 3rem; }
  .phase-headline { font-size: 2.2rem; }

  .process-editorial { grid-template-columns: 1fr; }
  .section { padding: 80px 6%; }
  .contact-form-editorial { padding: 32px 24px; }
  .about-editorial { gap: 40px; }

  .fe-colophon { flex-direction: column; gap: 10px; text-align: center; }
  .fe-brand { flex-direction: column; gap: 8px; align-items: flex-start; }
  .fe-links { gap: 20px; }

  .hero-footer-row { flex-direction: column; gap: 20px; }
  .reveal-btns { flex-direction: column; align-items: center; }

  .sm-issue { display: none; }
}

@media (max-width: 480px) {
  .about-stats-editorial { flex-direction: column; gap: 20px; }
  .projects-editorial { gap: 48px; }
  .hero-headline { font-size: 2.4rem; }
}
