/* ============================================
   AURIONTRA LLC — Premium CSS Stylesheet
   Luxury Minimalism | Architectural Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --white: #FAFAF8;
  --off-white: #F4F2ED;
  --light-gray: #E8E5DE;
  --mid-gray: #C4BDB0;
  --charcoal: #2C2C2A;
  --dark: #1A1A18;
  --black: #0D0D0C;
  --gold: #B8963E;
  --gold-light: #D4AF6A;
  --gold-pale: #F0E6CC;
  --green: #2D5A3D;
  --green-light: #4A7C5A;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-accent: 'Playfair Display', serif;

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
  --shadow-soft: 0 4px 32px rgba(0,0,0,0.08);
  --shadow-medium: 0 8px 48px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 24px rgba(184, 150, 62, 0.2);

  --max-width: 1400px;
  --nav-height: 88px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: black !important;
  max-width: 520px;
  line-height: 1.8;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--charcoal);
  transform: translateX(-101%);
  transition: var(--transition);
  z-index: 0;
}

.btn-primary:hover::after {
  transform: translateX(0);
}

.btn-primary span, .btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  border-color: var(--charcoal);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid var(--charcoal);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  padding: 0 48px;
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--light-gray);
  box-shadow: var(--shadow-soft);
}

.navbar-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.nav-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: sepia(1) saturate(0.8) hue-rotate(60deg);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: 0.06em;
  line-height: 1;
}

.nav-logo-tagline {
  font-family: var(--font-body);
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.navbar.transparent .nav-logo-name {
  color: var(--white);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  transition: color var(--transition-fast);
}

.navbar.transparent .nav-link {
  color: rgba(255,255,255,0.85);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.navbar.transparent .nav-link:hover {
  color: var(--gold-light);
}

.nav-cta {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border: 1px solid var(--gold);
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--dark);
  transition: var(--transition);
}

.navbar.transparent .nav-hamburger span {
  background: var(--white);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav .nav-link {
  font-size: 1.6rem;
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 300;
}

.mobile-nav-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(165deg, rgba(13,13,12,0.85) 0%, rgba(44,44,42,0.6) 50%, rgba(13,13,12,0.9) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1920&q=80') center center / cover no-repeat;

  background-attachment: scroll;
  z-index: 0;
}

/* Keep your hover effect */
.hero:hover .hero-bg {
  transform: scale(1);
}

/* Blueprint grid overlay */
.hero-grid-overlay {
display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 60px;
}

.hero-left {
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.2s;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 5.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.35s;
}

.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: white !important;
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 44px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.5s;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.65s;
}

.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.5s;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(184,150,62,0.2);
  backdrop-filter: blur(20px);
}

.hero-stat {
  padding: 28px 32px;
  border-right: 1px solid rgba(184,150,62,0.15);
  border-bottom: 1px solid rgba(184,150,62,0.15);
}

.hero-stat:nth-child(even) {
  border-right: none;
}

.hero-stat:nth-child(n+3) {
  border-bottom: none;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white !important;
}

.hero-scroll {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  animation: fadeIn 1s ease both;
  animation-delay: 1s;
}

.hero-scroll-text {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(184,150,62,0.6), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee-strip {
  background: var(--charcoal);
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid rgba(184,150,62,0.2);
  border-bottom: 1px solid rgba(184,150,62,0.2);
}

.marquee-track {
  display: flex;
  gap: 0;
  width: fit-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 40px;
  white-space: nowrap;
}

.marquee-item span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white !important;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   INTRO / ABOUT PREVIEW
   ============================================ */
.intro-section {
  padding: 140px 0;
  background: var(--white);
  position: relative;
}

.intro-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--off-white);
  z-index: 0;
}

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

.intro-image-wrapper {
  position: relative;
}

.intro-image-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.intro-image-accent {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-medium);
}

.intro-gold-badge {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.intro-gold-badge .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1;
}

.intro-gold-badge .label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-align: center;
}

