@font-face {
  font-family: Cormorant;
  src: url('/fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Cormorant;
  src: url('/fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2');
  font-style: italic;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-latin-400-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('/fonts/dm-sans-latin-500-normal.woff2') format('woff2');
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

:root {
  /* Editorial Luxury Palette */
  --paper: #f8f6f0;
  --paper-warm: #f2ede2;
  --paper-canvas: #faf8f5;
  --surface: #ffffff;
  --surface-muted: #f4efe6;
  --surface-glass: rgba(255, 255, 255, 0.82);

  --ink: #1f1b18;
  --ink-secondary: #3c3630;
  --muted: #665f54;
  --muted-light: #888073;

  --clay: #8e4736;
  --clay-hover: #753728;
  --clay-light: #f7ede8;
  --clay-glow: rgba(142, 71, 54, 0.16);

  --olive: #43493b;
  --olive-light: #edf1ea;

  --sand: #e8e1d3;
  --sand-light: #f5f0e6;

  --line: rgba(31, 27, 24, 0.09);
  --line-strong: rgba(31, 27, 24, 0.16);
  --line-accent: rgba(142, 71, 54, 0.25);

  --green: #1e6b43;
  --green-light: #e6f3ec;

  --serif: Cormorant, Georgia, 'Times New Roman', serif;
  --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --gutter: 24px;
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow-sm: 0 2px 8px rgba(31, 27, 24, 0.04);
  --shadow-md: 0 10px 30px -4px rgba(31, 27, 24, 0.08), 0 4px 12px -2px rgba(31, 27, 24, 0.03);
  --shadow-lg: 0 24px 50px -10px rgba(31, 27, 24, 0.12), 0 8px 24px -4px rgba(31, 27, 24, 0.05);
  --shadow-glow: 0 16px 40px -6px rgba(142, 71, 54, 0.2);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-color: var(--clay) var(--paper);
}

body {
  margin: 0;
  background-color: var(--paper);
  background-image: 
    radial-gradient(ellipse 80% 50% at 50% -5%, rgba(230, 214, 198, 0.6) 0%, rgba(248, 246, 240, 0) 70%),
    radial-gradient(circle at 100% 30%, rgba(237, 241, 234, 0.5) 0%, transparent 45%),
    radial-gradient(circle at 0% 65%, rgba(247, 237, 232, 0.4) 0%, transparent 40%);
  background-attachment: scroll;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--clay);
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
}

button, input {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: transparent;
}

button:disabled {
  cursor: default;
}

/* ACCESSIBILITY FOCUS RING */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: 4px;
  border-radius: var(--radius-xs);
}

h1, h2, h3, h4, p, figure, ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
}

em, .italic {
  font-style: italic;
  font-weight: 400;
}

h1, h2 {
  text-wrap: balance;
  letter-spacing: -0.03em;
}

p {
  text-wrap: pretty;
}

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

svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.wrap {
  width: min(100% - var(--gutter) * 2, 1280px);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 20px;
  padding: 12px 22px;
  z-index: 1000;
  background: var(--ink);
  color: #ffffff;
  font-weight: 600;
  border-radius: var(--radius-full);
  transform: translateY(-180%);
  transition: transform 0.25s var(--ease);
  box-shadow: var(--shadow-lg);
}
.skip-link:focus {
  transform: translateY(0);
}

/* ==========================================================================
   SITE HEADER
   ========================================================================== */
.site-header {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-block: 14px;
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(248, 246, 240, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.25s var(--ease);
}

.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 46px;
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: baseline;
  transition: transform 0.25s var(--ease);
}
.wordmark:hover {
  transform: scale(1.02);
}
.wordmark span {
  color: var(--clay);
}

