/* ============================================================
   HHC Travel™ — Happy Holiday Couples Travel
   styles.css — Production Stylesheet
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --teal: #0E7C7B;
  --teal-dark: #0A5E5D;
  --teal-light: #12A09F;
  --coral: #E8603C;
  --coral-dark: #C94E2E;
  --coral-light: #F07A5A;
  --cream: #FDF6EC;
  --dark: #1A1A2E;
  --dark-lighter: #252542;
  --white: #FFFFFF;
  --gray-100: #F7F7F8;
  --gray-200: #E8E8EC;
  --gray-300: #D1D1D9;
  --gray-400: #9E9EAE;
  --gray-500: #6B6B80;
  --gray-600: #4A4A5E;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.16);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1280px;
  --nav-height: 72px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* Trademark symbol styling — subtle and professional */
.tm {
  font-size: 0.5em;
  vertical-align: super;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  line-height: 0;
  opacity: 0.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

/* --- Typography --- */
h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.subtitle {
  font-size: 1.125rem;
  color: var(--gray-500);
  max-width: 640px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

/* --- Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section--cream {
  background-color: var(--cream);
}

.section--dark {
  background-color: var(--dark);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--teal);
  color: var(--white);
}

.btn--primary:hover {
  background-color: var(--teal-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn--secondary:hover {
  background-color: var(--white);
  color: var(--dark);
}

.btn--coral {
  background-color: var(--coral);
  color: var(--white);
}

.btn--coral:hover {
  background-color: var(--coral-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
}

.btn--outline:hover {
  background-color: var(--teal);
  color: var(--white);
}

.btn--lg {
  padding: 1rem 2.25rem;
  font-size: 1.05rem;
}

.btn--white {
  background-color: var(--white);
  color: var(--coral);
}

.btn--white:hover {
  background-color: var(--cream);
  transform: translateY(-1px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--dark);
  height: var(--nav-height);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.nav__logo-icon {
  font-size: 1.6rem;
}

.nav__logo span {
  color: var(--coral);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  color: var(--gray-300);
  font-size: 0.925rem;
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--coral);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--white);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  margin-left: 0.5rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(14, 124, 123, 0.85) 0%, rgba(26, 26, 46, 0.9) 50%, rgba(232, 96, 60, 0.7) 100%),
    linear-gradient(180deg, var(--dark) 0%, var(--teal-dark) 100%);
  background-size: cover;
  color: var(--white);
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(232, 96, 60, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 124, 123, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero h1 {
  color: var(--white);
  font-size: 4rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.5px;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FEATURE CARDS (Why Travel Together)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.6rem;
  color: var(--white);
}

.feature-card h4 {
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-500);
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.category-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  transition: all var(--transition);
}

.category-card__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--dark));
  transition: transform var(--transition-slow);
}

.category-card:nth-child(2n) .category-card__bg {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.category-card:nth-child(3n) .category-card__bg {
  background: linear-gradient(135deg, var(--dark-lighter), var(--dark));
}

.category-card:nth-child(5n) .category-card__bg {
  background: linear-gradient(135deg, var(--teal), var(--dark));
}

.category-card:hover .category-card__bg {
  transform: scale(1.08);
}

.category-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  text-align: center;
  color: var(--white);
}

.category-card__icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.category-card__name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

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

/* ============================================================
   VACATION CARDS
   ============================================================ */
.vacations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.vacation-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.vacation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.vacation-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.vacation-card__image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

/* Placeholder gradient backgrounds for images */
.vacation-card__image--placeholder {
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
}

.vacation-card:nth-child(2) .vacation-card__image--placeholder {
  background: linear-gradient(135deg, #2d8f6f 0%, #145a4a 100%);
}

.vacation-card:nth-child(3) .vacation-card__image--placeholder {
  background: linear-gradient(135deg, var(--coral) 0%, #a84429 100%);
}

.vacation-card:nth-child(4) .vacation-card__image--placeholder {
  background: linear-gradient(135deg, #c9a84c 0%, #8b6e2f 100%);
}

.vacation-card:nth-child(5) .vacation-card__image--placeholder {
  background: linear-gradient(135deg, #1a8fc4 0%, #0d5a7e 100%);
}

.vacation-card:nth-child(6) .vacation-card__image--placeholder {
  background: linear-gradient(135deg, #6b5ea7 0%, #3d2e6b 100%);
}

.vacation-card:hover .vacation-card__image-bg {
  transform: scale(1.05);
}

/* Coming Soon badge */
.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(232, 96, 60, 0.4);
}

.badge--coming-soon {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
}

.vacation-card__body {
  padding: 1.5rem;
}

.vacation-card__location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.vacation-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.vacation-card__desc {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vacation-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.vacation-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--teal);
}

.vacation-card__price small {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--gray-400);
  font-weight: 400;
}

.vacation-card__action {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.vacation-card__action:hover {
  gap: 0.5rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  max-width: 560px;
  margin: 0 auto 2rem;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
  text-align: center;
}

.newsletter__form {
  display: flex;
  gap: 0.75rem;
  max-width: 500px;
  margin: 2rem auto 0;
}

.newsletter__input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  background: var(--white);
}

.newsletter__input:focus {
  border-color: var(--teal);
}

.newsletter__success {
  display: none;
  color: var(--teal);
  font-weight: 600;
  margin-top: 1rem;
}

.newsletter__success.visible {
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background-color: var(--dark);
  color: var(--gray-300);
  padding: 4rem 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

.footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.footer__logo span {
  color: var(--coral);
}

.footer__heading {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links li {
  margin-bottom: 0.65rem;
}

.footer__links a {
  font-size: 0.85rem;
  color: var(--gray-400);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--coral-light);
}

.footer__beans-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.75rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.footer__bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
}

.footer__bottom p {
  margin-bottom: 0;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.legal h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal__updated {
  color: var(--gray-400);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-200);
}

.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal p,
.legal li {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.8;
}

.legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal li {
  margin-bottom: 0.5rem;
}

/* ============================================================
   TRAVEL AGENT PAGE
   ============================================================ */
.agent-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--teal-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.agent-hero h1 {
  color: var(--white);
}

.agent-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.agent-benefit {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}

.agent-benefit__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 999;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }

  .hero h1 { font-size: 3rem; }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .vacations-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .agent-benefits {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (max-width: 768px)
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }

  .section { padding: 3.5rem 0; }

  /* Mobile Nav */
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem 1.5rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform var(--transition);
    z-index: 999;
  }

  .nav__links.open {
    transform: translateX(0);
  }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    width: 100%;
  }

  .nav__cta {
    margin-left: 0;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    padding: 5rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero__subtitle {
    font-size: 1.05rem;
  }

  .hero__buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Grids */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .vacations-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  /* Newsletter */
  .newsletter__form {
    flex-direction: column;
  }

  /* Agent */
  .agent-benefits {
    grid-template-columns: 1fr;
  }

  /* CTA */
  .cta {
    padding: 3.5rem 1.5rem;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (max-width: 480px)
   ============================================================ */
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }

  .hero h1 { font-size: 2rem; }
  .hero { min-height: 80vh; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .category-card__icon {
    font-size: 1.5rem;
  }

  .category-card__name {
    font-size: 0.78rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .btn--lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }
}
