/* ==========================================================================
   BOUSSAAD MEDIABUYER — EDITORIAL TYPOGRAPHIC PORTFOLIO
   Design Language: Swiss-Inspired Minimal Editorial / Typography-Only
   No images, no decorative graphics, no heavy shadows, no glassmorphism.
   Palette: Deep Charcoal (#0d0c0e) · Off-White (#f4f3f0) · Soft Gray (#8e8b88) · Burgundy (#8d1f2d / #b32638)
   ========================================================================== */

/* ============ CSS CUSTOM PROPERTIES ============ */
:root {
  --bg: #0d0c0e;
  --bg-subtle: #131215;
  --rule: #232126;
  --rule-light: #2e2b32;
  --text-white: #f8f7f5;
  --text-off: #dedbd6;
  --text-dim: #98948e;
  --text-mute: #5e5b57;
  --burgundy: #8d1f2d;
  --burgundy-bright: #b32638;
  --burgundy-subtle: rgba(141, 31, 45, 0.12);
  --font-serif: "Fraunces", "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-w: 1280px;
  --gap-edge: clamp(24px, 4.5vw, 64px);
  --ease-clean: cubic-bezier(0.2, 0.0, 0.0, 1.0);
}

/* ============ BASE RESET & NORMALIZATION ============ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  background-color: var(--bg);
  color: var(--text-off);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: -0.01em;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text-off);
  overflow-x: hidden;
  min-height: 100vh;
}

::selection {
  background-color: var(--burgundy);
  color: var(--text-white);
}

/* Explicit ban on images across the entire website */
img, svg:not(.nav-icon):not(.arrow-icon) {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s var(--ease-clean);
}

button {
  font-family: inherit;
  background: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

/* ============ EDITORIAL CONTAINER ============ */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gap-edge);
  padding-right: var(--gap-edge);
}

/* ============ THIN EDITORIAL HORIZONTAL RULES ============ */
.editorial-rule {
  width: 100%;
  height: 1px;
  background: var(--rule);
  border: none;
  margin: 0;
}

/* ============ TYPOGRAPHY UTILITIES ============ */
.label-caps {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.label-caps .accent-dot {
  width: 5px;
  height: 5px;
  background-color: var(--burgundy-bright);
  border-radius: 50%;
  display: inline-block;
}

.serif-display {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--text-white);
}

.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  color: var(--text-off);
}