.header-descriptor {
  display: none;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
  border-left: 1px solid var(--line-strong);
  padding-left: 18px;
}
.header-descriptor span:first-child {
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 500;
}
.site-header nav > a:not(.nav-contact) {
  display: none;
  color: var(--muted);
  position: relative;
  transition: color 0.2s var(--ease);
  padding-block: 4px;
}
.site-header nav > a:not(.nav-contact):hover {
  color: var(--clay);
}
.site-header nav > a:not(.nav-contact)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clay);
  transition: width 0.25s var(--ease);
}
.site-header nav > a:not(.nav-contact):hover::after {
  width: 100%;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--ink);
  color: #ffffff;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 12px;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-sm);
}
.nav-contact:hover {
  background: var(--clay);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ==========================================================================
   BUTTONS & MICRO-INTERACTIONS
   ========================================================================== */
.button {
  min-height: 48px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.button-dark {
  background: var(--ink);
  color: #ffffff;
  border: 1px solid var(--ink);
  box-shadow: 0 4px 14px rgba(31, 27, 24, 0.15);
}
.button-dark:hover {
  background: var(--clay);
  border-color: var(--clay);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.button-outline {
  background: var(--surface);
  color: var(--ink);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.button-outline:hover {
  border-color: var(--clay);
  color: var(--clay);
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.button-white {
  background: #ffffff;
  color: var(--clay);
  border: 1px solid #ffffff;
  box-shadow: var(--shadow-md);
}
.button-white:hover {
  background: var(--clay-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-copy-fast {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease);
}
.btn-copy-fast:hover {
  color: var(--clay);
  border-color: var(--clay);
  background: var(--clay-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-copy-fast svg {
  width: 15px;
  height: 15px;
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clay);
  background: var(--clay-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(142, 71, 54, 0.15);
  margin-bottom: 18px;
}

.section-intro {
  margin-bottom: 40px;
}
.section-intro h2 {
  font-size: clamp(32px, 5.5vw, 54px);
  line-height: 1.08;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}
.section-intro h2 em {
  color: var(--clay);
  font-style: italic;
  font-weight: 400;
}
.section-intro p {
  font-size: 15px;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.75;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  padding-block: 40px 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-light);
  color: var(--green);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(30, 107, 67, 0.2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 22px;
}

.kicker-dot {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse-dot 2.2s infinite ease-in-out;
}

@keyframes pulse-dot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(30, 107, 67, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(30, 107, 67, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(30, 107, 67, 0); }
}

.hero h1 {
  margin-bottom: 24px;
}
.hero-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(52px, 11vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-style: italic;
  color: var(--ink);
}
.name-period {
  color: var(--clay);
  font-style: normal;
}

.hero-role-line {
  display: block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--clay);
  margin-top: 14px;
}

.hero-tagline {
  display: block;
  font-family: var(--serif);
  font-size: clamp(22px, 4.5vw, 34px);
  line-height: 1.16;
  color: var(--ink-secondary);
  margin-top: 10px;
  font-weight: 400;
  overflow-wrap: break-word;
}

/* HERO OPERATIONAL MATRIX (< 5s RAPID SCAN) */
.hero-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-block: 28px;
  padding: 16px;
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.matrix-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--paper-warm);
  border: 1px solid transparent;
  transition: all 0.2s var(--ease);
}
.matrix-item:hover {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.matrix-highlight {
  background: var(--clay-light);
  border-color: rgba(142, 71, 54, 0.2);
}
.matrix-highlight:hover {
  background: #ffffff;
  border-color: var(--clay);
}

.matrix-wide {
  grid-column: 1 / -1;
}

.matrix-icon {
  color: var(--clay);
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  flex-shrink: 0;
}
.matrix-icon svg {
  width: 16px;
  height: 16px;
}

.matrix-text {
  display: flex;
  flex-direction: column;
}

.matrix-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  line-height: 1.2;
}

.matrix-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.35;
}
.matrix-highlight .matrix-value {
  color: var(--clay);
}

.hero-intro {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.hero-contact-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted);
}
.strip-label {
  font-weight: 600;
}
.strip-email, .strip-insta {
  font-weight: 600;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.strip-email:hover, .strip-insta:hover {
  color: var(--clay);
}

/* PORTRAIT */
.hero-portrait {
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}

.portrait-frame {
  position: relative;
  width: 100%;
  border-radius: 200px 200px 24px 24px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
}

.portrait-placeholder, .portrait-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 192px 192px 18px 18px;
  object-fit: cover;
}

.portrait-placeholder {
  background: linear-gradient(180deg, #dfd9cb 0%, #cec7b6 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.portrait-top {
  position: absolute;
  top: 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.portrait-letter {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(160px, 32vw, 240px);
  color: rgba(248, 246, 240, 0.85);
  line-height: 0.8;
  user-select: none;
  pointer-events: none;
}

.portrait-bottom {
  position: absolute;
  top: 60px;
  inset-inline: 0;
  text-align: center;
}
.portrait-bottom strong {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--ink);
}
.portrait-bottom small {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--clay);
}

.portrait-note {
  position: absolute;
  bottom: 20px;
  left: -14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 16px 20px;
  border-radius: var(--radius);
  transform: rotate(-3.5deg);
  box-shadow: var(--shadow-md);
  max-width: 195px;
  transition: transform 0.3s var(--ease);
}
.portrait-note:hover {
  transform: rotate(0deg) scale(1.02);
}
.note-kicker {
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.portrait-note p {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.08;
  margin-top: 8px;
  color: var(--ink);
}
.portrait-note em {
  color: var(--clay);
}
.note-signature {
  display: block;
  text-align: right;
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--clay);
  margin-top: 4px;
}

.hero-portrait figcaption {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  font-size: 11px;
  color: var(--muted);
  padding-inline: 8px;
}

/* ==========================================================================
   VALUE PROPOSITION SECTION (STRATEGIST VS. EXECUTOR)
   ========================================================================== */
.value-prop {
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.pillar-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-accent);
}
.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-number {
  font-family: var(--serif);
  font-size: 38px;
  font-style: italic;
  color: var(--clay);
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}

.pillar-card h3 {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--ink);
  line-height: 1.35;
}

.pillar-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.modes-container {
  margin-top: 36px;
}
.modes-title {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 20px;
}

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

.mode-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s var(--ease);
}
.mode-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.mode-primary {
  border: 1.5px solid var(--clay);
  background: linear-gradient(180deg, #ffffff 0%, #fdfbf9 100%);
  box-shadow: var(--shadow-md);
}

.mode-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mode-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: var(--clay-light);
  color: var(--clay);
}

