/* ============================================================
   DAVE'S ASTROPHOTOS — styles.css
   Custom styles that complement Tailwind CDN (zinc theme)
   ============================================================ */

/* ── Fonts ───────────────────────────────────────────────────*/
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ── Base ────────────────────────────────────────────────────*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #09090b;
  color: #f4f4f5;
  min-height: 100vh;
}
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }
ul, ol { list-style: none; margin: 0; padding: 0; }

/* ── Scrollbar ───────────────────────────────────────────────*/
::-webkit-scrollbar         { width: 5px; }
::-webkit-scrollbar-track   { background: #09090b; }
::-webkit-scrollbar-thumb   { background: #3f3f46; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #71717a; }

/* ── Typography helpers ──────────────────────────────────────*/
.font-display { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ── Navigation ──────────────────────────────────────────────*/
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(9,9,11,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1440px;
  height: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #f4f4f5;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.05rem;
  flex-wrap: nowrap;
}
.nav-links a {
  display: block;
  padding: 0.3rem 0.55rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #a1a1aa;
  border-radius: 5px;
  transition: color 140ms, background 140ms;
  white-space: nowrap;
}
.nav-links a:hover  { color: #f4f4f5; background: rgba(255,255,255,0.05); }
.nav-links a.nav-active { color: #f4f4f5; background: rgba(255,255,255,0.08); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: #a1a1aa;
  border-radius: 2px;
  transition: transform 220ms, opacity 140ms;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile panel */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 99;
  background: rgba(9,9,11,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1rem 1.5rem 1.5rem;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms, transform 180ms;
}
.nav-mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav-mobile a {
  display: block;
  padding: 0.65rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a1a1aa;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover, .nav-mobile a.nav-active { color: #f4f4f5; }

@media (max-width: 1100px) {
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile   { display: block; }
}

/* ── Page Wrapper ────────────────────────────────────────────*/
.page-wrap { padding-top: 64px; min-height: 100vh; display: flex; flex-direction: column; }
.page-main { flex: 1; }

/* ── Hero — Home ─────────────────────────────────────────────*/
.hero-home {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 5rem 1.5rem 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%,   rgba(255,255,255,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%,  rgba(255,255,255,0.02) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(0,0,0,0.5)        0%, transparent 70%);
}
.hero-stars {
  position: absolute; inset: 0;
  z-index: 0;
  width: 100%; height: 100%;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero-logo {
  width: 520px;
  margin: 0 auto 2rem;
  mix-blend-mode: screen;
  display: block;
}
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #f4f4f5;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: #e4e4e7;
}
.hero-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: #a1a1aa;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #09090b;
  background: #f4f4f5;
  border-radius: 100px;
  transition: background 150ms, color 150ms, transform 150ms;
}
.hero-cta:hover { background: #ffffff; transform: translateY(-1px); }

/* ── Hero — Page (gallery/about/contact) ─────────────────────*/
.hero-page {
  position: relative;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hero-page .hero-bg::before {
  background:
    radial-gradient(ellipse 80% 100% at 50% 0%, rgba(255,255,255,0.02) 0%, transparent 70%);
}
.hero-page-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 1rem;
}
.hero-page-eyebrow a { color: #71717a; }
.hero-page-eyebrow a:hover { color: #a1a1aa; }
.hero-page-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f4f4f5;
  margin-bottom: 0.75rem;
}
.hero-page-desc {
  font-size: 0.95rem;
  color: #71717a;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── Section ─────────────────────────────────────────────────*/
.section { max-width: 1280px; margin: 0 auto; padding: 4rem 1.5rem; }
.section-header { margin-bottom: 2.5rem; }
.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f4f4f5;
  margin-bottom: 0.4rem;
}
.section-sub { font-size: 0.88rem; color: #71717a; }

/* ── Category Cards ──────────────────────────────────────────*/
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 300px 220px;
  gap: 0.875rem;
}
.cat-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.06);
  cursor: pointer;
  height: 100%;
}
.cat-card.featured { grid-column: span 2; }
.cat-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 400ms cubic-bezier(0.22,1,0.36,1), filter 400ms;
  filter: brightness(0.75) saturate(0.9);
}
.cat-card:hover img {
  transform: scale(1.04);
  filter: brightness(0.85) saturate(1);
}
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0,0,0,0.78) 100%);
  z-index: 1;
}
.cat-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 1.2rem 1.1rem 1rem;
}
.cat-badge {
  display: inline-block;
  position: absolute;
  top: 0.75rem; right: 0.75rem;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f4f4f5;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.cat-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #f4f4f5;
  line-height: 1.1;
  margin-bottom: 0.3rem;
}
.featured .cat-title { font-size: 2.2rem; }
.cat-meta {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .categories-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 180px 180px;
  }
  .cat-card.featured { grid-column: span 2; }
}
@media (max-width: 480px) {
  .categories-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(6, 200px);
  }
  .cat-card.featured { grid-column: span 1; }
}

