/* =============================================
   WILD AFRICA SAFARI — Main Stylesheet
   Pure HTML & CSS, no frameworks
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --green-dark:   #1a3d20;
  --green-mid:    #2e6b3e;
  --green-light:  #4a9e5c;
  --gold:         #c9932a;
  --gold-light:   #e8b84b;
  --sand:         #f5ead8;
  --sand-light:   #fdf7ef;
  --brown:        #5c3a1e;
  --text-dark:    #1e1e1e;
  --text-mid:     #3a3a3a;
  --text-light:   #666666;
  --white:        #ffffff;
  --shadow:       0 4px 18px rgba(0,0,0,0.12);
  --radius:       8px;
  --font-head:    'Georgia', 'Times New Roman', serif;
  --font-body:    'Trebuchet MS', 'Lucida Sans', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--sand-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--green-mid);
  text-decoration: none;
}

a:hover { text-decoration: underline; color: var(--gold); }

ul { list-style: none; }

/* ---------- Skip Link (Accessibility) ---------- */
.skip-link {
  position: absolute;
  top: -50px;
  left: 0;
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 18px;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ---------- Header & Nav ---------- */
header {
  background-color: var(--green-dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  font-size: 2rem;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: bold;
  color: var(--gold-light);
  line-height: 1.2;
}

.logo-sub {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--sand);
  font-family: var(--font-body);
  font-weight: normal;
  text-transform: uppercase;
}

nav ul {
  display: flex;
  gap: 4px;
}

nav ul li a {
  display: block;
  padding: 8px 14px;
  color: var(--sand);
  font-size: 0.9rem;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  letter-spacing: 0.02em;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: var(--green-mid);
  color: var(--gold-light);
  text-decoration: none;
}

.nav-cta a {
  background-color: var(--gold) !important;
  color: var(--green-dark) !important;
  font-weight: bold;
}

.nav-cta a:hover {
  background-color: var(--gold-light) !important;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-color: var(--green-dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 60px 24px;
}

.hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  margin-bottom: 18px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--sand);
  margin-bottom: 32px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: bold;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}

.btn-primary:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-dark);
  text-decoration: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background-color: var(--white);
  color: var(--green-dark);
  text-decoration: none;
}

.btn-green {
  background-color: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.btn-green:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
  text-decoration: none;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background-color: var(--green-dark);
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(255,255,255,0.02) 30px,
    rgba(255,255,255,0.02) 60px
  );
}

.page-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold-light);
  position: relative;
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--sand);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

/* ---------- Main Container ---------- */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 40px;
}

.gold-rule {
  width: 60px;
  height: 4px;
  background-color: var(--gold);
  margin: 14px 0 24px;
  border: none;
}

/* ---------- Cards Grid ---------- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background-color: var(--green-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
}

.card-body { padding: 22px; }

.card-tag {
  font-size: 0.75rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.card h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.card-footer {
  padding: 14px 22px;
  background-color: var(--sand-light);
  border-top: 1px solid #eee;
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ---------- Feature Strip (home) ---------- */
.features-strip {
  background-color: var(--green-dark);
  padding: 48px 0;
}

.features-strip .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.feature-item .icon { font-size: 2.4rem; margin-bottom: 12px; }