/* ============ EDITORIAL HEADER / NAV ============ */
.editorial-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background-color: rgba(13, 12, 14, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.site-mark {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-mark span.edition {
  color: var(--burgundy-bright);
  font-size: 12px;
}

.site-mark:hover {
  color: var(--text-white);
}

.header-status {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-status .live-indicator {
  width: 6px;
  height: 6px;
  background-color: var(--burgundy-bright);
  border-radius: 50%;
  display: inline-block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-link {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: var(--burgundy-bright);
  transition: width 0.24s var(--ease-clean);
}

.nav-link:hover {
  color: var(--text-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--text-white);
}

.nav-action-link {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-white);
  padding: 8px 18px;
  border: 1px solid var(--rule-light);
  transition: all 0.2s var(--ease-clean);
}

.nav-action-link:hover {
  border-color: var(--burgundy-bright);
  color: var(--text-white);
  background-color: var(--burgundy-subtle);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text-white);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-drawer {
  display: none;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  padding: 24px var(--gap-edge) 32px;
}

.mobile-drawer.open {
  display: block;
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.mobile-drawer a {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.mobile-drawer a:hover,
.mobile-drawer a.active {
  color: var(--text-white);
}

/* ============ EDITORIAL HERO (NO IMAGES) ============ */
.hero-section {
  padding-top: clamp(64px, 9vw, 130px);
  padding-bottom: clamp(64px, 9vw, 120px);
  position: relative;
}

.hero-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

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

.hero-meta-right {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.hero-giant-title {
  font-size: clamp(52px, 10.5vw, 142px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-bottom: clamp(36px, 5.5vw, 64px);
  word-break: break-word;
}

.hero-giant-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--text-dim);
  display: block;
}

.hero-editorial-body {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.hero-lead-text {
  font-size: clamp(20px, 2.3vw, 29px);
  line-height: 1.35;
  color: var(--text-white);
  font-weight: 400;
  letter-spacing: -0.015em;
}

.hero-side-column {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-offer-box {
  padding: 22px 24px;
  border-left: 2px solid var(--burgundy-bright);
  background: var(--bg-subtle);
  border-top: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.hero-offer-box .offer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--burgundy-bright);
  font-weight: 600;
  margin-bottom: 8px;
}

.hero-offer-box .offer-title {
  font-size: 18px;
  line-height: 1.35;
  color: var(--text-white);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero-ctas {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.link-button-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background-color: var(--text-white);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: all 0.2s var(--ease-clean);
}

.link-button-solid:hover {
  background-color: var(--burgundy-bright);
  color: var(--text-white);
}

.link-button-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid var(--rule-light);
  color: var(--text-white);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: all 0.2s var(--ease-clean);
}

.link-button-outline:hover {
  border-color: var(--text-white);
  color: var(--text-white);
}

.editorial-arrow {
  display: inline-block;
  font-family: inherit;
  transition: transform 0.2s var(--ease-clean);
}

.link-button-solid:hover .editorial-arrow,
.link-button-outline:hover .editorial-arrow {
  transform: translateX(4px);
}

/* ============ SECTION HEADER PATTERN ============ */
.editorial-section {
  padding-top: clamp(80px, 10vw, 150px);
  padding-bottom: clamp(80px, 10vw, 150px);
  position: relative;
}

.section-editorial-header {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: baseline;
  margin-bottom: clamp(48px, 6vw, 84px);
}

.section-editorial-header .sec-label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-editorial-header .sec-number {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}

.section-editorial-header .sec-title-wrap h2 {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-editorial-header .sec-subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--text-dim);
  max-width: 620px;
  line-height: 1.6;
}

/* ============ SECTION 01 — À PROPOS (ASYMMETRICAL MAGAZINE GRID) ============ */
.about-magazine-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.about-intro-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.editorial-large-quote {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.2;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.editorial-large-quote em {
  font-style: italic;
  color: var(--text-dim);
}

.about-lead-copy {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
}

.about-lead-copy strong {
  color: var(--text-white);
  font-weight: 500;
}

.about-editorial-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.editorial-stat-unit {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-giant-num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 0.95;
  color: var(--text-white);
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-giant-num .stat-plus {
  color: var(--burgundy-bright);
  font-size: 0.6em;
  font-weight: 300;
}

.stat-label-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.about-narrative-block {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.narrative-columns {
  columns: 1;
  gap: 32px;
}

.narrative-p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.narrative-p:last-child {
  margin-bottom: 0;
}

.editorial-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

.editorial-tag {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 14px;
  border: 1px solid var(--rule);
  transition: all 0.2s ease;
}

.editorial-tag:hover {
  border-color: var(--burgundy-bright);
  color: var(--text-white);
}

/* ============ SECTION 02 — SKILLS (TYPOGRAPHY METERS) ============ */
.skills-editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: start;
}

.skills-statement {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.skills-statement p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
}

.skills-list-block {
  border-top: 1px solid var(--rule);
}

.skill-editorial-row {
  display: grid;
  grid-template-columns: 32px 1fr 60px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  transition: background 0.2s ease;
}

.skill-editorial-row:hover {
  background-color: var(--bg-subtle);
}

.skill-index {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-mute);
}

.skill-title-meter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-title-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-white);
  letter-spacing: -0.01em;
}

.skill-thin-track {
  width: 100%;
  height: 2px;
  background-color: var(--rule);
  position: relative;
  overflow: hidden;
}

.skill-thin-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: var(--text-white);
  transition: width 1.2s var(--ease-clean);
}

.skill-editorial-row:hover .skill-thin-fill {
  background-color: var(--burgundy-bright);
}

.skill-pct-label {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text-dim);
  text-align: right;
  font-feature-settings: "tnum";
}

/* ============ SECTION 03 — SERVICES (EXPANSIVE EDITORIAL ROWS) ============ */
.services-editorial-table {
  border-top: 1px solid var(--rule);
}

.service-editorial-entry {
  display: grid;
  grid-template-columns: 80px minmax(0, 4fr) minmax(0, 6fr) 40px;
  gap: clamp(20px, 3.5vw, 48px);
  padding: clamp(28px, 4vw, 48px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.service-editorial-entry:hover {
  background-color: var(--bg-subtle);
  border-bottom-color: var(--rule-light);
}

.service-num-giant {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 300;
  color: var(--text-mute);
  transition: color 0.2s ease;
}

.service-editorial-entry:hover .service-num-giant {
  color: var(--burgundy-bright);
}

.service-name-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.service-desc-editorial {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

.service-entry-arrow {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--text-mute);
  text-align: right;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-editorial-entry:hover .service-entry-arrow {
  color: var(--burgundy-bright);
  transform: translate(4px, -4px);
}

/* ============ SECTION 04 — SELECTED PROJECTS (TYPOGRAPHY-DRIVEN CASES) ============ */
.projects-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: clamp(36px, 5vw, 64px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--rule);
}

.editorial-filter-btn {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  padding: 8px 16px;
  border: 1px solid transparent;
  transition: all 0.2s var(--ease-clean);
}

.editorial-filter-btn:hover {
  color: var(--text-white);
}

.editorial-filter-btn.active {
  color: var(--text-white);
  border-color: var(--burgundy-bright);
  background-color: var(--burgundy-subtle);
}

.projects-editorial-list {
  display: flex;
  flex-direction: column;
}

.project-case-row {
  display: grid;
  grid-template-columns: 80px minmax(0, 3fr) minmax(0, 5fr) minmax(0, 3fr);
  gap: clamp(20px, 3.5vw, 48px);
  padding: clamp(36px, 4.5vw, 56px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: background-color 0.2s ease;
}

.project-case-row:first-child {
  border-top: 1px solid var(--rule);
}

.project-case-row:hover {
  background-color: var(--bg-subtle);
}

.case-serial {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
}

.case-identity {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.case-category-tag {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--burgundy-bright);
  font-weight: 600;
}

.case-heading-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: -0.02em;
}

.case-summary {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dim);
}

.case-outcome {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.case-metric {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.02em;
  background: var(--bg-subtle);
  border: 1px solid var(--rule-light);
  padding: 6px 12px;
}

.case-link-inline {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.case-link-inline:hover {
  color: var(--text-white);
  border-bottom-color: var(--burgundy-bright);
}

/* ============ SECTION 05 — EXPERIENCE & TIMELINE ============ */
.experience-editorial-grid {
  display: flex;
  flex-direction: column;
}

.timeline-editorial-row {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 5fr) minmax(0, 4fr);
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(32px, 4vw, 50px) 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.timeline-editorial-row:first-child {
  border-top: 1px solid var(--rule);
}

.tl-period-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tl-years {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--text-white);
}

.tl-badge {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--burgundy-bright);
  font-weight: 600;
}

.tl-role-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tl-role-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  color: var(--text-white);
}

.tl-org-name {
  font-size: 14px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tl-deliverables {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tl-deliverables p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
}

.tl-bullet-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.tl-bullet-list li {
  font-size: 14px;
  color: var(--text-dim);
  position: relative;
  padding-left: 18px;
  line-height: 1.6;
}

.tl-bullet-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--burgundy-bright);
}

/* ============ SECTION 06 — TESTIMONIALS (EDITORIAL CRITIQUE QUOTES) ============ */
.testimonials-editorial-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.5vw, 48px);
}