.mode-order {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.mode-name {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.15;
}

.mode-tagline {
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  margin-bottom: 12px;
}

.mode-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   VIDEO SHOWCASE SECTION (9:16 VERTICAL WORK)
   ========================================================================== */
.work {
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 10px 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-full);
  background: var(--surface);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s var(--ease);
  box-shadow: var(--shadow-sm);
}
.filter-btn:hover {
  border-color: var(--clay);
  color: var(--clay);
  transform: translateY(-1px);
}
.filter-btn.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.work-piece {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.work-piece:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--line-strong);
}

.piece-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.piece-badge-angle {
  background: var(--clay-light);
  color: var(--clay);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}
.piece-badge-ratio {
  color: var(--muted);
  font-family: monospace;
}

/* NATIVE 9:16 PHONE/FILM CONTAINER */
.film {
  aspect-ratio: 9 / 16;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background: #151311;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  isolation: isolate;
}
.film video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(29, 26, 23, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  display: grid;
  place-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}
.big-play:hover {
  background: var(--clay);
  transform: scale(1.08);
  border-color: #ffffff;
}
.film.is-playing .big-play {
  opacity: 0;
  pointer-events: none;
}

.player-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(15, 13, 11, 0.92));
  color: #ffffff;
  display: flex;
  flex-direction: column;
}
.player-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.player-buttons button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: #ffffff;
  border-radius: 50%;
  transition: background 0.2s var(--ease);
}
.player-buttons button:hover {
  background: rgba(255, 255, 255, 0.2);
}
.player-time {
  font-size: 11px;
  font-family: monospace;
  margin-right: auto;
  opacity: 0.9;
}
.seek {
  width: 100%;
  height: 16px;
  accent-color: var(--clay);
  cursor: pointer;
  margin-top: 6px;
}

.player-error {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  display: grid;
  place-items: center;
  font-size: 13px;
  padding: 20px;
  text-align: center;
}
.player-error button {
  margin-top: 10px;
  color: var(--clay);
  text-decoration: underline;
  font-weight: 700;
}

/* FILM COVER (PENDING WORK PLACEHOLDER) */
.film-cover {
  width: 100%;
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  background: var(--clay);
  color: #ffffff;
}
.olive .film-cover {
  background: var(--olive);
}
.sand .film-cover {
  background: #363029;
}

