/* =========================================================
   HAULOVER BEACH — Global Stylesheet
   ========================================================= */

/* --- Custom Properties --- */
:root {
  --ocean: #006994;
  --ocean-dark: #004f70;
  --sky: #4BA8D4;
  --aqua: #00BCD4;
  --coral: #FF6040;
  --coral-dark: #e04e30;
  --sand: #FFF8E7;
  --sand-dark: #F5E6C8;
  --white: #FFFFFF;
  --dark: #1A2744;
  --text: #2D3748;
  --text-light: #6B7280;
  --border: #E2ECF3;
  --shadow: 0 2px 16px rgba(0,105,148,0.10);
  --shadow-md: 0 4px 24px rgba(0,105,148,0.14);
  --radius: 12px;
  --radius-sm: 6px;
  --font-display: 'Anton', Impact, sans-serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 600; color: var(--dark); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.display { font-family: var(--font-display); letter-spacing: 0.02em; text-transform: uppercase; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 3rem; }
.section-title h2 { margin-bottom: 0.75rem; }
.section-title p { color: var(--text-light); max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

/* --- Navigation --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--ocean);
}
.logo-sub {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--coral);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links li a {
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  transition: background 0.15s, color 0.15s;
}
.nav-links li a:hover { background: var(--sand); color: var(--ocean); }
.nav-links li a.active { color: var(--ocean); font-weight: 600; }
.btn-store {
  background: var(--coral) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.1rem !important;
  border-radius: 100px !important;
  font-weight: 600 !important;
  transition: background 0.15s !important;
}
.btn-store:hover { background: var(--coral-dark) !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.btn-primary { background: var(--coral); color: var(--white); }
.btn-primary:hover { background: var(--coral-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(255,96,64,0.35); }
.btn-secondary { background: var(--white); color: var(--ocean); border: 2px solid var(--ocean); }
.btn-secondary:hover { background: var(--ocean); color: var(--white); transform: translateY(-1px); }
.btn-ocean { background: var(--ocean); color: var(--white); }
.btn-ocean:hover { background: var(--ocean-dark); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline-white:hover { background: var(--white); color: var(--ocean); }
.btn-lg { padding: 1rem 2.2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.55rem 1.2rem; font-size: 0.9rem; }

/* --- Hero --- */
.hero {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--sky) 60%, #7DD3FC 100%);
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero .subtitle { font-size: clamp(1rem, 2vw, 1.2rem); opacity: 0.9; max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

/* Page Hero (inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--ocean) 0%, var(--sky) 100%);
  color: var(--white);
  padding: 4rem 0 3.5rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { opacity: 0.85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
  margin-bottom: 1rem;
}
.breadcrumb a { opacity: 0.85; }
.breadcrumb a:hover { opacity: 1; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--ocean);
  color: var(--white);
  padding: 1.5rem 0;
}
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.stat-item { text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 2rem; letter-spacing: 0.03em; color: var(--white); display: block; }
.stat-label { font-size: 0.8rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.08em; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.card-grid { display: grid; gap: 1.5rem; }
.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Quick Links Grid */
.quick-links { background: var(--sand); }
.quick-link-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
  color: var(--dark);
  text-decoration: none;
}
.quick-link-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.quick-link-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.quick-link-card h3 { font-size: 1.05rem; margin-bottom: 0.35rem; color: var(--ocean); }
.quick-link-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* Info Cards */
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border-left: 4px solid var(--aqua);
}
.info-card h3 { color: var(--ocean); margin-bottom: 0.5rem; font-size: 1.05rem; }
.info-card p { color: var(--text-light); font-size: 0.95rem; margin: 0; }

/* --- FAQ Accordion --- */
.faq-section { background: var(--white); }
.faq-category { margin-bottom: 3rem; }
.faq-category-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--ocean);
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sand-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
  transition: color 0.15s;
  background: none;
  border: none;
  cursor: pointer;
}
.faq-question:hover { color: var(--ocean); }
.faq-question.open { color: var(--ocean); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: transform 0.25s, background 0.15s;
  color: var(--ocean);
}
.faq-question.open .faq-chevron { transform: rotate(180deg); background: var(--ocean); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--text-light); font-size: 0.97rem; line-height: 1.7; }
.faq-answer-inner strong { color: var(--dark); }
.faq-answer-inner a { color: var(--ocean); text-decoration: underline; }

/* --- Newsletter --- */
.newsletter { background: linear-gradient(135deg, var(--ocean) 0%, var(--ocean-dark) 100%); color: var(--white); }
.newsletter h2 { color: var(--white); margin-bottom: 0.75rem; }
.newsletter p { opacity: 0.85; margin-bottom: 1.75rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; max-width: 500px; }
.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.85rem 1.25rem;
  border-radius: 100px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  outline: none;
  border: 1px solid rgba(255,255,255,0.3);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.6); }
.newsletter-note { font-size: 0.8rem; opacity: 0.6; margin-top: 0.75rem; }