.test-editorial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.test-index-mark {
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 24px;
}

.test-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.45;
  color: var(--text-white);
  letter-spacing: -0.015em;
  margin-bottom: 32px;
}

.test-author-info {
  border-top: 1px solid var(--rule);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.test-author-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  letter-spacing: 0.04em;
}

.test-author-title {
  font-size: 12px;
  color: var(--text-dim);
}

/* ============ SECTION 07 — CONTACT & INQUIRY ============ */
.contact-editorial-layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.contact-direct-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-meta-p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
}

.contact-channels-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}

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

.channel-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}

.channel-link {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  color: var(--text-white);
  letter-spacing: -0.01em;
  border-bottom: 1px solid transparent;
  display: inline-block;
  align-self: flex-start;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.channel-link:hover {
  border-bottom-color: var(--burgundy-bright);
  color: var(--text-white);
}

.social-text-links {
  display: flex;
  gap: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--rule);
}

.social-text-links a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  border-bottom: 1px solid transparent;
}

.social-text-links a:hover {
  color: var(--text-white);
  border-bottom-color: var(--burgundy-bright);
}

/* ============ EDITORIAL INQUIRY FORM ============ */
.contact-form-editorial {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field-unit {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-unit label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-dim);
  font-weight: 500;
}

.form-field-unit input,
.form-field-unit textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule-light);
  padding: 12px 0 16px;
  color: var(--text-white);
  font-family: var(--font-sans);
  font-size: 16px;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s var(--ease-clean);
}

