/* ==========================================
   1. RESET
   ========================================== */

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

html {
  -moz-tab-size: 4;
  tab-size: 4;
  scroll-behavior: smooth;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

picture {
  display: contents;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: none;
}


/* ==========================================
   2. CSS VARIABLES
   ========================================== */

:root {
  --color-background: #F4F2EE;
  --color-surface: #FFFFFF;
  --color-primary: #121212;
  --color-accent: #D4AF37;
  --color-accent-light: #F3E5AB;
  --color-accent-dark: #AA8C2C;
  --color-maroon: #590D22;
  --color-maroon-light: #801A35;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  --container-max: 1400px;
  --container-padding: 1.5rem;
  --container-padding-md: 3rem;

  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}


/* ==========================================
   3. BASE / TYPOGRAPHY
   ========================================== */

body {
  background-color: var(--color-background);
  color: var(--color-primary);
  font-family: var(--font-sans);
}

::selection {
  background-color: var(--color-accent);
  color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  line-height: 1.2;
}


/* ==========================================
   4. LAYOUT
   ========================================== */

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

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-main {
  flex-grow: 1;
}


/* ==========================================
   5. SKIP NAVIGATION
   ========================================== */

.skip-nav {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.875rem;
  font-weight: 600;
  z-index: 100;
  transition: top 0.2s;
}

.skip-nav:focus {
  top: 0;
}


/* ==========================================
   6. NAVBAR
   ========================================== */

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: border-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  border-bottom: 1px solid transparent;
  background: transparent;
  box-shadow: none;
  padding: 1rem 0;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled::before {
  opacity: 1;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 50;
}

.logo-img-wrap {
  position: relative;
  display: block;
  width: 140px;
  height: 32px;
}

.logo-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.logo-base {
  z-index: 1;
}

.logo-a {
  z-index: 2;
  transition: transform 0.5s ease;
  transform-origin: center center;
}

.logo:hover .logo-a {
  transform: rotate(12deg);
}

/* Invert logo to black when scrolled */
.site-header.is-scrolled .logo-img-wrap img {
  filter: invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

.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;
}

/* Desktop nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.site-header.is-scrolled .nav-link {
  color: rgba(18, 18, 18, 0.8);
  text-shadow: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -0.25rem;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent);
  transition: width 0.3s;
}

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

.nav-link:hover::after,
.nav-link.is-active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 1rem;
}

/* Mobile toggle */
.nav-toggle {
  display: block;
  padding: 0.5rem;
  color: #fff;
  transition: color 0.3s;
  z-index: 50;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.site-header.is-scrolled .nav-toggle {
  color: var(--color-primary);
  filter: none;
}

/* Dark text variant for pages without hero image */
.site-header--dark-text .nav-link {
  color: rgba(18, 18, 18, 0.8);
  text-shadow: none;
}

.site-header--dark-text .nav-toggle {
  color: var(--color-primary);
  filter: none;
}

.site-header--dark-text .logo-img-wrap img {
  filter: invert(1) drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

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

.nav-toggle .icon-close {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-open {
  display: none;
}

.nav-toggle[aria-expanded='true'] .icon-close {
  display: block;
}

/* Mobile menu */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: rgba(244, 242, 238, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
  transition: all 0.5s;
}

.nav-mobile.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

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

.nav-mobile-link {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: color 0.3s;
}

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

.nav-mobile-cta {
  margin-top: 2rem;
}


/* ==========================================
   7. BUTTONS
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  transition: all 0.3s;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.75rem;
  position: relative;
  overflow: hidden;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--color-accent);
}

.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* Sizes */
.btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
}

.btn-md {
  height: 3rem;
  padding: 0 2rem;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2.5rem;
  font-size: 1rem;
}

/* Variants */
.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.2);
}

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

.btn-maroon {
  background: var(--color-maroon);
  color: #fff;
  border: none;
  box-shadow: 0 10px 15px -3px rgba(89, 13, 34, 0.2);
}

.btn-maroon:hover {
  background: var(--color-maroon-light);
}

.btn-outline {
  border: 1px solid var(--color-accent);
  color: var(--color-primary);
  background: transparent;
}

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

.btn-ghost {
  color: var(--color-primary);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent);
}

.btn-wide {
  width: 100%;
}


/* ==========================================
   8. SECTIONS
   ========================================== */

.section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.section--bg-background {
  background: var(--color-background);
}

.section--bg-white {
  background: #fff;
}

