/* ── PAGE HERO ─────────────────────────────────────────────── */
.page-hero {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid var(--border);
}

.page-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.page-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-title em {
  font-style: italic;
  color: var(--gold-light);
}

.page-intro {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 72ch;
  margin-top: 1.25rem;
}

/* ── NAV DROPDOWN ───────────────────────────────────────────── */
.nav-item {
  position: relative;
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-item > a::after {
  content: '›';
  display: inline-block;
  transform: rotate(90deg);
  font-size: 0.9rem;
  transition: transform 0.2s;
  color: var(--gold-dim);
}

.nav-item:hover > a::after {
  transform: rotate(270deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--green-nav);
  border: 1px solid var(--border-strong);
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  text-decoration: none;
  padding: 0.65rem 1.1rem;
  border-bottom: 1px solid var(--border);
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  white-space: nowrap;
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover,
.dropdown a.active {
  color: var(--gold-light);
  border-left-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* ── LANG SWITCH ───────────────────────────────────────────── */
.lang-switch {
  display: flex;
  align-items: center;
  margin-left: 1.5rem;
  border: 1px solid var(--border-strong);
}

.lang-switch a,
.lang-switch .lang-active {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.65rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.lang-switch .lang-active {
  background: var(--gold);
  color: var(--green-deep);
}

.lang-switch a {
  color: var(--cream-dim);
}

.lang-switch a:hover { color: var(--gold-light); }

/* ── TECHNIQUE SECTIONS ─────────────────────────────────────── */
.technique-section {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border);
}

.technique-section-alt {
  background: rgba(22,59,38,0.25);
}

.technique-section-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.technique-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.technique-icon-wrap {
  flex-shrink: 0;
}

.technique-svg {
  width: 52px;
  height: 52px;
  display: block;
}

.technique-title {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  margin-bottom: 0.3rem;
}

.technique-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
}

.technique-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-body);
  max-width: 72ch;
  margin-bottom: 2rem;
}

/* ── TABLEAU ────────────────────────────────────────────────── */
.technique-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-strong);
}

.technique-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Jost', sans-serif;
  font-size: 0.92rem;
}

.technique-table thead tr {
  background: var(--green-nav);
}

.technique-table th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  border-bottom: 2px solid var(--border-strong);
  white-space: nowrap;
}

.technique-table tbody tr {
  background: var(--green-panel);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.technique-table tbody tr:hover {
  background: var(--green-mid);
}

.technique-table tbody tr:last-child {
  border-bottom: none;
}

.technique-table td {
  padding: 0.9rem 1.25rem;
  color: var(--text-body);
  vertical-align: middle;
  line-height: 1.5;
}

.technique-table td:first-child {
  color: var(--cream);
  font-weight: 400;
}

.technique-table td:nth-child(4) {
  font-size: 0.82rem;
  color: var(--cream-dim);
  letter-spacing: 0.04em;
}

.result-ok {
  color: var(--gold-light) !important;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

.result-ok::before {
  content: '✓ ';
  color: var(--gold);
}

.technique-nota {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
  font-style: italic;
  padding-left: 1rem;
  border-left: 2px solid var(--border-strong);
}

.technique-nota strong {
  color: var(--cream);
  font-style: normal;
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .technique-table th,
  .technique-table td {
    padding: 0.7rem 0.9rem;
    font-size: 0.85rem;
  }

  .dropdown { left: 0; transform: translateX(0) translateY(-6px); }
  .nav-item:hover .dropdown { transform: translateX(0) translateY(0); }
}

@media (max-width: 600px) {
  .technique-table th:last-child,
  .technique-table td:last-child {
    display: none;
  }
  .header-inner { flex-wrap: wrap; height: auto; padding: 0.75rem 1rem; gap: 0.5rem; }
  nav { flex-wrap: wrap; justify-content: center; }
}
