/* ============================================================
   Conservative Motors™: Design System & Styles
   ============================================================ */

/* ----- Custom Fonts ----- */
@font-face {
  font-family: 'CMFont';
  src: url('CMFont.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'CMFontItalic';
  src: url('CMFontItalic.ttf') format('truetype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'CMFontText';
  src: url('CMFontText.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ----- CSS Variables ----- */
:root {
  --cm-dark: #0B1D3A;
  --cm-dark-2: #0E2240;
  --cm-dark-3: #122B50;
  --cm-mid: #1A3A6B;
  --cm-light: #5DADE2;
  --cm-light-muted: #3B8CC7;
  --cm-accent: #A8D8F0;
  --cm-white: #FFFFFF;
  --cm-text: #CBD5E1;
  --cm-bg: #070F1C;
  --cm-card: rgba(14, 34, 64, 0.65);
  --cm-card-border: rgba(93, 173, 226, 0.12);
  --cm-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w: 1200px;
}

/* ----- Reset ----- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'CMFontText', 'Inter', sans-serif;
  background: var(--cm-bg);
  color: var(--cm-text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* ----- Typography ----- */
h1,
h2,
h3,
h4 {
  font-family: 'CMFont', sans-serif;
  color: var(--cm-white);
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

h4 {
  font-size: 1.1rem;
}

.bold-italic {
  font-family: 'CMFontItalic', sans-serif;
  font-style: italic;
}

.highlight {
  color: var(--cm-light);
}

.section-label {
  font-family: 'CMFontItalic', sans-serif;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--cm-light);
  margin-bottom: 0.75rem;
  display: block;
}

/* ----- Layout Helpers ----- */
.container {
  width: 90%;
  max-width: var(--max-w);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: var(--cm-dark-2);
}

.text-center {
  text-align: center;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'CMFont', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: var(--cm-light);
  color: var(--cm-dark);
}

.btn-primary:hover {
  background: #4A9BD9;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(93, 173, 226, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cm-light);
  border: 2px solid var(--cm-light);
}

.btn-outline:hover {
  background: rgba(93, 173, 226, 0.1);
  transform: translateY(-2px);
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(7, 15, 28, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-logo span {
  font-family: 'CMFont', sans-serif;
  font-size: 1.1rem;
  color: var(--cm-white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'CMFontText', sans-serif;
  font-size: 0.9rem;
  color: var(--cm-text);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cm-light);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--cm-light);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cm-white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.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;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('hero.png') center / cover no-repeat;
  filter: brightness(0.35);
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 15, 28, 0.3) 0%, rgba(7, 15, 28, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 20px;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin: 0 auto 12px;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 8px;
}

.hero-slogan {
  font-family: 'CMFontItalic', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  color: var(--cm-light);
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 1.05rem;
  color: var(--cm-text);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--cm-shadow);
  aspect-ratio: 1 / 1;
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-img:hover img {
  transform: scale(1.03);
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-points {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}

.about-points li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--cm-light);
}

.slogans {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slogans span {
  font-family: 'CMFontItalic', sans-serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cm-light);
}

/* ============================================================
   ORIGIN STORY & TIMELINE
   ============================================================ */
.origin-story {
  margin-top: 80px;
  text-align: center;
}

.origin-story h2 {
  margin-bottom: 24px;
}

.origin-text {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: left;
}

.origin-text p {
  margin-bottom: 16px;
}

.origin-text strong {
  color: var(--cm-white);
}

/* Timeline Wrapper */
.timeline-wrapper {
  max-width: 780px;
  margin: 0 auto;
}

.timeline-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 28px;
  background: var(--cm-card);
  border: 1px solid var(--cm-card-border);
  border-radius: 50px;
  color: var(--cm-light);
  font-family: 'CMFont', sans-serif;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.timeline-toggle:hover {
  border-color: rgba(93, 173, 226, 0.35);
  background: rgba(14, 34, 64, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(93, 173, 226, 0.1);
}

.timeline-chevron {
  transition: transform 0.35s ease;
}

.timeline-toggle.active .timeline-chevron {
  transform: rotate(180deg);
}

.timeline-collapsible {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s ease;
  opacity: 0;
}

.timeline-collapsible.open {
  opacity: 1;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 40px 0 20px;
  margin-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--cm-light) 0%, rgba(93, 173, 226, 0.15) 100%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cm-dark-3);
  border: 2px solid var(--cm-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: -25px;
  position: relative;
  z-index: 2;
  color: var(--cm-light);
  box-shadow: 0 0 16px rgba(93, 173, 226, 0.2);
}

.timeline-content {
  background: var(--cm-card);
  border: 1px solid var(--cm-card-border);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: left;
  flex: 1;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(93, 173, 226, 0.3);
  transform: translateX(4px);
}

.timeline-date {
  font-family: 'CMFont', sans-serif;
  font-size: 0.9rem;
  color: var(--cm-light);
  display: block;
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.92rem;
  line-height: 1.7;
}

.timeline-content strong {
  color: var(--cm-white);
}

/* ============================================================
   E-GOLF PRODUCT
   ============================================================ */
.egolf-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.egolf-intro h2 {
  margin-bottom: 16px;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: var(--cm-shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(7, 15, 28, 0.5));
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 0 60px rgba(93, 173, 226, 0.15);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--cm-white);
  font-size: 2rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'CMFont', sans-serif;
}

.lightbox-close:hover {
  color: var(--cm-light);
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(93, 173, 226, 0.15);
  border: 1px solid rgba(93, 173, 226, 0.25);
  color: var(--cm-white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.3rem;
  transition: var(--transition);
}

.lightbox-arrow:hover {
  background: rgba(93, 173, 226, 0.3);
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

/* ============================================================
   FEATURES
   ============================================================ */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.feature-block:nth-child(even) {
  direction: rtl;
}

.feature-block:nth-child(even)>* {
  direction: ltr;
}

.feature-block:last-child {
  margin-bottom: 0;
}

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--cm-shadow);
  aspect-ratio: 1 / 1;
}

.feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.feature-img:hover img {
  transform: scale(1.03);
}

.feature-text h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.feature-text h3 svg {
  color: var(--cm-light);
  flex-shrink: 0;
}

.feature-text p {
  margin-bottom: 12px;
}

.feature-text .bold-line {
  font-family: 'CMFontItalic', sans-serif;
  color: var(--cm-light);
  font-size: 1.05rem;
  margin-top: 16px;
  display: block;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 12px 0;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.feature-list li svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--cm-light);
}

/* Phone Integration highlight */
.phone-highlight {
  background: var(--cm-card);
  border: 1px solid var(--cm-card-border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 20px;
}

.phone-highlight h4 {
  color: var(--cm-light);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================================
   WHY CM
   ============================================================ */
.why-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--cm-shadow);
  aspect-ratio: 16 / 9;
}

.why-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.why-card {
  background: var(--cm-card);
  border: 1px solid var(--cm-card-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 173, 226, 0.3);
  box-shadow: 0 8px 30px rgba(93, 173, 226, 0.08);
}

.why-card svg {
  color: var(--cm-light);
  margin-bottom: 14px;
}

.why-card h4 {
  margin-bottom: 8px;
}

.why-card p {
  font-size: 0.9rem;
}

.why-tagline {
  text-align: center;
  font-family: 'CMFontItalic', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--cm-light);
  margin-top: 10px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--cm-shadow);
  aspect-ratio: 16 / 9;
}