.intro-content .section-subtitle {
  margin-bottom: 36px;
}

.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}

.intro-feature:last-child {
  grid-column: span 2;
  text-align: center;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--off-white);
  transition: var(--transition);
}

.intro-feature:hover {
  background: var(--gold-pale);
  transform: translateY(-3px);
}

.intro-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  color: var(--white);
}

.intro-feature-text {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
  padding: 140px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.services-section::before {
display: none;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

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

.services-header .section-tag {
  color: var(--gold-light);
}

.services-header .section-tag::before {
  background: var(--gold-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
}

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





.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 36px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--charcoal) 100%);
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
}

.service-card:hover::before {
  opacity: 0.08;
}

.service-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 40px;
  transition: var(--transition);
}

.service-card:hover .service-num {
  color: rgba(184,150,62,0.4);
}

.service-icon {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(184,150,62,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  color: white;
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgb(255, 255, 255) !important;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.service-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184,150,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-8px);
}

.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  padding: 140px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.why-section::after {
  content: 'AURIONTRA';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: 16vw;
  font-weight: 300;
  color: rgba(44,44,42,0.03);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 100px;
  align-items: center;
}

.why-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.why-card {
  padding: 36px 28px;
  background: var(--white);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.why-card:hover::after {
  width: 100%;
}

.why-card-icon {
  font-size: 28px;
  margin-bottom: 20px;
  display: block;
}

.why-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: black !important;
  margin-bottom: 10px;
}

.why-card-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: black !important;
  line-height: 1.8;
}

/* ============================================
   PORTFOLIO PREVIEW
   ============================================ */
.portfolio-section {
  padding: 140px 0;
  background: var(--white);
}

.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}

.portfolio-filters {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
  border-bottom: 1px solid var(--light-gray);
}

.filter-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid-gray);
  background: none;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  transition: color var(--transition-fast);
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--charcoal);
}

.filter-btn.active::after {
  width: 100%;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 2px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  background: var(--charcoal);
}

.portfolio-item.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.portfolio-item.featured img {
  aspect-ratio: auto;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,13,12,0.9) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-cat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.portfolio-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--white);
}

/* ============================================
   BLOG PREVIEW
   ============================================ */
.blog-section {
  padding: 140px 0;
  background: var(--off-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.blog-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-img-wrap {
  overflow: hidden;
}

.blog-card-body {
  padding: 32px;
}

.blog-card-cat {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 14px;
}

.blog-card-excerpt {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: black !important;
  line-height: 1.8;
  margin-bottom: 24px;
}

.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.blog-card-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: black;
}

.blog-read-more {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition-fast);
}

.blog-read-more:hover {
  gap: 10px;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(184,150,62,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(45,90,61,0.08) 0%, transparent 60%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-inner .section-tag {
  justify-content: center;
  color: var(--gold-light);
  margin-bottom: 28px;
}

.cta-inner .section-tag::before {
  background: var(--gold-light);
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 24px;
}

.cta-title em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: white !important;
  line-height: 1.9;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--black);
  padding: 96px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 72px;
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo-mark {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(184,150,62,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
}

.footer-logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1) sepia(1) saturate(2) hue-rotate(350deg);
  opacity: 0.7;
}

.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.08em;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 2px;
}

.footer-desc {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: rgb(255, 255, 255) !important;
  line-height: 1.9;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184,150,62,0.1);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 16px;
}

.footer-col-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: rgb(255, 255, 255) ;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: var(--gold);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

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

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-contact-icon {
  width: 28px;
  height: 28px;
  background: rgba(184,150,62,0.1);
  border: 1px solid rgba(184,150,62,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-text {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: white;
  line-height: 1.7;
}

.footer-contact-text a {
  color: white;
  transition: color var(--transition-fast);
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 300;
  color: white;
  letter-spacing: 0.08em;
}

.footer-copy span {
  color: white;
}

.footer-bottom-links {
  display: flex;
  gap: 28px;
}

.footer-bottom-links a {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  transition: color var(--transition-fast);
}

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

/* ============================================
   PAGE HERO (Internal Pages)
   ============================================ */
.page-hero {
  padding: 180px 0 100px;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
 display: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184,150,62,0.4), transparent);
}

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

