/* Trainova — Artisan Directory
   Vibe: Clean & trustworthy, warm professional, French craftsmanship
   Fonts: Instrument Serif (headings) + DM Sans (body)
   Colors: Deep navy + warm amber accent + off-white backgrounds
*/

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

:root {
  --navy: #1a2744;
  --navy-light: #233266;
  --amber: #e8a020;
  --amber-light: #f5b842;
  --amber-dark: #c4841a;
  --cream: #faf8f5;
  --warm-gray: #f2ede8;
  --border: #e0d9d0;
  --text: #1a1a1a;
  --text-muted: #6b6458;
  --text-light: #9b9189;
  --white: #ffffff;
  --verified: #2563eb;
  --verified-bg: #eff6ff;
  --success: #15803d;
  --success-bg: #f0fdf4;
  --error: #dc2626;
  --error-bg: #fef2f2;
  --shadow-sm: 0 1px 3px rgba(26, 39, 68, 0.08);
  --shadow-md: 0 4px 16px rgba(26, 39, 68, 0.1);
  --shadow-lg: 0 8px 32px rgba(26, 39, 68, 0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Instrument Serif', serif;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* ====== NAV ====== */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.logo-icon { font-size: 1.3rem; }
.logo-text { font-family: 'Instrument Serif', serif; font-size: 1.4rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  transition: all 0.2s;
  font-weight: 500;
}

.nav-link:hover { color: white; background: rgba(255,255,255,0.1); }

.nav-cta {
  background: var(--amber);
  color: var(--navy);
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 700;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}

.nav-cta:hover { background: var(--amber-light); transform: translateY(-1px); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.2s;
}

/* ====== HERO ====== */
.hero {
  background: var(--navy);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(232,160,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(35,50,102,0.4) 0%, transparent 60%);
  padding: 80px 24px 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--cream);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-label {
  display: inline-block;
  background: rgba(232,160,32,0.15);
  border: 1px solid rgba(232,160,32,0.3);
  color: var(--amber-light);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  max-width: 700px;
  margin: 0 auto 16px;
  font-style: italic;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-light);
}

.hero-sub {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin-bottom: 48px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ====== SEARCH BOX ====== */
.search-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 8px;
  display: flex;
  gap: 8px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}

.search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.search-field:hover { background: var(--warm-gray); }
.search-field svg { color: var(--text-muted); flex-shrink: 0; }

.search-field input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
}

.search-field input::placeholder { color: var(--text-light); }

.search-divider {
  width: 1px;
  background: var(--border);
  margin: 8px 0;
}

.search-btn {
  background: var(--navy);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  padding: 12px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.search-btn:hover { background: var(--navy-light); transform: translateY(-1px); }

/* ====== SECTION HEADERS ====== */
.section { padding: 64px 24px; max-width: 1200px; margin: 0 auto; }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.section-header h2 {
  font-size: 1.9rem;
  color: var(--navy);
}

.section-header a {
  color: var(--amber-dark);
  font-size: 0.9rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.section-header a:hover { border-color: var(--amber-dark); }

/* ====== TRADES GRID ====== */
.trades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.trade-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.trade-card:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.trade-icon { font-size: 1.8rem; line-height: 1; }
.trade-name { font-size: 0.85rem; font-weight: 600; }
.trade-count { font-size: 0.75rem; color: var(--text-light); }
.trade-card:hover .trade-count { color: rgba(255,255,255,0.6); }

/* ====== CITIES ====== */
.cities-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.city-pill {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--navy);
}

.city-pill:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
  transform: translateY(-1px);
}