.cover-header {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

.cover-title {
  font-family: var(--serif);
  font-size: clamp(28px, 6.5vw, 42px);
  line-height: 1.05;
  margin-top: auto;
  margin-bottom: 16px;
}
.cover-title span {
  display: block;
}
.cover-title span.italic {
  color: #ffddd3;
}

.cover-divider {
  width: 40px;
  height: 2px;
  background: #ffffff;
  opacity: 0.4;
  margin-bottom: 16px;
}

.cover-hook-box {
  background: rgba(0, 0, 0, 0.24);
  border-left: 3px solid rgba(255, 255, 255, 0.75);
  padding: 10px 14px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 18px;
}
.hook-box-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
  display: block;
  margin-bottom: 4px;
}
.hook-box-text {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.35;
}

.cover-footer {
  font-size: 11px;
  opacity: 0.85;
  margin-top: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
  margin-bottom: 50px;
}

.pending-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--ink);
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.piece-details {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.piece-details h3 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 6px;
}

.piece-objective-tag {
  font-size: 12px;
  color: var(--clay);
  line-height: 1.5;
  margin-bottom: 12px;
}

.piece-desc {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 16px;
}

/* INTERACTIVE HOOK SWITCHER */
.hook-switcher {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  margin-bottom: 18px;
}

.hook-switcher-header {
  font-size: 11px;
  font-weight: 700;
  color: var(--clay);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.hook-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.hook-tab-btn {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: all 0.2s var(--ease);
}
.hook-tab-btn:hover {
  border-color: var(--clay);
  color: var(--clay);
}
.hook-tab-btn.is-active {
  background: var(--clay);
  color: #ffffff;
  border-color: var(--clay);
  box-shadow: var(--shadow-sm);
}

.hook-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
}
.hook-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 8px;
}
.hook-angle-tag {
  font-size: 11px;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  margin-top: auto;
  margin-bottom: 18px;
}
.tags li {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  background: var(--paper-warm);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.piece-actions {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.download-drive-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clay);
  text-decoration: underline;
  min-height: 44px;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
}
.download-drive-btn:hover {
  color: var(--clay-hover);
  transform: translateX(2px);
}

/* DRIVE BANNER */
.work-drive-banner {
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 48px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.banner-content h3 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 6px;
}
.banner-content p {
  font-size: 14px;
  color: var(--muted);
  max-width: 60ch;
}

/* ==========================================================================
   DELIVERABLES SECTION
   ========================================================================== */
.deliverables {
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

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

.deliverable-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.deliverable-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--line-strong);
}

.deliv-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--clay-light);
  color: var(--clay);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.deliv-icon svg {
  width: 24px;
  height: 24px;
}

.deliv-text h3 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.3;
}
.deliv-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}

/* ==========================================================================
   PRICING SECTION (INVESTMENT PACKAGES)
   ========================================================================== */
.pricing {
  padding-block: 80px;
  border-top: 1px solid var(--line);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card.is-popular {
  border: 2px solid var(--clay);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, #ffffff 0%, #fffbf9 100%);
}
.pricing-card.is-popular:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

.card-pop-badge {
  position: absolute;
  top: -14px;
  left: 26px;
  background: var(--clay);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
}

.card-std-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 12px;
}

.pkg-head {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 22px;
}

.pkg-title {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--ink);
  line-height: 1.1;
}

.pkg-qty {
  font-size: 13px;
  font-weight: 600;
  color: var(--clay);
  margin-top: 4px;
}

.pkg-price-box {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
}
.price-val {
  font-size: 42px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1;
}
.price-curr {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  margin-left: 8px;
}

.pkg-summary {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.pkg-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
  flex: 1;
}
.pkg-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.55;
}
.pkg-features svg {
  width: 17px;
  height: 17px;
  color: var(--clay);
  margin-top: 2px;
  flex-shrink: 0;
}

.pkg-cta-btn {
  width: 100%;
}

.pricing-footnotes {
  margin-top: 40px;
  background: var(--sand-light);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.footnote-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink);
  line-height: 1.6;
}
.footnote-item .fn-icon {
  color: var(--clay);
  margin-top: 2px;
}

/* ==========================================================================
   CONTACT SECTION
   ========================================================================== */
.contact-section {
  padding-block: 80px 48px;
}

.contact-card {
  background: var(--clay);
  background-image: radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  color: #ffffff;
  border-radius: var(--radius-xl);
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow-lg);
}

