/* ============================================
   Van Ramselaar Antiek — Stijlblad
   Design: Warm Klassiek met Tijdloze Precisie
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

/* ──────────────────────────────────────────
   Design Tokens
   ────────────────────────────────────────── */
:root {
  /* Kleuren — afgestemd op logo (charcoal + antiek goud) */
  --color-bg:           #F7F4EF;   /* Warm gebroken wit */
  --color-bg-alt:       #EEEAE2;   /* Licht crème voor afwisseling */
  --color-surface:      #FFFFFF;
  --color-text-primary: #1E1F2B;   /* Koele donkere tint, richting logo-charcoal */
  --color-text-muted:   #72717F;
  --color-text-light:   #AAAAAA;
  --color-accent:       #C9A84C;   /* Antiek goud — matcht logo */
  --color-accent-dark:  #A8872A;   /* Donkerder goud voor hover */
  --color-border:       #DDD9CF;
  --color-nav-bg:       #3D3E50;   /* Logo charcoal — nav achtergrond */
  --color-nav-text:     #F0E8D0;   /* Warme crème voor tekst op donkere nav */
  --color-footer-bg:    #2E2F3D;   /* Iets lichter dan nav, zelfde familie */
  --color-footer-text:  #C8C0A8;
  --color-overlay:      rgba(30, 28, 42, 0.52); /* Koele overlay richting charcoal */

  /* Typografie */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --text-hero:   clamp(34px, 5.5vw, 66px);
  --text-h2:     clamp(24px, 3vw, 38px);
  --text-h3:     clamp(17px, 2vw, 22px);
  --text-body:   16px;
  --text-small:  13px;
  --text-nav:    12px;

  --tracking-wide:  0.08em;
  --tracking-wider: 0.14em;

  --leading-tight:  1.2;
  --leading-normal: 1.65;
  --leading-loose:  1.85;

  /* Spacing */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 96px;

  --container-max: 1200px;
  --container-pad: clamp(16px, 4vw, 48px);
  --section-pad-v: clamp(56px, 8vw, 112px);

  /* Schaduw & vorm */
  --radius-btn:   3px;
  --shadow-card:  0 1px 4px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 8px 28px rgba(0, 0, 0, 0.11);
  --shadow-nav:   0 1px 0 var(--color-border);
}

/* ──────────────────────────────────────────
   Reset & Base
   ────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: var(--text-body);
  color: var(--color-text-primary);
  background: var(--color-bg);
  line-height: var(--leading-normal);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ──────────────────────────────────────────
   Scroll Reveal Animaties
   ────────────────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

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

/* ──────────────────────────────────────────
   Knoppen
   ────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: 500;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color 220ms ease, color 220ms ease, border-color 220ms ease, transform 140ms ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}
.btn-outline:hover {
  background: var(--color-text-primary);
  color: #fff;
}

/* ──────────────────────────────────────────
   Sectie Koppen (gedeeld patroon)
   ────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--space-2xl); }

.section-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-h2);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
}

/* ──────────────────────────────────────────
   1. Navigatie
   ────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-nav-bg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: box-shadow 250ms ease;
}

.site-header.scrolled {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.30);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: var(--space-lg);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  /* Logo heeft donkere achtergrond — past perfect op de nav */
}

.site-name {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-nav-text);
  letter-spacing: 0.01em;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

.main-nav ul {
  display: flex;
  gap: var(--space-lg);
  list-style: none;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: var(--text-nav);
  font-weight: 500;
  color: var(--color-nav-text);
  text-decoration: none;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 200ms ease, border-color 200ms ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.nav-tel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-tel-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(240, 232, 208, 0.55);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.nav-tel-number {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-nav-text);
  transition: color 200ms ease;
}

.nav-tel:hover .nav-tel-number { color: var(--color-accent); }

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

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-nav-text);
  transition: transform 300ms ease, opacity 200ms ease;
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ──────────────────────────────────────────
   2. Hero
   ────────────────────────────────────────── */
.hero {
  position: relative;
  height: clamp(480px, 82vh, 860px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--color-overlay);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: var(--text-hero);
  font-weight: 400;
  color: #fff;
  line-height: var(--leading-tight);
  margin-bottom: var(--space-lg);
}

.hero-headline em {
  font-style: italic;
  color: #F0D9B5;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

/* ──────────────────────────────────────────
   3. USP Balk
   ────────────────────────────────────────── */
.usp-section {
  padding: var(--space-xl) 0;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.usp-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
}

.usp-item { text-align: center; flex: 1; }

.usp-number {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 400;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.usp-label {
  font-family: var(--font-sans);
  font-size: var(--text-small);
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}

.usp-divider {
  width: 1px;
  height: 48px;
  background: var(--color-border);
  flex-shrink: 0;
}

/* ──────────────────────────────────────────
   4. Diensten
   ────────────────────────────────────────── */
.services-section {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.service-card {
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
  transition: box-shadow 320ms ease, transform 320ms ease;
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.card-image-link { display: block; overflow: hidden; }

.card-image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease;
}

.service-card:hover .card-img { transform: scale(1.05); }

.card-body { padding: var(--space-lg) var(--space-md); }

.card-eyebrow {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--color-text-primary);
  line-height: var(--leading-tight);
  margin-bottom: var(--space-sm);
}

.card-desc {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-md);
}

.card-link {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-accent);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: border-color 200ms ease;
}

.card-link:hover { border-bottom-color: var(--color-accent); }

/* ──────────────────────────────────────────
   5. Over Ons
   ────────────────────────────────────────── */
