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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* =========================================================
   TYPOGRAPHY
   ========================================================= */
.font-serif { font-family: var(--font-serif); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
}

.text-outline {
  -webkit-text-stroke: 1.5px var(--foreground);
  color: transparent;
}

/* =========================================================
   LAYOUT
   ========================================================= */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 48px; } }

/* =========================================================
   NAVIGATION
   ========================================================= */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
#site-header.scrolled {
  background: rgba(13, 10, 9, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
#site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.site-logo .logo-icon {
  color: var(--primary);
  width: 20px; height: 20px;
}
.site-logo .logo-dot { color: var(--primary); }

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}
.primary-navigation a {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-fg);
  transition: color 0.2s;
}
.primary-navigation a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: var(--primary);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--foreground);
  transition: transform 0.3s, opacity 0.3s;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }
  .primary-navigation {
    position: fixed;
    inset: 0;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 99;
  }
  .primary-navigation.open { transform: translateX(0); }
  .primary-navigation ul { flex-direction: column; gap: 32px; text-align: center; }
  .primary-navigation a { font-size: 1.5rem; }
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  height: 48px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: none;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  border: 1px solid var(--primary);
}
.btn-primary:hover { background: var(--primary-hover); border-color: var(--primary-hover); }
.btn-outline {
  background: transparent;
  color: var(--foreground);
  border: 1px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }
.btn-outline-primary {
  background: transparent;
  color: var(--foreground);
  border: 1px solid var(--border);
}
.btn-outline-primary:hover { background: var(--foreground); color: var(--background); }

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero-section {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0.85;
}
.hero-overlay-left {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.3) 45%, transparent 70%);
}
.hero-overlay-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%, rgba(0,0,0,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  display: flex;
  align-items: flex-end;
  min-height: 100%;
  padding-top: var(--nav-height);
  padding-bottom: 48px;
}
.hero-content-inner {
  max-width: 480px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.hero-content-inner.visible {
  opacity: 1;
  transform: translateY(0);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--primary);
  flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.5rem);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 20px;
}
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  max-width: 340px;
  line-height: 1.7;
  margin-bottom: 32px;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* =========================================================
   SECTION UTILITIES
   ========================================================= */
.section-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.section-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
.section-fade-delay-1 { transition-delay: 0.1s; }
.section-fade-delay-2 { transition-delay: 0.2s; }
.section-fade-delay-3 { transition-delay: 0.3s; }
.section-fade-delay-4 { transition-delay: 0.4s; }

/* =========================================================
   SELECTED WORKS (HOMEPAGE)
   ========================================================= */
.selected-works {
  padding: 120px 0;
  background: var(--background);
}
.section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}
@media (min-width: 768px) {
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: var(--font-serif);
  font-weight: 700;
}
.section-desc { color: var(--muted-fg); max-width: 380px; }
.section-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  transition: color 0.2s;
  white-space: nowrap;
}
.section-link:hover { color: var(--primary-hover); }
.section-link svg { transition: transform 0.2s; }
.section-link:hover svg { transform: translateX(4px); }

.works-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .works-grid { grid-template-columns: repeat(3, 1fr); } }

.work-card {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--card);
  display: block;
}
.work-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.work-card:hover img { transform: scale(1.05); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.2);
  transition: background 0.5s;
}
.work-card:hover .work-card-overlay { background: transparent; }
.work-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,10,9,0.9) 0%, transparent 55%);
  z-index: 2;
}
.work-card-info {
  position: absolute;
  bottom: 0; left: 0;
  padding: 28px;
  z-index: 3;
  transform: translateY(8px);
  transition: transform 0.5s ease;
}
.work-card:hover .work-card-info { transform: translateY(0); }
.work-card-category {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 6px;
}
.work-card-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

/* =========================================================
   ABOUT SNAPSHOT (HOMEPAGE)
   ========================================================= */
.about-snapshot {
  padding: 120px 0;
  background: var(--secondary-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  opacity: 0.8;
  transition: filter 0.7s, opacity 0.7s;
}
.about-image-wrap:hover img { filter: grayscale(0%); opacity: 1; }
.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 140px; height: 140px;
  background: var(--background);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
  z-index: 2;
}
.about-badge svg { color: var(--primary); width: 28px; height: 28px; margin-bottom: 8px; fill: var(--primary); }
.about-badge-title { font-family: var(--font-serif); font-weight: 700; font-size: 1.1rem; display: block; }
.about-badge-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted-fg); }

