@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* Reset and base variables */
:root {
  --font-serif: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Theme color palettes (Light mode defaults) */
  --bg: #FFFFFF;
  --bg-alt: #F4F2ED;
  --bg-deep: #0F0F0E;
  --bg-card: #FFFFFF;
  --text: #0F0F0E;
  --text-sub: #4E4B49; /* Increased contrast: 7.2:1 (passes WCAG AAA on #FFFFFF) */
  --text-muted: #75716A; /* Increased contrast: 4.7:1 (passes WCAG AA on #FFFFFF) */
  --text-on-dark: #F0E8D4;
  --text-on-gold: #0F0F0E;
  --gold: #C39442;
  --gold-hover: #D4A855;
  --text-gold: #8D641B; /* High-contrast gold for text on light backgrounds (passes WCAG AA) */
  --gold-soft: rgba(195,148,66,0.08);
  --border: rgba(15,15,14,0.09);
  --border-gold: rgba(195,148,66,0.3);
  --border-gold-solid: rgba(195,148,66,0.5);
  --nav-bg: rgba(255,255,255,0.92);
  --nav-border: rgba(15,15,14,0.08);
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.1);
  --shadow-gold: none;

  --btn-prim-bg: #C39442;
  --btn-prim-fg: #0F0F0E;
  --btn-prim-hov: #D4A855;
  --btn-dark-bg: #0F0F0E;
  --btn-dark-fg: #FFFFFF;

  --transition-speed: 0.35s;
  --in-oklab: ;
}

/* Check support for oklab gradients as progressive enhancement */
@supports (linear-gradient(in oklab, white, black)) {
  :root {
    --in-oklab: in oklab;
  }
}

/* Dark mode theme overrides */
[data-theme="dark"] {
  --bg: #111110;
  --bg-alt: #181714;
  --bg-deep: #080806;
  --bg-card: #1C1A17;
  --text: #F0E8D4;
  --text-sub: rgba(240, 232, 212, 0.78); /* Increased contrast: 7.8:1 (passes WCAG AAA on #111110) */
  --text-muted: rgba(240, 232, 212, 0.55); /* Increased contrast: 4.5:1 (passes WCAG AA on #111110) */
  --gold-soft: rgba(195, 148, 66, 0.1);
  --text-gold: #C39442; /* Regular gold on dark backgrounds (passes WCAG AAA) */
  --border: rgba(195, 148, 66, 0.13);
  --border-gold: rgba(195, 148, 66, 0.25);
  --nav-bg: rgba(17, 17, 16, 0.94);
  --nav-border: rgba(195, 148, 66, 0.1);
  --shadow: none;
  --shadow-lg: none;
  --shadow-gold: 0 0 0 1px rgba(195, 148, 66, 0.25);

  --btn-dark-bg: #F0E8D4;
  --btn-dark-fg: #0F0F0E;
}

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

/* Keyboard focus rings for accessibility (WCAG 2.4.7) */
*:focus-visible {
  outline: 2px solid var(--text-gold);
  outline-offset: 3px;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  transition: background-color var(--transition-speed) ease, color var(--transition-speed) ease;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(195, 148, 66, 0.25);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(195, 148, 66, 0.55);
}

/* Typography styles */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

/* Layout helpers */
section {
  position: relative;
  transition: background-color var(--transition-speed) ease;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 96px 28px;
}

.container-compact {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px 28px;
}

/* Button styles */
.btn {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.22s ease;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1.2;
}

.btn-gold {
  background: var(--btn-prim-bg);
  color: var(--btn-prim-fg);
}
.btn-gold:hover {
  background: var(--btn-prim-hov);
}

.btn-dark {
  background: var(--btn-dark-bg);
  color: var(--btn-dark-fg);
}
.btn-dark:hover {
  opacity: 0.9;
  background-color: var(--gold);
  color: var(--btn-prim-fg);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-outline:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.btn-light-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid rgba(240, 232, 212, 0.4);
}
.btn-light-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--text-on-dark);
}

.btn-dark-solid {
  background: #0F0F0E;
  color: #FFFFFF;
  border: none;
}
.btn-dark-solid:hover {
  background: #222222;
}

.btn-arrow-right svg {
  transition: transform 0.2s ease;
}
.btn-arrow-right:hover svg {
  transform: translateX(4px);
}

