/* ========================================
   EXCELLENT LIFTEN BV — HOOFDSTIJL
   Donkerblauw + Goud — Art Deco / Luxe
   ======================================== */

:root {
  /* Kleurpalet uit logo */
  --blue-deep: #0a1628;
  --blue-mid: #142236;
  --blue-light: #1d2f4a;
  --blue-highlight: #263b5c;
  --gold: #c9a961;
  --gold-bright: #e5c687;
  --gold-dim: #8a7445;
  --gold-deep: #6d5930;
  --ivory: #f5f1e8;
  --ivory-dim: rgba(245, 241, 232, 0.7);
  --ivory-faint: rgba(245, 241, 232, 0.5);
  --line: rgba(201, 169, 97, 0.2);
  --line-strong: rgba(201, 169, 97, 0.4);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ivory);
  background: var(--blue-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover, a:focus {
  color: var(--gold-bright);
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ivory-dim);
}

/* ========================================
   UTILITIES
   ======================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.overline {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 3.5rem;
}

.overline::before, .overline::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.overline::before { left: 0; }
.overline::after { right: 0; transform: scaleX(-1); }

.section-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-dim);
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* Art deco divider */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}
.divider-ornament .line {
  width: 4rem;
  height: 1px;
  background: var(--gold);
}
.divider-ornament .diamond {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--gold);
  transform: rotate(45deg);
}

/* Background texture */
.texture-bg {
  position: relative;
}

.texture-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, transparent 48%, rgba(201,169,97,0.04) 49%, rgba(201,169,97,0.04) 51%, transparent 52%),
    linear-gradient(-30deg, transparent 48%, rgba(201,169,97,0.04) 49%, rgba(201,169,97,0.04) 51%, transparent 52%);
  background-size: 5rem 5rem;
  opacity: 0.5;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.25rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--gold);
  color: var(--blue-deep);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  color: var(--blue-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-ghost:hover {
  background: var(--gold);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--blue-mid);
  color: var(--ivory);
  border: 1px solid var(--line-strong);
}

.btn-dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 22, 40, 0.98);
  border-bottom-color: var(--line-strong);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

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

.nav-logo img {
  height: 3.75rem;
  width: auto;
}

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

.nav-menu a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: var(--gold);
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gold);
  padding: 0.5rem 1rem;
}

.nav-phone::before {
  content: '☎';
  font-size: 1.1rem;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: 1px solid var(--gold);
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.25rem;
  height: 1px;
  background: var(--gold);
  transition: all 0.3s ease;
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -6px); }
.nav-toggle span:nth-child(2) { transform: translate(-50%, 0); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 6px); }

.nav-toggle.open span:nth-child(1) { transform: translate(-50%, 0) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translate(-50%, 0) rotate(-45deg); }

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 9rem 0 6rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 50%, var(--blue-deep) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
}

.hero-deco {
  position: absolute;
  border: 1px solid var(--gold);
  opacity: 0.3;
  z-index: 1;
}
.hero-deco.tl { top: 3rem; left: 3rem; width: 6rem; height: 6rem; border-right: none; border-bottom: none; }
.hero-deco.tr { top: 3rem; right: 3rem; width: 6rem; height: 6rem; border-left: none; border-bottom: none; }
.hero-deco.bl { bottom: 3rem; left: 3rem; width: 6rem; height: 6rem; border-right: none; border-top: none; }
.hero-deco.br { bottom: 3rem; right: 3rem; width: 6rem; height: 6rem; border-left: none; border-top: none; }

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 60rem;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory-dim);
  max-width: 42rem;
  margin: 0 auto 3rem;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-trust {
  display: flex;
  gap: 3rem;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.trust-item {
  text-align: center;
}

.trust-number {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.trust-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-top: 0.5rem;
}

/* ========================================
   SECTIES
   ======================================== */
.section {
  padding: 6rem 0;
  position: relative;
}

.section-dark {
  background: var(--blue-deep);
}

.section-darker {
  background: var(--blue-mid);
}

/* Waarom sectie — gebruikt de visual */
.waarom-section {
  padding: 6rem 0;
  background: var(--blue-deep);
  text-align: center;
}

.waarom-visual {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
}

/* Categorieën */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.category-card {
  position: relative;
  background: var(--blue-mid);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: all 0.4s ease;
  cursor: pointer;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.category-card::before, .category-card::after {
  content: '';
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--gold);
  z-index: 3;
  transition: all 0.4s ease;
}
.category-card::before { top: 0.75rem; left: 0.75rem; border-right: none; border-bottom: none; }
.category-card::after { bottom: 0.75rem; right: 0.75rem; border-left: none; border-top: none; }

.category-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  transition: transform 0.6s ease;
}

