/* ============================================================
   stylesheet.css — Estilos globais do template
   
   Índice:
   1.  Design Tokens (variáveis CSS)
   2.  Reset & Base
   3.  Utilitários
   4.  Navegação
   5.  Hero
   6.  Sobre Nós
   7.  Serviços
   8.  Galeria & Lightbox
   9.  Contacto & Formulário
   10. Footer
   11. Animações
   12. Responsive
   ============================================================ */


/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  /* Cor principal — alterar para a cor da marca do cliente */
  --brand:        #E8380D;
  --brand-dark:   #B32A08;
  --brand-light:  #FF5733;

  /* Neutros */
  --ink:          #111111;
  --ink-soft:     #444444;
  --surface:      #F7F5F2;
  --white:        #FFFFFF;
  --border:       #E2DED8;

  /* Tipografia */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  /* Utilitários */
  --radius:  6px;
  --shadow:  0 4px 24px rgba(0, 0, 0, .10);
  --trans:   .25s ease;
}


/* ── 2. RESET & BASE ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}


/* ── 3. UTILITÁRIOS ───────────────────────────────────────── */
.container {
  width: min(1200px, 94vw);
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.section-label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 1.7;
  margin-top: .75rem;
  max-width: 52ch;
}

/* Botões */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .85rem 2rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
}
.btn-primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .45);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .08);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-dark:hover {
  background: #222;
}


/* ── 4. NAVEGAÇÃO ─────────────────────────────────────────── */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color var(--trans), box-shadow var(--trans);
}

#nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}

#logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
  display: none; /* activado via JS quando logo está definido */
}

#logo-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
#logo-text span {
  color: var(--brand);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color var(--trans);
}
.nav-links a:hover {
  color: var(--brand);
}

.nav-links .btn-nav {
  background: var(--brand);
  color: var(--white) !important;
  padding: .55rem 1.4rem;
  border-radius: var(--radius);
  transition: background var(--trans);
}
.nav-links .btn-nav:hover {
  background: var(--brand-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink);
  transition: var(--trans);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem 0 2rem;
  gap: 1.2rem;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color var(--trans);
}
.nav-mobile a:hover {
  color: var(--brand);
}
.nav-mobile.open {
  display: flex;
}


/* ── 5. HERO ──────────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--ink);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, .85) 0%,
    rgba(0, 0, 0, .45) 60%,
    rgba(232, 56, 13, .25) 100%
  );
  z-index: 1;
}

#hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: .55;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0 96px;
  display: grid;
  gap: 2rem;
  max-width: 720px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--brand);
  color: var(--white);
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 2px;
  width: max-content;
}

#hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: var(--white);
}

#hero-title em {
  font-style: normal;
  color: var(--brand-light);
}

#hero-sub {
  color: rgba(255, 255, 255, .75);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 46ch;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 2rem;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-value span {
  color: var(--brand-light);
}

.hero-stat-label {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
  font-weight: 300;
  letter-spacing: .04em;
  margin-top: .2rem;
  text-transform: uppercase;
}

/* Indicador de scroll */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255, 255, 255, .4);
  font-family: var(--font-display);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}

.scroll-indicator svg {
  width: 20px;
  opacity: .5;
}


/* ── 6. SOBRE NÓS ─────────────────────────────────────────── */
#about {
  background: var(--surface);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--border);
}

#about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--brand);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 4px;
  font-family: var(--font-display);
  text-align: center;
  box-shadow: var(--shadow);
}

#about-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

#about-badge-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
}

.about-text {
  padding-bottom: 1rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}

.about-highlight {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
}

.about-highlight-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-highlight-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.about-highlight-desc {
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.5;
}


/* ── 7. SERVIÇOS ──────────────────────────────────────────── */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: background var(--trans);
  cursor: default;
}
.service-card:hover {
  background: var(--surface);
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-bottom: .6rem;
}

.service-desc {
  color: var(--ink-soft);
  font-size: .9rem;
  font-weight: 300;
  line-height: 1.65;
}

.service-tag {
  display: inline-block;
  margin-top: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--brand);
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .25rem .7rem;
  border-radius: 2px;
}


/* ── 8. GALERIA & LIGHTBOX ────────────────────────────────── */
#gallery {
  background: var(--ink);
}

#gallery .section-title { color: var(--white); }
#gallery .section-label { color: var(--brand-light); }
#gallery .section-sub   { color: rgba(255, 255, 255, .55); }

.gallery-header {
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 6px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  background: #222;
  cursor: pointer;
  position: relative;
}

/* Layout assimétrico */
.gallery-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-item:nth-child(2) { grid-column: span 5; }
.gallery-item:nth-child(3) { grid-column: span 5; }
.gallery-item:nth-child(4) { grid-column: span 4; }
.gallery-item:nth-child(5) { grid-column: span 4; }
.gallery-item:nth-child(6) { grid-column: span 4; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 180px;
  transition: transform .4s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.gallery-item:hover .gallery-overlay {
  background: rgba(232, 56, 13, .3);
}

.gallery-zoom {
  width: 44px;
  height: 44px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(.7);
  transition: var(--trans);
}
.gallery-item:hover .gallery-zoom {
  opacity: 1;
  transform: scale(1);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, .93);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}


