/* ═══════════════════════════════════════════════════════════════════════════
   Irish Prestige Plastering & Building Services Ltd — Mobile-First Stylesheet
   Brand: Clean white surfaces | Irish green accents | Dark ink text
   Note: variable names are kept for compatibility but remapped to a light theme.
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ──────────────────────────────────────────────────────── */
:root {
  --navy:        #ffffff;   /* page background + text on green buttons */
  --navy-mid:    #f4f7f5;   /* card / drawer / input / footer surfaces */
  --navy-light:  #e8eee9;   /* image placeholders, video wells */
  --steel:       #1a6b3a;
  --steel-light: #2fae63;
  --steel-dark:  #145c30;
  --silver:      #2f3b35;   /* dark foreground: nav, labels, icons */
  --silver-light:#39443e;   /* body text */
  --white:       #16241c;   /* headings / strong dark text */
  --muted:       #6a756f;   /* secondary / placeholder text */
  --on-accent:   #ffffff;   /* text on coloured (green) backgrounds */
  --border:      rgba(20, 92, 48, 0.18);
  --border-hover:rgba(20, 92, 48, 0.45);

  --gradient-brand: linear-gradient(135deg, #1a6b3a 0%, #2fae63 100%);
  --gradient-dark:  linear-gradient(180deg, #ffffff 0%, #eef3f0 100%);
  --gradient-card:  linear-gradient(180deg, rgba(15,30,22,0) 50%, rgba(15,30,22,0.85) 100%);

  --font-heading: 'Montserrat', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;

  --shadow-sm:  0 2px 8px rgba(20,40,30,0.08);
  --shadow-md:  0 4px 20px rgba(20,40,30,0.10);
  --shadow-lg:  0 8px 40px rgba(20,40,30,0.14);
  --shadow-glow:0 0 28px rgba(47,174,99,0.22);

  --transition: 0.25s ease;
  --header-h:   70px;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────── */
*, *::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);
  background-color: var(--navy);
  color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--steel-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--silver); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

h1 { font-size: clamp(2rem, 6vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: 1.1rem; }

p { color: var(--silver-light); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

address { font-style: normal; }

/* ─── Skip Link (accessibility) ─────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--steel);
  color: var(--on-accent);
  padding: 0.5rem 1rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { top: 0; }

/* ─── Container ──────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--on-accent);
  border-color: transparent;
}
.btn-primary:hover {
  background: var(--steel-dark);
  color: var(--on-accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

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

.btn-sm { padding: 0.5rem 1.25rem; font-size: 0.8rem; }

/* ─── Section Layout ─────────────────────────────────────────────────────── */
.section {
  padding: 4rem 0;
}
.section-lg { padding: 6rem 0; }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p  { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ─── Header / Nav ───────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(255,255,255, 0.98);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.header-logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; text-decoration: none; }
.logo-emblem { height: 54px; width: auto; object-fit: contain; }
.logo-wordmark { display: flex; flex-direction: column; line-height: 1.08; }
.logo-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.02rem; color: #14245c; letter-spacing: .2px; white-space: nowrap; }
.logo-sub { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .58rem; letter-spacing: 1.4px; text-transform: uppercase; color: #1f7a44; white-space: nowrap; }
@media (max-width: 400px) { .logo-sub { display: none; } .logo-name { font-size: .95rem; } .logo-emblem { height: 48px; } }

/* Nav — hidden on mobile, shown on desktop */
.main-nav { display: none; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--silver);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover,
.nav-link.active { color: var(--white); background: var(--border); }

/* Dropdown */
.nav-item.has-dropdown { position: relative; }
.nav-arrow { font-size: 0.65rem; margin-left: 0.15rem; }

.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 100;
}
.nav-item.has-dropdown:hover .dropdown,
.nav-item.has-dropdown:focus-within .dropdown { display: block; }

.dropdown-link {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.85rem;
  color: var(--silver);
  transition: all var(--transition);
}
.dropdown-link:hover { color: var(--white); background: var(--border); }

.header-cta { display: none; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--silver);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
}
.nav-overlay.open { display: block; }

/* Mobile Nav Drawer */
.main-nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: min(320px, 85vw);
  height: calc(100vh - var(--header-h));
  background: var(--navy-mid);
  border-left: 1px solid var(--border);
  z-index: 999;
  padding: 1.5rem 1rem;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}
.main-nav.open .nav-list {
  flex-direction: column;
  align-items: stretch;
  gap: 0.25rem;
  width: 100%;
}
.main-nav.open .nav-link {
  font-size: 1rem;
  padding: 0.875rem 1rem;
}
.main-nav.open .dropdown {
  display: block;
  position: static;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 0 0 1rem;
}
.main-nav.open .dropdown-link {
  padding: 0.5rem 1rem;
  color: var(--muted);
}
.main-nav.open .header-cta-mobile {
  display: block;
  margin-top: 1.5rem;
  text-align: center;
}

/* ─── Page padding for fixed header ─────────────────────────────────────── */
main { padding-top: var(--header-h); }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--gradient-dark);
  overflow: hidden;
  padding: 4rem 1.25rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.png') center/cover no-repeat;
  opacity: 0.16;
  mix-blend-mode: normal;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.72) 0%,
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.85) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel-light);
  margin-bottom: 1.25rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border-hover);
  border-radius: 999px;
}
.hero h1 {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
}
.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--silver-light);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-logo-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
}
.hero-emblem {
  width: 260px;
  max-width: 66vw;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(20,36,92,0.15));
}
.hero-wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  color: #14245c;
  letter-spacing: .4px;
  line-height: 1.1;
}
.hero-wordmark-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1f7a44;
}

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

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.project-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  text-decoration: none;
  display: block;
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  border-color: var(--border-hover);
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy-light);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.project-card:hover .card-img-wrap img { transform: scale(1.05); }