.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--blue-deep) 0%, rgba(10, 22, 40, 0.7) 50%, transparent 100%);
}

.category-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}

.category-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
}

.category-desc {
  font-size: 0.875rem;
  color: var(--ivory-faint);
  line-height: 1.5;
}

.category-arrow {
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.category-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.category-card:hover .category-image {
  transform: scale(1.05);
}

.category-card:hover .category-arrow {
  transform: translateX(8px);
}

/* Producten tabs */
.products-section {
  background: var(--blue-mid);
  padding: 6rem 0;
}

.products-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 3rem;
  padding: 0.5rem;
  background: var(--blue-deep);
  border: 1px solid var(--line);
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: var(--gold);
}

.tab-btn.active {
  color: var(--blue-deep);
  background: var(--gold);
  border-color: var(--gold);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--blue-deep);
  border: 1px solid var(--line);
  transition: all 0.4s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--blue-mid);
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-info {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.625rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.product-type {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--ivory-dim);
  margin-bottom: 1rem;
}

.product-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--ivory-dim);
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-specs {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: auto;
}

.spec-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.spec-tag {
  font-size: 0.7rem;
  padding: 0.35rem 0.75rem;
  background: var(--blue-mid);
  border: 1px solid var(--line);
  color: var(--ivory-dim);
  letter-spacing: 0.05em;
}

.product-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.4);
}

/* Sectoren */
.sectors-section {
  padding: 6rem 0;
  background: var(--blue-deep);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.sector-card {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--blue-mid);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.4s ease;
}

.sector-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.95) 20%, rgba(10, 22, 40, 0.5) 60%, rgba(10, 22, 40, 0.2) 100%);
}

.sector-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sector-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.sector-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 2rem;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.sector-products {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.sector-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.sector-card:hover .sector-image img {
  transform: scale(1.08);
}

/* Referenties */
.referenties-section {
  padding: 6rem 0;
  background: var(--blue-mid);
  text-align: center;
}

.referenties-visual {
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--line-strong);
}

/* Over ons */
.about-section {
  padding: 6rem 0;
  background: var(--blue-deep);
}

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

.about-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.about-text p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-details {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--blue-mid);
  border-left: 3px solid var(--gold);
}

.about-details strong {
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.about-image {
  position: relative;
}

.about-image-inner {
  aspect-ratio: 4 / 5;
  background: var(--blue-mid);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
}

.about-image-inner::before, .about-image-inner::after {
  content: '';
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid var(--gold);
  z-index: 2;
}
.about-image-inner::before { top: 1rem; left: 1rem; border-right: none; border-bottom: none; }
.about-image-inner::after { bottom: 1rem; right: 1rem; border-left: none; border-top: none; }

.about-image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FAQ */
.faq-section {
  padding: 6rem 0;
  background: var(--blue-mid);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--ivory);
  text-align: left;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding-top: 1rem;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ivory-dim);
}

/* Contact */
.contact-section {
  padding: 6rem 0;
  background: var(--blue-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info {
  padding: 3rem;
  background: var(--blue-mid);
  border: 1px solid var(--line);
  position: relative;
}

.contact-info::before, .contact-info::after {
  content: '';
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold);
}
.contact-info::before { top: 1rem; left: 1rem; border-right: none; border-bottom: none; }
.contact-info::after { bottom: 1rem; right: 1rem; border-left: none; border-top: none; }

.contact-info h3 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
}

.contact-icon span {
  transform: rotate(-45deg);
  font-size: 1.125rem;
  color: var(--gold);
}

.contact-detail-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--ivory);
  line-height: 1.4;
}

.contact-detail-value a {
  color: var(--ivory);
}

.contact-detail-value a:hover {
  color: var(--gold);
}

/* Formulier */
.contact-form {
  padding: 3rem;
  background: var(--blue-mid);
  border: 1px solid var(--line);
}

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

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--blue-deep);
  border: 1px solid var(--line-strong);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--blue-mid);
}

.form-group textarea {
  resize: vertical;
  min-height: 6rem;
}

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