.feature-item h3 {
  font-family: var(--font-head);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.feature-item p {
  font-size: 0.88rem;
  color: var(--sand);
  line-height: 1.6;
}

/* ---------- Two-Column Layout ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col.reverse .col-img { order: -1; }

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .two-col.reverse .col-img { order: 0; }
}

/* ---------- Image Placeholder (no actual images, CSS art) ---------- */
.img-placeholder {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: var(--shadow);
}

.img-savanna {
  background: linear-gradient(170deg, #e8b84b 0%, #c9932a 30%, #5c3a1e 60%, #2e6b3e 100%);
}
.img-elephant {
  background: linear-gradient(160deg, #87CEEB 0%, #87CEEB 40%, #c4a882 40%, #a0855a 70%, #4a9e5c 70%, #2e6b3e 100%);
}
.img-lion {
  background: linear-gradient(160deg, #87CEEB 0%, #d4a852 50%, #8B6914 50%, #2e6b3e 75%, #1a3d20 100%);
}
.img-kenya {
  background: linear-gradient(160deg, #e74c3c 0%, #cc0000 50%, #1a1a1a 50%, #2e6b3e 75%, #2e6b3e 100%);
}
.img-tanzania {
  background: linear-gradient(160deg, #3498db 0%, #1a6bb5 50%, #f0c040 50%, #2e6b3e 75%, #1a3d20 100%);
}
.img-southafrica {
  background: linear-gradient(160deg, #007A4D 0%, #FFB612 33%, #DE3831 66%, #002395 66%, #ffffff 83%, #007A4D 83%, #007A4D 100%);
}
.img-botswana {
  background: linear-gradient(160deg, #75AADB 0%, #fff 40%, #1a1a1a 40%, #75AADB 70%);
}
.img-uganda {
  background: linear-gradient(160deg, #000 0%, #FCDC04 33%, #D90000 66%, #000 66%);
}
.img-leopard {
  background: linear-gradient(160deg, #c8a97e 0%, #8B6914 50%, #2e6b3e 75%, #1a3d20 100%);
}
.img-rhino {
  background: linear-gradient(160deg, #87CEEB 0%, #a0a0a0 50%, #c4a882 70%, #2e6b3e 100%);
}
.img-giraffe {
  background: linear-gradient(160deg, #87CEEB 0%, #87CEEB 30%, #e8b84b 30%, #c9932a 65%, #2e6b3e 65%, #2e6b3e 100%);
}
.img-zebra {
  background: repeating-linear-gradient(95deg, #1a1a1a 0px, #1a1a1a 12px, #f5ead8 12px, #f5ead8 22px);
}
.img-gorilla {
  background: linear-gradient(160deg, #4a9e5c 0%, #2e6b3e 40%, #1a1a1a 40%, #333 75%, #1a3d20 100%);
}
.img-birds {
  background: linear-gradient(160deg, #87CEEB 0%, #5ba3d0 50%, #4a9e5c 75%, #2e6b3e 100%);
}
.img-tips {
  background: linear-gradient(160deg, #e8b84b 0%, #c9932a 40%, #5c3a1e 70%, #2e6b3e 100%);
}
.img-camp {
  background: linear-gradient(160deg, #87CEEB 0%, #e8b84b 50%, #c9932a 50%, #2e6b3e 80%);
}

/* ---------- Wildlife Table ---------- */
.wildlife-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.wildlife-table th {
  background-color: var(--green-dark);
  color: var(--gold-light);
  padding: 14px 18px;
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.wildlife-table td {
  padding: 12px 18px;
  border-bottom: 1px solid #ece4d6;
  font-size: 0.92rem;
  vertical-align: top;
  color: var(--text-mid);
}

.wildlife-table tr:last-child td { border-bottom: none; }

.wildlife-table tr:nth-child(even) td {
  background-color: var(--sand-light);
}

.wildlife-table tr:hover td {
  background-color: #eaf3ea;
}

/* ---------- Packages ---------- */
.package-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.package-header {
  background-color: var(--green-dark);
  padding: 24px;
  text-align: center;
}

.package-header h3 {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--gold-light);
  margin-bottom: 6px;
}

.package-header .duration {
  font-size: 0.85rem;
  color: var(--sand);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--gold-light);
  margin: 8px 0 0;
}

.package-price span {
  font-size: 0.9rem;
  font-weight: normal;
  color: var(--sand);
}

.package-body {
  padding: 24px;
  flex: 1;
}

.package-features {
  list-style: none;
  margin-bottom: 20px;
}

.package-features li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.92rem;
  color: var(--text-mid);
}

.package-features li::before {
  content: "✓ ";
  color: var(--green-mid);
  font-weight: bold;
}

.package-featured .package-header {
  background-color: var(--gold);
}

.package-featured .package-header h3,
.package-featured .package-header .duration,
.package-featured .package-price,
.package-featured .package-price span {
  color: var(--green-dark);
}

.package-badge {
  background: var(--green-dark);
  color: var(--gold-light);
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 8px;
}

/* ---------- Info Box ---------- */
.info-box {
  background-color: var(--sand);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 24px 0;
}

.info-box h4 {
  font-family: var(--font-head);
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.info-box p, .info-box li {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.info-box ul { padding-left: 18px; list-style: disc; }

/* ---------- Tips List ---------- */
.tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 8px;
}

.tip-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--green-mid);
}

.tip-item .tip-icon { font-size: 1.8rem; margin-bottom: 10px; }

.tip-item h4 {
  font-family: var(--font-head);
  color: var(--green-dark);
  margin-bottom: 8px;
  font-size: 1rem;
}

.tip-item p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ---------- Form ---------- */
.form-section {
  background-color: var(--sand-light);
  padding: 64px 0;
}

.form-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-header {
  background-color: var(--green-dark);
  padding: 32px 36px;
  color: var(--white);
}

.form-header h2 {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.form-header p {
  color: var(--sand);
  font-size: 0.95rem;
}

.form-body { padding: 36px; }

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-weight: bold;
  font-size: 0.9rem;
  color: var(--green-dark);
  margin-bottom: 7px;
  letter-spacing: 0.02em;
}

.form-group label .required {
  color: #c0392b;
  margin-left: 3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 2px solid #ddd;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background-color: var(--sand-light);
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background-color: var(--white);
}

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

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

@media (max-width: 580px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-submit {
  text-align: center;
  padding-top: 8px;
}

.form-submit .btn {
  width: 100%;
  padding: 14px;
  font-size: 1.05rem;
}

/* ---------- Destination Hero ---------- */
.dest-flag-strip {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.dest-flag-strip span {
  background: var(--green-mid);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.dest-section {
  padding: 56px 0;
  border-bottom: 1px solid #ddd;
}

.dest-section:last-of-type { border-bottom: none; }

.dest-section h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--green-dark);
  margin-bottom: 6px;
}

.dest-section .dest-meta {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dest-section p { color: var(--text-mid); margin-bottom: 14px; font-size: 0.97rem; }

.highlights-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 16px 0;
}

.highlight-tag {
  background-color: var(--sand);
  border: 1px solid var(--gold);
  color: var(--brown);
  font-size: 0.82rem;
  padding: 5px 13px;
  border-radius: 20px;
}

/* ---------- Season Chart ---------- */
.season-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
  margin: 16px 0 8px;
}

.month-cell {
  text-align: center;
  border-radius: 4px;
  padding: 8px 0;
  font-size: 0.7rem;
  font-weight: bold;
}

.month-label {
  font-size: 0.62rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 4px;
}

.season-peak   { background-color: #2e6b3e; color: #fff; }
.season-good   { background-color: #87c492; color: #1a3d20; }
.season-ok     { background-color: #e8b84b; color: #5c3a1e; }
.season-low    { background-color: #e8e8e8; color: #888; }

.season-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-light);
}

.legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
  vertical-align: middle;
}

/* ---------- Testimonial ---------- */
.testimonials {
  background-color: var(--green-dark);
  padding: 60px 0;
}

.testimonials .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials .section-title { color: var(--gold-light); }
.testimonials .section-subtitle { color: var(--sand); }
.testimonials .gold-rule { background-color: var(--gold-light); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.testi-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 26px;
}

.testi-card p {
  color: var(--sand);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testi-author {
  font-weight: bold;
  color: var(--gold-light);
  font-size: 0.88rem;
}

.testi-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 10px; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  padding: 56px 20px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--green-dark);
  margin-bottom: 12px;
}

.cta-banner p {
  color: var(--brown);
  font-size: 1rem;
  margin-bottom: 28px;
}

/* ---------- Footer ---------- */
footer {
  background-color: var(--green-dark);
  color: var(--sand);
  padding: 48px 0 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px;
}

.footer-brand .logo-text { font-size: 1.2rem; }

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(245,234,216,0.7);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-head);
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-col ul li { margin-bottom: 8px; }

.footer-col ul li a {
  color: rgba(245,234,216,0.7);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold-light); text-decoration: none; }

.footer-bottom {
  margin-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(245,234,216,0.5);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background-color: var(--sand);
  padding: 10px 20px;
  font-size: 0.83rem;
  color: var(--text-light);
}

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

.breadcrumb a {
  color: var(--green-mid);
  text-decoration: none;
}

.breadcrumb a:hover { text-decoration: underline; }

.breadcrumb span { margin: 0 6px; color: var(--text-light); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; height: auto; padding: 14px 20px; gap: 12px; }
  nav ul { flex-wrap: wrap; justify-content: center; }
  .hero { min-height: 400px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  nav ul li a { padding: 6px 10px; font-size: 0.83rem; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-0 { margin-bottom: 0; }
.mt-8 { margin-top: 8px; }
.mt-24 { margin-top: 24px; }
.full-width { max-width: 100%; padding: 0; }