.contact-kicker {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #ffded5;
  display: block;
  margin-bottom: 14px;
}

.contact-header h2 {
  font-size: clamp(36px, 7vw, 66px);
  line-height: 1.05;
  margin-bottom: 18px;
  color: #ffffff;
}
.contact-header h2 em {
  color: #ffe6de;
  font-style: italic;
  font-weight: 400;
}

.contact-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #f7dfd6;
  max-width: 54ch;
  margin-bottom: 38px;
}

.contact-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.contact-box-primary {
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.box-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffebe4;
  display: block;
  margin-bottom: 14px;
}

.email-copy-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.selectable-email {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 700;
  color: #ffffff;
  text-decoration: underline;
  word-break: break-all;
  transition: color 0.2s;
}
.selectable-email:hover {
  color: #ffebe4;
}

.btn-copy-chip {
  background: #ffffff;
  color: var(--clay);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s var(--ease);
}
.btn-copy-chip:hover {
  background: #fff4f0;
  transform: scale(1.04);
}
.btn-copy-chip svg {
  width: 14px;
  height: 14px;
}

.contact-prompt-note {
  font-size: 13px;
  color: #f7dfd6;
  line-height: 1.65;
  margin-bottom: 22px;
}

.contact-box-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 26px;
}

.quick-links-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quick-links-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.12);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.quick-links-list a:hover {
  background: rgba(0, 0, 0, 0.22);
  transform: translateX(3px);
}
.ql-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-xs);
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.quick-links-list strong {
  display: block;
  font-size: 14px;
}
.quick-links-list span {
  font-size: 11px;
  opacity: 0.85;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding-block: 40px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  font-size: 12px;
  color: var(--muted);
}
.footer-brand .wordmark {
  font-size: 42px;
}
.footer-brand p {
  margin-top: 8px;
  line-height: 1.65;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--clay);
  text-decoration: underline;
}
.back-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 600;
  transition: transform 0.2s var(--ease);
}
.back-top:hover {
  color: var(--clay);
  transform: translateY(-2px);
}
.back-top svg {
  transform: rotate(180deg);
}

/* ==========================================================================
   TOAST NOTIFICATION (COPY CLIPBOARD FEEDBACK)
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--ink);
  color: #ffffff;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  z-index: 999;
  transform: translateY(40px) scale(0.95);
  opacity: 0;
  transition: all 0.3s var(--ease);
  pointer-events: none;
}
.toast svg {
  width: 18px;
  height: 18px;
  color: #4ade80;
}
.toast.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS (TABLET & DESKTOP)
   ========================================================================== */