.section--bg-white-subtle {
  background: rgba(255, 255, 255, 0.4);
}

.section--bg-dark {
  background: #1a1a1a;
  color: #fff;
}

.section--bg-darker {
  background: #121212;
  color: #fff;
}

.section--bg-deep-maroon {
  background: #150505;
  color: #fff;
}

.section--pt-hero {
  padding-top: 8rem;
}


/* ==========================================
   9. HERO
   ========================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 10rem 0 6rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--color-primary);
}

.hero__overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(89, 13, 34, 0.2), rgba(244, 242, 238, 0.9));
  z-index: 10;
  mix-blend-mode: multiply;
}

.hero__overlay-2 {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--color-background), transparent, transparent);
  z-index: 10;
}

.hero__bg picture {
  display: contents;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.9;
}

.hero__content {
  position: relative;
  z-index: 20;
  text-align: center;
  max-width: 72rem;
  padding: 0 1.5rem;
}

.hero__badge-wrap {
  display: inline-block;
  padding: 1px;
  border-radius: 9999px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__badge {
  display: block;
  padding: 0.375rem 1.25rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-sans);
}

.hero__title {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  color: #fff;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.hero__title em {
  font-style: italic;
}

.hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-weight: 300;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.hero__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.3s;
}

.hero__link:hover {
  color: var(--color-accent);
}

.hero__link svg {
  transition: transform 0.3s;
}

.hero__link:hover svg {
  transform: translateX(0.25rem);
}


/* ==========================================
   10. SERVICE INTRO (Wat is Parfum Punt)
   ========================================== */

.intro-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.intro__label {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-maroon);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-sans);
}

.intro__label-line {
  width: 2rem;
  height: 1px;
  background: var(--color-maroon);
}

.intro__heading {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.intro__text {
  color: rgba(18, 18, 18, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.intro__link {
  color: var(--color-maroon);
  font-weight: 500;
  border-bottom: 1px solid rgba(89, 13, 34, 0.3);
  padding-bottom: 0.25rem;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}

.intro__link:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}


/* ==========================================
   11. IMAGE FRAMES
   ========================================== */

.image-frame {
  position: relative;
  padding: 1rem;
}

.image-frame__corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  border-top: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
  opacity: 0.6;
  border-top-left-radius: 1.5rem;
}

.image-frame__corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  border-bottom: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  opacity: 0.6;
  border-bottom-right-radius: 1.5rem;
}

.image-frame__inner {
  position: relative;
  z-index: 10;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  aspect-ratio: 1;
}

.image-frame__overlay {
  position: absolute;
  inset: 0;
  background: rgba(89, 13, 34, 0.1);
  z-index: 10;
  mix-blend-mode: overlay;
}

.image-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(10%);
  transition: all 0.7s;
}

.image-frame__img:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Video Frame (TikTok embed) */
.video-frame {
  position: relative;
  padding: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

.video-frame__corner-tl {
  position: absolute;
  top: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  border-top: 1px solid var(--color-accent);
  border-left: 1px solid var(--color-accent);
  opacity: 0.6;
  border-top-left-radius: 1.5rem;
}

.video-frame__corner-br {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  border-bottom: 1px solid var(--color-accent);
  border-right: 1px solid var(--color-accent);
  opacity: 0.6;
  border-bottom-right-radius: 1.5rem;
}

.video-frame__inner {
  position: relative;
  z-index: 10;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-2xl);
  background: var(--color-primary);
}

.video-frame__inner blockquote {
  margin: 0 !important;
}

.video-frame__inner iframe {
  border-radius: 1rem;
}

/* Service + Video Grid */
.service-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.service-video-grid__content {
  order: 2;
}

.service-video-grid__video {
  order: 1;
}

.service-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-point__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
}

.service-point__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.service-point__title {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 0.25rem;
}

.service-point__text {
  font-size: 0.875rem;
  color: rgba(18, 18, 18, 0.6);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .service-video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }

  .service-video-grid__content {
    order: 1;
  }

  .service-video-grid__video {
    order: 2;
  }
}

/* About page image cards */
.image-card {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: var(--shadow-xl);
  border-radius: 1rem;
}

.image-card__offset {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  z-index: -1;
  border-radius: 1rem;
}

.image-card__offset--right {
  transform: translate(0.75rem, 0.75rem);
}

.image-card__offset--left {
  transform: translate(-0.75rem, 0.75rem);
}

.image-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(20%);
  transition: all 0.7s;
  border-radius: 0.75rem;
}

