:root {
  --navy: #0a1f3d;
  --navy-light: #123a6b;
  --navy-dark: #061428;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a8863a;
  --cream: #faf7f0;
  --sky: #eef4fb;
  --white: #ffffff;
  --text-body: #0d1829;
  --text-muted: #1a2538;
  --text-base: 0.9375rem;
  --text-desc: 1rem;
  --text-small: 0.875rem;
  --font-body: 'Inter', 'Segoe UI', 'SF Pro Display', -apple-system,
               BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  font-size: var(--text-base);
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: var(--font-body);
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ── Shared typography ── */
.eyebrow {
  color: var(--gold-dark);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.heading-navy {
  color: var(--navy);
  font-weight: 800;
}

.text-muted {
  color: var(--text-muted);
  font-size: var(--text-base);
  line-height: 1.75;
  font-weight: 500;
}

.page-desc {
  font-size: var(--text-desc);
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-body);
}

.body-desc {
  color: var(--text-body);
  font-size: var(--text-base);
  line-height: 1.75;
  font-weight: 500;
}

.card-title {
  color: var(--navy);
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.625rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
}

/* ── Navbar ── */
.site-nav {
  background-color: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-link .brand-logo {
  height: 46px;
  width: 46px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-link .brand-name {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 5px;
}

.nav-links {
  flex-shrink: 0;
}

.nav-pill {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 24px;
  border: 2px solid rgba(201, 168, 76, 0.55);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  letter-spacing: 0.4px;
  line-height: 1.2;
}

.nav-pill:hover {
  color: var(--gold-light);
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(201, 168, 76, 0.3);
}

.nav-pill.active {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  font-weight: 800;
  font-size: 0.875rem;
  box-shadow: 0 2px 10px rgba(201, 168, 76, 0.5);
}

.brand-word {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: scale(0.85);
  transition: opacity 0.5s, filter 0.5s, transform 0.5s;
  letter-spacing: 1.2px;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  white-space: nowrap;
}

.brand-word.brand-trading {
  color: var(--gold);
}

.brand-word.brand-light {
  color: var(--white);
}

.brand-word.show {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}

/* ── Shared buttons ── */
.btn-primary {
  background-color: var(--navy);
  color: var(--white);
  padding: 0.875rem 1.625rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  border: 2px solid var(--navy);
}

.btn-primary:hover {
  background-color: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 31, 61, 0.35);
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold-dark);
  background: var(--white);
  padding: 0.875rem 1.625rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
  padding: 0.875rem 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background-color: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.5);
}

/* ── Shared footer ── */
.site-footer {
  background-color: var(--navy-dark);
  border-top: 3px solid var(--gold);
}

.site-footer h3 {
  color: var(--white);
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.3;
}

.site-footer p,
.site-footer a {
  color: #ffffff;
  font-size: var(--text-base);
  line-height: 1.75;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.site-footer h4 {
  color: var(--gold-light);
  font-size: 1.1875rem;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--gold-light);
}

.site-footer .footer-divider {
  border-top: 1px solid rgba(201, 168, 76, 0.25);
}

.site-footer .copyright {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-small);
  font-weight: 500;
}

/* ══════════════════════════════════════
   HOME PAGE — Bold navy hero + gold stats
   ══════════════════════════════════════ */
.page-home .hero-home {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.page-home .hero-home::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.page-home .hero-home::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
}

.page-home .hero-home .eyebrow {
  color: var(--gold-light);
}

.page-home .hero-home h1 {
  color: var(--white);
  font-size: 3.25rem;
  line-height: 1.15;
}

.page-home .hero-home .hero-sub {
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--text-desc);
  line-height: 1.75;
  font-weight: 500;
}

.page-home .hero-home .btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.page-home .hero-home .btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--navy-dark);
}

.page-home .hero-home .btn-outline-gold {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: transparent;
}

.page-home .hero-home .btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.page-home .stat-row {
  border-top: 1px solid rgba(201, 168, 76, 0.35);
}

.page-home .stat-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 0.75rem;
  padding: 1rem 1.5rem;
  transition: all 0.3s ease;
}

.page-home .stat-item:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
  transform: translateY(-3px);
}

.page-home .stat-item .stat-num {
  color: var(--gold-light);
  font-size: 1.75rem;
  font-weight: 800;
}

.page-home .stat-item .stat-label {
  color: rgba(255, 255, 255, 0.95);
  font-size: var(--text-small);
  font-weight: 600;
  margin-top: 0.25rem;
}

.page-home .section-features {
  background: var(--sky);
}

.page-home .feature-card {
  background: var(--white);
  border: 2px solid #d4dce8;
  border-top: 4px solid var(--gold);
  border-radius: 0.75rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(10, 31, 61, 0.06);
}

.page-home .feature-card:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(10, 31, 61, 0.14);
  transform: translateY(-5px);
}

.page-home .feature-card h3 {
  color: var(--navy);
  font-size: 1.3125rem;
  font-weight: 700;
}

.page-home .feature-card p {
  color: var(--text-body);
  font-size: var(--text-base);
  line-height: 1.75;
  font-weight: 500;
}

