/* ============================================================
   UK Photographers Directory — Main Stylesheet
   Design: Modern Photography Studio
   Palette: Deep charcoal bg, warm off-white text, gold accent
   Fonts: Cormorant Garamond (display) + Outfit (body)
   ============================================================ */

/* Google Fonts loaded in HTML head */

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

:root {
  --bg:          #141210;
  --bg-card:     #1c1a17;
  --bg-card2:    #211f1b;
  --fg:          #f0ebe2;
  --fg-muted:    #8a8070;
  --fg-dim:      #5a5248;
  --gold:        #c9a84c;
  --gold-dim:    #7a6228;
  --border:      rgba(255,255,255,0.09);
  --border-card: rgba(255,255,255,0.07);
  --radius:      2px;
  --max-w:       1200px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
::selection { background: rgba(201,168,76,0.25); }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #333; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dim); }

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,18,16,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.3);
  object-fit: cover;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}
.logo-sub {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-top: 2px;
}

/* Desktop nav */
.site-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.85rem;
}
@media (min-width: 900px) { .site-nav { display: flex; } }

.site-nav a {
  color: var(--fg-muted);
  transition: color 0.18s;
}
.site-nav a:hover, .site-nav a.active { color: var(--fg); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--fg-muted);
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
  font-size: 0.85rem;
  transition: color 0.18s;
}
.nav-dropdown-toggle:hover { color: var(--fg); }
.nav-dropdown-toggle svg { width: 12px; height: 12px; transition: transform 0.18s; }
.nav-dropdown:hover .nav-dropdown-toggle svg { transform: rotate(180deg); }

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 200px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  z-index: 200;
  padding: 0.5rem 0;
}
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  transition: all 0.15s;
}
.nav-dropdown-menu a:hover { color: var(--fg); background: rgba(255,255,255,0.04); }
.nav-dropdown-menu .divider {
  border-top: 1px solid var(--border);
  margin: 0.4rem 0;
}

.btn-contact {
  padding: 0.35rem 1rem;
  border: 1px solid rgba(201,168,76,0.5);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 500;
  transition: all 0.18s;
  background: none;
  cursor: pointer;
}
.btn-contact:hover { background: rgba(201,168,76,0.1); }

/* Mobile hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
@media (min-width: 900px) { .hamburger { display: none; } }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  transition: all 0.2s;
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--fg-muted);
  font-size: 0.9rem;
  transition: color 0.15s;
}
.mobile-nav a:hover { color: var(--fg); }
.mobile-nav a.gold { color: var(--gold); font-weight: 500; }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-card);
  margin-top: 5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }

.footer-brand p {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 280px;
  margin-top: 0.75rem;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.82rem;
  color: var(--fg-muted);
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-dim);
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ── GOLD DIVIDER ── */
.gold-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,168,76,0.5), transparent);
  margin: 2.5rem 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.18s var(--ease-out);
  border: none;
}
.btn:active { transform: scale(0.97); }
.btn-primary { background: var(--gold); color: #141210; }
.btn-primary:hover { background: #d4b060; }
.btn-outline { background: transparent; border: 1px solid rgba(201,168,76,0.45); color: var(--gold); }
.btn-outline:hover { background: rgba(201,168,76,0.1); }

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.6rem;
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.18s;
}
.badge:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.6); }
.badge-seeking {
  border-color: rgba(245,158,11,0.4);
  color: #f59e0b;
}

/* ── CARDS ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-left: 3px solid transparent;
  padding: 1.5rem;
  transition: all 0.2s var(--ease-out);
  position: relative;
}
.card:hover {
  border-left-color: var(--gold);
  background: var(--bg-card2);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--fg);
  transition: color 0.18s;
  margin-bottom: 0.25rem;
}
.card:hover .card-title { color: var(--gold); }
.card-sub { font-size: 0.8rem; color: var(--fg-muted); margin-bottom: 0.75rem; }
.card-location {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.card-location svg { color: var(--gold); flex-shrink: 0; }
.card-badges { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-bottom: 1rem; }
.card-bio {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.card-actions a { color: var(--fg); font-weight: 500; transition: color 0.15s; }
.card-actions a:hover { color: var(--gold); }
.card-actions .sep { color: rgba(255,255,255,0.2); }
.card-actions .ext { color: var(--gold); display: flex; align-items: center; gap: 3px; }
.card-actions .ext:hover { color: #d4b060; }

/* Seeking card */
.card-seeking {
  background: rgba(20,18,16,0.6);
  border: 1px dashed rgba(255,255,255,0.12);
  padding: 1.5rem;
  opacity: 0.75;
}
.seeking-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #f59e0b;
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(20,18,16,1) 0%, rgba(20,18,16,0.88) 50%, rgba(20,18,16,0.4) 100%);
}
.hero-overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  max-width: 640px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero-eyebrow-line { height: 1px; width: 2rem; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1.25rem;
  line-height: 1.05;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
}

/* ── SEARCH BAR ── */
.search-wrap { position: relative; width: 100%; max-width: 640px; }
.search-main {
  position: relative;
}
.search-main input {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 1rem 3rem 1rem 3rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.search-main input::placeholder { color: var(--fg-muted); }
.search-main input:focus {
  border-color: rgba(201,168,76,0.6);
  background: rgba(255,255,255,0.08);
}
.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--fg-muted);
  pointer-events: none;
}
.search-filters {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}
.search-filters select {
  flex: 1;
  min-width: 140px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--fg-muted);
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem 0.5rem 2rem;
  outline: none;
  transition: border-color 0.18s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8070' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
}
.search-filters select:focus { border-color: rgba(201,168,76,0.4); }
.search-filter-icon {
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--fg-muted);
}
.search-filter-wrap { position: relative; flex: 1; min-width: 140px; }
.search-btn {
  padding: 0.5rem 1.25rem;
  background: var(--gold);
  color: #141210;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
  white-space: nowrap;
}
.search-btn:hover { background: #d4b060; }

/* Quick links */
.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.quick-link {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.35rem 0.75rem;
  transition: all 0.15s;
}
.quick-link:hover { color: var(--fg); border-color: rgba(255,255,255,0.2); }
.quick-link svg { color: var(--gold); }

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 1.5rem 0;
  text-align: center;
  gap: 1rem;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  color: var(--gold);
}
.stat-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.section-eyebrow-line { height: 1px; width: 1.5rem; background: var(--gold); }
.section-eyebrow span {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--fg);
}
.section-link {
  font-size: 0.78rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.15s;
  white-space: nowrap;
}
.section-link:hover { color: var(--fg); }