.image-card:hover .image-card__img {
  filter: grayscale(0%);
}


/* ==========================================
   12. STEP CARDS (Hoe werkt het)
   ========================================== */

.steps-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.2;
}

.steps-grid {
  display: grid;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.step-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 1rem;
  transition: all 0.5s;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-xl);
  transform: translateY(-0.5rem);
}

.step-card__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 2rem;
  background: linear-gradient(to bottom right, var(--color-accent), var(--color-accent-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s;
  color: #fff;
}

.step-card:hover .step-card__icon {
  transform: scale(1.1);
}

.step-card__title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-primary);
  transition: color 0.3s;
}

.step-card:hover .step-card__title {
  color: var(--color-maroon);
}

.step-card__text {
  color: rgba(18, 18, 18, 0.6);
  line-height: 1.7;
  font-weight: 300;
}


/* ==========================================
   13. WHY US (Dark section with bullet points)
   ========================================== */

.why-section {
  position: relative;
}

.why-section__gradient {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(89, 13, 34, 0.2), transparent);
}

.why-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.why__heading {
  font-size: 2.25rem;
  margin-bottom: 2.5rem;
  line-height: 1.2;
}

.why__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.why__bullet {
  display: none;
}

.why__item-text {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  transition: color 0.3s;
}

.why__item:hover .why__item-text {
  color: #fff;
}

.why__image-wrap {
  position: relative;
  height: 600px;
  width: 100%;
  border-radius: 1rem;
  display: none;
}

.why__image-border {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(212, 175, 55, 0.2);
  transform: rotate(3deg);
  z-index: 0;
  border-radius: 1rem;
}

.why__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(89, 13, 34, 0.1);
  z-index: 20;
  mix-blend-mode: overlay;
  border-radius: 1rem;
}

.why__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 10;
  box-shadow: var(--shadow-2xl);
  filter: grayscale(20%) sepia(10%);
  border-radius: 1rem;
}


/* ==========================================
   14. ACCORDION
   ========================================== */

.accordion {
  width: 100%;
  max-width: 48rem;
  margin: 0 auto;
  background: #fff;
  padding: 1rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(18, 18, 18, 0.05);
  border-radius: 1rem;
}

.accordion__item {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__trigger {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

.accordion__trigger:focus {
  outline: none;
}

.accordion__question {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  transition: color 0.3s;
  padding-right: 2rem;
  color: var(--color-primary);
}

.accordion__trigger:hover .accordion__question {
  color: rgba(18, 18, 18, 0.7);
}

.accordion__item.is-open .accordion__question {
  color: var(--color-accent);
}

.accordion__chevron {
  flex-shrink: 0;
  transition: transform 0.5s ease-out;
  padding: 0.25rem;
  border-radius: 50%;
  border: 1px solid transparent;
  color: rgba(18, 18, 18, 0.4);
}

.accordion__trigger:hover .accordion__chevron {
  border-color: rgba(18, 18, 18, 0.05);
}

.accordion__item.is-open .accordion__chevron {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.accordion__body {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out, margin 0.5s ease-in-out;
}

.accordion__item.is-open .accordion__body {
  max-height: 24rem;
  opacity: 1;
  margin-bottom: 1.5rem;
}

.accordion__answer {
  color: rgba(18, 18, 18, 0.6);
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 300;
  padding-right: 2rem;
}


/* ==========================================
   15. ABOUT PAGE
   ========================================== */

/* Page hero */
.page-hero {
  padding-top: 8rem;
  padding-bottom: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero__glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 50%;
  filter: blur(48px);
  z-index: -1;
}

.page-hero__title {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.page-hero__subtitle {
  color: rgba(18, 18, 18, 0.6);
  font-size: 1.25rem;
  font-weight: 300;
}

/* About Hero (title overlaid on banner image) */
.about-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--color-background) 0%, transparent 100%);
}

.about-hero__content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.about-hero__title {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.about-hero__subtitle {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.125rem;
  font-weight: 300;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

/* Quote section */
.quote-section {
  padding: 8rem 0;
  border-top: 1px solid rgba(89, 13, 34, 0.3);
  border-bottom: 1px solid rgba(89, 13, 34, 0.3);
  position: relative;
  overflow: hidden;
}

.quote-section__texture {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/stardust.png');
  opacity: 0.1;
}

.quote-section__glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: rgba(89, 13, 34, 0.2);
  border-radius: 50%;
  filter: blur(100px);
}

.quote-section__content {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
}

.quote-section__icon {
  color: var(--color-accent);
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.quote-section__text {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-weight: 300;
}

.quote-section__divider {
  width: 6rem;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-accent), transparent);
  margin: 3rem auto 0;
}

/* Mission / Vision text */
.about-heading {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-heading__line {
  width: 3rem;
  height: 1px;
  background: var(--color-maroon);
}

.about-text {
  color: rgba(18, 18, 18, 0.7);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

/* Collaboration benefits grid */
.collab-grid {
  display: grid;
  gap: 2.5rem 3rem;
}

.collab-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.collab-item__icon {
  background: linear-gradient(to bottom right, var(--color-accent), var(--color-accent-dark));
  padding: 0.75rem;
  border-radius: var(--radius-xl);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(212, 175, 55, 0.2);
  flex-shrink: 0;
}

.collab-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-accent-light);
}

.collab-item__text {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.7;
}


/* ==========================================
   16. PRODUCTS PAGE
   ========================================== */

.product-grid {
  display: grid;
  gap: 5rem;
  align-items: center;
}

.product-showcase {
  position: relative;
  width: 100%;
  background: #fff;
  padding: 2rem;
  border: 1px solid rgba(18, 18, 18, 0.05);
  box-shadow: var(--shadow-sm);
  border-radius: 1rem;
}

.product-showcase__inner {
  width: 100%;
  aspect-ratio: 1;
  background: #f4f4f4;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
}

.product-showcase__watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(18, 18, 18, 0.1);
  font-family: var(--font-serif);
  font-size: 8rem;
  font-weight: 700;
  opacity: 0.2;
}