.page-hero-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.page-hero-tag::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.page-hero-title em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: white !important;
  max-width: 520px;
  line-height: 1.8;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 48px;
}

.breadcrumb a,
.breadcrumb span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb .sep {
  color: rgba(184,150,62,0.4);
}

.breadcrumb .current {
  color: var(--gold);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
  padding: 140px 0;
  background: var(--white);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-story-images {
  position: relative;
  padding-bottom: 60px;
  padding-right: 60px;
}

.about-img-main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-medium);
}

.about-story-content .section-subtitle {
  margin-bottom: 32px;
}

.about-values {
  margin-top: 48px;
}

.about-value {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
}

.about-value:first-child {
  border-top: 1px solid var(--light-gray);
}

.about-value-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  min-width: 40px;
  margin-top: 4px;
}

.about-value-content {}

.about-value-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 6px;
}

.about-value-text {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: black !important;
  line-height: 1.7;
}

.about-mission {
  padding: 120px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

.about-mission::before {
display: none;
}

.mission-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mission-card {
  padding: 64px 56px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.mission-card.vision {
  border-left: none;
}

.mission-card-icon {
  font-size: 36px;
  color: white;
  margin-bottom: 24px;
  display: block;
}

.mission-card-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mission-card-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.mission-card-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.mission-card-text {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: white !important;
  line-height: 1.9;
}

/* Team Section */
.team-section {
  padding: 120px 0;
  background: var(--off-white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 64px;
}

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.team-info {
  padding: 28px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

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

.services-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}

.services-detail-grid.reverse {
  direction: rtl;
}

.services-detail-grid.reverse > * {
  direction: ltr;
}

.services-detail-image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.services-detail-content .section-title {
  font-size: 2.4rem;
}

.services-detail-content .section-subtitle {
  max-width: none;
  margin-bottom: 32px;
}

.services-features-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal);
}

.services-feature-item::before {
  content: '◆';
  color: var(--gold);
  font-size: 8px;
  margin-top: 6px;
  flex-shrink: 0;
}

/* Process Section */
.process-section {
  padding: 120px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184,150,62,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,62,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
  z-index: 1;
}

.process-step {
  padding: 48px 32px;
  border: 1px solid rgba(255,255,255,0.06);
  border-right: none;
  position: relative;
  transition: var(--transition);
}

.process-step:last-child {
  border-right: 1px solid rgba(255,255,255,0.06);
}

.process-step:hover {
  background: rgba(184,150,62,0.05);
  border-color: rgba(184,150,62,0.2);
}

.process-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  color: white;
  line-height: 1;
  margin-bottom: 24px;
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
}

.process-step-text {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 300;
  color: white !important;
  line-height: 1.8;
}

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

.portfolio-full .portfolio-filters {
  margin-bottom: 60px;
}

.portfolio-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.portfolio-masonry .portfolio-item img {
  aspect-ratio: 4/3;
}

.portfolio-masonry .portfolio-item:nth-child(4n+1) img {
  aspect-ratio: 1;
}

.portfolio-masonry .portfolio-item:nth-child(7n+2) img {
  aspect-ratio: 4/5;
}

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

.blog-full-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

.blog-featured-card {
  background: var(--white);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: var(--transition);
}

.blog-featured-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
}

.blog-featured-img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
}

.blog-featured-body {
  padding: 48px;
}

.blog-featured-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 16px;
}

.blog-sidebar {}

.blog-sidebar-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--light-gray);
}

.sidebar-posts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-post {
  display: flex;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
  cursor: pointer;
  transition: var(--transition-fast);
}

.sidebar-post:last-child {
  border-bottom: none;
}

.sidebar-post:hover {
  opacity: 0.75;
}