/* ====== ARTISAN CARDS ====== */
.artisan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.artisan-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.artisan-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.artisan-card.is-premium {
  border-color: var(--amber);
  background: linear-gradient(135deg, #fffbf2 0%, white 100%);
}

.artisan-card.is-premium:hover { border-color: var(--amber-dark); }

.card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.card-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.artisan-card.is-premium .card-avatar {
  border-color: var(--amber);
  background: linear-gradient(135deg, #fff8eb, #fef3d0);
}

.card-badges {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-end;
}

.badge-verified {
  background: var(--verified-bg);
  color: var(--verified);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.badge-premium {
  background: linear-gradient(135deg, var(--amber), var(--amber-light));
  color: var(--navy);
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.card-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.2rem;
  color: var(--navy);
  line-height: 1.3;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.card-trade {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-city {
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.85rem;
}

.stars { color: var(--amber); font-size: 0.9rem; letter-spacing: -1px; }
.rating-val { font-weight: 700; color: var(--text); }
.rating-count { color: var(--text-light); font-size: 0.8rem; }

.card-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-cta {
  margin-top: auto;
  background: var(--navy);
  color: white;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s;
  display: block;
}

.card-cta:hover { background: var(--navy-light); }
.artisan-card.is-premium .card-cta { background: var(--amber-dark); }
.artisan-card.is-premium .card-cta:hover { background: var(--amber); color: var(--navy); }

/* ====== SEARCH PAGE ====== */
.search-page { min-height: 80vh; }

.search-page-header {
  background: var(--navy);
  padding: 40px 24px;
}

.search-page-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.search-page-title {
  font-family: 'Instrument Serif', serif;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 20px;
  font-style: italic;
}

.search-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-select {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: white;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  outline: none;
  cursor: pointer;
  min-width: 180px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  transition: border-color 0.2s;
}

.filter-select option { background: var(--navy); }
.filter-select:focus { border-color: var(--amber); }

.filter-btn {
  background: var(--amber);
  color: var(--navy);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn:hover { background: var(--amber-light); }

.search-results {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.results-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.results-meta strong { color: var(--text); }

.no-results {
  text-align: center;
  padding: 80px 24px;
  color: var(--text-muted);
}

.no-results h3 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
}

/* ====== PAGINATION ====== */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s;
  padding: 0 12px;
}

.page-btn:hover { border-color: var(--navy); background: var(--navy); color: white; }
.page-btn.active { background: var(--navy); color: white; border-color: var(--navy); }

/* ====== ARTISAN PROFILE ====== */
.profile-page { max-width: 900px; margin: 0 auto; padding: 40px 24px 80px; }

.profile-hero {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 24px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--warm-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 3px solid var(--border);
  margin-bottom: 16px;
}

.profile-name {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.profile-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  align-items: center;
}

.profile-badges { display: flex; gap: 8px; flex-wrap: wrap; }

.profile-desc {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1rem;
  max-width: 600px;
}

.profile-contact-col {
  min-width: 220px;
}

.profile-website {
  background: var(--navy);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  text-align: center;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.profile-website:hover { background: var(--navy-light); }

.profile-phone {
  background: var(--warm-gray);
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.profile-section {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 20px;
}

.profile-section h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

/* ====== FORMS ====== */
.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-label .req { color: var(--error); margin-left: 2px; }

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(26, 39, 68, 0.08);
}

.form-textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-btn {
  background: var(--navy);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
  letter-spacing: 0.01em;
}

.form-btn:hover { background: var(--navy-light); transform: translateY(-1px); }
.form-btn-amber { background: var(--amber-dark); color: var(--navy); }
.form-btn-amber:hover { background: var(--amber); }

.star-rating {
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.star-rating input { display: none; }
.star-rating label {
  font-size: 1.8rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.1s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label { color: var(--amber); }

/* ====== REVIEWS ====== */
.review-item {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.review-item:last-child { border-bottom: none; }

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.reviewer-name { font-weight: 600; font-size: 0.9rem; }
.review-date { font-size: 0.8rem; color: var(--text-light); }
.review-comment { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* ====== PRICING ====== */
.pricing-page { max-width: 1000px; margin: 0 auto; padding: 60px 24px 80px; }

.pricing-hero {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy);
  margin-bottom: 12px;
}

.pricing-hero p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.plan-card {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.25s;
}

.plan-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.plan-card.featured {
  border-color: var(--amber);
  background: linear-gradient(160deg, #fffbf0 0%, white 60%);
}

.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.5rem;
  color: var(--navy);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Instrument Serif', serif;
}

.plan-period { font-size: 0.9rem; color: var(--text-muted); }

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.plan-cta {
  background: var(--navy);
  color: white;
  padding: 14px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.2s;
  display: block;
  letter-spacing: 0.01em;
}

.plan-cta:hover { background: var(--navy-light); transform: translateY(-1px); }
.plan-card.featured .plan-cta { background: var(--amber-dark); color: var(--navy); }
.plan-card.featured .plan-cta:hover { background: var(--amber); }

/* ====== REGISTER PAGE ====== */
.register-page {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.register-hero {
  text-align: center;
  margin-bottom: 40px;
}

.register-hero h1 {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.register-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

/* ====== SEO LANDING ====== */
.seo-header {
  background: var(--navy);
  padding: 56px 24px;
  text-align: center;
}

.seo-header h1 { color: white; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 8px; font-style: italic; }
.seo-header p { color: rgba(255,255,255,0.7); font-size: 1rem; }

.seo-content { max-width: 1200px; margin: 0 auto; padding: 48px 24px 80px; }

/* ====== ALERT / FLASH ====== */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.alert-success { background: var(--success-bg); color: var(--success); border: 1px solid #bbf7d0; }
.alert-error { background: var(--error-bg); color: var(--error); border: 1px solid #fecaca; }

/* ====== SUCCESS PAGE ====== */
.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.success-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  max-width: 500px;
  box-shadow: var(--shadow-lg);
}

.success-icon { font-size: 3.5rem; margin-bottom: 20px; }
.success-card h1 { font-size: 2rem; color: var(--navy); margin-bottom: 12px; }
.success-card p { color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }

/* ====== FOOTER ====== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 0;
  margin-top: 80px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

.footer-links {
  display: flex;
  gap: 48px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
  transition: color 0.15s;
}

.footer-col a:hover { color: white; }
.footer .nav-logo { color: white; }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ====== SCHEMA MARKUP HELPER ====== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    align-items: stretch;
    gap: 4px;
  }

  .nav-links.open { display: flex; }
  .nav-burger { display: flex; }
  .nav { position: relative; }

  .search-box { flex-direction: column; border-radius: var(--radius); }
  .search-divider { width: 100%; height: 1px; margin: 4px 0; }

  .hero { padding: 48px 24px 80px; }
  .hero h1 { font-size: 2rem; }

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

  .profile-hero { grid-template-columns: 1fr; }
  .profile-contact-col { min-width: auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { flex-wrap: wrap; gap: 32px; }
}

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