.about-text-title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 32px;
}
.about-text-title span { color: var(--primary); }
.about-text-body { color: var(--muted-fg); font-size: 1.05rem; line-height: 1.8; }
.about-text-body p + p { margin-top: 20px; }
.about-text-body { margin-bottom: 40px; }

/* =========================================================
   CTA SECTION (HOMEPAGE)
   ========================================================= */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(223, 32, 32, 0.04);
}
.cta-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: clamp(3rem, 6vw, 5rem); font-family: var(--font-serif); font-weight: 700; margin-bottom: 24px; }
.cta-desc { font-size: 1.1rem; color: var(--muted-fg); margin-bottom: 40px; }
.cta-btn { padding: 0 48px; height: 60px; font-size: 1.1rem; font-family: var(--font-serif); letter-spacing: 0.05em; }

/* =========================================================
   PORTFOLIO / GALLERY PAGE
   ========================================================= */
.page-hero {
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 0;
}
.page-hero-title { font-size: clamp(3rem, 6vw, 5rem); font-family: var(--font-serif); font-weight: 700; margin-bottom: 20px; }
.page-hero-desc { font-size: 1.05rem; color: var(--muted-fg); max-width: 600px; margin-bottom: 48px; line-height: 1.7; }

/* Gallery Filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
  padding-bottom: 0;
}
.filter-btn {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-fg);
  padding: 16px 0;
  margin-right: 32px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.filter-btn:hover { color: var(--foreground); }
.filter-btn.active { color: var(--primary); }
.filter-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding-bottom: 80px;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--card);
  cursor: pointer;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.gallery-item.hidden {
  display: none;
}
.gallery-item:nth-child(4n+1) { aspect-ratio: 4/5; }
@media (min-width: 1024px) {
  .gallery-item:nth-child(4n+1) {
    grid-row: span 2;
    aspect-ratio: unset;
  }
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-hover {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-hover { opacity: 1; }
.gallery-item-hover svg { width: 40px; height: 40px; color: white; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(13, 10, 9, 0.96);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox-inner {
  position: relative;
  max-width: 1100px;
  max-height: 90vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.3s ease;
}
.lightbox.open .lightbox-inner { transform: scale(1) translateY(0); }
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  box-shadow: 0 40px 80px rgba(0,0,0,0.8);
}
.lightbox-caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  padding: 16px 24px;
  margin-top: 0;
  backdrop-filter: blur(8px);
}
.lightbox-caption-text h3 { font-family: var(--font-serif); font-size: 1.3rem; font-weight: 500; }
.lightbox-caption-text p { color: var(--muted-fg); font-size: 0.9rem; margin-top: 2px; }
.lightbox-caption-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}
.lightbox-close {
  position: absolute;
  top: -48px; right: 0;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}
.lightbox-close:hover { color: white; }
.lightbox-close svg { width: 32px; height: 32px; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border);
  color: var(--foreground);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  cursor: pointer;
}
.lightbox-prev { left: -64px; }
.lightbox-next { right: -64px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.1); }
@media (max-width: 900px) {
  .lightbox-prev { left: 0; bottom: -56px; top: auto; transform: none; }
  .lightbox-next { right: 0; bottom: -56px; top: auto; transform: none; }
}

/* =========================================================
   ABOUT PAGE
   ========================================================= */
.about-page { padding-top: calc(var(--nav-height) + 64px); padding-bottom: 80px; }
.about-page-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 120px;
}
@media (min-width: 1024px) { .about-page-hero { grid-template-columns: 1fr 1fr; } }

.about-page-name {
  font-size: clamp(3rem, 6vw, 5rem);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 32px;
}
.about-page-bio { color: var(--muted-fg); font-size: 1.05rem; line-height: 1.8; margin-bottom: 40px; }
.about-page-bio p + p { margin-top: 16px; }
.about-page-credit {
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-page-credit-line { width: 48px; height: 1px; background: var(--primary); }
.about-page-credit span { font-family: var(--font-serif); font-style: italic; color: var(--muted-fg); font-size: 0.875rem; letter-spacing: 0.1em; }

.about-portrait-wrap {
  position: relative;
  aspect-ratio: 3/4;
  width: 100%;
  order: -1;
}
@media (min-width: 1024px) { .about-portrait-wrap { order: 1; } }
.about-portrait-border {
  position: absolute;
  inset: 16px;
  border: 1px solid var(--primary);
  z-index: 1;
  transform: translate(16px, 16px);
}
.about-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  filter: grayscale(100%);
  transition: filter 0.7s;
}
.about-portrait-wrap:hover img { filter: grayscale(0%); }