/* ── Gallery Grid ────────────────────────────────────────────*/
.gallery-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.gallery-count {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #71717a;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gal-item { position: relative; }
.gal-btn {
  display: block;
  width: 100%;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.06);
  padding: 0;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gal-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 350ms cubic-bezier(0.22,1,0.36,1), filter 350ms;
  filter: brightness(0.8) saturate(0.9);
}
.gal-btn:hover .gal-img {
  transform: scale(1.05);
  filter: brightness(0.95) saturate(1.05);
}
.gal-footer {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.8rem 0.75rem 0.65rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}
.gal-catalog {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.gal-title {
  font-size: 0.8rem;
  font-weight: 400;
  color: #f4f4f5;
  line-height: 1.3;
}

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ── Pagination ──────────────────────────────────────────────*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 3rem;
}
.pag-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px; height: 36px;
  padding: 0 0.6rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #a1a1aa;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 7px;
  transition: color 140ms, background 140ms, border-color 140ms;
}
.pag-btn:hover      { color: #f4f4f5; background: #27272a; }
.pag-btn.pag-active { color: #09090b; background: #f4f4f5; border-color: #f4f4f5; }

/* ── Lightbox ────────────────────────────────────────────────*/
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lb-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  max-width: calc(100vw - 8rem);
  transform: scale(0.97);
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1);
}
.lightbox.open .lb-inner { transform: scale(1); }
.lb-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.lb-img {
  display: block;
  max-width:  calc(100vw - 8rem);
  max-height: calc(100vh - 11rem);
  object-fit: contain;
}
.lb-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 1rem;
}
.lb-title-wrap { display: flex; align-items: baseline; gap: 0.6rem; }
.lb-catalog {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #71717a;
}
.lb-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 400;
  color: #e4e4e7;
}
.lb-actions { display: flex; align-items: center; gap: 0.5rem; }
.lb-action-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #a1a1aa;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  transition: color 140ms, background 140ms;
}
.lb-action-btn:hover { color: #f4f4f5; background: rgba(255,255,255,0.1); }
.lb-close-btn { font-size: 0.85rem; }
.lb-counter-wrap { text-align: center; }
.lb-counter {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #52525b;
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  color: #a1a1aa;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 140ms, background 140ms;
  z-index: 10;
}
.lb-arrow:hover       { color: #f4f4f5; background: rgba(0,0,0,0.9); }
.lb-arrow-prev        { left: -60px; }
.lb-arrow-next        { right: -60px; }

/* ── More Info Modal ─────────────────────────────────────────*/
.modal-overlay {
  position: fixed; inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card {
  width: 100%;
  max-width: 480px;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transform: translateY(8px);
  transition: transform 220ms cubic-bezier(0.22,1,0.36,1);
}
.modal-overlay.open .modal-card { transform: translateY(0); }
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.modal-catalog {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #71717a;
  margin-bottom: 0.3rem;
}
.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #f4f4f5;
  line-height: 1.2;
}
.modal-close {
  font-size: 0.9rem;
  color: #71717a;
  padding: 0.25rem;
  flex-shrink: 0;
  transition: color 140ms;
}
.modal-close:hover { color: #f4f4f5; }
.modal-body { padding: 1.25rem 1.5rem; }
.modal-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.modal-row:last-child { border-bottom: none; }
.modal-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52525b;
  flex-shrink: 0;
}
.modal-value {
  font-size: 0.85rem;
  color: #d4d4d8;
  text-align: right;
}
.modal-ref-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 1.5rem 1.5rem;
  padding: 0.65rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #a1a1aa;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  transition: color 140ms, background 140ms;
}
.modal-ref-btn:hover { color: #f4f4f5; background: rgba(255,255,255,0.08); }

/* ── About Page ──────────────────────────────────────────────*/
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

.about-photo {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
.about-photo-caption {
  margin-top: 0.6rem;
  font-size: 0.72rem;
  color: #52525b;
  text-align: center;
}
.about-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #f4f4f5;
  margin-bottom: 0.2rem;
}
.about-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #52525b;
  margin-bottom: 1.75rem;
}
.about-bio p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #a1a1aa;
  margin-bottom: 1.1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 2rem 0;
}
.about-stat {
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.1rem;
  text-align: center;
}
.stat-val {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #f4f4f5;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-lbl {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52525b;
}
.about-gear-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #e4e4e7;
  margin-bottom: 1rem;
}
.gear-list li {
  display: flex;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 0.88rem;
  color: #a1a1aa;
  line-height: 1.5;
}
.gear-list li:last-child { border-bottom: none; }
.gear-dash { color: #3f3f46; flex-shrink: 0; }

/* ── Contact Page ────────────────────────────────────────────*/
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3.5rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #f4f4f5;
  margin-bottom: 0.5rem;
}
.contact-form-sub { font-size: 0.88rem; color: #71717a; line-height: 1.6; margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.875rem; }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 0.875rem; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #52525b;
  margin-bottom: 0.4rem;
}
.form-input, .form-textarea {
  width: 100%;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 0.65rem 0.875rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: #f4f4f5;
  outline: none;
  transition: border-color 140ms;
}
.form-input::placeholder, .form-textarea::placeholder { color: #3f3f46; }
.form-input:focus, .form-textarea:focus { border-color: rgba(255,255,255,0.2); }
.form-textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #09090b;
  background: #f4f4f5;
  border-radius: 8px;
  transition: background 150ms, transform 150ms;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: #ffffff; transform: translateY(-1px); }
.form-success {
  display: none;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: #a1a1aa;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.form-success.visible { display: block; }
.contact-info-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: #f4f4f5;
  margin-bottom: 1.25rem;
}
.contact-info-item {
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}
.ci-icon {
  width: 34px; height: 34px;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #71717a;
  flex-shrink: 0;
}
.ci-label { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #52525b; margin-bottom: 0.15rem; }
.ci-value { font-size: 0.88rem; color: #a1a1aa; }
.contact-social-title {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #52525b;
  margin: 1.5rem 0 0.875rem;
}
.social-links { display: flex; flex-direction: column; gap: 0.4rem; }
.social-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  font-size: 0.82rem;
  color: #a1a1aa;
  background: #18181b;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: color 140ms, background 140ms;
}
.social-link:hover { color: #f4f4f5; background: #27272a; }

/* ── Footer ──────────────────────────────────────────────────*/
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 1.5rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1rem;
  color: #52525b;
}
.footer-links { display: flex; gap: 1.25rem; }
.footer-links a { font-size: 0.78rem; color: #52525b; transition: color 140ms; }
.footer-links a:hover { color: #a1a1aa; }
.footer-copy { font-size: 0.72rem; color: #3f3f46; }
