@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --primary: #b8522a;
  --accent: #9a9a9a;
  --bg: #fafafa;
  --surface: #f1f1f1;
  --text: #1c1c1c;
  --muted: #7a7a7a;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --radius: 4px;
  --header-height: 72px;
  --container-max: 1200px;
  --container-narrow: 800px;
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--text);
}

ul, ol {
  list-style: none;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  letter-spacing: -0.015em;
}

h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
}

.text-muted {
  color: var(--muted);
}

.text-primary {
  color: var(--primary);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

blockquote {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  border-left: 3px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: 4rem 0;
}

.section--lg {
  padding: 6rem 0;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

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

.multi-col-text {
  column-count: 1;
  column-gap: 2.5rem;
  column-rule: 1px solid var(--surface);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  height: var(--header-height);
}

.header.scrolled {
  border-bottom-color: var(--accent);
  background: rgba(250, 250, 250, 0.97);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--primary);
}

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

.mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text);
  border-radius: var(--radius);
}

.mobile-menu-toggle:hover {
  background: var(--surface);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--primary);
  transition: width 0.25s ease;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
  color: #ffffff;
}

.hero-content h1 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.hero-content .lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   PHOTO BACKGROUND OVERLAY (CRITICAL)
   ============================================ */
.has-photo-bg {
  position: relative;
  isolation: isolate;
}

.has-photo-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary,
.btn-secondary,
.cta-button,
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.btn-primary:hover {
  background: #a0441f;
  border-color: #a0441f;
  color: #ffffff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-secondary:hover {
  background: var(--text);
  color: var(--bg);
}

.cta-button {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.cta-button:hover {
  background: #a0441f;
  border-color: #a0441f;
  color: #ffffff;
}

.form-submit {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  width: 100%;
  padding: 1rem;
}

.form-submit:hover {
  background: #a0441f;
  border-color: #a0441f;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.feature-card {
  padding: 2rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--bg);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: var(--radius);
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--accent);
}

.service-item:first-child {
  border-top: 1px solid var(--accent);
}

.service-item__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 300;
  color: var(--primary);
  line-height: 1;
}

.service-item__content h3 {
  margin-bottom: 0.75rem;
}

.service-item__content p {
  color: var(--muted);
  max-width: 540px;
}

.service-item__image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--accent);
}

.service-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--accent);
}

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

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.about-signature {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--accent);
}

.about-signature__name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
}

.about-signature__role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1.5rem;
}

.stat-item__number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item__label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-section {
  position: relative;
  isolation: isolate;
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
}

.testimonial-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.85));
  z-index: 0;
}

.testimonial-section > * {
  position: relative;
  z-index: 1;
}

.testimonial-section .section-header h2 {
  color: #ffffff;
}

.testimonial-section .section-header .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid var(--accent);
}

.testimonial-card__quote {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.testimonial-card__quote::before {
  content: "\201C";
  font-size: 2.5rem;
  line-height: 0;
  vertical-align: -0.4em;
  color: var(--primary);
  margin-right: 0.15em;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--accent);
}

.testimonial-card__name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  text-align: center;
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--accent);
}

.cta-section h2 {
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-row__icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  color: var(--primary);
  line-height: 1.5;
}

.contact-row__text {
  font-size: 0.95rem;
}

.contact-row__text strong {
  display: block;
  margin-bottom: 0.15rem;
}

.contact-row__text span {
  color: var(--muted);
}

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

/* ============================================
   FORMS
   ============================================ */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
  width: 100%;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s ease;
}

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

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

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

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-page {
  padding: 4rem 0;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page .policy-updated {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--accent);
}

.policy-page h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-page h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-page ul {
  padding-left: 1.5rem;
  list-style: disc;
  margin-bottom: 1.5rem;
}

.policy-page ol {
  padding-left: 1.5rem;
  list-style: decimal;
  margin-bottom: 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1c1c1c;
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 2rem;
}

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

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}

.footer-col ul a:hover {
  color: #ffffff;
}

.footer-brand .logo {
  color: #ffffff;
  margin-bottom: 1rem;
  display: inline-block;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.45);
}

.footer-bottom a:hover {
  color: #ffffff;
}

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

/* ============================================
   COOKIE POPUP
   ============================================ */
.cookie-popup {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: 1.5rem;
  max-width: 420px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: var(--radius);
  z-index: 9999;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-popup.hidden {
  display: none;
}

.cookie-popup p {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.75);
}

.cookie-popup__actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-popup__actions .btn-primary {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

.cookie-popup__actions .btn-secondary {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-popup__actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

/* ============================================
   MAGAZINE / EDITORIAL COMPONENTS
   ============================================ */
.pull-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--primary);
  padding: 2rem 0;
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--accent);
  margin: 2.5rem 0;
}

.drop-cap::first-letter {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 700;
  float: left;
  line-height: 0.8;
  margin-right: 0.5rem;
  margin-top: 0.15rem;
  color: var(--primary);
}

.asymmetric-image {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2.5rem 0;
}

.asymmetric-image__main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--accent);
}

.asymmetric-image__main img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.asymmetric-image__secondary {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--accent);
  max-width: 60%;
  margin-left: auto;
  margin-top: -2rem;
}

.asymmetric-image__secondary img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.divider {
  border: none;
  border-top: 1px solid var(--accent);
  margin: 3rem 0;
}

/* ============================================
   CARDS (GENERAL)
   ============================================ */
.card {
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg);
  transition: border-color 0.2s ease;
}

.card:hover {
  border-color: var(--text);
}

.card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.card__body {
  padding: 1.5rem;
}

.card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.card__body p {
  font-size: 0.9rem;
  color: var(--muted);
}

.card__meta {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================
   RESPONSIVE: TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  .section {
    padding: 5rem 0;
  }

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

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

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

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

  .multi-col-text {
    column-count: 2;
  }

  .service-item {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }

  .service-item:nth-child(even) {
    direction: rtl;
  }

  .service-item:nth-child(even) > * {
    direction: ltr;
  }

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

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

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

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

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-popup {
    left: auto;
  }

  .asymmetric-image {
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
  }

  .asymmetric-image__secondary {
    max-width: 100%;
    margin-left: 0;
    margin-top: 2rem;
  }
}

/* ============================================
   RESPONSIVE: DESKTOP (1024px+)
   ============================================ */
@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .section--lg {
    padding: 8rem 0;
  }

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

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

  .editorial-grid {
    grid-template-columns: 3fr 1fr;
    gap: 4rem;
  }

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

  .hero-section {
    min-height: 90vh;
  }
}

/* ============================================
   RESPONSIVE: MOBILE NAV (max-width: 767px)
   ============================================ */
@media (max-width: 767px) {
  .mobile-menu-toggle {
    display: inline-block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 1rem;
    border-top: 1px solid var(--muted);
  }

  .nav-menu.open a {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
}

/* ============================================
   ACCESSIBILITY & FOCUS
   ============================================ */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

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

/* ============================================
   PREFERS-REDUCED-MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .header,
  .footer,
  .cookie-popup,
  .mobile-menu-toggle {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 1.5rem 0;
  }
}