@media (min-width: 600px) {
  :root {
    --gutter: 40px;
  }
  .header-descriptor {
    display: block;
    margin-right: auto;
    margin-left: 20px;
  }
  .site-header nav > a:not(.nav-contact) {
    display: inline-flex;
  }
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .modes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .deliverables-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-footnotes {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-drive-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .site-footer {
    grid-template-columns: 1.5fr 1fr auto;
    align-items: center;
  }
}

@media (min-width: 900px) {
  :root {
    --gutter: 64px;
  }
  .hero {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
    padding-block: 60px 80px;
  }
  .hero-matrix {
    grid-template-columns: repeat(3, 1fr);
  }
  .matrix-wide {
    grid-column: span 1;
  }
  .matrix-wide:nth-child(4) {
    grid-column: span 2;
  }
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
  .deliverables-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-body {
    grid-template-columns: 1.3fr 1fr;
  }
}

/* ==========================================================================
   ACCESSIBILITY: REDUCED MOTION PREFERENCE
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Refinamientos específicos para CRO, accesibilidad y visualización mobile-first */

/* Control de visibilidad nativo */
[hidden] { display: none !important; }

/* Micro-ajustes del Hero para mobile (< 600px) */
@media (max-width: 599px) {
  .site-header {
    min-height: 64px;
    padding-block: 10px;
  }
  .wordmark {
    font-size: 36px;
  }
  .nav-contact {
    padding: 7px 14px;
    font-size: 11px;
  }
  .hero {
    padding-top: 24px;
    gap: 32px;
  }
  .hero-name {
    font-size: clamp(44px, 12vw, 64px);
  }
  .hero-tagline {
    font-size: clamp(19px, 5vw, 26px);
  }
  .hero-matrix {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }
  .matrix-item {
    padding: 10px 12px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .hero-actions .button,
  .hero-actions .btn-copy-fast {
    width: 100%;
    justify-content: center;
  }
  .hero-portrait {
    max-width: 310px;
  }
  .portrait-frame {
    border-radius: 160px 160px 20px 20px;
    padding: 6px;
  }
  .portrait-placeholder, .portrait-image {
    border-radius: 154px 154px 16px 16px;
  }
  .portrait-note {
    left: -6px;
    bottom: 16px;
    padding: 12px 14px;
    max-width: 150px;
  }
  .portrait-note p {
    font-size: 17px;
  }
  .hero-portrait figcaption {
    margin-top: 14px;
  }
  .hook-tabs {
    flex-direction: column;
  }
  .hook-tab-btn {
    text-align: left;
    width: 100%;
  }
  .pricing-card {
    padding: 28px 20px;
  }
  .contact-card {
    padding: 28px 20px;
    border-radius: var(--radius-lg);
  }
  .email-copy-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Feedback táctil de botones */
.button, .filter-btn, .hook-tab-btn, .btn-copy-chip, .btn-copy-fast {
  touch-action: manipulation;
}

/* Indicador de relación 9:16 nativa */
.film {
  background: #141210;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.cover-title span.italic {
  color: #ffd8cc;
}

/* ==========================================================================
   BALANCE DE ESPACIOS Y LAYOUT EDITORIAL (SOLUCIÓN A ESPACIOS VACÍOS)
   ========================================================================== */

/* Hero intro: alinear con el ancho total de la matriz operativa */
.hero-intro {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  opacity: 0.88;
  max-width: 100%;
  margin-top: 8px;
}

/* Calibración armónica del marco de retrato (Hero) para evitar desalineación */
.hero-portrait {
  width: 100%;
  max-width: 350px;
  margin-inline: auto;
}

.portrait-frame {
  max-width: 350px;
  margin-inline: auto;
}

.portrait-image, .portrait-placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  height: auto;
  border-radius: 192px 192px 18px 18px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.3fr 0.7fr;
    gap: 56px;
    align-items: center;
  }
}


/* Cabeceras de sección con layout editorial split en pantallas medianas y grandes */
@media (min-width: 860px) {
  .section-intro {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 48px;
  }
  .section-intro h2 {
    margin-bottom: 0;
  }
  .section-intro p {
    max-width: 100%;
    margin-bottom: 6px;
    font-size: 16px;
    line-height: 1.7;
  }
}

/* ==========================================================================
   BLOQUE DESTACADO DE FACTURACIÓN Y FLEXIBILIDAD (TRUST BADGES)
   ========================================================================== */
.pricing-footnotes {
  margin-top: 48px;
  background: var(--surface);
  border: 1px solid rgba(142, 71, 54, 0.18);
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  box-shadow: 0 4px 20px rgba(45, 33, 24, 0.04);
}

@media (min-width: 768px) {
  .pricing-footnotes {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.footnote-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.6;
}

.footnote-item .fn-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(142, 71, 54, 0.1);
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footnote-item .fn-icon svg {
  width: 20px;
  height: 20px;
}

.footnote-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.footnote-item strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

/* ==========================================================================
   SECCIÓN FAQ (PREGUNTAS FRECUENTES PARA CRO & GEO)
   ========================================================================== */
.faq {
  padding-block: var(--space-3xl);
  border-top: 1px solid var(--line);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 860px;
  margin-top: 36px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--clay);
  box-shadow: 0 4px 20px rgba(45, 33, 24, 0.05);
}

.faq-summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.15s ease, background-color 0.15s ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: var(--clay);
  background-color: rgba(142, 71, 54, 0.02);
}

.faq-summary:focus-visible {
  outline: 2px solid var(--clay);
  outline-offset: -2px;
}

.faq-question {
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform 0.25s ease, color 0.2s ease;
}

.faq-icon svg {
  width: 16px;
  height: 16px;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  color: var(--clay);
}

.faq-content {
  padding: 0 24px 22px 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-secondary);
  font-size: 15px;
  line-height: 1.7;
}

.faq-content p {
  margin: 14px 0 0 0;
}


.portrait-image{object-position:50% 18%}