/* Footer */
.site-footer {
  background: #060d18;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 5rem;
  width: auto;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ivory-faint);
  max-width: 22rem;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: var(--ivory-dim);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--ivory-faint);
}

.footer-bottom a {
  color: var(--ivory-faint);
  font-size: 0.8rem;
  margin-left: 1.5rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--blue-deep);
    border-bottom: 1px solid var(--line-strong);
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  .nav-menu.open {
    max-height: 30rem;
    padding: 1rem 2rem 2rem;
  }

  .nav-menu a {
    padding: 1rem 0;
    width: 100%;
    text-align: center;
    border-bottom: 1px solid var(--line);
  }

  .nav-phone {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta .btn {
    display: none;
  }

  .hero {
    padding: 7rem 0 4rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-trust {
    gap: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .contact-info, .contact-form {
    padding: 2rem;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom a {
    margin-left: 0;
    margin-right: 1rem;
  }
}

/* Print */
@media print {
  .site-header, .nav-toggle, .hero-cta, .contact-form { display: none; }
  body { color: #000; background: #fff; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ========================================
   V2 ADDITIONS — Multi-page styling
   ======================================== */

/* Breadcrumbs */
.breadcrumbs {
  background: var(--blue-mid);
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.85rem;
  margin-top: 5rem;
}

.breadcrumbs .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.breadcrumbs a {
  color: var(--ivory-dim);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.breadcrumbs a:hover {
  color: var(--gold);
}

.breadcrumb-sep {
  color: var(--gold);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--gold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Active nav state */
.nav-menu a.active {
  color: var(--gold);
}

.nav-menu a.active::after {
  width: 100%;
}

/* Page hero (smaller than homepage hero) */
.page-hero {
  padding: 6rem 0 4rem;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
  position: relative;
  text-align: center;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201,169,97,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(201,169,97,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.page-hero .lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--ivory-dim);
  max-width: 48rem;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* Content section (met prose) */
.prose {
  max-width: 44rem;
  margin: 0 auto;
}

.prose h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.prose h3 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
  font-weight: 500;
}

.prose p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose ul, .prose ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}

.prose li {
  margin-bottom: 0.5rem;
  color: var(--ivory-dim);
  line-height: 1.7;
}

.prose li::marker {
  color: var(--gold);
}

.prose strong {
  color: var(--gold);
  font-weight: 500;
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Fact boxes */
.fact-box {
  background: var(--blue-mid);
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.fact-box h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.fact-box p {
  margin-bottom: 0.5rem;
}

/* CTA box */
.cta-box {
  background: var(--blue-mid);
  border: 1px solid var(--line-strong);
  padding: 3rem 2rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
}

.cta-box::before, .cta-box::after {
  content: '';
  position: absolute;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gold);
}
.cta-box::before { top: 1rem; left: 1rem; border-right: none; border-bottom: none; }
.cta-box::after { bottom: 1rem; right: 1rem; border-left: none; border-top: none; }

.cta-box h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-box p {
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Product hero (productpagina header) */
.product-hero {
  padding: 7rem 0 3rem;
  background: var(--blue-deep);
  border-bottom: 1px solid var(--line);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.product-hero-image {
  aspect-ratio: 4/3;
  background: var(--blue-mid);
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}

.product-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-hero-info .brand-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
}

.product-hero-info h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.product-hero-info .subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ivory-dim);
  margin-bottom: 1.5rem;
}

.product-specs-big {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}

.spec-big {
  text-align: center;
}

.spec-big .value {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.75rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.spec-big .label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}

/* Related products */
.related-products {
  padding: 4rem 0;
  background: var(--blue-mid);
  border-top: 1px solid var(--line);
}

.related-products h3 {
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

@media (max-width: 768px) {
  .product-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .breadcrumbs { font-size: 0.75rem; }
}


/* ========================================
   V3 VISUAL EFFECTS — Animaties & Interactie
   ======================================== */

/* ----------------------------------------
   1. ANIMATED MESH GRADIENT BACKGROUND
   ---------------------------------------- */

@keyframes meshGradient {
  0% {
    background-position:
      0%   0%,
      100% 100%,
      50%  0%,
      0%   50%,
      100% 50%;
  }
  25% {
    background-position:
      20% 30%,
      80% 70%,
      60% 20%,
      10% 60%,
      90% 40%;
  }
  50% {
    background-position:
      40% 60%,
      60% 40%,
      30% 70%,
      70% 30%,
      50% 80%;
  }
  75% {
    background-position:
      60% 20%,
      40% 80%,
      80% 50%,
      20% 40%,
      70% 10%;
  }
  100% {
    background-position:
      0%   0%,
      100% 100%,
      50%  0%,
      0%   50%,
      100% 50%;
  }
}

.mesh-bg {
  position: relative;
}

.mesh-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 60% 40% at 0%   0%,   rgba(201, 169, 97, 0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 100% 100%, rgba(201, 169, 97, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 50%  0%,   rgba(29,  47,  74, 0.40) 0%, transparent 70%),
    radial-gradient(ellipse 55% 35% at 0%   50%,  rgba(201, 169, 97, 0.04) 0%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 100% 50%,  rgba(20,  34,  54, 0.30) 0%, transparent 70%);
  background-size:
    200% 200%,
    200% 200%,
    200% 200%,
    200% 200%,
    200% 200%;
  animation: meshGradient 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.mesh-bg > * {
  position: relative;
  z-index: 1;
}


/* ----------------------------------------
   2. CUSTOM CURSOR
   ---------------------------------------- */

body {
  cursor: none;
}

/* Restore text cursor on form fields */
body input,
body textarea,
body select {
  cursor: text;
}

/* The small gold dot that follows the mouse exactly */
.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.1s ease,
              height 0.1s ease,
              background 0.1s ease;
  will-change: transform;
}

/* The larger ring that lags slightly behind */
.cursor-ring {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.15s ease-out,
              height 0.15s ease-out,
              background 0.15s ease-out,
              border-color 0.15s ease-out;
  will-change: transform;
}

/* Short-lived trail dots spawned via JS */
.cursor-trail {
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: trailFade 0.5s ease-out forwards;
  will-change: transform, opacity;
}

@keyframes trailFade {
  0%   { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 0;   transform: translate(-50%, -50%) scale(0); }
}

/* Hover state — applied via JS when over links / buttons */
.cursor-ring.cursor-hover {
  width: 50px;
  height: 50px;
  background: rgba(201, 169, 97, 0.2);
  border-color: var(--gold-bright);
}

.cursor-dot.cursor-hover {
  width: 6px;
  height: 6px;
  background: var(--gold-bright);
}


/* ----------------------------------------
   3. SCROLL REVEAL ANIMATIONS
   ---------------------------------------- */

/* Base — slides up from below */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Slides in from the left */
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Slides in from the right */
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scales up from slightly smaller */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger children — set --delay on each child via style="" */
.stagger-item {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity  0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay, 0ms);
}


/* ----------------------------------------
   4. MAGNETIC BUTTON (CSS part)
   ---------------------------------------- */

.btn-magnetic {
  transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
              box-shadow 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}


/* ----------------------------------------
   5. 3D TILT CARDS
   ---------------------------------------- */

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
  will-change: transform;
}

.tilt-card-inner {
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
}

/* Sheen overlay that reacts to tilt */
.tilt-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 97, 0.07) 0%,
    transparent 50%,
    rgba(201, 169, 97, 0.04) 100%
  );
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.tilt-card:hover::after {
  opacity: 1;
}


/* ----------------------------------------
   6. ANIMATED COUNTERS
   ---------------------------------------- */

/* .trust-number already handles display; this makes the
   counter value inline-block so JS can swap text without
   disrupting surrounding layout */
.counter-value {
  display: inline-block;
}

.counter-wrapper {
  display: inline-block;
}


/* ----------------------------------------
   7. PAGE TRANSITION OVERLAY
   ---------------------------------------- */

#page-transition {
  position: fixed;
  inset: 0;
  background: var(--blue-deep);
  z-index: 9000;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}

/* Slide fully into view — page is leaving */
#page-transition.entering {
  transform: translateY(0);
  pointer-events: all;
}

/* Slide off the top — new page has loaded */
#page-transition.leaving {
  transform: translateY(-100%);
}