.form-field-unit textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field-unit input:focus,
.form-field-unit textarea:focus {
  border-bottom-color: var(--burgundy-bright);
}

.form-field-unit input::placeholder,
.form-field-unit textarea::placeholder {
  color: var(--text-mute);
}

.form-editorial-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 36px;
  background-color: var(--text-white);
  color: var(--bg);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid var(--text-white);
  cursor: pointer;
  align-self: flex-start;
  transition: all 0.2s var(--ease-clean);
}

.form-editorial-submit:hover {
  background-color: var(--burgundy-bright);
  border-color: var(--burgundy-bright);
  color: var(--text-white);
}

.form-feedback-status {
  font-size: 13px;
  min-height: 20px;
  letter-spacing: 0.02em;
}

/* ============ EDITORIAL FOOTER ============ */
.editorial-footer {
  padding-top: clamp(60px, 8vw, 100px);
  padding-bottom: clamp(40px, 6vw, 60px);
  border-top: 1px solid var(--rule);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 6fr);
  gap: clamp(32px, 6vw, 80px);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.footer-statement {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.2vw, 44px);
  line-height: 1.1;
  color: var(--text-white);
  letter-spacing: -0.025em;
}

.footer-statement em {
  font-style: italic;
  color: var(--text-dim);
}

.footer-columns-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.footer-col-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-bottom: 16px;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-list a {
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links-list a:hover {
  color: var(--text-white);
}

.footer-baseline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}

.footer-baseline a:hover {
  color: var(--text-white);
}

/* ============ FLOATING EDITORIAL TO-TOP BUTTON ============ */
.editorial-totop {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 80;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule-light);
  background-color: var(--bg);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, border-color 0.2s ease, transform 0.2s ease;
}

.editorial-totop.show {
  opacity: 1;
  pointer-events: auto;
}

.editorial-totop:hover {
  border-color: var(--burgundy-bright);
  color: var(--burgundy-bright);
  transform: translateY(-3px);
}

/* ============ SUBTLE REVEAL TRANSITIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.75s var(--ease-clean), transform 0.75s var(--ease-clean);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============ RESPONSIVE BREAKPOINTS ============ */
@media (max-width: 1024px) {
  .hero-editorial-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-magazine-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .skills-editorial-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .service-editorial-entry {
    grid-template-columns: 60px minmax(0, 1fr) 30px;
  }

  .service-desc-editorial {
    grid-column: 2 / -1;
  }

  .project-case-row {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .case-summary,
  .case-outcome {
    grid-column: 2 / -1;
  }

  .timeline-editorial-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .testimonials-editorial-list {
    grid-template-columns: 1fr;
  }

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

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .nav-menu,
  .nav-action-link,
  .header-status {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .section-editorial-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-editorial-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .hero-giant-title {
    font-size: clamp(44px, 14vw, 84px);
  }
}
