@font-face {
    font-family: 'Syne';
    src: url('./assets/fonts/Syne-Regular.woff2') format('woff2'),
        url('./assets/fonts/Syne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: url('./assets/fonts/Syne-SemiBold.woff2') format('woff2'),
        url('./assets/fonts/Syne-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: url('./assets/fonts/Syne-Bold.woff2') format('woff2'), url('./assets/fonts/Syne-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: url('./assets/fonts/Syne-Medium.woff2') format('woff2'),
        url('./assets/fonts/Syne-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Syne';
    src: url('./assets/fonts/Syne-ExtraBold.woff2') format('woff2'),
        url('./assets/fonts/Syne-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@keyframes hamZ {
  from {
    transform: scale(1.05)
  }
  to {
    transform: scale(1.12)
  }
}

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

:root {
  --white: #fff;
  --cream: #faf7f2;
  --warm-white: #fffef9;
  --brown-dark: #000;
  --black: #000;
  --brown-mid: #5c3d20;
  --brown-light: #a0724a;
  --brown-accent: #c9915a;
  --gold: #d4a853;
  --text-body: #3a2a1a;
  --text-muted: #7a6050;
  --border: #e8ddd0;
  --shadow: rgba(44, 26, 14, 0.12);
  --font-display: 'Syne';
  --font-body: 'Syne';
  --navbar-height: 68px;
}


html { scroll-behavior: smooth; }

body {
  font-family: 'Syne';
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }


/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  padding: 0 2rem;
  height: var(--navbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px var(--shadow); backdrop-filter: blur(8px); }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
  filter: drop-shadow(2px 4px 6px black);
}
@media (max-width: 767px) {
  .nav-logo {
    font-size: 1rem;
  }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--brown-accent); }

.text-drop-shadow-filter { filter: drop-shadow(2px 4px 6px black); }

.nav-links .nav-cta a {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s;
}
.nav-links .nav-cta a:hover { background: var(--brown-accent); color: #fff; }

.nav-fb {
  display: flex;
  align-items: center;
}
.nav-fb img { width: 22px; height: 22px; opacity: 0.7; transition: opacity 0.2s; }
.nav-fb:hover img { opacity: 1; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--brown-dark);
  transition: all 0.3s;
}

/* ===== MOBILE NAV ===== */
@media (max-width: 1000px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--navbar-height); 
    top: 0; 
    left: 0; right: 0;
    /* background: var(--cream); */
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
  }
  .nav-links.open {
    transform: translateY(0); 
    background: var(--cream);
  }
  .nav-links a {
    color: var(--brown-mid);
  }
  .nav-links .text-drop-shadow-filter {
    filter: none;
  }
}
@media only screen and (min-width: 768px) and (max-width: 999px) {
  .nav-links.open {
    flex-direction: row;
    justify-content: space-between;
  }
  .nav-links .nav-cta a {
    padding: 8px 20px;
  }
}

/* ===== PAGE OFFSET ===== */
.page-content { padding-top: var(--navbar-height); }
@media (max-width: 1000px) {
  .page-content { padding-top: 0; }
}

/* ===== SECTION UTILITY ===== */
section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brown-accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 2rem;
  margin-top: -68px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
} 
.hero-banner-img {
  position: absolute;
  inset: 0;
  background-image: url('./assets/images/banner.png');
  background-size: cover;
  background-position: center;
  animation: hamZ 10s ease-in-out infinite alternate;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brown-accent);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Syne';
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
@media (max-width: 1000px) {
  .hero {
    margin-top: 0;
  }
  .hero-content {
    padding: 4rem 0;
  }
}