.product-showcase__img {
  height: 90%;
  width: auto;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 10;
}

.product-showcase__label {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: #fff;
  padding: 0.75rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 0.75rem 0.75rem 0;
  z-index: 20;
}

.product-showcase__label-text {
  font-family: var(--font-serif);
  font-size: 1.125rem;
}

.product-showcase__label-name {
  font-weight: 700;
}

/* Specs grid */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}

.spec-item {
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  padding-bottom: 1rem;
}

.spec-item__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(18, 18, 18, 0.4);
  margin-bottom: 0.25rem;
  font-family: var(--font-sans);
}

.spec-item__value {
  font-weight: 500;
  font-size: 1.125rem;
}

/* Brand tags */
.brand-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.brand-tag {
  padding: 0.5rem 1rem;
  background: rgba(18, 18, 18, 0.05);
  color: rgba(18, 18, 18, 0.8);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

/* Service features grid */
.service-features {
  display: grid;
  gap: 3rem;
}

.service-feature {
  text-align: center;
  padding: 0 1rem;
}

.service-feature__icon {
  width: 4rem;
  height: 4rem;
  background: rgba(212, 175, 55, 0.1);
  color: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-feature__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-feature__text {
  color: rgba(18, 18, 18, 0.6);
  font-size: 0.875rem;
  line-height: 1.7;
}


/* ==========================================
   17. CONTACT PAGE
   ========================================== */

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-label {
  color: var(--color-accent);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: block;
  font-family: var(--font-sans);
}

.contact-heading {
  font-size: 2.25rem;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.contact-subtitle {
  font-size: 1.25rem;
  color: rgba(18, 18, 18, 0.7);
  margin-bottom: 3rem;
  font-weight: 300;
  line-height: 1.7;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(18, 18, 18, 0.1);
}

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

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background: #fff;
  border: 1px solid rgba(18, 18, 18, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.contact-info-text {
  color: rgba(18, 18, 18, 0.6);
}

.contact-info-text a {
  display: block;
  transition: color 0.3s;
}

.contact-info-text a:hover {
  color: var(--color-accent);
}

.contact-info-small {
  font-size: 0.75rem;
  color: rgba(18, 18, 18, 0.4);
  margin-top: 0.25rem;
}

/* Contact form */
.contact-form-wrap {
  background: #fff;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--color-accent);
  border-radius: 1rem;
}

.contact-form-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

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

.form-row {
  display: grid;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(18, 18, 18, 0.4);
  transition: color 0.3s;
  font-family: var(--font-sans);
}

.form-group:focus-within .form-label {
  color: var(--color-accent);
}

.form-input,
.form-textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(18, 18, 18, 0.1);
  padding: 0.75rem 0;
  font-size: 1.125rem;
  outline: none;
  transition: border-color 0.3s;
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: rgba(18, 18, 18, 0.2);
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
}

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

.form-submit {
  padding-top: 1rem;
}


/* ==========================================
   18. FOOTER
   ========================================== */

.site-footer {
  background: #151515;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 6rem;
  padding-bottom: 3rem;
  border-top: 1px solid rgba(212, 175, 55, 0.1);
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  height: 36px;
  width: auto;
}

.footer-brand-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 24rem;
}

.footer-section-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
}

.footer-links a {
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.footer-contact-item--top {
  align-items: flex-start;
}

.footer-contact-item svg {
  color: var(--color-accent);
  flex-shrink: 0;
}

.footer-contact-item a {
  transition: color 0.3s;
}

.footer-contact-item a:hover {
  color: var(--color-accent);
}

.footer-socials {
  display: flex;
  gap: 1rem;
  padding-top: 1rem;
}

.footer-social {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social:hover {
  background: var(--color-accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}


/* ==========================================
   19. 404 PAGE
   ========================================== */

.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background: var(--color-background);
}

.error-page__code {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page__title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.error-page__text {
  color: rgba(18, 18, 18, 0.6);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}


/* ==========================================
   20. UTILITIES
   ========================================== */

.text-gold-gradient {
  background: linear-gradient(to right, #AA8C2C, #D4AF37, #AA8C2C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shine 5s linear infinite;
}

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

.text-white {
  color: #fff;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

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

.icon-white {
  color: #fff;
}


/* ==========================================
   21. ANIMATIONS
   ========================================== */

@keyframes shine {
  to {
    background-position: 200% center;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease-out;
}


/* ==========================================
   22. RESPONSIVE
   ========================================== */

/* sm: 640px */
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }

  .btn {
    font-size: 0.875rem;
  }

  .form-row--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* md: 768px */
@media (min-width: 768px) {
  .container {
    padding-left: var(--container-padding-md);
    padding-right: var(--container-padding-md);
  }

  .section {
    padding: 6rem 0;
  }

  .nav-desktop {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .intro-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem;
  }

  .intro-grid .intro-image-col {
    order: -1;
  }

  .intro__heading {
    font-size: 3rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why__heading {
    font-size: 3rem;
  }

  .why__image-wrap {
    display: block;
  }

  .accordion__question {
    font-size: 1.25rem;
  }

  .page-hero__title {
    font-size: 4.5rem;
  }

  .quote-section__text {
    font-size: 2.25rem;
  }

  .about-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
  }

  .collab-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collab-item--centered {
    grid-column: span 2;
    max-width: 66%;
    margin: 0 auto;
  }

  .service-features {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-form-wrap {
    padding: 3rem;
  }

  .contact-heading {
    font-size: 3.75rem;
  }

  .footer-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .footer-brand {
    grid-column: span 4;
  }

  .footer-nav-col {
    grid-column: 6 / span 2;
  }

  .footer-legal-col {
    grid-column: span 2;
  }

  .footer-contact-col {
    grid-column: span 3;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

/* lg: 1024px */
@media (min-width: 1024px) {
  .section {
    padding: 8rem 0;
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-showcase {
    height: 700px;
  }

  .product-showcase__inner {
    height: 100%;
    aspect-ratio: auto;
  }

  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
  }

  .page-hero__title {
    font-size: 4.5rem;
  }
}

/* ==========================================
   LEGAL CONTENT PAGES
   ========================================== */

.legal-content {
  color: rgba(18, 18, 18, 0.8);
  line-height: 1.8;
}

.legal-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-text);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  margin-bottom: 1rem;
}

.legal-content ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.25rem;
}

.legal-content a {
  color: var(--color-maroon);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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


/* ==========================================
   MOBILE OPTIMIZATIONS
   ========================================== */

@media (max-width: 639px) {
  /* Specs grid: single column on small screens */
  .specs-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .spec-item__value {
    font-size: 0.95rem;
  }

  /* Tighter sections on mobile */
  .section {
    padding: 3rem 0;
  }

  /* Reduce text size for readability without excessive scrolling */
  .intro__text,
  .about-text,
  .why__item-text,
  .step-card__text,
  .collab-item__text,
  .service-feature__text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .hero__subtitle {
    font-size: 0.95rem;
  }

  /* Brand tags wrap tighter */
  .brand-tags {
    gap: 0.5rem;
  }

  .brand-tag {
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
  }

  /* Video placeholder smaller on mobile */
  .video-placeholder__inner {
    padding: 3rem 1.5rem;
  }

  /* Collab items tighter */
  .collab-item {
    padding: 1rem;
  }
}
