/* ============================================================
   MAJOR LEAGUE CERAKOTE — Global Styles
   ============================================================ */

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

:root {
  --navy:        #0d1b2e;
  --navy-light:  #162540;
  --navy-mid:    #1a2f4a;
  --red:         #c8102e;
  --red-hover:   #e8192f;
  --white:       #ffffff;
  --off-white:   #f4f5f7;
  --gray:        #8a9ab0;
  --gold:        #e8c84a;
  --font-main:   'Arial Narrow', Arial, sans-serif;
  --font-body:   Arial, sans-serif;
  --transition:  .2s ease;
  --radius:      8px;
  --shadow:      0 4px 24px rgba(0,0,0,.18);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.28);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: #1a1a2e;
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

/* ── UTILITY ── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.1;
  color: var(--navy);
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 12px;
  max-width: 560px;
}

.section-sub.light { color: rgba(255,255,255,.65); }

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(200,16,46,.35);
}
.btn-red:hover {
  background: var(--red-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,16,46,.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

/* ── FOR SALE BANNER ── */
.sale-banner {
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 10px 24px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  position: relative;
  z-index: 200;
}
.sale-banner a {
  text-decoration: underline;
  color: var(--navy);
  margin-left: 8px;
}
.sale-banner a:hover { color: var(--red); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,.8);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 6px;
}
.nav-cta:hover { background: var(--red-hover); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 60px,
    rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 62px
  );
}

.hero::after {
  content: '';
  position: absolute;
  right: -120px;
  top: -60px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,16,46,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: var(--font-main);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 900;
  font-style: italic;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: normal;
  color: var(--red);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.stat-num {
  font-family: var(--font-main);
  font-size: 2.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  line-height: 1;
}

.stat-label {
  font-size: .78rem;
  color: var(--gray);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-image {
  position: relative;
}

.hero-image-frame {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--navy-mid);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--red);
  color: var(--white);
  border-radius: 12px;
  padding: 16px 22px;
  box-shadow: var(--shadow);
  font-family: var(--font-main);
}

.hero-badge strong {
  display: block;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 900;
  line-height: 1;
}

.hero-badge span {
  font-size: .75rem;
  opacity: .85;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES STRIP
   ============================================================ */
.services-strip {
  background: var(--off-white);
  padding: 80px 0;
}

.strip-header {
  text-align: center;
  margin-bottom: 52px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(200,16,46,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: var(--font-main);
  font-size: 1.15rem;
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-card p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
}

.service-card .learn-more {
  display: inline-block;
  margin-top: 18px;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
}
.service-card .learn-more:hover { text-decoration: underline; }

/* ============================================================
   WHY US
   ============================================================ */
.why-us {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200,16,46,.15) 0%, transparent 70%);
  pointer-events: none;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.why-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--navy-mid);
  box-shadow: var(--shadow-lg);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .85;
}

.why-list {
  list-style: none;
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-check {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .8rem;
  color: var(--white);
  margin-top: 2px;
}

.why-item h4 {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}

.why-item p {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ============================================================
   GALLERY PREVIEW
   ============================================================ */
.gallery-preview {
  padding: 90px 0;
  background: var(--white);
}

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 12px;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  background: var(--navy-mid);
  position: relative;
}

.gallery-item:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,27,46,.5);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--off-white);
  padding: 90px 0;
}

.testimonials-header { text-align: center; margin-bottom: 52px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  position: relative;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: .95rem;
  color: #444;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: .9rem;
  flex-shrink: 0;
}

.author-name {
  font-weight: 800;
  font-size: .9rem;
  color: var(--navy);
}

.author-title {
  font-size: .8rem;
  color: var(--gray);
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--red);
  padding: 72px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 40px,
    rgba(0,0,0,.04) 40px, rgba(0,0,0,.04) 42px
  );
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band h2 {
  font-family: var(--font-main);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  font-style: italic;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-band p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 36px;
}

.btn-white {
  background: var(--white);
  color: var(--red);
  box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.btn-white:hover {
  background: var(--off-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  padding: 60px 0 28px;
  color: rgba(255,255,255,.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo img { height: 44px; margin-bottom: 16px; }

.footer-logo p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom a { color: var(--gold); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 60px,
    rgba(255,255,255,.015) 60px, rgba(255,255,255,.015) 62px
  );
}

.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.breadcrumb a { color: rgba(255,255,255,.5); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--red); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full { padding: 90px 0; background: var(--white); }

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.service-full-card {
  border: 1px solid #e8eaf0;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-full-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-full-img {
  height: 200px;
  background: var(--navy-mid);
  overflow: hidden;
}
.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-full-body { padding: 28px; }

.service-full-body h3 {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 10px;
}

.service-full-body p {
  font-size: .92rem;
  color: #555;
  line-height: 1.65;
  margin-bottom: 18px;
}

.service-price {
  display: inline-block;
  background: rgba(200,16,46,.1);
  color: var(--red);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
}

/* pricing table */
.pricing-section {
  background: var(--off-white);
  padding: 80px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border-radius: 14px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: border-color var(--transition), transform var(--transition);
}

.pricing-card.popular {
  border-color: var(--red);
  transform: scale(1.03);
}

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
}

.pricing-card h3 {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-main);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
  margin: 16px 0 4px;
}

.pricing-price sup { font-size: 1.2rem; vertical-align: top; margin-top: 8px; }
.pricing-from { font-size: .78rem; color: var(--gray); margin-bottom: 20px; }

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: .9rem;
  color: #444;
  padding-left: 22px;
  position: relative;
}
.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 800;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-full { padding: 80px 0; background: var(--white); }

.gallery-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid #e0e2e8;
  background: transparent;
  color: #555;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(200,16,46,.05);
}

.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-full-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--navy-mid);
  position: relative;
}

.gallery-full-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.gallery-full-item:hover img { transform: scale(1.06); }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,46,.85));
  color: var(--white);
  padding: 24px 16px 14px;
  font-size: .85rem;
  font-weight: 700;
  transform: translateY(100%);
  transition: transform .3s;
}
.gallery-full-item:hover .gallery-caption { transform: translateY(0); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 90px 0; background: var(--white); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-main);
  font-size: 1.9rem;
  font-weight: 900;
  font-style: italic;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact-info p {
  color: #555;
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,16,46,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 3px;
}

.contact-detail p {
  font-size: .95rem;
  color: var(--navy);
  font-weight: 700;
  margin: 0;
}

.contact-form {
  background: var(--off-white);
  border-radius: 16px;
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

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

.form-group label {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d8dce8;
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(200,16,46,.12);
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: var(--radius);
  padding: 16px 20px;
  color: #2e7d32;
  font-weight: 700;
  margin-top: 16px;
  text-align: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-image { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 40px; }
  .why-image { display: none; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item:first-child { grid-column: span 2; grid-row: span 1; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--navy);
    padding: 16px 0 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.3);
    z-index: 99;
  }
  .nav-links.open li { padding: 0 24px; }
  .nav-links.open a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); }
  .nav-cta { margin: 12px 24px 0; }
  .nav-hamburger { display: flex; }
  .nav { position: relative; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .contact-form { padding: 28px 20px; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
}