.about-section {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg-alt);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-body {
  font-size: 15px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-top: var(--space-md);
}

.about-images {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.about-img-main img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.about-img-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.about-img-duo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

/* ──────────────────────────────────────────
   6. Testimonials
   ────────────────────────────────────────── */
.testimonials-section {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg-alt);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial {
  background: var(--color-surface);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-card);
  border-top: 2px solid var(--color-accent);
  margin: 0;
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.7;
  color: var(--color-accent);
  opacity: 0.35;
  margin-bottom: var(--space-md);
  display: block;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: var(--leading-loose);
  margin-bottom: var(--space-lg);
}

.testimonial-footer { display: flex; flex-direction: column; gap: 3px; }

.testimonial-author {
  font-size: var(--text-small);
  font-weight: 500;
  color: var(--color-text-primary);
  font-style: normal;
}

.testimonial-detail {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────
   6. Contact
   ────────────────────────────────────────── */
.contact-section {
  padding: var(--section-pad-v) 0;
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-intro {
  font-size: 16px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin: var(--space-md) 0 var(--space-xl);
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-xl);
}

.contact-label {
  font-size: 10px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-value {
  font-size: 15px;
  color: var(--color-text-primary);
  line-height: var(--leading-normal);
}

.contact-value a {
  color: var(--color-text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}

.contact-value a:hover {
  color: var(--color-accent);
  border-bottom-color: var(--color-accent);
}

.contact-map-wrap {
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.contact-map-wrap iframe { display: block; }

/* Contactformulier */
.contact-form-wrap { display: flex; flex-direction: column; }

.form-card {
  background: var(--color-surface);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-card);
  border-top: 2px solid var(--color-accent);
  flex: 1;
}

.form-title {
  font-family: var(--font-serif);
  font-size: var(--text-h3);
  font-weight: 400;
  color: var(--color-text-primary);
  margin-bottom: var(--space-xs);
}

.form-intro {
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--space-lg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: var(--space-md); }
.form-group:last-of-type { margin-bottom: var(--space-lg); }

.form-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-muted);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.form-label span { color: var(--color-accent); }

.form-input {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--color-text-primary);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  padding: 11px 14px;
  border-radius: var(--radius-btn);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--color-text-light); }

.form-input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #C0392B;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7167' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea { resize: vertical; min-height: 120px; line-height: var(--leading-normal); }

.form-submit { width: 100%; justify-content: center; }

.form-feedback {
  margin-top: var(--space-md);
  padding: 12px 16px;
  border-radius: var(--radius-btn);
  font-size: 14px;
  font-weight: 400;
}

.form-success {
  background: #F0FBF0;
  color: #2D7A2D;
  border: 1px solid #B8E0B8;
}

.form-error {
  background: #FDF0F0;
  color: #C0392B;
  border: 1px solid #F0B8B8;
}

/* Kaart — volledige breedte */
.contact-map-full {
  margin-top: var(--space-xl);
  border-top: 1px solid var(--color-border);
}

/* Responsive formulier */
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────
   7. Footer
   ────────────────────────────────────────── */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: var(--space-2xl) 0 0;
  border-top: 2px solid var(--color-accent);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: var(--space-xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: var(--text-small);
  font-weight: 300;
  color: var(--color-footer-text);
  line-height: var(--leading-normal);
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  color: rgba(200, 191, 176, 0.55);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

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

.footer-nav-list a {
  font-size: var(--text-small);
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-nav-list a:hover { color: #fff; }

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list a,
.footer-contact-list span {
  font-size: var(--text-small);
  color: var(--color-footer-text);
  text-decoration: none;
  transition: color 200ms ease;
}

.footer-contact-list a:hover { color: #fff; }

.footer-tel-big {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff !important;
  margin-bottom: 4px;
  display: block;
}

.footer-bottom {
  padding: var(--space-md) 0;
  text-align: center;
}

.footer-copy {
  font-size: 11px;
  color: rgba(200, 191, 176, 0.4);
  letter-spacing: 0.04em;
}

/* ──────────────────────────────────────────
   Responsive — Tablet (≤ 900px)
   ────────────────────────────────────────── */
@media (max-width: 900px) {
  .header-inner { gap: var(--space-md); }
  .site-name { display: none; }
  .nav-tel { display: none; }
  .hamburger { display: flex; }

  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-nav-bg);
    padding: var(--space-md) var(--container-pad);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.30);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    z-index: 99;
  }

  .main-nav.nav-open { display: block; }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .nav-link {
    display: block;
    padding: 13px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link:last-child { border-bottom: none; }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .about-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ──────────────────────────────────────────
   Responsive — Mobiel (≤ 600px)
   ────────────────────────────────────────── */
@media (max-width: 600px) {
  .usp-grid { flex-wrap: wrap; gap: var(--space-lg); }
  .usp-divider { display: none; }
  .usp-item { flex-basis: calc(50% - var(--space-lg) / 2); }

  .contact-details { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr; }

  .hero-sub { font-size: 15px; }

  .btn { display: block; text-align: center; }
}

/* ──────────────────────────────────────────
   Cookie banner
   ────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--color-nav-bg);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 220px;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-nav-text);
  line-height: 1.5;
  margin: 0;
}

.cookie-link {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-btn {
  flex-shrink: 0;
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 10px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 200ms;
}

.cookie-btn:hover { background: var(--color-accent-dark); }

/* Footer privacy link */
.footer-privacy-link {
  color: var(--color-footer-text);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 200ms;
}
.footer-privacy-link:hover { opacity: 1; }