/* Optional centred logo shown during transition */
#page-transition .transition-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
}


/* ----------------------------------------
   8. PARALLAX SECTIONS
   ---------------------------------------- */

.parallax-bg {
  will-change: transform;
  transition: none;
}

/* Wrapper provides the clipping context */
.parallax-section {
  position: relative;
  overflow: hidden;
}

/* The actual parallax image or div */
.parallax-section .parallax-bg {
  position: absolute;
  inset: -20%;
  width: 100%;
  height: 140%;
  object-fit: cover;
}


/* ----------------------------------------
   9. GRADIENT SHIFT on sections
   ---------------------------------------- */

@keyframes gradientShift {
  0%   { background-position: 0%   50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0%   50%; }
}

.gradient-shift {
  background: linear-gradient(
    135deg,
    var(--blue-deep)  0%,
    var(--blue-mid)   25%,
    var(--blue-light) 50%,
    var(--blue-mid)   75%,
    var(--blue-deep)  100%
  );
  background-size: 300% 300%;
  animation: gradientShift 8s ease-in-out infinite;
}


/* ----------------------------------------
   10. GOLD SHIMMER on headings
   ---------------------------------------- */

@keyframes shimmer {
  0%   { background-position: 0%   center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    var(--gold)        0%,
    var(--gold-bright) 40%,
    var(--gold)        60%,
    var(--gold-bright) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}


/* ----------------------------------------
   11. GLOWING DECORATIONS
   ---------------------------------------- */

/* A rule / divider with a gold radiant glow below it */
.glow-line {
  position: relative;
}

.glow-line::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  box-shadow:
    0 0 4px  rgba(201, 169, 97, 0.6),
    0 0 8px  rgba(201, 169, 97, 0.4),
    0 0 16px rgba(201, 169, 97, 0.2);
}

