/* ===== ROOT VARIABLES ===== */
:root {
  /* Colors - Modern Light Theme */
  --bg: #fafbfc;
  --card: #ffffff;
  --text: #111827;
  --text-light: #6b7280;
  --muted: #9ca3af;
  --accent: #ff6b2f;
  --accent-dark: #e55a23;
  --accent-2: #10b981;
  --border-color: #e5e7eb;
  --elev-bg: #f9fafb;
  --elev-bg-hover: #f3f4f6;
  
  /* Layout */
  --maxw: 1280px;
  --gap: 24px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow: 0 4px 16px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.06);
  
  /* Border Radius */
  --radius: 16px;
  --radius-sm: 10px;
  
  /* Borders */
  --border: 1px solid var(--border-color);
  --border-strong: 2px solid var(--border-color);
  
  /* Backgrounds */
  --page-bg: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
  --header-bg: rgba(255, 255, 255, 0.92);
  --field-bg: #ffffff;
  --field-focus-bg: #fafbfc;
  
  /* Typography */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

/* ===== ANIMATIONS & KEYFRAMES ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Scroll reveal animation utility */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESET & BASE ===== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--page-bg);
  background-attachment: fixed;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  font-size: 16px;
  animation: fadeIn 0.5s ease-in;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}

h1 {
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  font-weight: 800;
}

h2 {
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
}

h3 {
  font-size: clamp(18px, 2vw, 20px);
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(16px, 1.5vw, 18px);
}

p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
}

.lead {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--text-light);
  line-height: 1.6;
  font-weight: 400;
}

.micro {
  font-size: 14px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

/* ===== HEADER ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: var(--border);
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  transition: opacity 0.2s ease;
  animation: slideInLeft 0.6s ease-out;
}

.brand:hover {
  opacity: 0.8;
}

.logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: scaleIn 0.5s ease-out;
}

.logo:hover {
  transform: scale(1.05) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.brand-text .brand-name {
  font-weight: 800;
  font-size: 18px;
}

.brand-text .brand-sub {
  font-size: 13px;
  color: var(--muted);
}

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

.site-nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  font-size: 15px;
  animation: fadeInUp 0.6s ease-out backwards;
}

.site-nav a:nth-child(1) { animation-delay: 0.1s; }
.site-nav a:nth-child(2) { animation-delay: 0.2s; }
.site-nav a:nth-child(3) { animation-delay: 0.3s; }
.site-nav a:nth-child(4) { animation-delay: 0.4s; }
.site-nav a:nth-child(5) { animation-delay: 0.5s; }

.site-nav a:hover {
  color: var(--text);
  background: var(--elev-bg);
  transform: translateY(-2px);
}

.cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.cta::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s;
}

.cta:hover::after {
  width: 200px;
  height: 200px;
}

.cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-lg);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: var(--border);
  background: var(--card);
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  background: var(--elev-bg);
  border-color: #d1d5db;
}

/* ===== HERO ===== */
.hero {
  display: flex;
  flex-direction: column;
  gap: 48px;
  margin: 80px 0 100px;
  padding: 60px 48px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
  animation: fadeInUp 0.8s ease-out;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content > * {
  animation: fadeInUp 0.8s ease-out backwards;
}

.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.3s; }
.hero-content > *:nth-child(3) { animation-delay: 0.4s; }
.hero-content > *:nth-child(4) { animation-delay: 0.5s; }
.hero-content > *:nth-child(5) { animation-delay: 0.6s; }

.buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 16px;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover {
  background: var(--accent-dark);
}

.btn.ghost {
  background: transparent;
  border: var(--border-strong);
  color: var(--text);
}

.btn.ghost:hover {
  background: var(--elev-bg);
  border-color: #d1d5db;
}

.btn.whatsapp {
  background: var(--accent-2);
  color: #fff;
}

.btn.whatsapp:hover {
  background: #0e9f6e;
}

.hero-visual {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: var(--border);
  overflow: hidden;
  animation: fadeInUp 0.8s ease-out 0.7s backwards;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.hero-visual:hover img {
  transform: scale(1.05);
}

/* ===== TRUST BAR ===== */
.trustbar {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  animation: fadeIn 1s ease-out 0.8s backwards;
}

.trustbar > span {
  transition: color 0.3s ease, transform 0.3s ease;
}

.trustbar > span:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.trustbar .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--border-color);
  animation: pulse 2s ease-in-out infinite;
}
}

/* ===== PAGE HERO ===== */
.page-hero {
  margin: 60px 0 80px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 60px 48px;
  border: var(--border);
}

.page-hero h1 {
  font-size: clamp(26px, 4vw, 36px);
  margin-bottom: 16px;
}

.breadcrumbs {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 16px;
}

/* ===== SECTIONS ===== */
.section {
  margin-bottom: 80px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.section-head h2 {
  position: relative;
  display: inline-block;
}

.section-head h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 2px;
  animation: shimmer 3s ease-in-out infinite;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--elev-bg);
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  border: var(--border);
  animation: pulse 2s ease-in-out infinite;
  transition: all 0.3s ease;
}

.pill:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

