/* ======================================================
   RICKY – Francouzská lilie
   Playful + Professional dog show site
   Palette: warm cream / deep black-tan / gold accent
   ====================================================== */

/* ---------- Design Tokens ---------- */
:root,
[data-theme='light'] {
  --text-xs:   clamp(0.75rem,  0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem + 4vw, 5rem);

  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Warm cream palette inspired by the dog's coat */
  --color-bg:             #faf8f3;
  --color-surface:        #fdfcf8;
  --color-surface-2:      #f5f1e8;
  --color-surface-offset: #ede8db;
  --color-border:         #d8d1be;
  --color-divider:        #e4dece;

  --color-text:           #1e1a12;
  --color-text-muted:     #6b6456;
  --color-text-faint:     #b8b0a0;
  --color-text-inverse:   #fdfcf8;

  /* Deep rich brown-black (inspired by Griffon coat) */
  --color-primary:           #2c1a0a;
  --color-primary-hover:     #1a0d04;
  --color-primary-active:    #0d0602;
  --color-primary-highlight: #ece5d8;

  /* Gold accent (ribbons + trophies) */
  --color-gold:           #b8860b;
  --color-gold-light:     #f0c040;
  --color-accent-light:   #d4a55a;

  /* Success */
  --color-success:         #437a22;
  --color-error:           #a12c2c;

  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(30,26,18,0.08);
  --shadow-md:  0 4px 16px rgba(30,26,18,0.10);
  --shadow-lg:  0 12px 40px rgba(30,26,18,0.14);

  --transition: 200ms cubic-bezier(0.16,1,0.3,1);

  --content-narrow:  640px;
  --content-default: 1020px;
  --content-wide:    1280px;

  --font-display: 'Chillax', 'Georgia', serif;
  --font-body:    'Satoshi', 'Inter', sans-serif;

  --header-h: 68px;
}

[data-theme='dark'] {
  --color-bg:             #16130d;
  --color-surface:        #1d1a12;
  --color-surface-2:      #231f16;
  --color-surface-offset: #2a261b;
  --color-border:         #3a3526;
  --color-divider:        #2e2a1e;
  --color-text:           #e8e2d4;
  --color-text-muted:     #8a8070;
  --color-text-faint:     #564e3e;
  --color-text-inverse:   #16130d;
  --color-primary:           #e8c87a;
  --color-primary-hover:     #f0d896;
  --color-primary-active:    #f8e8b0;
  --color-primary-highlight: #2e2618;
  --color-gold:           #e8c050;
  --color-gold-light:     #f8d870;
  --color-accent-light:   #c8a060;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.3);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg:  0 12px 40px rgba(0,0,0,0.5);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg:             #16130d;
    --color-surface:        #1d1a12;
    --color-surface-2:      #231f16;
    --color-surface-offset: #2a261b;
    --color-border:         #3a3526;
    --color-divider:        #2e2a1e;
    --color-text:           #e8e2d4;
    --color-text-muted:     #8a8070;
    --color-text-faint:     #564e3e;
    --color-text-inverse:   #16130d;
    --color-primary:           #e8c87a;
    --color-primary-hover:     #f0d896;
    --color-primary-highlight: #2e2618;
    --color-gold:           #e8c050;
    --color-gold-light:     #f8d870;
    --color-accent-light:   #c8a060;
  }
}

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

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  min-height: 100dvh;
  line-height: 1.65;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  background-color: var(--color-bg);
  transition: background-color 0.3s, color 0.3s;
}

img, picture, video { display: block; max-width: 100%; height: auto; }
ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4,h5,h6 { text-wrap: balance; line-height: 1.18; font-family: var(--font-display); }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

::selection { background: rgba(184,134,11,0.25); color: var(--color-text); }

:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

a, button, input, textarea, select {
  transition: color var(--transition), background var(--transition),
              border-color var(--transition), box-shadow var(--transition),
              opacity var(--transition);
}

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

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-10));
}
.container--narrow { max-width: var(--content-narrow); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-8);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.03em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  border-color: var(--color-primary);
}
[data-theme='dark'] .btn-primary {
  background: var(--color-gold);
  color: #16130d;
  border-color: var(--color-gold);
}
.btn-primary:hover {
  background: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-full { width: 100%; }

/* ---------- Section Shared ---------- */
.section {
  padding-block: clamp(var(--space-16), 10vw, var(--space-24));
}

.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-4);
  line-height: 1.12;
}

.section-subtitle {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 60ch;
  margin-bottom: var(--space-12);
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--color-bg) 92%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition: box-shadow var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  height: var(--header-h);
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: clamp(var(--space-4), 5vw, var(--space-10));
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.logo:hover { opacity: 0.8; }

.logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  line-height: 1.1;
}
.logo-sub {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  letter-spacing: 0.04em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav-link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--color-text); }

.header-controls {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  background: var(--color-surface-offset);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
  border: 1px solid var(--color-border);
}
.lang-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: transparent;
  cursor: pointer;
  border: none;
}
.lang-btn:hover { color: var(--color-text); }
.lang-btn.active {
  background: var(--color-primary);
  color: var(--color-text-inverse);
}
[data-theme='dark'] .lang-btn.active {
  background: var(--color-gold);
  color: #16130d;
}

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover { color: var(--color-text); background: var(--color-surface-2); }

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  padding: 6px;
  border-radius: var(--radius-md);
  background: var(--color-surface-offset);
  border: 1px solid var(--color-border);
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Mobile nav */
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: var(--space-4) clamp(var(--space-4), 5vw, var(--space-10));
  border-top: 1px solid var(--color-divider);
  background: var(--color-surface);
  gap: var(--space-1);
}
.mobile-nav-link {
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--color-gold); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22,19,13,0.55) 0%,
    rgba(22,19,13,0.45) 60%,
    rgba(22,19,13,0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-5);
  padding-inline: var(--space-6);
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  background: var(--color-gold);
  color: #16130d;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-gold-light);
  font-weight: 400;
  font-style: italic;
}