/* Awards / Recognition */
.awards-section {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 64px;
  margin-bottom: 120px;
}
@media (max-width: 768px) { .awards-section { padding: 40px 24px; } }
.awards-title { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 48px; }
.awards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}
@media (min-width: 768px) { .awards-grid { grid-template-columns: repeat(3, 1fr); } }
.award-item-title { color: var(--primary); font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.award-item-desc { color: var(--muted-fg); font-size: 0.9rem; line-height: 1.6; }

/* Approach Section */
.approach-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
}
@media (min-width: 1024px) { .approach-section { grid-template-columns: 1fr 1fr; } }
.approach-image-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.approach-image-wrap img { width: 100%; height: 100%; object-fit: cover; opacity: 0.8; }
.approach-image-overlay {
  position: absolute; inset: 0;
  background: rgba(13,10,9,0.2);
  display: flex; align-items: center; justify-content: center;
}
.approach-image-overlay h2 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-style: italic;
  color: white;
  mix-blend-mode: overlay;
}
.approach-steps { display: flex; flex-direction: column; gap: 40px; }
.approach-step-num { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; padding-bottom: 12px; border-bottom: 1px solid var(--border); margin-bottom: 12px; display: inline-block; }
.approach-step p { color: var(--muted-fg); line-height: 1.7; }

/* =========================================================
   BOOKING PAGE
   ========================================================= */
.booking-page { padding-top: calc(var(--nav-height) + 64px); padding-bottom: 80px; }
.booking-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}
@media (min-width: 1024px) { .booking-layout { grid-template-columns: 1fr 1fr; gap: 80px; } }

.booking-info h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-family: var(--font-serif); font-weight: 700; margin-bottom: 24px; }
.booking-info p { color: var(--muted-fg); font-size: 1.05rem; line-height: 1.8; margin-bottom: 16px; }
.booking-details { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.booking-detail { display: flex; align-items: flex-start; gap: 16px; }
.booking-detail-icon { color: var(--primary); margin-top: 2px; flex-shrink: 0; }
.booking-detail-icon svg { width: 20px; height: 20px; }
.booking-detail-title { font-weight: 700; margin-bottom: 4px; }
.booking-detail-desc { color: var(--muted-fg); font-size: 0.9rem; }

/* Booking Form */
.booking-form-wrap {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 48px;
}
@media (max-width: 768px) { .booking-form-wrap { padding: 28px 20px; } }
.booking-form-title { font-family: var(--font-serif); font-size: 1.75rem; font-weight: 700; margin-bottom: 32px; }

.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-fg);
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--foreground);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: border-color 0.2s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--primary); }
.form-textarea { min-height: 120px; resize: vertical; }
.form-select option { background: var(--background); }

.form-notice {
  font-size: 0.8rem;
  color: var(--muted-fg);
  margin-top: 16px;
  line-height: 1.6;
}
.form-submit { width: 100%; height: 52px; font-size: 1rem; margin-top: 8px; }

/* Success / Error messages */
.form-message {
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  border-left: 3px solid;
}
.form-message.success { background: rgba(34, 197, 94, 0.1); border-color: #22c55e; color: #86efac; }
.form-message.error { background: rgba(239, 68, 68, 0.1); border-color: var(--primary); color: #fca5a5; }

/* =========================================================
   FOOTER
   ========================================================= */
#site-footer {
  background: var(--secondary-bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 40px; } }
.footer-brand-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-brand-logo .logo-dot { color: var(--primary); }
.footer-tagline { color: var(--muted-fg); font-size: 0.9rem; line-height: 1.7; max-width: 260px; }
.footer-heading {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--muted-fg); font-size: 0.9rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}
.footer-copy { font-size: 0.8rem; color: var(--muted-fg); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { color: var(--muted-fg); transition: color 0.2s; }
.footer-social a:hover { color: var(--primary); }
.footer-social svg { width: 18px; height: 18px; }

/* =========================================================
   WORDPRESS EDITOR ALIGNMENT
   ========================================================= */
.wp-block-image { margin: 0; }
.aligncenter { text-align: center; }
.screen-reader-text {
  position: absolute;
  clip: rect(1px,1px,1px,1px);
  overflow: hidden;
  height: 1px; width: 1px;
}

/* =========================================================
   ADMIN BAR OFFSET
   ========================================================= */
.admin-bar #site-header { top: 32px; }
@media (max-width: 782px) { .admin-bar #site-header { top: 46px; } }

/* =========================================================
   RESPONSIVE TWEAKS
   ========================================================= */
@media (max-width: 480px) {
  .about-badge { display: none; }
  .lightbox-prev { left: 0; }
  .lightbox-next { right: 0; }
  .awards-section { padding: 32px 16px; }
}
