:root {
  --bg: #0f1013;
  --bg-soft: rgba(255, 255, 255, 0.02);
  --surface: #14161c;
  --text: #f4f4f4;
  --muted: rgba(244, 244, 244, 0.6);
  --accent: #ff5c39;
  --accent-soft: rgba(255, 92, 57, 0.12);
  --radius-lg: 1.25rem;
  --radius-md: 1rem;
  --gap: 1.5rem;
  --shadow: 0 14px 45px rgba(0, 0, 0, 0.35);
  --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #1c1e25, #0f1013 55%);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 100% - 2.5rem);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 16, 19, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1;
}

.logo-img {
  width: 44px;      /* adjust to taste */
  height: 44px;
  object-fit: contain;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-main {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-sub {
  font-size: 0.68rem;
  color: var(--muted);
}

.logo-main {
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  gap: 1.25rem;
}
.site-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: 0.15s ease;
  padding: 0.4rem 0.25rem;
}
.site-nav a.active,
.site-nav a:hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
}

.hero {
  padding: 3.5rem 0 3rem;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
h1 {
  font-size: clamp(2.65rem, 3.2vw, 3.6rem);
  margin: 0 0 1rem;
  letter-spacing: -0.01em;
}
.lead {
  color: var(--muted);
  font-size: 1rem;
  max-width: 32rem;
}
.actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.15s ease;
}
.btn.primary {
  background: var(--accent);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  box-shadow: 0 15px 30px rgba(255, 92, 57, 0.35);
}
.btn.primary:hover {
  transform: translateY(-1px);
}
.btn.ghost {
  background: transparent;
  border-color: rgba(244, 244, 244, 0.16);
  color: var(--text);
}
.btn.small {
  padding: 0.35rem 0.9rem;
  font-size: 0.85rem;
}

.hero-card {
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.05), rgba(6, 6, 6, 0.1));
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 1.25rem;
  padding: 1rem;
  box-shadow: var(--shadow);
}
.hero-card img {
  border-radius: 1rem;
  margin-bottom: 0.75rem;
}
.hero-label {
  font-size: 0.75rem;
  color: var(--muted);
}
.hero-art-title {
  font-size: 1.2rem;
  margin: 0.2rem 0;
}
.hero-art-meta {
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 3.5rem 0;
}
.section h2 {
  margin-bottom: 1rem;
}
.section-intro {
  color: var(--muted);
  max-width: 42rem;
  margin-bottom: 2rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}
.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.035);
  border-radius: 1.1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.card h3 {
  margin: 1rem 1rem 0.3rem;
}
.card p {
  margin: 0 1rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.text-link {
  display: inline-block;
  margin: 0 1rem 1.1rem;
  color: var(--accent);
  font-size: 0.85rem;
}

.gallery-filters {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.gallery-filters label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.gallery-filters select,
.gallery-filters input {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.75rem;
  padding: 0.4rem 0.6rem;
  color: var(--text);
  min-width: 12rem;
}
.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.gallery-item {
  background: rgba(255, 255, 255, 0.015);
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.gallery-item img {
  aspect-ratio: 4/3;
  object-fit: cover;
}
.gallery-meta {
  padding: 0.75rem 0.9rem 0.9rem;
}
.gallery-meta h3 {
  margin: 0;
  font-size: 1rem;
}
.gallery-meta p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.tag {
  background: rgba(255, 92, 57, 0.14);
  color: #fff;
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
}

.empty-state {
  background: rgba(255, 255, 255, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.025);
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
  color: var(--muted);
  margin-top: 1.5rem;
}

.narrow {
  max-width: 720px;
  margin: 0 auto;
}

.bullet-list {
  list-style: none;
  padding: 0;
}
.bullet-list li {
  margin-bottom: 0.5rem;
  padding-left: 1.15rem;
  position: relative;
}
.bullet-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

.contact-form {
  display: grid;
  gap: 1rem;
}
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}
.contact-form input,
.contact-form textarea {
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
  padding: 0.5rem 0.65rem;
  color: var(--text);
  font-family: inherit;
}
.form-note {
  font-size: 0.75rem;
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.03);
  padding: 1.5rem 0 2.5rem;
  background: rgba(0, 0, 0, 0.1);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.75rem;
}

.social-section {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--accent);
}

.social-links img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.social-links a:hover img {
  opacity: 1;
}


@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: rgba(15, 16, 19, 0.95);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0.75rem;
    transform: translateY(-100%);
    transition: 0.2s ease;
  }
  body.nav-open .site-nav {
    transform: translateY(0);
  }
  .nav-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .gallery-filters {
    flex-direction: column;
    align-items: flex-start;
  }
  .actions {
    flex-wrap: wrap;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====== PHONE (max 600px) ====== */
@media (max-width: 600px) {
  body {
    font-size: 0.95rem;
  }

  .hero {
    padding: 2.5rem 0 2.2rem;
  }

  .hero-inner {
    gap: 1.8rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* gallery filters: full width */
  .gallery-filters {
    flex-direction: column;
    align-items: stretch;
  }
  .gallery-filters label,
  .gallery-filters select,
  .gallery-filters input {
    width: 100%;
  }

  /* gallery grid: 1 per row if really narrow */
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  /* social links: stack */
  .social-links {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  .social-links a {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* footer stack */
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ====== TABLET (max 900px) ====== */
@media (max-width: 900px) {
  /* hero already stacks (you had this), let’s center it more */
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 460px;
  }

  /* gallery: 2 columns on mid screens */
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }

  /* filters: don’t stretch too wide */
  .gallery-filters {
    gap: 0.75rem;
  }
}