.hero-tagline {
  font-size: var(--text-base);
  color: rgba(255,255,255,0.82);
  max-width: 40ch;
}

.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  animation: bounce 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { background: var(--color-surface); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
}

.about-intro {
  font-size: var(--text-lg);
  color: var(--color-text);
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.about-text > p { 
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

.stats-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  margin-top: var(--space-8);
}
.stat-card {
  flex: 1;
  min-width: 130px;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-5) var(--space-4);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-text);
}
.stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-health-card {
  margin-top: var(--space-6);
  padding: var(--space-6);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-gold);
}
.about-health-card h3 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--space-4);
  font-family: var(--font-body);
}
.health-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.health-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  max-width: none;
}
.health-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--color-success);
  color: white;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-section {
  background: var(--color-bg);
}

.gallery-section > .container {
  margin-bottom: var(--space-10);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 280px;
  gap: var(--space-3);
  padding-inline: clamp(var(--space-4), 5vw, var(--space-10));
  max-width: var(--content-wide);
  margin-inline: auto;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--color-surface-offset);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-item figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(to top, rgba(22,19,13,0.85), transparent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  max-width: none;
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}
.gallery-item--wide {
  grid-column: span 2;
}

/* ============================================================
   AWARDS
   ============================================================ */
.awards-section { background: var(--color-surface); }

.awards-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--space-8), 5vw, var(--space-16));
  align-items: start;
  margin-bottom: var(--space-12);
}

.awards-sub-title {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}

/* Champion title cards */
.title-cards {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.title-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.title-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.title-card--gold {
  border-left: 4px solid var(--color-gold);
}
.title-card--silver {
  border-left: 4px solid var(--color-text-faint);
}

.title-icon { font-size: 1.8rem; flex-shrink: 0; }
.title-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }

.title-name {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}
.title-org {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

a.title-card--clickable {
  text-decoration: none;
  cursor: pointer;
  flex-wrap: wrap;
}
a.title-card--clickable:hover {
  border-color: var(--color-gold);
  background: var(--color-primary-highlight);
}
.title-diploma-hint {
  margin-left: auto;
  font-size: var(--text-xs);
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
}
a.title-card--clickable:hover .title-diploma-hint {
  opacity: 1;
}

/* Award count grid */
.award-counts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.award-count-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-5) var(--space-3);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  gap: var(--space-1);
  transition: box-shadow var(--transition), transform var(--transition);
}
.award-count-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.award-count-item--highlight {
  background: linear-gradient(135deg, var(--color-primary), color-mix(in srgb, var(--color-primary) 80%, var(--color-gold)));
  border-color: var(--color-primary);
}
[data-theme='dark'] .award-count-item--highlight {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
}
.award-count-item--highlight .award-count-number,
.award-count-item--highlight .award-count-label {
  color: var(--color-text-inverse);
}
[data-theme='dark'] .award-count-item--highlight .award-count-number,
[data-theme='dark'] .award-count-item--highlight .award-count-label {
  color: #16130d;
}

.award-count-number {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
  line-height: 1;
}
.award-count-item--highlight .award-count-number {
  color: var(--color-text-inverse);
}
.award-count-label {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
}

/* Trophy photo */
.trophy-photo-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-height: 480px;
}
.trophy-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { background: var(--color-bg); }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-2);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea {
  padding: var(--space-4) var(--space-5);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  color: var(--color-text);
  width: 100%;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
  border-color: var(--color-gold);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-faint);
}
.form-group input.invalid,
.form-group textarea.invalid {
  border-color: var(--color-error);
}

.field-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  display: none;
}
.form-group:has(input.invalid) .field-error,
.form-group:has(textarea.invalid) .field-error {
  display: block;
}

.form-success {
  padding: var(--space-5);
  background: color-mix(in srgb, var(--color-success) 12%, var(--color-bg));
  border: 1px solid var(--color-success);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-success);
  text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: var(--color-text-inverse);
  padding-block: var(--space-10);
}
[data-theme='dark'] .site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  color: var(--color-text);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
}

.footer-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-gold);
}
[data-theme='dark'] .footer-name { color: var(--color-gold); }

.footer-subtitle {
  font-size: var(--text-sm);
  opacity: 0.7;
}

.footer-owner {
  font-size: var(--text-sm);
  opacity: 0.8;
}

.footer-copy {
  font-size: var(--text-xs);
  opacity: 0.55;
  max-width: none;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(16,13,8,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
}
.lightbox-close {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.24); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .main-nav { display: none; }
  .burger { display: flex; }

  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .about-img-wrap { aspect-ratio: 4/3; }

  .awards-layout { grid-template-columns: 1fr; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }
  .gallery-item--large { grid-column: span 2; grid-row: span 1; }
  .gallery-item--wide  { grid-column: span 2; }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }
  .gallery-item--large { grid-column: span 2; }
  .gallery-item--wide  { grid-column: span 2; }

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

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

  .stats-row { flex-direction: column; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
