/* ==========================================================================
   ghulam.dev - Clean Modern Sans-Serif Typography & Shopify Green Design System
   ========================================================================== */

@font-face {
  font-family: 'Season Sans';
  src: local('Season Sans'), local('SeasonSans'), local('Plus Jakarta Sans');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Season Sans';
  src: local('Season Sans'), local('SeasonSans'), local('Plus Jakarta Sans');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #000000;
  --bg-surface: #080808;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --bg-elevated: #111115;
  
  --border-color: rgba(255, 255, 255, 0.09);
  --border-glow: rgba(0, 208, 132, 0.4);

  /* Official Shopify Brand Colors */
  --shopify-green: #00D084;
  --shopify-light-green: #95BF47;
  --shopify-gradient: linear-gradient(135deg, #00D084 0%, #95BF47 100%);
  --cyan-glow: #00E5FF;
  --purple-glow: #8B5CF6;
  --au-gold: #FFD700;

  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);

  --font-sans: 'Season Sans', 'SeasonSans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Season Sans', 'SeasonSans', 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'Fira Code', monospace;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --nav-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

/* Containers */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 1;
}

.container-fluid {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

/* Typography Rules */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.serif-italic {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  background: var(--shopify-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

.text-gradient {
  background: var(--shopify-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  outline: none;
  white-space: nowrap;
}

.btn-white {
  background: #FFFFFF;
  color: #000000;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-white:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.25);
}

.btn-white svg { transition: transform 0.3s ease; }
.btn-white:hover svg { transform: translate(2px, -2px); }

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.84rem;
}

.icon-svg {
  width: 1.15em;
  height: 1.15em;
  fill: currentColor;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* Ambient Radial Mesh Glow */
.ambient-glow-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.18;
  animation: floatOrb 25s infinite alternate ease-in-out;
}

.orb-1 {
  top: -10%;
  left: 20%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0,208,132,0.3) 0%, transparent 70%);
}

.orb-2 {
  bottom: 10%;
  right: -10%;
  width: 55vw;
  height: 55vw;
  background: radial-gradient(circle, rgba(149,191,71,0.25) 0%, transparent 70%);
  animation-delay: -10s;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 60px) scale(1.1); }
  100% { transform: translate(-30px, -40px) scale(0.95); }
}

/* ==========================================================================
   HEADER (.header) & MOBILE MENU BUTTON
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 2rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-wordmark {
  font-size: 1.45rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-icon-box {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--shopify-green);
}

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

.nav-item-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }

.nav-badge-count {
  margin-left: 0.35rem;
  padding: 0.15rem 0.45rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile Drawer Overlay */
