/* =============================================
   PASIEKA ELDAR — style.css
   ============================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background-color: #FAF6EC;
  color: #2D2416;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover { opacity: 0.8; }

ul { list-style: none; }

/* ---- CUSTOM PROPERTIES ---- */
:root {
  --color-dark:    #2D2416;
  --color-darker:  #1E170D;
  --color-gold:    #B5810A;
  --color-green:   #3A5C2B;
  --color-cream:   #F5EDD8;
  --color-vanilla: #FAF6EC;
  --color-cream-text: #C8A96E;
  --color-white:   #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --container-max: 1280px;
  --gutter: 2rem;
  --section-gap: 4.5rem;

  --radius: 4px;
  --transition: 0.25s ease;
}

/* ---- CONTAINER ---- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
  text-align: center;
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
}
.btn-gold:hover {
  background: #9a6c07;
  border-color: #9a6c07;
  opacity: 1;
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  opacity: 1;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ---- SECTION STRUCTURE ---- */
.section-header {
  position: relative;
  margin-bottom: 1.75rem;
}

.section-number {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--color-dark);
  opacity: 0.08;
  position: absolute;
  top: -2rem;
  right: 0;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.section-number--light {
  color: var(--color-cream-text);
  opacity: 0.25;
}

.section-title {
  font-family: var(--font-display);
  font-size: 1.953rem; /* major third step 3: 16 × 1.25³ = 31.25px */
  font-weight: 400;
  line-height: 1.25;
  color: var(--color-dark);
}

.section-title--light { color: var(--color-cream); }

.section-lead {
  margin-top: 0.75rem;
  font-size: 1rem; /* base 16px */
  color: #6a5e4d;
  max-width: 56ch;
}

.section-lead--light { color: var(--color-cream-text); }

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Triggered by JS on scroll */
.site-header.scrolled {
  background: var(--color-dark);
  border-bottom-color: rgba(255,255,255,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-cream);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.7rem;
  color: var(--color-cream-text);
  letter-spacing: 0.05em;
}

/* Nav */
.main-nav { margin-left: auto; }

.main-nav ul {
  display: flex;
  gap: 2rem;
}

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.main-nav a:hover { color: var(--color-cream); opacity: 1; }

.header-cta {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 1rem;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- HERO ---- */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  display: flex;
  align-items: center;
  background: var(--color-dark); /* fallback gdy wideo nie pokrywa obszaru */
}

/* Hero sits behind the fixed header — padding-top = header height */
.hero { padding-top: 72px; }

/* Bees canvas */
#bees-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Typewriter cursor */
.hero-h1-italic::after {
  content: '|';
  display: inline-block;
  color: var(--color-gold);
  opacity: 1;
  margin-left: 2px;
  animation: blink 0.75s step-end infinite;
}

.hero-h1-italic.typed::after {
  animation: blink 0.75s step-end infinite;
}

.hero-h1-italic.done::after {
  display: none;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Desktop: pokaż wideo landscape, ukryj portretowe */
.hero-video--desktop { display: block; }
.hero-video--mobile  { display: none; }

/* Full-bleed background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.75) saturate(1.1);
}

/* Gradient: left side stays dark (matches header), right side reveals photo */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #2D2416 0%,
    rgba(45, 36, 22, 0.92) 28%,
    rgba(45, 36, 22, 0.55) 55%,
    rgba(45, 36, 22, 0.15) 78%,
    transparent 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 4rem 4.5rem;
}

.hero-text {
  max-width: 580px;
  display: flex;
  flex-direction: column;
  margin-right: auto; /* trzyma tekst po lewej */
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}

.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.44rem, 5vw, 3.05rem); /* major third step 4–5: 39–49px */
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: 1rem;
}

.hero-h1-italic {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--color-gold);
}

.hero-lead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* .hero-image removed — image is now full-bleed .hero-bg */

/* ---- OFERTA ---- */
.oferta {
  background: var(--color-cream);
  padding-block: var(--section-gap);
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Karta standardowa: tekst po lewej, obraz po prawej */
.product-card {
  display: grid;
  grid-template-columns: 1fr 58%;
  gap: 0;
  align-items: stretch;
  background: var(--color-vanilla);
  border: 0.5px solid rgba(45, 36, 22, 0.12);
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

/* Karta odwrócona: obraz po lewej, tekst po prawej */
.product-card--reversed {
  grid-template-columns: 58% 1fr;
}

.product-card--reversed .product-card-text { order: 2; }
.product-card--reversed .product-card-image { order: 1; }

.product-card-image {
  overflow: hidden;
  height: 100%;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.03);
}

.product-card-text {
  padding: 2rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* zapobiega rozciąganiu przycisku */
}

.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.563rem; /* major third step 2: 16 × 1.25² = 25px */
  font-weight: 400;
  color: var(--color-dark);
  margin-bottom: 0.6rem;
}