/* BUTTON CSS */
.alphaPro-btn {
    --gold1: #00A861;
    --gold2: #00C774;
    --gold3: #007A45;
    --hi: #7EF0B3;
    --text: #0B0B0B;
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 22px 12px;
    min-width: 100px;
    border-radius: 5px;
    /* border: 1px solid #000; */
    background: radial-gradient(120% 180% at 20% 10%, rgba(126,240,179,.55) 0%, rgba(126,240,179,0) 55%),
    linear-gradient(135deg, var(--gold3) 0%, var(--gold1) 35%, var(--gold2) 70%, var(--gold3) 100%);
    color: var(--text);
    text-decoration: none;
    text-align: center;
    box-shadow: 0 6px 14px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.22);
    transform: translateY(0);
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    overflow: hidden;
}
 
.alphaPro-btn__label {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.15;
    letter-spacing: .2px;
}
 
.alphaPro-btn__sub {
    font-weight: 600;
    font-size: 12.5px;
    line-height: 1.2;
    opacity: .85;
}
 
.alphaPro-btn::before {
    content: "";
    position: absolute;
    inset: -40% -80%;
    background: linear-gradient(
    115deg,
    rgba(255,255,255,0) 35%,
    rgba(255,255,255,.55) 48%,
    rgba(255,255,255,0) 62%
  );
    transform: translateX(-35%) rotate(8deg);
    animation: alphaProShimmer 2.6s ease-in-out infinite;
    pointer-events: none;
    opacity: .6;
}
 
.alphaPro-btn::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 4px;
    background: linear-gradient(180deg, rgba(255,255,255,.16), rgba(255,255,255,0) 55%);
    pointer-events: none;
    mix-blend-mode: soft-light;
}
 
.alphaPro-btn:hover {
    transform: translateY(-2px);
    filter: saturate(1.04) contrast(1.01);
}
 
.alphaPro-btn:active {
    transform: translateY(0) scale(.99);
    box-shadow: 0 5px 12px rgba(0,0,0,.18),
    inset 0 2px 8px rgba(0,0,0,.12);
}
 
.alphaPro-btn:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,168,97,.20),
    0 9px 18px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.26);
}
 
@media (prefers-reduced-motion: reduce) {
    .alphaPro-btn::before {
        animation: none;
        opacity: .35;
    }
}
 
@keyframes alphaProShimmer {
    0% {
        transform: translateX(-40%) rotate(8deg);
    }
 
    55% {
        transform: translateX(35%) rotate(8deg);
    }
 
    100% {
        transform: translateX(40%) rotate(8deg);
    }
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--brown-dark);
  color: var(--cream);
  padding: 0.85rem 2rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.25s, transform 0.2s;
}
.hero-cta:hover { background: var(--brown-accent); transform: translateY(-2px); }