/* ── GRID LAYOUTS ── */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .grid-4 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.grid-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .grid-5 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .grid-5 { grid-template-columns: repeat(5, 1fr); } }

/* ── CATEGORY IMAGE CARDS ── */
.cat-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.cat-card:hover img { transform: scale(1.05); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.95) 0%, rgba(20,18,16,0.3) 60%, transparent 100%);
}
.cat-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.25rem;
}
.cat-card-count {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.cat-card-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
}

/* ── COUNTY MINI CARDS ── */
.county-mini {
  display: block;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border-card);
  transition: all 0.18s;
}
.county-mini:hover { border-color: rgba(255,255,255,0.15); }
.county-mini-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 0.25rem;
  transition: color 0.15s;
}
.county-mini:hover .county-mini-name { color: var(--gold); }
.county-mini-sub { font-size: 0.72rem; color: var(--fg-muted); }

/* ── FAQ ACCORDION ── */
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  margin-bottom: 0.5rem;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg);
  gap: 1rem;
}
.faq-question svg {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.2s;
}
.faq-item.open .faq-question svg { transform: rotate(90deg); }
.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0;
}
.faq-item.open .faq-answer { display: block; }

/* ── PAGE HEADER ── */
.page-hero {
  position: relative;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 4rem 0;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.2;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, rgba(20,18,16,0.9) 50%, rgba(20,18,16,0.5) 100%);
}
.page-hero-content { position: relative; z-index: 2; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--fg-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

/* ── PROFILE SIDEBAR ── */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) { .profile-layout { grid-template-columns: 1fr 320px; } }

.sidebar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.sidebar-card h3 {
  font-family: var(--font-body);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 1rem;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--fg);
  padding: 0.5rem 0;
  transition: color 0.15s;
  border-bottom: 1px solid var(--border);
}
.sidebar-link:last-child { border-bottom: none; }
.sidebar-link:hover { color: var(--gold); }
.sidebar-link svg { color: var(--gold); flex-shrink: 0; }
.sidebar-link .ext-icon { margin-left: auto; color: var(--fg-muted); }

/* ── FEATURED BADGE ── */
.featured-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.featured-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
.featured-label {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
}

/* ── SECTION SPACING ── */
.section { padding: 4rem 0; }
.section-dark {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── TAGS / CHIPS ── */
.tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.75rem 0; }
.tag {
  font-size: 0.72rem;
  color: var(--fg-muted);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.2rem 0.6rem;
}

/* ── CONTACT FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-muted);
  margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.88rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 0.18s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--fg-muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,168,76,0.6);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-type-btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.form-type-btn {
  padding: 0.45rem 1rem;
  font-size: 0.8rem;
  font-family: var(--font-body);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--fg-muted);
  background: none;
  cursor: pointer;
  transition: all 0.15s;
}
.form-type-btn.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

/* ── EDITORIAL NOTE ── */
.editorial-note {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 0.75rem;
  color: var(--fg-muted);
  line-height: 1.6;
  padding: 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
}
.editorial-note svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── PROSE ── */
.prose { font-size: 0.9rem; color: rgba(240,235,226,0.8); line-height: 1.75; }
.prose p { margin-bottom: 1rem; }
.prose h2 { font-family: var(--font-display); font-size: 1.4rem; color: var(--fg); margin: 1.5rem 0 0.75rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--fg); margin: 1.25rem 0 0.5rem; }

/* ── HOW IT WORKS STEPS ── */
.steps { display: flex; flex-direction: column; gap: 1rem; }
.step {
  display: flex;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 1.25rem;
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 2.5rem;
}
.step-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.step-title svg { color: var(--gold); }
.step-desc { font-size: 0.8rem; color: var(--fg-muted); line-height: 1.65; }

/* ── CHECKLIST ── */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.checklist li svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ── CTA BANNER ── */
.cta-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  padding: 5rem 0;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.15;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg), rgba(20,18,16,0.8), var(--bg));
}
.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 1rem;
}
.cta-desc { font-size: 0.9rem; color: var(--fg-muted); margin-bottom: 2rem; line-height: 1.7; }
.cta-btns { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ── SEARCH RESULTS PAGE ── */
#search-results-count { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 1.5rem; }
#no-results {
  text-align: center;
  padding: 4rem 1rem;
  display: none;
}
#no-results.show { display: block; }
#no-results svg { color: rgba(255,255,255,0.15); margin: 0 auto 1rem; }
#no-results h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--fg); margin-bottom: 0.5rem; }
#no-results p { font-size: 0.85rem; color: var(--fg-muted); }

/* ── UTILITY ── */
.text-gold { color: var(--gold); }
.text-muted { color: var(--fg-muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.italic { font-style: italic; }
.hidden { display: none !important; }

/* ── RESPONSIVE TWEAKS ── */
@media (max-width: 640px) {
  .hero { min-height: 75vh; }
  .hero h1 { font-size: 2.4rem; }
  .section { padding: 2.5rem 0; }
}