/* --- Essentials / Product Cards --- */
.essentials { background: var(--sand); }
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.product-card .product-icon { font-size: 2.2rem; }
.product-card h4 { font-size: 1rem; color: var(--dark); }
.product-card p { font-size: 0.88rem; color: var(--text-light); flex: 1; margin: 0; }
.product-card a { margin-top: auto; }

/* --- What to Expect --- */
.expect-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.expect-item { text-align: center; }
.expect-icon { font-size: 3rem; margin-bottom: 1rem; }
.expect-item h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.expect-item p { color: var(--text-light); font-size: 0.95rem; }

/* --- Partners / Sponsors --- */
.partners { background: var(--sand); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.partner-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.partner-tier {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  background: #FFF0EC;
  border-radius: 100px;
  padding: 0.25rem 0.75rem;
  margin-bottom: 0.75rem;
}
.partner-card h3 { margin-bottom: 0.5rem; }
.partner-card p { font-size: 0.9rem; color: var(--text-light); margin-bottom: 1rem; }

/* --- Blog Cards --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  background: linear-gradient(135deg, var(--sky) 0%, var(--aqua) 100%);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.blog-card-body h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--dark); }
.blog-card-body p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 1rem; }
.read-more { color: var(--ocean); font-size: 0.9rem; font-weight: 600; display: flex; align-items: center; gap: 0.3rem; }
.read-more::after { content: '→'; }

/* --- Checklist --- */
.checklist { list-style: none; display: grid; gap: 0.6rem; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.97rem;
}
.checklist li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--aqua);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* --- Alert / Note Box --- */
.note-box {
  background: var(--sand);
  border-left: 4px solid var(--coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  margin: 1.5rem 0;
}
.note-box strong { color: var(--coral); }

/* --- Two-column content layout --- */
.content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 3rem; align-items: start; }
.content-grid.reverse { grid-template-columns: 1fr 2fr; }
.sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
.sidebar-widget { background: var(--sand); border-radius: var(--radius); padding: 1.5rem; }
.sidebar-widget h4 { color: var(--ocean); margin-bottom: 0.75rem; font-size: 1rem; }
.sidebar-widget ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sidebar-widget ul li a { color: var(--text); font-size: 0.9rem; display: flex; align-items: center; gap: 0.5rem; }
.sidebar-widget ul li a:hover { color: var(--ocean); }
.sidebar-widget ul li a::before { content: '→'; color: var(--coral); font-size: 0.8rem; }

/* --- Hotels --- */
.hotel-search-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2rem;
  margin-bottom: 3rem;
  border: 1px solid var(--border);
}
.hotel-search-box h3 { color: var(--ocean); margin-bottom: 0.5rem; }
.hotel-search-box p { color: var(--text-light); margin-bottom: 1.5rem; font-size: 0.95rem; }
.hotel-search-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Contact Form --- */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.9rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group textarea, .form-group select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.97rem;
  transition: border-color 0.15s;
  background: var(--white);
  color: var(--text);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(75,168,212,0.15);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* --- Map Embed --- */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; }

/* --- Stats / Media Kit --- */
.media-stat {
  text-align: center;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.media-stat .num { font-family: var(--font-display); font-size: 2.5rem; color: var(--ocean); display: block; }
.media-stat .label { font-size: 0.85rem; color: var(--text-light); }

/* --- Footer --- */
footer {
  background: var(--dark);
  color: var(--white);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 4rem 1.5rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.footer-brand p { font-size: 0.9rem; opacity: 0.6; margin-bottom: 1.5rem; }
.social-links { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.social-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.08);
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  transition: all 0.15s;
}
.social-links a:hover { background: var(--coral); color: var(--white); }
.footer-links h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-bottom: 1rem; }
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links ul li a { font-size: 0.9rem; opacity: 0.75; transition: opacity 0.15s; }
.footer-links ul li a:hover { opacity: 1; color: var(--sky); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  opacity: 0.45;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-ocean { color: var(--ocean); }
.text-coral { color: var(--coral); }
.text-light { color: var(--text-light); }
.bg-sand { background: var(--sand); }
.bg-white { background: var(--white); }
.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-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

/* --- Weather Widget --- */
.weather-widget-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .content-grid, .content-grid.reverse { grid-template-columns: 1fr; }
  .sidebar { flex-direction: row; flex-wrap: wrap; }
  .sidebar-widget { flex: 1; min-width: 200px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section { padding: 3.5rem 0; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { padding: 0.75rem 0.5rem; border-radius: 0; display: block; border-bottom: 1px solid var(--border); }
  .nav-links li:last-child a { border-bottom: none; }
  .btn-store { border-radius: var(--radius-sm) !important; }
  .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .card-grid-2 { grid-template-columns: 1fr; }
  .expect-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 4rem 0 3.5rem; }
  .hero-actions { gap: 0.75rem; }
  .stats-grid { gap: 1.25rem 2rem; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { min-width: 100%; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-title h2 { font-size: 1.5rem; }
}