/* ===== ABOUT ===== */
.about {
  background: var(--warm-white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 12px 12px 0 var(--border);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  right: 12px; bottom: -12px;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.about-highlight {
  border-left: 3px solid var(--gold);
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--brown-mid);
}

@media (max-width: 1000px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2rem 1.75rem;
  border-radius: 2px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.service-card:hover {
  box-shadow: 0 8px 30px var(--shadow);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: #c9915a24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.4rem;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--brown-dark);
  margin-bottom: 0.6rem;
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }
.service-price {
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--brown-accent);
}

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ===== PORTFOLIO ===== */
.portfolio { background: var(--brown-dark); }
.portfolio .section-label { color: var(--gold); }
.portfolio .section-title { color: var(--cream); }
.portfolio-header { text-align: center; margin-bottom: 3rem; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.portfolio-item {
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.portfolio-item img {
  width: 100%; height: 380px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-item.featured {
  grid-column: span 2;
}
.portfolio-item.featured img { height: 380px; }

@media (max-width: 1000px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.featured { grid-column: span 2; }
  .portfolio-item img { height: 200px; }
  .portfolio-item.featured img { height: 250px; }
}
@media (max-width: 520px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--cream); }
.testimonials-header { text-align: center; max-width: 600px; margin: 0 auto 3.5rem; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--warm-white);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  transition: box-shadow 0.3s, transform 0.3s !important;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px var(--shadow);
  transform: scale(1.02) !important;
}
.testimonial-quote-icon {
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.4;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brown-dark);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== FAQ ===== */
.faq { background: var(--warm-white); }
.faq-header { max-width: 600px; margin: 0 auto 3rem; text-align: center; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brown-dark);
  font-weight: 600;
}
.faq-icon {
  width: 28px; height: 28px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--brown-accent);
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-answer { max-height: 300px; padding-top: 1rem; }
.faq-answer p { color: var(--text-muted); line-height: 1.8; }

/* ===== FOOTER ===== */
footer {
  background: var(--brown-dark);
  color: var(--cream);
  padding: 4rem 2rem 2rem;
}
.footer-grid {
  max-width: 1100px; 
  margin: 0 auto;
  text-align: center;
  /* display: grid; */
  /* grid-template-columns: 2fr 1fr 1fr 1fr; */
  display: flex;
  justify-content: center;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 20px auto;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.footer-tagline { font-size: 0.9rem; color: rgba(250,247,242,0.6); line-height: 1.6; margin-bottom: 1.2rem; }
.footer-social a { display: inline-flex; }
.footer-social img { width: 24px; height: 24px; filter: brightness(0) invert(1); opacity: 0.6; transition: opacity 0.2s; }
.footer-social a:hover img { opacity: 1; }
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1100px; margin: 2rem auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(250,247,242,0.4);
}

@media (max-width: 900px) {
  .footer-grid { flex-wrap: wrap; gap: 2rem; }
  /* .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } */
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: var(--brown-dark);
  padding: 5rem 2rem;
  text-align: center;
  height: 50vh;
  max-height: 400px;
  align-content: center;
  margin-top: -68px;
}
.contact-hero .section-label { color: var(--gold); }
.contact-hero .section-title { color: var(--cream); margin-bottom: 0; }

.contact-section { background: var(--cream); }
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 8px 8px 0 var(--border);
}

.contact-form-wrapper {
  background: var(--warm-white);
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
}
.contact-form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brown-dark);
  margin-bottom: 0.4rem;
}
.contact-form-wrapper p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-mid);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-body);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--brown-accent);
  box-shadow: 0 0 0 3px rgba(201, 145, 90, 0.15);
}
.form-group textarea { min-height: 130px; }

.btn-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--brown-dark);
  color: var(--cream);
  border: none;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.25s;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--brown-accent); }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--brown-mid);
}
.form-success .checkmark { font-size: 2.5rem; margin-bottom: 1rem; }
.form-success h4 { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.5rem; }

@media (max-width: 1000px) {
  .contact-wrapper { grid-template-columns: 1fr; }
  .contact-image { display: none; }
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease, box-shadow 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== GALLERY PAGE ===== */
.gallery-hero {
  background: var(--brown-dark);
  padding: 5rem 2rem;
  text-align: center;
  height: 50vh;
  max-height: 400px;
  align-content: center;
  margin-top: -68px;
}
.gallery-hero .section-label { color: var(--gold); }
.gallery-hero .section-title { color: var(--cream); margin-bottom: 0; }

.gallery-section {
  background: var(--cream);
}
.dog-gallery-group {
  margin-bottom: 4.5rem;
}
.dog-gallery-group:last-child {
  margin-bottom: 0;
}
.dog-name {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--brown-dark);
  margin-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
  padding-bottom: 0.5rem;
}
.dog-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: zoom-in;
  box-shadow: 0 4px 10px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .dog-gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
  }
  .gallery-item img {
    height: 180px;
  }
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 2rem;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}
.lightbox.active {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  animation: zoomIn 0.3s ease;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: var(--cream);
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
}
.lightbox-close:hover,
.lightbox-close:focus {
  color: var(--gold);
  text-decoration: none;
}
@keyframes zoomIn {
  from {transform: scale(0.95); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