/* ══════════════════════════════════════
   ABOUT PAGE — Warm cream + story cards
   ══════════════════════════════════════ */
.page-about {
  font-family: var(--font-body);
}

.page-about .page-desc,
.page-about .body-desc {
  font-family: var(--font-body);
  font-size: var(--text-desc);
  line-height: 1.75;
  font-weight: 500;
  color: var(--text-body);
}

.page-about .hero-about {
  background: linear-gradient(120deg, var(--cream) 0%, #fff8e7 50%, var(--cream) 100%);
  border-bottom: 4px solid var(--gold);
  position: relative;
}

.page-about .hero-about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.page-about .hero-about h1 {
  color: var(--navy);
  font-size: 2.75rem;
}

.page-about .section-story {
  background: var(--white);
}

.page-about .story-block h2 {
  color: var(--navy);
  border-left: 5px solid var(--gold);
  padding-left: 1rem;
}

.page-about .info-card {
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.page-about .info-card:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(10, 31, 61, 0.1);
}

.page-about .info-card.mission {
  background: linear-gradient(135deg, #fff9eb 0%, var(--cream) 100%);
  border-left: 5px solid var(--gold);
}

.page-about .info-card.vision {
  background: linear-gradient(135deg, #eef4fb 0%, #e3ecf7 100%);
  border-left: 5px solid var(--navy);
}

.page-about .info-card.location {
  background: linear-gradient(135deg, #f0faf0 0%, #e8f5e9 100%);
  border-left: 5px solid #2e7d4f;
}

.page-about .info-card h3 {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
}

.page-about .stats-about {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.page-about .stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(201, 168, 76, 0.45);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}

.page-about .stat-box:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  transform: scale(1.03);
}

.page-about .stat-box .stat-num {
  color: var(--gold-light);
  font-size: 2.5rem;
  font-weight: 800;
}

.page-about .stat-box .stat-title {
  color: var(--white);
  font-weight: 700;
  font-size: var(--text-base);
}

.page-about .stat-box .stat-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--text-small);
}

/* ══════════════════════════════════════
   PRODUCTS PAGE — Catalog grid + bold cards
   ══════════════════════════════════════ */
.page-products .hero-products {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.page-products .hero-products::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 20px,
      rgba(201, 168, 76, 0.04) 20px,
      rgba(201, 168, 76, 0.04) 40px
    );
  pointer-events: none;
}

.page-products .hero-products h1 {
  color: var(--white);
  font-size: 2.75rem;
}

.page-products .hero-products .eyebrow {
  color: var(--gold-light);
}

.page-products .hero-products p {
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--text-desc);
  line-height: 1.75;
  font-weight: 500;
}

.page-products .section-catalog {
  background: linear-gradient(180deg, var(--sky) 0%, var(--white) 100%);
}

.page-products .product-card {
  border-radius: 0.875rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #fff9eb, var(--cream));
  border: 2px solid var(--gold-dark);
}

.page-products .product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--navy);
}

.page-products .product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 31, 61, 0.18);
}

.page-products .product-card h3 {
  color: var(--navy);
  font-weight: 700;
  font-size: 1.3125rem;
}

.page-products .product-card p {
  color: var(--text-body);
  font-size: var(--text-base);
  line-height: 1.75;
  font-weight: 500;
}

.page-products .btn-enquire {
  color: var(--navy);
  border: 2px solid var(--gold);
  background: var(--gold);
  font-size: var(--text-small);
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  text-decoration: none;
  display: inline-block;
  transition: all 0.25s ease;
}

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

.page-products .cta-products {
  background: var(--white);
  border-top: 4px solid var(--navy);
  border-bottom: 4px solid var(--gold);
}

.page-products .cta-products h2 {
  color: var(--navy);
  font-weight: 800;
}

.page-products .cta-products p {
  color: var(--text-body);
  font-weight: 600;
  font-size: var(--text-desc);
  line-height: 1.75;
}

.page-products .cta-products .btn-gold {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.page-products .cta-products .btn-gold:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  color: var(--gold-light);
}

/* ══════════════════════════════════════
   CONTACT PAGE — Split panel + form card
   ══════════════════════════════════════ */
.page-contact .hero-contact {
  background: linear-gradient(90deg, var(--navy) 60%, var(--navy-light) 100%);
  border-bottom: 4px solid var(--gold);
}

.page-contact .hero-contact h1 {
  color: var(--white);
  font-size: 2.75rem;
}

.page-contact .hero-contact .eyebrow {
  color: var(--gold-light);
}

.page-contact .hero-contact p {
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--text-desc);
  line-height: 1.75;
  font-weight: 500;
}

.page-contact .section-contact {
  background: var(--sky);
  padding: 2rem 8rem;
}
.page-contact .section-contact .container {
  max-width: 900px;
}

.page-contact .contact-info-panel {
  background: var(--navy);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--gold);
  box-shadow: 0 12px 40px rgba(10, 31, 61, 0.25);
}