.sidebar-post-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  flex-shrink: 0;
}

.sidebar-post-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 6px;
}

.sidebar-post-date {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: black;
  letter-spacing: 0.08em;
}

.blog-cards-small {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
}

.contact-info {}

.contact-info .section-subtitle {
  margin-bottom: 48px;
}

.contact-detail {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-detail:hover .contact-detail-icon {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.contact-detail-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 4px;
}

.contact-detail-value {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.6;
}

.contact-detail-value a {
  color: var(--charcoal);
  transition: color var(--transition-fast);
}

.contact-detail-value a:hover {
  color: var(--gold);
}

.contact-form-wrap {
  background: var(--off-white);
  padding: 56px;
}

.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 8px;
}

.contact-form-subtitle {
  font-family: var(--font-body);
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--mid-gray);
  margin-bottom: 40px;
}

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

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

.form-label {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--light-gray);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--charcoal);
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(184,150,62,0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--mid-gray);
  font-weight: 300;
}

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

.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 36px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

/* Form validation styles */
.input-error {
  border-color: #e53e3e !important;
  background-color: #fff5f5 !important;
}

.field-error {
  display: block;
  color: #e53e3e;
  font-size: 11px;
  margin-top: 5px;
  font-family: var(--font-body);
}

.form-submit:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  background: var(--gold-pale);
  border: 1px solid var(--gold);
  margin-top: 20px;
}

.form-success p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--charcoal);
}

/* Map placeholder */
.contact-map {
  margin-top: 80px;
  width: 100%;
  height: 360px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map-placeholder {
  text-align: center;
}

.contact-map-placeholder p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--white);
}

.contact-map-placeholder span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .container { padding: 0 36px; }
  .navbar { padding: 0 36px; }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { align-items: flex-start; }
  .hero-stats { width: 100%; max-width: 420px; }
  .intro-grid { grid-template-columns: 1fr; gap: 60px; }
  .intro-section::before { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.featured { grid-column: span 2; }
  .blog-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .services-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-detail-grid.reverse { direction: ltr; }
  .blog-full-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 72px; }
  .container { padding: 0 24px; }
  .navbar { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-nav { display: flex; }

@media (max-width: 768px) {

  /* ===== HERO FIX ===== */
  .hero {
    height: auto;              /* allow natural height */
    min-height: 100vh;
    align-items: flex-start;   /* ❌ remove bottom alignment */
    padding-top: 100px;        /* ✅ pushes below navbar */
  }

  .hero-content {
    grid-template-columns: 1fr;   /* stack */
    padding: 0 20px 60px;
    gap: 40px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    align-items: flex-start;  /* align left on mobile */
    width: 100%;
  }

  .hero-title {
    font-size: 2.2rem;        /* prevent overflow */
    line-height: 1.2;
  }

  .hero-description {
    font-size: 0.9rem;
    max-width: 100%;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-scroll {
    display: none; /* remove scroll indicator on mobile */
  }

  /* ===== STATS FIX ===== */
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stat {
    padding: 20px;
  }

  /* ===== MARQUEE FIX ===== */
  .marquee-item {
    padding: 0 20px;
  }

  /* ===== INTRO FEATURES FIX ===== */
  .intro-features {
    grid-template-columns: 1fr;  /* stack instead of 2 */
    gap: 12px;
  }

  .intro-feature:last-child {
    grid-column: span 1;  /* remove span */
    text-align: left;
  }

  .intro-feature {
    padding: 16px;
  }

}

  
  .why-features { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.featured { grid-column: span 1; }
  .portfolio-masonry { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .blog-cards-small { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .portfolio-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card.vision { border-left: 1px solid rgba(255,255,255,0.06); border-top: none; }
}

@media (max-width: 480px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .intro-features { grid-template-columns: 1fr; }
  .portfolio-masonry { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: 1px solid rgba(255,255,255,0.06); border-bottom: none; }
  .process-step:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
}