/* Glow added to the art-deco corner frames in the hero */
.hero-deco {
  filter: drop-shadow(0 0 4px rgba(201, 169, 97, 0.4));
}

/* Generic gold drop-shadow utility */
.glow-gold {
  filter:
    drop-shadow(0 0 4px  rgba(201, 169, 97, 0.5))
    drop-shadow(0 0 12px rgba(201, 169, 97, 0.25));
}

/* Subtle ambient top-border glow for sections */
.section-glow {
  position: relative;
}

.section-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(201, 169, 97, 0.5),
    transparent
  );
  box-shadow:
    0 0 12px rgba(201, 169, 97, 0.3),
    0 0 30px rgba(201, 169, 97, 0.15);
  pointer-events: none;
}


/* ----------------------------------------
   12. SCROLL PROGRESS BAR
   ---------------------------------------- */

#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-bright));
  z-index: 9999;
  width: 0%;
  transform-origin: left center;
  transition: width 0.1s linear;
  pointer-events: none;
  box-shadow: 0 0 6px rgba(201, 169, 97, 0.5);
}


/* ----------------------------------------
   13. FLOATING ACTION BUTTON (bel ons knop)
   ---------------------------------------- */

@keyframes pulse {
  0%   {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.40);
  }
  50%  {
    transform: scale(1.08);
    box-shadow: 0 8px 32px rgba(201, 169, 97, 0.55);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 20px rgba(201, 169, 97, 0.40);
  }
}

.fab-call {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(201, 169, 97, 0.4);
  animation: pulse 2s ease-in-out infinite;
  color: var(--blue-deep);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.fab-call:hover {
  background: var(--gold-bright);
  color: var(--blue-deep);
  animation-play-state: paused;
}

.fab-call svg,
.fab-call span {
  font-size: 1.4rem;
  line-height: 1;
  pointer-events: none;
}

/* Show FAB on mobile only — remove this block to display on all breakpoints */
@media (min-width: 769px) {
  .fab-call {
    display: none;
  }
}


/* ----------------------------------------
   V3 REDUCED MOTION OVERRIDES
   (supplements the existing reduced-motion block above)
   ---------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  /* Mesh gradient */
  .mesh-bg::before {
    animation: none;
  }

  /* Gradient shift */
  .gradient-shift {
    animation: none;
    background-size: 100% 100%;
  }

  /* Shimmer text — fall back to a static gold colour */
  .shimmer-text {
    animation: none;
    background: none;
    -webkit-text-fill-color: var(--gold);
    color: var(--gold);
  }

  /* FAB pulse */
  .fab-call {
    animation: none;
  }

  /* Reveal classes — show immediately without motion */
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .stagger-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  /* Page transition — instant */
  #page-transition {
    transition: none;
  }

  /* Tilt cards — no transform */
  .tilt-card {
    transition: none;
  }

  /* Magnetic buttons — no transform */
  .btn-magnetic {
    transition: none;
  }
}

/* Screen-reader only helper (for gallery figcaptions, accessibility) */
.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;
}