/* ── 9. CONTACTO & FORMULÁRIO ─────────────────────────────── */
#contact {
  background: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--brand);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

.contact-item-label {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .2rem;
}

.contact-item-value {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.contact-hours {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}

.contact-hours-title {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .9rem;
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9rem;
}
.hours-row:last-child {
  border-bottom: none;
}

.hours-day  { color: var(--ink-soft); font-weight: 300; }
.hours-time { font-weight: 500; }

/* Formulário */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color var(--trans), background var(--trans);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: var(--white);
}

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

/* Campo honeypot — invisível ao utilizador, apanha bots */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-consent {
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 300;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}
.form-consent input[type="checkbox"] {
  margin-top: .1rem;
  flex-shrink: 0;
  accent-color: var(--brand);
}

/* Mensagem de estado do formulário */
#form-status {
  margin-top: 1rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  font-size: .9rem;
  display: none;
}

#form-status.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

#form-status.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 1rem;
}

.btn-submit .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: white;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: none;
}

.btn-submit.loading .spinner { display: block; }
.btn-submit.loading .btn-label { display: none; }


/* ── 10. FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--ink);
  color: rgba(255, 255, 255, .65);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .04em;
}
.footer-brand span {
  color: var(--brand);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .45);
  transition: color var(--trans);
}
.footer-links a:hover {
  color: var(--white);
}

.footer-copy {
  font-size: .8rem;
  font-weight: 300;
}


/* ── 11. ANIMAÇÕES ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}


/* ── 12. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  .about-grid    { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge   { bottom: -1rem; right: 0; }

  .contact-grid  { grid-template-columns: 1fr; gap: 3rem; }
  .form-row      { grid-template-columns: 1fr; }

  .gallery-item:nth-child(1) { grid-column: span 12; }
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3) { grid-column: span 6; }
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) { grid-column: span 4; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }

  .hero-stats        { gap: 1.5rem; }
  .about-highlights  { grid-template-columns: 1fr; }

  .gallery-item:nth-child(n) { grid-column: span 6; }
  .gallery-item:nth-child(1) { grid-column: span 12; }

  .footer-inner  { flex-direction: column; text-align: center; }
  .footer-links  { justify-content: center; }
}


/* ── PÁGINA DE PRIVACIDADE ────────────────────────────────── */
.privacy-hero {
  padding: 120px 0 64px;
  background: var(--ink);
  color: var(--white);
}

.privacy-hero .section-label { color: var(--brand-light); }

.privacy-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.05;
  margin-top: .5rem;
}

.privacy-meta {
  margin-top: 1rem;
  font-size: .85rem;
  color: rgba(255, 255, 255, .45);
  font-weight: 300;
}

.privacy-body {
  padding: 72px 0 96px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 5rem;
  align-items: start;
}

/* Índice lateral */
.privacy-toc {
  position: sticky;
  top: 88px;
}

.privacy-toc-title {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.privacy-toc a {
  display: block;
  font-size: .85rem;
  color: var(--ink-soft);
  font-weight: 300;
  padding: .4rem 0;
  border-left: 2px solid var(--border);
  padding-left: .85rem;
  transition: color var(--trans), border-color var(--trans);
  line-height: 1.4;
}
.privacy-toc a:hover,
.privacy-toc a.active {
  color: var(--brand);
  border-color: var(--brand);
}

/* Conteúdo editorial */
.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 100px;
}

.privacy-content h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.privacy-content p {
  color: var(--ink-soft);
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style: none;
  margin-bottom: 1rem;
}

.privacy-content ul li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--ink-soft);
  font-size: .97rem;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: .35rem;
}

.privacy-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.privacy-content strong {
  color: var(--ink);
  font-weight: 500;
}

.privacy-content a {
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.privacy-content a:hover {
  color: var(--brand-dark);
}

.privacy-highlight {
  background: var(--surface);
  border-left: 3px solid var(--brand);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.privacy-highlight p {
  margin-bottom: 0;
}

.privacy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: .9rem;
}

.privacy-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  padding: .75rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink);
}

.privacy-table td {
  padding: .75rem 1rem;
  border: 1px solid var(--border);
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.5;
  vertical-align: top;
}

.privacy-table tr:hover td {
  background: var(--surface);
}

@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .privacy-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
    align-items: center;
  }

  .privacy-toc-title {
    width: 100%;
    margin-bottom: .25rem;
  }

  .privacy-toc a {
    border-left: none;
    border-bottom: 2px solid var(--border);
    padding-left: 0;
    padding-bottom: .25rem;
    font-size: .8rem;
  }
  .privacy-toc a:hover,
  .privacy-toc a.active {
    border-color: var(--brand);
  }
}

@media (max-width: 600px) {
  .privacy-table { font-size: .8rem; }
  .privacy-table th,
  .privacy-table td { padding: .5rem .75rem; }
}