.product-card p {
  font-size: 1rem;
  color: #4a3f30;
  line-height: 1.65;
  max-width: 44ch;
  margin-bottom: 0.4rem;
}

.whisper-note {
  font-family: var(--font-display) !important;
  font-style: italic;
  color: var(--color-gold) !important;
  font-size: 0.9rem !important;
  margin-bottom: 1.25rem !important;
}

/* ---- O MNIE ---- */
.o-mnie {
  background: var(--color-vanilla);
  padding-block: var(--section-gap);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.stat {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--color-cream);
  border-radius: 10px;
  border: 0.5px solid rgba(45, 36, 22, 0.1);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #6a5e4d;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.owner-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  align-items: center;
}

.owner-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  aspect-ratio: 4/5;
}

.owner-quote {
  border-left: 3px solid var(--color-gold);
  padding-left: 2rem;
}

.owner-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem; /* major third step 1: 16 × 1.25 = 20px */
  line-height: 1.65;
  color: var(--color-dark);
  margin-bottom: 1.25rem;
}

.owner-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.875rem;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ---- KONTAKT ---- */
.kontakt {
  background: #3a2e1e;
  padding-block: var(--section-gap);
  color: var(--color-cream);
  border-top: 1px solid rgba(200, 169, 110, 0.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.contact-list a {
  color: var(--color-cream);
  transition: color var(--transition);
}
.contact-list a:hover { color: var(--color-gold); opacity: 1; }

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: var(--color-gold);
  background: rgba(181, 129, 10, 0.12);
  border-radius: 50%;
  padding: 6px;
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.12);
}

/* Form */
.contact-form-wrapper {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 0.5px solid rgba(200, 169, 110, 0.18);
  border-radius: 10px;
  padding: 2rem 2.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-cream-text);
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(200, 169, 110, 0.5);
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-cream);
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(200, 169, 110, 0.4);
  font-size: 0.95rem;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--color-gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.field-error {
  font-size: 0.8rem;
  color: #ff8a80;
  min-height: 1em;
}

.form-feedback {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 500;
}

.form-feedback[hidden] { display: none; }
.form-feedback.success { background: rgba(58, 92, 43, 0.3); color: #b8e5a4; border: 1px solid rgba(58,92,43,0.5); }
.form-feedback.error   { background: rgba(186, 26, 26, 0.25); color: #ffb4ab; border: 1px solid rgba(186,26,26,0.4); }

/* reCAPTCHA dark background fix */
.g-recaptcha { margin-top: 0.5rem; }

/* ---- FOOTER ---- */
.site-footer {
  background: var(--color-darker);
  color: rgba(245, 237, 216, 0.7);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-block: 3.5rem;
}

.logo--footer .logo-name { font-size: 1rem; }

.footer-address {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: rgba(245, 237, 216, 0.6);
}

.footer-address a:hover { color: var(--color-gold); opacity: 1; }

.footer-nip {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(245, 237, 216, 0.4);
}

.footer-legal {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  color: rgba(245, 237, 216, 0.35);
  font-style: italic;
}

/* =============================================
   BEE FACTS — ciekawostki między sekcjami
   ============================================= */
.bee-fact {
  overflow: hidden;
  background: #1e1709;
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  border-bottom: 1px solid rgba(200, 169, 110, 0.12);
}

.bee-fact-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 2rem;
  max-width: 560px;
  margin: 0 auto;
  transform: translateX(110%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.bee-fact.is-visible .bee-fact-inner {
  transform: translateX(0);
}

.bee-fact-bee {
  flex-shrink: 0;
  transform: rotate(-25deg) translateX(20px);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.12s;
}

.bee-fact.is-visible .bee-fact-bee {
  transform: rotate(0deg) translateX(0);
}

.bee-fact-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #C8A96E;
  margin-bottom: 0.2rem;
}

.bee-fact-content p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(245, 237, 216, 0.8);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .bee-fact-inner {
    padding: 1rem 1.25rem;
    max-width: 100%;
  }
}

/* =============================================
   POLITYKA PRYWATNOŚCI
   ============================================= */
.policy-hero {
  background: #2D2416;
  color: #F5EDD8;
  padding: 8rem 1.5rem 3rem;
}
.policy-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 0.5rem;
}
.policy-date {
  opacity: 0.55;
  font-size: 0.9rem;
}