.mobile-drawer {
  position: fixed;
  inset: 0;
  background: #08080A;
  z-index: 2500;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-drawer.active { transform: translateX(0); }

.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.mobile-drawer__close {
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.mobile-nav-link {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==========================================================================
   CHARLE SPINNING CIRCULAR FLOATING CTA BADGE (Bulletproof Sizing Constraints)
   ========================================================================== */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  z-index: 999;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border-radius: 50%;
}

.floating-cta:hover { transform: scale(1.1); }
.floating-cta:hover .floating-cta__text { animation-play-state: paused; }

.floating-cta__circle {
  position: absolute;
  inset: 0;
  background: #000000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.floating-cta__text {
  position: absolute;
  inset: 0;
  width: 100px !important;
  height: 100px !important;
  animation: floatingCtaSpin 12s linear infinite;
}

.floating-cta__text svg {
  width: 100px !important;
  height: 100px !important;
  max-width: 100px !important;
  max-height: 100px !important;
  display: block;
}

.floating-cta__text svg text {
  fill: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.2px;
  text-transform: uppercase;
}

.floating-cta__arrow {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
}

.floating-cta__arrow svg {
  width: 20px !important;
  height: 20px !important;
  transition: transform 0.3s ease;
}

.floating-cta:hover .floating-cta__arrow svg { transform: translate(2px, -2px); }

@keyframes floatingCtaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ==========================================================================
   1ST SECTION: HERO SEARCH-FIRST SECTION (.search-first)
   ========================================================================== */
.search-first {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4.5rem;
  text-align: center;
}

.search-first__subtitle {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--shopify-green);
  margin-bottom: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-first__title {
  font-family: var(--font-sans);
  font-size: clamp(2.2rem, 5.2vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 1080px;
  margin: 0 auto 2.5rem auto;
  color: #FFFFFF;
}

.search-first__pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1040px;
  margin: 0 auto 3rem auto;
}

.search-first__pillar {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.15rem;
  text-decoration: none;
  color: var(--text-primary);
  text-align: left;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.search-first__pillar:hover {
  background: var(--bg-card-hover);
  border-color: var(--shopify-green);
  transform: translateY(-4px);
}

.search-first__pillar-label {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.search-first__pillar-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   2ND SECTION: STAGGERED HERO MATRIX GALLERY (.hero-gallery)
   ========================================================================== */
.hero-gallery {
  padding: 1rem 0 5rem 0;
}

.hero-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.hero-gallery__layer {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  background: var(--bg-elevated);
  height: 320px;
  text-decoration: none;
  display: block;
}

.hero-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-gallery__item:hover img { transform: scale(1.06); }

.hero-gallery__item-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.35rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-gallery__item:hover .hero-gallery__item-hover { opacity: 1; }

.hero-gallery__item-content p {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
}

/* ==========================================================================
   ABOUT SECTION (.about-charle)
   ========================================================================== */
.about-charle {
  padding: 6rem 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.about-charle__subheading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--shopify-green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-charle__heading {
  font-size: 2.5rem;
  font-weight: 700;
  max-width: 820px;
  margin-bottom: 2rem;
  line-height: 1.15;
}

.about-charle__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.about-charle__stat-number {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.about-charle__stat-label { font-size: 0.82rem; color: var(--text-muted); }

/* ==========================================================================
   INTERACTIVE BENTO GRID (.sv6) & WIREFRAME ANIMATIONS
   ========================================================================== */
.sv6 {
  background:
    radial-gradient(ellipse 1000px 1000px at 25% 10%, rgba(0,208,132,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 900px 900px at 75% 85%, rgba(149,191,71,0.16) 0%, transparent 70%),
    #000;
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

.sv6__heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  min-height: 1.2em;
  margin-bottom: 2rem;
}

.sv6__cursor {
  display: inline-block;
  width: 2px;
  height: 0.85em;
  background: var(--shopify-green);
  margin-left: 2px;
  vertical-align: text-bottom;
  animation: sv6blink 0.6s step-end infinite;
}

@keyframes sv6blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.sv6__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(4, minmax(170px, auto));
  gap: 14px;
}

.sv6__cell {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
  transition: var(--transition);
}

.sv6__cell:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0,208,132,0.35);
  transform: translateY(-4px);
}

.sv6__cell--1 { grid-column: 1 / 6; grid-row: 1 / 3; }
.sv6__cell--2 { grid-column: 6 / 10; grid-row: 1 / 2; }
.sv6__cell--3 { grid-column: 10 / 13; grid-row: 1 / 2; }
.sv6__cell--4 { grid-column: 6 / 9; grid-row: 2 / 4; }
.sv6__cell--5 { grid-column: 9 / 13; grid-row: 2 / 3; }
.sv6__cell--6 { grid-column: 1 / 6; grid-row: 3 / 4; }
.sv6__cell--7 { grid-column: 9 / 13; grid-row: 3 / 5; }
.sv6__cell--8 { grid-column: 1 / 9; grid-row: 4 / 5; }

.sv6__cell-name {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.sv6__cell-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.sv6__cell-arrow {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sv6__cell:hover .sv6__cell-arrow {
  background: var(--shopify-green);
  color: #000;
  border-color: var(--shopify-green);
  transform: translate(3px, -3px);
}

/* ==========================================================================
   PROJECTS SWIPER CAROUSEL (.projects)
   ========================================================================== */
.projects { padding: 6rem 0; }
.projects__heading {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  max-width: 900px;
  margin-bottom: 3rem;
}

.projects__carousel { position: relative; overflow: hidden; }
.swiper-wrapper { display: flex; gap: 1.5rem; transition: transform 0.5s ease; }

.project {
  flex: 0 0 calc(33.333% - 1rem);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.project__media {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.project__media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project:hover .project__media__image { transform: scale(1.06); }
.project__content { padding: 1.35rem; }

/* ==========================================================================
   FEATURE STORY CARDS (.feature)
   ========================================================================== */
.feature { padding: 6rem 0; }

.feature__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.feature.flipped .feature__inner { direction: rtl; }
.feature.flipped .feature__inner > * { direction: ltr; }

.feature__images {
  position: relative;
  height: 440px;
  width: 100%;
  display: block;
}

.feature__image-1 {
  position: absolute;
  top: 0; left: 0;
  width: 75%; height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.feature__image-2 {
  position: absolute;
  bottom: 0; right: 0;
  width: 65%; height: 80%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glow);
  box-shadow: 0 20px 50px rgba(0,0,0,0.85);
}

.feature__images img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.feature__subheading {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--shopify-green);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.feature__heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.feature__description {
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 2rem;
}

/* ==========================================================================
   OBSERVATORY NEWSLETTER MODAL & FOOTER
   ========================================================================== */
.nl-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1999;
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.nl-popup {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 440px;
  max-width: calc(100vw - 3rem);
  background: #111115;
  border: 1px solid rgba(0, 208, 132, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  z-index: 2000;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
  display: none;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nl-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #FFFFFF;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.nl-close:hover { opacity: 1; }

.obs-cta {
  background: #080808;
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  border-top: 1px solid var(--border-color);
}

.obs-cta__inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 4rem;
  align-items: center;
}

.obs-cta__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--shopify-green);
  margin-bottom: 1rem;
  font-weight: 700;
}

.obs-cta__h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.obs-cta__h2 em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  background: var(--shopify-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.obs-cta__desc {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

.obs-cta__card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.obs-cta__input {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  outline: none;
}

.obs-cta__input:focus { border-color: var(--shopify-green); }

/* ==========================================================================
   CONTACT SECTION (.contact-section)
   ========================================================================== */
.contact-section {
  padding: 6rem 0;
  background: var(--bg-dark);
  overflow-x: hidden;
  width: 100%;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  width: 100%;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  box-sizing: border-box;
}

.contact-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.contact-email {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--shopify-green) !important;
  word-break: break-all;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.contact-textarea {
  min-height: 120px;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
}

.new-footer {
  padding: 6rem 0 2rem 0;
  background: #0a0a0a;
  border-top: 1px solid var(--border-color);
}

.new-footer__heading {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 3rem;
}

.new-footer__heading em {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 800;
  background: var(--shopify-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 3.5rem;
  margin-bottom: 3rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FULL MOBILE RESPONSIVE MEDIA QUERIES (Mobile 375px to Laptop 1024px)
   ========================================================================== */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .header-right-actions { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  .container-fluid { padding: 0 1.25rem; }
  .container { padding: 0 1.25rem; }
  
  .search-first { padding-top: calc(var(--nav-height) + 2rem); padding-bottom: 3rem; }
  .search-first__title { font-size: clamp(2rem, 6.5vw, 3.2rem); margin-bottom: 1.75rem; }
  .search-first__subtitle { font-size: 0.95rem; }
  .search-first__pillars { grid-template-columns: repeat(2, 1fr); gap: 0.85rem; }
  
  .hero-gallery__grid { grid-template-columns: 1fr; gap: 1.15rem; }
  .hero-gallery__item { height: 260px; }
  
  .about-charle { padding: 4rem 0; }
  .about-charle__heading { font-size: clamp(1.6rem, 5vw, 2.4rem); }
  .about-charle__stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  
  .sv6 { padding: 4rem 0; }
  .sv6__grid { grid-template-columns: 1fr; grid-template-rows: auto; gap: 12px; }
  .sv6__cell--1, .sv6__cell--2, .sv6__cell--3, .sv6__cell--4, .sv6__cell--5, .sv6__cell--6, .sv6__cell--7, .sv6__cell--8 { grid-column: 1 / -1; grid-row: auto; }
  .sv6__cell { padding: 1.35rem; }
  
  .projects { padding: 4rem 0; }
  .swiper-wrapper { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; }
  .project { flex: 0 0 85%; scroll-snap-align: start; }
  
  .feature { padding: 4rem 0; }
  .feature__inner, .feature.flipped .feature__inner { grid-template-columns: 1fr; gap: 2.5rem; direction: ltr !important; }
  .feature__inner > * { direction: ltr !important; }
  .feature__images { height: 320px; }
  
  .obs-cta { padding: 4rem 0; }
  .obs-cta__inner { grid-template-columns: 1fr; gap: 2rem; }
  .obs-cta__h2 { font-size: 2.2rem; }
  .obs-cta__card { padding: 1.75rem 1.25rem; }
  
  .contact-section { padding: 3.5rem 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 1.5rem; width: 100%; }
  .contact-card { padding: 1.5rem 1.25rem; width: 100%; }
  
  .new-footer { padding: 4rem 0 2rem 0; }
  .new-footer__heading { font-size: clamp(2.2rem, 7vw, 4rem); margin-bottom: 2rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

@media (max-width: 576px) {
  .search-first__pillars { grid-template-columns: 1fr; }
  .about-charle__stats { grid-template-columns: 1fr 1fr; }
  .project { flex: 0 0 92%; }
  .floating-cta { width: 68px !important; height: 68px !important; bottom: 1.25rem; left: 1rem; }
  .floating-cta__text { width: 68px !important; height: 68px !important; }
  .floating-cta__text svg { width: 68px !important; height: 68px !important; max-width: 68px !important; max-height: 68px !important; }
  .floating-cta__text svg text { font-size: 9px; letter-spacing: 2.5px; }
  .floating-cta__arrow svg { width: 14px !important; height: 14px !important; }
  
  .contact-card { padding: 1.25rem 1rem; }
  
  .nl-popup {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 1.75rem 1.25rem;
  }
}