.page-contact .contact-info-panel h2 {
  color: var(--gold-light);
  border-bottom: 2px solid rgba(201, 168, 76, 0.4);
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-contact .contact-item {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 0.625rem;
  padding: 0.625rem;
  margin-bottom: 0.75rem;
  transition: all 0.25s ease;
}

.page-contact .contact-item:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
}

.page-contact .contact-item .contact-label {
  color: var(--gold-light);
  font-weight: 800;
  font-size: var(--text-small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.page-contact .contact-item a,
.page-contact .contact-item p {
  color: rgba(255, 255, 255, 0.98);
  font-size: var(--text-base);
  line-height: 1.75;
  font-weight: 500;
}

.page-contact .contact-item a:hover {
  color: var(--gold-light);
}

.page-contact .btn-whatsapp {
  background-color: #25D366;
  color: var(--white);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  border: 2px solid #1fb855;
  margin-top: 0.5rem;
}

.page-contact .btn-whatsapp:hover {
  background-color: #1fb855;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.page-contact .form-panel {
  background: var(--white);
  border-radius: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--navy);
  box-shadow: 0 12px 40px rgba(10, 31, 61, 0.12);
}

.page-contact .form-panel h2 {
  color: var(--navy);
  border-left: 5px solid var(--gold);
  padding-left: 1rem;
}

.page-contact .form-panel label {
  color: var(--navy);
  font-weight: 700;
  font-size: var(--text-base);
}

.page-contact .form-panel input,
.page-contact .form-panel textarea {
  border: 2px solid #c8d4e4;
  border-radius: 0.5rem;
  font-size: var(--text-base);
  color: var(--text-body);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.page-contact .form-panel input:focus,
.page-contact .form-panel textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.25);
}

.page-contact .form-panel button[type="submit"] {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  border: 2px solid var(--gold);
  font-weight: 700;
  font-size: var(--text-base);
  transition: all 0.25s ease;
}

.page-contact .form-panel button[type="submit"]:hover:not(:disabled) {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* ══════════════════════════════════════
   HAMBURGER MENU — mobile nav toggle
   ══════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════════════════════════════
   RESPONSIVE — Mobile & Tablet
   ══════════════════════════════════════ */
@media (max-width: 768px) {

  /* --- Navbar --- */
  .site-nav {
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    flex-wrap: wrap;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 0 1rem;
    border-top: 1px solid rgba(201, 168, 76, 0.25);
    margin-top: 0.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-pill {
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
  }

  /* Brand name — hide on very small screens, show logo only */
  .brand-word {
    font-size: 14px;
    letter-spacing: 0.5px;
  }

  /* --- Hero sections --- */
  .page-home .hero-home h1 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-home,
  .hero-about,
  .hero-products,
  .hero-contact {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .page-about .hero-about h1,
  .page-products .hero-products h1,
  .page-contact .hero-contact h1 {
    font-size: 1.875rem;
  }

  /* --- Stat row on home --- */
  .page-home .stat-row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .page-home .stat-item {
    flex: 1 1 calc(50% - 0.75rem);
    min-width: 120px;
    padding: 0.75rem 1rem;
  }

  /* --- Hero buttons --- */
  .hero-home .flex.gap-4 {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-primary,
  .btn-outline-gold,
  .btn-gold {
    text-align: center;
    width: 100%;
    padding: 0.875rem 1rem;
  }

  /* --- Feature / product grids --- */
  .grid-cols-3,
  .grid.grid-cols-3 {
    grid-template-columns: 1fr !important;
  }

  .grid-cols-2,
  .grid.grid-cols-2 {
    grid-template-columns: 1fr !important;
  }

  /* --- Section padding --- */
  .section-features,
  .section-story,
  .stats-about,
  .section-catalog,
  .cta-products,
  .section-contact {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  /* Contact page specific — override inline px-8 padding in CSS */
  .page-contact .section-contact {
    padding: 2rem 1.25rem !important;
  }

  /* --- Footer --- */
  .site-footer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .site-footer > div.flex {
    flex-direction: column;
    gap: 2rem;
  }

  .site-footer h3 {
    font-size: 1.25rem;
  }

  /* --- About story section gap --- */
  .section-story .grid {
    gap: 2rem !important;
  }

  /* --- About stat boxes --- */
  .page-about .stat-box {
    padding: 1.25rem 1rem;
  }

  .page-about .stat-box .stat-num {
    font-size: 2rem;
  }

  /* --- Contact panels --- */
  .page-contact .section-contact .grid {
    gap: 1.5rem !important;
  }

  /* --- Section title sizing --- */
  .section-title {
    font-size: 1.5rem;
  }

  .cta-products h2 {
    font-size: 1.5rem !important;
  }
}

@media (max-width: 480px) {
  .brand-word {
    font-size: 12px;
    letter-spacing: 0.3px;
  }

  .page-home .hero-home h1 {
    font-size: 1.65rem;
  }

  .page-home .stat-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet: 2-col grids instead of 3 */
  .grid-cols-3,
  .grid.grid-cols-3 {
    grid-template-columns: repeat(2, 1fr) !important;
  }

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

  .site-nav {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .page-contact .section-contact {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