/* ===== GRID & CARDS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
  border-color: var(--accent);
}

.card h3 {
  margin: 0 0 12px 0;
  font-size: 20px;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  background: var(--elev-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: var(--border);
}

.icon svg {
  transition: transform 0.3s ease;
  width: 28px;
  height: 28px;
}

.card:hover .icon {
  background: rgba(255, 107, 47, 0.1);
  transform: scale(1.1) rotate(10deg);
  border-color: var(--accent);
}

.card:hover .icon svg {
  transform: scale(1.2);
}

/* ===== PACKAGES ===== */
.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pkg {
  background: var(--card);
  padding: 40px 32px;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.pkg:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent);
}

.pkg h4 {
  margin: 0 0 12px;
  font-size: 18px;
  transition: color 0.3s ease;
}

.pkg:hover h4 {
  color: var(--accent);
}

.price {
  font-size: 28px;
  font-weight: 800;
  transition: transform 0.3s ease;
}

.pkg:hover .price {
  transform: scale(1.1);
}
  margin: 12px 0 24px;
  color: var(--accent);
}

.pkg ul {
  padding-left: 0;
  list-style: none;
  color: var(--text-light);
  margin: 0 0 32px;
}

.pkg ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--elev-bg);
  font-size: 15px;
}

.pkg ul li:last-child {
  border-bottom: none;
}

.choose {
  display: block;
  text-align: center;
  background: var(--accent);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.choose::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.choose:hover::before {
  width: 300px;
  height: 300px;
}

.choose:hover {
  background: var(--accent-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
}

/* Featured Package */
.pkg.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
}

.pkg.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.tag {
  font-size: 12px;
  background: var(--elev-bg);
  padding: 4px 10px;
  border-radius: 6px;
  margin-left: 8px;
  color: var(--muted);
  font-weight: 600;
}

/* ===== BILLBOARD ===== */
.billboard {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: start;
}

.bb-image {
  height: 320px;
  border-radius: var(--radius);
  background-image: url('images/billboards2.png');
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
  border: var(--border);
  margin-bottom: 20px;
}

.bb-panel {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow-sm);
}

.bb-panel h4 {
  margin-top: 0;
}

.bb-panel ul {
  padding-left: 0;
  list-style: none;
}

.bb-panel ul li {
  padding: 10px 0;
  border-bottom: 1px solid var(--elev-bg);
}

.bb-panel ul li:last-child {
  border-bottom: none;
}

/* ===== TESTIMONIALS / SPLIT ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.testi {
  background: var(--card);
  padding: 32px;
  border-radius: var(--radius);
  border: var(--border);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.testi:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 0 0 16px;
  color: var(--text-light);
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
}

/* ===== CONTACT & FOOTER ===== */
.contact-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer {
  margin-top: 120px;
  border-top: var(--border);
  padding: 40px 0;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* ===== CONTACT MODAL ===== */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--card);
  margin: 20px;
  padding: 0;
  border-radius: var(--radius);
  max-width: 560px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: modalSlideIn 0.3s ease;
  border: var(--border);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  border-bottom: var(--border);
}

.modal-header h2 {
  margin: 0;
  color: var(--text);
  font-size: 20px;
}

.modal-header div {
  flex: 1;
}

.close {
  color: var(--muted);
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
  margin-left: 16px;
}

.close:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.contact-form {
  padding: 32px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
}

.form-group input,
.form-group select,
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: var(--border);
  border-radius: var(--radius-sm);
  background: var(--field-bg);
  color: var(--text);
  font-size: 15px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--field-focus-bg);
  box-shadow: 0 0 0 4px rgba(255, 107, 47, 0.15);
  transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group select {
  cursor: pointer;
}

.form-group select option {
  background: var(--card);
  color: var(--text);
  padding: 8px;
}

.form-group select option:disabled {
  color: var(--muted);
  font-style: italic;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  color: var(--text-light);
  font-size: 15px;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: var(--border-strong);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.form-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: var(--border);
}

.form-actions .btn {
  flex: 1;
  text-align: center;
  justify-content: center;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 980px) {
  .site-header {
    position: sticky;
    top: 0;
  }
  
  .site-header-inner {
    flex-wrap: wrap;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .site-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding: 16px;
    background: var(--elev-bg);
    border-radius: var(--radius);
    margin-top: 16px;
    border: var(--border);
  }
  
  .site-nav.open {
    display: flex;
  }
  
  .site-nav a {
    width: 100%;
    text-align: left;
  }
  
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .packages {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .billboard {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .hero {
    padding: 40px 32px;
    margin: 60px 0 80px;
    gap: 32px;
  }
  
  .page-hero {
    padding: 40px 32px;
    margin: 40px 0 60px;
  }
  
  .section {
    margin-bottom: 60px;
  }
}

@media (max-width: 650px) {
  .wrap {
    padding: 0 20px;
  }
  
  .grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .packages {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .site-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .hero {
    padding: 32px 24px;
    margin: 40px 0 60px;
  }
  
  .page-hero {
    padding: 32px 24px;
    margin: 32px 0 48px;
  }
  
  h1 {
    font-size: 26px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .section {
    margin-bottom: 48px;
  }
  
  .site-footer {
    margin-top: 80px;
    padding: 32px 0;
  }
}

/* Desktop: Hero stays single column (full width image) */