.testimonials-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--cm-card);
  border: 1px solid var(--cm-card-border);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(93, 173, 226, 0.25);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cm-light);
}

.testimonial-name {
  font-family: 'CMFont', sans-serif;
  font-size: 1rem;
  color: var(--cm-white);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--cm-light-muted);
  margin-top: 2px;
}

.testimonial-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--cm-text);
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--cm-light);
}

/* ============================================================
   BRAND IDENTITY
   ============================================================ */
.brand-banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: var(--cm-shadow);
  aspect-ratio: 16 / 9;
}

.brand-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-content {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.brand-content h2 {
  margin-bottom: 20px;
}

.brand-content p {
  margin-bottom: 16px;
}

.brand-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.brand-pill {
  background: var(--cm-card);
  border: 1px solid var(--cm-card-border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.brand-pill:hover {
  border-color: rgba(93, 173, 226, 0.3);
  transform: translateY(-3px);
}

.brand-pill svg {
  color: var(--cm-light);
  margin-bottom: 10px;
}

.brand-pill h4 {
  font-size: 0.95rem;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--cm-dark-2) 0%, var(--cm-bg) 100%);
}

.cta-section h2 {
  margin-bottom: 12px;
}

.cta-section p {
  margin-bottom: 32px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--cm-dark);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 32px;
}

.footer-logo span {
  font-family: 'CMFont', sans-serif;
  color: var(--cm-white);
  font-size: 1rem;
}

.footer-slogan {
  font-family: 'CMFontItalic', sans-serif;
  color: var(--cm-light);
  font-size: 0.9rem;
}

.footer h4 {
  font-size: 0.9rem;
  color: var(--cm-white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--cm-text);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--cm-light);
}

.footer-bottom {
  border-top: 1px solid rgba(93, 173, 226, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cm-text);
}

.footer-bottom .tagline {
  font-family: 'CMFontItalic', sans-serif;
  color: var(--cm-light-muted);
  font-size: 0.8rem;
  margin-top: 6px;
}

/* ============================================================
   ANIMATIONS (scroll-triggered)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* stagger children */
.stagger-children .reveal:nth-child(1) {
  transition-delay: 0s;
}

.stagger-children .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.stagger-children .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.stagger-children .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.stagger-children .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

.stagger-children .reveal:nth-child(6) {
  transition-delay: 0.5s;
}

.stagger-children .reveal:nth-child(7) {
  transition-delay: 0.6s;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {

  .about-grid,
  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block:nth-child(even) {
    direction: ltr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cm-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: right 0.4s ease;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .brand-pillars {
    grid-template-columns: 1fr;
  }

  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-group .btn {
    justify-content: center;
  }

  .hero-logo {
    height: 56px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }
}