/* Badge & Tag labels */
.section-tag {
  font-family: var(--font-mono);
  color: var(--text-gold);
  font-size: 10px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.badge-item {
  font-family: var(--font-mono);
  color: var(--text-gold);
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 12px;
  display: inline-block;
  white-space: nowrap;
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  background: transparent;
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.35s ease;
}

.navbar.scrolled {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 2px 20px rgba(0,0,0,0.02);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  text-decoration: none;
}

.nav-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.brand-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.brand-subtitle {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 7px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-item {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: var(--text-sub);
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-item:hover, .nav-item.active {
  color: var(--gold);
  background: var(--gold-soft);
  outline: 1px solid var(--border-gold-solid);
}

.nav-item.active {
  font-weight: 600;
}

.nav-divider {
  width: 1px;
  height: 20px;
  background: var(--border);
  margin: 0 12px;
}

.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-sub);
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-right: 12px;
}

.theme-toggle-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background-color: var(--gold-soft);
}

.menu-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .menu-toggle-btn {
    display: none;
  }
}

.mobile-menu-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .mobile-menu-actions {
    display: none;
  }
}

/* Mobile Nav Modal Drawer */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-top: 68px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  pointer-events: none;
}

.mobile-menu-overlay.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-item {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 36px;
  font-weight: 400;
  background: none;
  border: none;
  cursor: pointer;
  letter-spacing: 0.04em;
  padding: 6px 32px;
  border-radius: 10px;
  width: 100%;
  max-width: 320px;
  text-align: center;
  transition: all 0.2s ease;
  text-decoration: none;
  display: block;
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  color: var(--gold);
  background: var(--gold-soft);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-radial-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-glow-field {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-info-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 8px 16px;
  background: var(--gold-soft);
  border: 1px solid var(--border-gold);
  border-radius: 100px;
}

.hero-info-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-info-badge-text {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 28px;
}

.hero-title-word {
  color: var(--text-gold);
  display: inline-block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hero-title-word.fade {
  opacity: 0;
  transform: translateY(8px);
}

.hero-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  max-width: 480px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats-row {
  display: flex;
  gap: 24px;
  border-top: 1px solid var(--border);
  padding-top: 32px;
  flex-wrap: wrap;
}

.hero-stat-col {
  flex: 1 1 100px;
  padding-right: 24px;
  border-right: 1px solid var(--border);
}
.hero-stat-col:last-child {
  border-right: none;
  padding-right: 0;
}

@media (max-width: 480px) {
  .hero-stat-col {
    border-right: none;
    flex: 1 1 40%;
  }
}

.hero-stat-number {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.5;
}

.hero-image-wrapper {
  justify-content: center;
  align-items: center;
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .hero-image-wrapper {
    display: flex;
  }
}

.hero-image-blur-bg {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: var(--gold-soft);
  filter: blur(48px);
  transform: scale(0.85);
  z-index: 0;
}

.hero-img {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  z-index: 1;
}

[data-theme="dark"] .hero-img {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

/* Marquee Ticker */
.ticker-container {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.ticker-container.dark-ticker {
  background: #0F0F0E;
  border-top: 1px solid rgba(195, 148, 66, 0.1);
  border-bottom: 1px solid rgba(195, 148, 66, 0.1);
}

.ticker-wrapper {
  display: flex;
  white-space: nowrap;
  will-change: transform;
}

.ticker-fwd {
  animation: ticker-fwd 35s linear infinite;
}

.ticker-rev {
  animation: ticker-rev 28s linear infinite;
}

.ticker-wrapper:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0 28px;
}

.dark-ticker .ticker-item {
  color: rgba(195, 148, 66, 0.75);
}

.ticker-dot {
  color: var(--border);
  font-size: 8px;
}

.dark-ticker .ticker-dot {
  color: rgba(195, 148, 66, 0.3);
}

@keyframes ticker-fwd {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes ticker-rev {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

/* About Section */
.about-section {
  background-color: var(--bg-deep);
  color: var(--text-on-dark);
}

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

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.about-title {
  color: #F0E8D4;
  font-size: clamp(32px, 3.5vw, 52px);
  margin-bottom: 24px;
}

.about-desc {
  color: rgba(240, 232, 212, 0.58);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.9;
  margin-bottom: 18px;
}

.about-desc:last-of-type {
  margin-bottom: 40px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(195, 148, 66, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.about-stat-card {
  padding: 36px 28px;
  background: var(--bg-deep);
}

.about-stat-num {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.about-stat-title {
  font-family: var(--font-sans);
  color: #F0E8D4;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.about-stat-sub {
  font-family: var(--font-sans);
  color: rgba(240, 232, 212, 0.38);
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
}

/* Services Section */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 16px;
}

.services-header-text {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 300;
  max-width: 380px;
  line-height: 1.8;
}

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

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
  overflow: hidden;
}

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

.service-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--gold-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: background 0.3s ease;
}

.service-num {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.3em;
}

.service-title {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}

.service-subtitle {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.85;
}

.service-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-enquire {
  font-family: var(--font-sans);
  color: var(--text-gold);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0;
  transition: gap 0.2s ease;
  align-self: flex-start;
  text-decoration: none;
}

.service-enquire svg {
  transition: transform 0.2s ease;
}

.service-enquire:hover {
  color: var(--gold-hover);
}

.service-enquire:hover svg {
  transform: translateX(4px);
}

/* Extra Services Card */
.service-card-additional {
  background: var(--gold-soft);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card-additional .service-icon-box {
  background: var(--gold);
  color: #0F0F0E;
}

.additional-services-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
  margin-bottom: 24px;
}

.additional-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.additional-service-text {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 12.5px;
  font-weight: 300;
}

/* Why Choose Us Section */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
}

@media (min-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.why-sticky-col {
  position: static;
}

@media (min-width: 992px) {
  .why-sticky-col {
    position: sticky;
    top: 100px;
  }
}

.why-title {
  font-size: clamp(28px, 3vw, 46px);
  margin-bottom: 20px;
}

.why-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
}

.why-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
}

@media (min-width: 600px) {
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-feature-card {
  background: var(--bg-card);
  padding: 26px 24px;
  transition: background var(--transition-speed) ease;
}

.why-feature-card:hover {
  background: var(--gold-soft);
}

.why-feature-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

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

.why-feature-title {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0;
  letter-spacing: 0.02em;
}

.why-feature-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.75;
}

/* How We Work (Methodology) */
.methodology-header {
  text-align: center;
  margin-bottom: 60px;
}

.methodology-title {
  font-size: clamp(30px, 3.5vw, 52px);
  margin-bottom: 14px;
}

.methodology-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 15px;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.85;
}

.methodology-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
}

@media (min-width: 768px) {
  .methodology-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .methodology-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

/* Linear connector line for desktop */
.methodology-line {
  display: none;
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background-image: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 20px);
  background-size: 20px 1px;
  background-repeat: repeat-x;
  z-index: 0;
}

@media (min-width: 992px) {
  .methodology-line {
    display: block;
  }
}

.methodology-step {
  padding: 0 20px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.methodology-step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  transition: background var(--transition-speed) ease;
}

.methodology-step:hover .methodology-step-circle {
  background: var(--gold-soft);
}

.methodology-step-num {
  font-family: var(--font-mono);
  color: var(--text-gold);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.methodology-step-title {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.methodology-step-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
}

/* Industries Served */
.industries-section {
  background-color: var(--bg-deep);
  color: var(--text-on-dark);
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: center;
}

@media (min-width: 992px) {
  .industries-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.industries-title {
  color: #F0E8D4;
  font-size: clamp(28px, 3vw, 46px);
  margin-bottom: 20px;
}

.industries-desc {
  font-family: var(--font-sans);
  color: rgba(240, 232, 212, 0.5);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
}

.industries-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.industry-chip {
  font-family: var(--font-sans);
  color: var(--text-gold);
  background: transparent;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid rgba(195, 148, 66, 0.25);
  border-radius: 100px;
  padding: 10px 20px;
  cursor: default;
  transition: all 0.22s ease;
}

.industry-chip:hover {
  color: #0F0F0E;
  background: var(--gold);
  border-color: var(--gold);
}

/* Projects Case Studies */
.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 16px;
}

.projects-header-text {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 13.5px;
  font-weight: 300;
  max-width: 340px;
  line-height: 1.8;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.project-card {
  background: var(--bg-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.project-card-image-box {
  height: 220px;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
}

.project-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 0.5s ease;
}

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

.project-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
}

.project-card-category {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: var(--font-mono);
  color: #C39442;
  font-size: 8.5px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(195, 148, 66, 0.3);
}

.project-card-content {
  padding: 24px 26px 28px;
}

.project-card-title {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.project-card-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 18px;
}

.project-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

/* Testimonials Section */
.testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}

.testimonials-title {
  font-size: clamp(28px, 3vw, 48px);
}

.testimonials-carousel-wrapper {
  max-width: 820px;
  margin: 0 auto;
}

.testimonial-card-box {
  background: var(--bg-alt);
  border-radius: 16px;
  padding: 40px 28px;
  position: relative;
  border: 1px solid var(--border);
  transition: all var(--transition-speed) ease;
}

@media (min-width: 768px) {
  .testimonial-card-box {
    padding: 52px 56px;
  }
}

.testimonial-quote-mark {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 96px;
  line-height: 0.6;
  margin-bottom: 24px;
  opacity: 0.4;
}

.testimonial-quote-text {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 40px;
  min-height: 100px;
}

.testimonial-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.testimonial-author-name {
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.testimonial-author-org {
  font-family: var(--font-mono);
  color: var(--text-sub);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

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

.testimonial-control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-sub);
  transition: all 0.2s ease;
}

.testimonial-control-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.testimonial-dots {
  display: flex;
  gap: 6px;
}

.testimonial-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  width: 20px;
  background: var(--gold);
  border-radius: 100px;
}

.testimonials-footer-note {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 20px;
}

/* Call To Action Banner */
.cta-banner-section {
  background: var(--gold);
}

.cta-banner-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.cta-banner-tag {
  font-family: var(--font-mono);
  color: rgba(15, 15, 14, 0.6);
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}

.cta-banner-title {
  font-family: var(--font-serif);
  color: #0F0F0E;
  font-size: clamp(28px, 3.5vw, 50px);
  max-width: 560px;
}

.cta-banner-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Contact Section & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 80px;
  align-items: start;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-col {
  display: flex;
  flex-direction: column;
}

.contact-title {
  font-size: clamp(30px, 3.5vw, 50px);
  margin-bottom: 36px;
}

.contact-success-box {
  border: 1px solid var(--gold);
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  background: var(--gold-soft);
  display: none;
  animation: fadeIn 0.4s ease forwards;
}

.contact-success-box.show {
  display: block;
}

.contact-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  font-size: 22px;
}