.policy-content {
  background: #FAF8F5;
  padding: 3rem 1.5rem 5rem;
}
.policy-container {
  max-width: 760px;
  margin: 0 auto;
}

.btn-back {
  display: inline-block;
  margin-bottom: 2.5rem;
  color: #C8A96E;
  text-decoration: none;
  font-size: 0.9rem;
}
.btn-back:hover { text-decoration: underline; }

.policy-container h2 {
  font-size: 1.25rem;
  margin: 2.5rem 0 0.75rem;
  color: #2D2416;
}
.policy-container p,
.policy-container li {
  line-height: 1.8;
  margin-bottom: 0.75rem;
  color: #3a3020;
}
.policy-container ul,
.policy-container ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.policy-container a {
  color: #C8A96E;
}

/* Formularz — dodatkowe elementy */
.field-hint {
  display: block;
  font-size: 0.78rem;
  color: rgba(245, 237, 216, 0.5);
  margin-top: 0.2rem;
}
.label-optional {
  font-size: 0.8rem;
  opacity: 0.6;
  font-weight: 400;
}
.form-consent {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-bottom: 1rem;
}
.form-consent a {
  color: inherit;
  text-decoration: underline;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(245, 237, 216, 0.6);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--color-cream); opacity: 1; }

.footer-copy {
  border-top: 0.5px solid rgba(255,255,255,0.08);
  padding-block: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.footer-copy p {
  font-size: 0.8rem;
  text-align: center;
  color: rgba(245, 237, 216, 0.35);
}

.footer-credit {
  font-size: 0.75rem !important;
  color: rgba(245, 237, 216, 0.22) !important;
}

.footer-credit a {
  color: rgba(200, 169, 110, 0.45);
  transition: color var(--transition);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.footer-credit a:hover {
  color: var(--color-cream-text);
  opacity: 1;
}

/* ---- STICKY CALL (mobile) ---- */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  background: var(--color-gold);
  color: var(--color-dark);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.75rem 1.25rem;
  border-radius: 9999px;
  gap: 0.4rem;
  align-items: center;
  box-shadow: 0 4px 20px rgba(181, 129, 10, 0.4);
  transition: background var(--transition);
}
.sticky-call:hover { background: #9a6c07; opacity: 1; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .owner-block {
    grid-template-columns: 1fr;
  }
  .owner-image img {
    max-height: 300px;
    width: 100%;
    aspect-ratio: unset;
  }
}

@media (max-width: 900px) {
  :root { --section-gap: 3.5rem; }

  .hero {
    min-height: 75svh;
    align-items: flex-start;
  }

  .hero-inner {
    padding-block: 5rem 2.5rem;
  }

  .hero-text { max-width: 100%; }

  /* Wideo desktop ukryte na mobile; portretowe wideo pokazane gdy dostępne */
  .hero-video--desktop { display: none; }
  .hero-video--mobile  { display: block; }

  /* Gradient ciemnieje od góry (gdzie jest treść) w dół */
  .hero-bg::after {
    background: linear-gradient(
      to bottom,
      rgba(45, 36, 22, 0.82) 0%,
      rgba(45, 36, 22, 0.55) 40%,
      rgba(45, 36, 22, 0.25) 70%,
      rgba(45, 36, 22, 0.10) 100%
    );
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-card {
    grid-template-columns: 1fr;
    height: auto;
    min-height: unset;
  }
  .product-card--reversed { grid-template-columns: 1fr; }
  .product-card--reversed .product-card-text,
  .product-card--reversed .product-card-image { order: unset; }

  .product-card-image {
    height: 240px;
  }

  .product-card-text {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(45, 36, 22, 0.96);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0s 0.3s;
    z-index: 99;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }
  .main-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.3s ease, visibility 0s;
  }

  /* Gdy header jest po scrolu — overlay nav w pełni ciemny */
  .site-header.scrolled .main-nav {
    background: var(--color-dark);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .main-nav ul { flex-direction: column; align-items: center; gap: 2rem; }
  .main-nav a { font-size: 1.5rem; }

  .hamburger { display: flex; z-index: 101; }

  .header-cta { display: none; }

  .sticky-call { display: flex; }

  .stats-row { grid-template-columns: 1fr; }

  .section-number { font-size: 3rem; }
}

@media (max-width: 480px) {
  :root { --gutter: 1.25rem; }

  .hero { min-height: 100svh; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .product-card { padding: 1.25rem; }
}

/* ---- ACCESSIBILITY ---- */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.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;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