.card-overlay { position: absolute; inset: 0; background: var(--gradient-card); }

.card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-dark);
  backdrop-filter: blur(4px);
}

.card-body {
  padding: 1.25rem;
}
.card-location {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.card-desc {
  font-size: 0.875rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.875rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--steel-light);
  font-family: var(--font-heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-arrow::after {
  content: '→';
  transition: transform var(--transition);
}
.project-card:hover .card-arrow::after { transform: translateX(4px); }

/* No image placeholder */
.card-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

/* ─── Filter Bar ─────────────────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.04em;
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--border);
  border-color: var(--steel-light);
  color: var(--white);
}

/* ─── Forms ──────────────────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }

label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 0.5rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
input[type="password"],
select,
textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--steel-light);
  box-shadow: 0 0 0 3px rgba(47,174,99, 0.2);
}

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

textarea { min-height: 140px; resize: vertical; }

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236a756f' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-hint { font-size: 0.8rem; color: var(--muted); margin-top: 0.35rem; }

.alert {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
.alert-success { background: rgba(52,168,83,0.12); border: 1px solid rgba(52,168,83,0.4); color: #1a7a3f; }
.alert-error   { background: rgba(235,87,87,0.10); border: 1px solid rgba(235,87,87,0.4); color: #c0392b; }

/* ─── Page Hero (inner pages) ────────────────────────────────────────────── */
.page-hero {
  background: var(--gradient-dark);
  padding: 4rem 1.25rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.page-hero .breadcrumb a { color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--silver); }
.page-hero .breadcrumb span { margin: 0 0.4rem; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 3rem 0 0;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-logo-link { display: inline-flex; align-items: center; gap: .6rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo { height: 104px; width: 104px; object-fit: contain; background: #fff; border-radius: 50%; padding: 6px; }
.footer-wordmark { display: flex; flex-direction: column; line-height: 1.08; }
.footer-name { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1rem; color: #14245c; }
.footer-sub { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .56rem; letter-spacing: 1.4px; text-transform: uppercase; color: #1f7a44; }
.footer-tagline { font-size: 0.9rem; color: var(--muted); }

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-contact a {
  font-size: 0.9rem;
  color: var(--muted);
}
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Video Embeds ───────────────────────────────────────────────────────── */
.video-section { margin: 2.5rem 0; }
.video-section h3 { margin-bottom: 1.25rem; color: var(--silver); font-size: 1rem; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 600; }

.video-embed-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-light);
  border: 1px solid var(--border);
}
.video-embed-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.tiktok-embed-wrap {
  display: flex;
  justify-content: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--navy-light);
  padding: 1rem;
}

/* ─── Gallery ────────────────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.gallery-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-img:hover img { transform: scale(1.04); }

/* ─── Lightbox ───────────────────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── Empty State ────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 4rem 1.25rem;
  color: var(--muted);
}
.empty-state p { color: var(--muted); }

/* ─── Divider ────────────────────────────────────────────────────────────── */
.divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-brand);
  margin: 1rem auto;
  border-radius: 1px;
}

/* ─── Utility ────────────────────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ═══════════════════════════════════════════════════════════════════════════
   TABLET — 640px+
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 640px) {
  .container { padding: 0 2rem; }

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

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

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

/* ═══════════════════════════════════════════════════════════════════════════
   DESKTOP — 1024px+
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --header-h: 80px; }

  /* Show desktop nav, hide hamburger */
  .main-nav { display: flex; align-items: center; }
  .hamburger { display: none; }
  .header-cta { display: inline-flex; }

  .cards-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .section    { padding: 6rem 0; }
  .section-lg { padding: 8rem 0; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   WIDE — 1280px+
   ═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 1280px) {
  .container { padding: 0 2.5rem; }
}