.contact-success-title {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 26px;
  margin-bottom: 10px;
}

.contact-success-desc {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 300;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form.hidden {
  display: none;
}

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

@media (min-width: 576px) {
  .contact-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 8.5px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  color: var(--text);
  font-size: 14px;
  font-weight: 300;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, background 0.35s ease, color 0.35s ease;
}

.form-control:focus {
  border-color: var(--gold);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23C39442'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-details-box {
  background: var(--bg-card);
  border-radius: 12px;
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition-speed) ease;
}

.info-details-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.info-brand-container {
  text-align: left;
}

.info-brand-title {
  font-family: var(--font-serif);
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.info-brand-subtitle {
  font-family: var(--font-mono);
  color: var(--text-muted);
  font-size: 7.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 1px;
}

.info-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-item-label {
  font-family: var(--font-mono);
  color: var(--text-gold);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.info-item-value {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.75;
  white-space: pre-line;
}

.info-hours-box {
  background: var(--gold-soft);
  border-radius: 12px;
  padding: 22px 24px;
  border: 1px solid var(--border);
}

.hours-label {
  font-family: var(--font-mono);
  color: var(--text-gold);
  font-size: 8px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hours-text {
  font-family: var(--font-sans);
  color: var(--text-sub);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
}

/* Footer styling */
.footer {
  background: var(--bg-deep);
  color: var(--text-on-dark);
  border-top: 1px solid rgba(195, 148, 66, 0.1);
  padding: 72px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 36px 24px;
  margin-bottom: 56px;
}

.footer-desc-col {
  display: flex;
  flex-direction: column;
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-desc-col {
    grid-column: auto;
  }
}

.footer-logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-logo-row img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.footer-logo-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer-logo-subtitle {
  font-family: var(--font-mono);
  color: rgba(240, 232, 212, 0.28);
  font-size: 7px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  margin-top: 2px;
}

.footer-desc-text {
  font-family: var(--font-sans);
  color: rgba(240, 232, 212, 0.7);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  max-width: 280px;
}

.footer-col-title {
  font-family: var(--font-mono);
  color: var(--gold);
  font-size: 8.5px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links-list {
  list-style: none;
}

.footer-link {
  display: block;
  font-family: var(--font-sans);
  color: rgba(240, 232, 212, 0.7);
  font-size: 13px;
  font-weight: 300;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 0;
  text-align: left;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: var(--gold);
}

.footer-contact-text {
  font-family: var(--font-sans);
  color: rgba(240, 232, 212, 0.7);
  font-size: 12.5px;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(195, 148, 66, 0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.copyright-text {
  font-family: var(--font-sans);
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.legal-link {
  font-family: var(--font-sans);
  color: rgba(240, 232, 212, 0.65);
  font-size: 12px;
  font-weight: 300;
  cursor: pointer;
  transition: color 0.2s ease;
}

.legal-link:hover {
  color: var(--gold);
}

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

/* Scroll Optimization */
.large-section {
  content-visibility: auto;
  contain-intrinsic-block-size: auto 800px;
}
