/* Kraft9 Holdings – Premium Eye-Catching Design */

:root {
  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --charcoal: #1E1E1E;
  --charcoal-dark: #0F0F0F;
  --deep-blue: #051A2E;
  --deep-blue-soft: #0A2540;
  --accent-gold: #C9A227;
  --accent-gold-light: #E5C76B;
  --accent-gold-dark: #A68520;
  --gray-100: #F0F0F0;
  --gray-200: #E0E0E0;
  --gray-400: #6B7280;
  --max-width: 1200px;
  --max-width-wide: 1320px;
  --gutter: 2rem;
  --radius: 10px;
  --radius-sm: 8px;
  --radius-pill: 999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 56px rgba(0, 0, 0, 0.12);
  --font-display: 'Cormorant Garamond', serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Animations – luxury entrance */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateY(0) scaleY(1); }
  50% { opacity: 1; transform: translateY(6px) scaleY(0.6); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-animate,
  .animate-on-scroll { animation: none !important; }
  .hero-animate { opacity: 1; transform: none; }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container--wide { max-width: var(--max-width-wide); }

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

a {
  color: var(--deep-blue);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--accent-gold-dark); }

/* Unified header bar – premium strip with gold accent */
.site-header {
  background: var(--charcoal-dark);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--accent-gold);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.header-brand.logo-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.header-brand .logo-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}
.header-brand .logo-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.header-brand .logo-wordmark-accent {
  color: var(--accent-gold-light);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.header-brand:hover .logo-wordmark { color: rgba(255, 255, 255, 0.95); }
.header-brand:hover .logo-wordmark-accent { color: var(--accent-gold-light); }
.main-nav-inline { position: relative; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: var(--transition);
}
.site-header.open .nav-toggle span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.site-header.open .nav-toggle span:nth-child(2) { opacity: 0; }
.site-header.open .nav-toggle span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.25rem;
  align-items: center;
}
.nav-links a {
  display: block;
  padding: 0.65rem 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--accent-gold-light);
  background: rgba(255, 255, 255, 0.06);
}

#main-content { min-height: 60vh; }

/* Sections */
.section { padding: 5.5rem 0; }
.section--alt {
  background: var(--off-white);
  background-image: radial-gradient(ellipse at top, rgba(201, 162, 39, 0.03) 0%, transparent 60%);
}
.section--dark {
  background: linear-gradient(160deg, var(--deep-blue) 0%, var(--deep-blue-soft) 50%, var(--charcoal-dark) 100%);
  color: var(--white);
  position: relative;
}
.section--dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.6rem);
  color: var(--charcoal-dark);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.85rem;
}
.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 56px;
  height: 4px;
  background: var(--accent-gold);
  border-radius: 2px;
}
.section-title--light { color: var(--white); }
.section-title--light::after { background: var(--accent-gold-light); }
.section-subtitle {
  font-size: 1.15rem;
  color: var(--charcoal);
  margin: 0 0 2rem;
  max-width: 56ch;
  line-height: 1.75;
}
.section-subtitle--light {
  color: rgba(255, 255, 255, 0.9);
}

/* Scroll-in animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  .animate-on-scroll.in-view { opacity: 1; }
}

/* Homepage sections – luxury refinements */
.home-section .section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.02em;
}
.section--work {
  background: var(--white);
  position: relative;
}
.section--work::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-200), transparent);
}
.section-head {
  margin-bottom: 2rem;
}
.section-head .section-subtitle { margin-bottom: 0; }
.project-names-list--home li {
  padding: 1.15rem 1.35rem;
  border-radius: var(--radius);
}
.project-names-list--home a {
  font-size: 1.08rem;
  font-family: var(--font-heading);
  font-weight: 600;
}
.work-grid--luxury {
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.work-grid--luxury .work-item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.work-grid--luxury .work-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.btn--work-cta { margin-top: 2.5rem; }

/* Project names list */
.project-names-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.project-names-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.project-names-list li:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
  transform: translateX(4px);
}
.project-names-list a {
  font-weight: 600;
  color: var(--charcoal-dark);
  font-size: 1.05rem;
}
.project-names-list a:hover { color: var(--accent-gold-dark); }
.project-client-type {
  font-size: 0.8rem;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
}
.project-names-list--page .project-names-list li { padding: 1.1rem 1.35rem; }
.project-names-list--page .project-names-list a { font-size: 1.1rem; }

/* Buttons – premium with gold accent */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.btn:focus-visible { outline: 2px solid var(--accent-gold); outline-offset: 2px; }
.btn--primary {
  background: var(--deep-blue);
  color: var(--white);
  border-color: var(--deep-blue);
}
.btn--primary:hover { color: var(--white); border-color: var(--accent-gold); background: var(--charcoal-dark); }
.btn--gold {
  background: var(--accent-gold);
  color: var(--charcoal-dark);
  border-color: var(--accent-gold);
}
.btn--gold:hover {
  background: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  color: var(--charcoal-dark);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--secondary:hover {
  background: var(--white);
  color: var(--charcoal-dark);
  border-color: var(--white);
}
.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* Hero – luxury interior, staggered animation, highlights */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--charcoal-dark) url('/images/hero/hero-bg.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(5, 26, 46, 0.92) 0%, rgba(10, 37, 64, 0.85) 40%, rgba(15, 15, 15, 0.9) 100%);
  pointer-events: none;
}
.hero-accent-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  opacity: 0.4;
  pointer-events: none;
}
.hero-accent-line--top { top: 24%; }
.hero-accent-line--bottom { bottom: 22%; }
.hero .container,
.hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width-wide);
  padding-top: 2rem;
  padding-bottom: 4rem;
}
.hero-animate {
  opacity: 0;
  animation: fadeInUp 1s var(--ease-out-expo) forwards;
  animation-delay: var(--hero-delay, 0s);
}
.hero-label {
  font-family: var(--font-heading);
  font-size: clamp(0.75rem, 1.8vw, 0.85rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
  margin: 0 0 1rem;
  opacity: 0.9;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6.5vw, 4rem);
  margin: 0 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--white);
  text-shadow: 0 2px 32px rgba(0, 0, 0, 0.35);
}
.hero-line {
  display: block;
}
.hero .hero-subtext {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 500;
}
.hero-highlight {
  margin-top: 1.5rem;
  padding: 0.6rem 1.25rem;
  display: inline-block;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 4px;
  background: rgba(201, 162, 39, 0.08);
}
.hero-highlight-text {
  font-family: var(--font-heading);
  font-size: clamp(0.8rem, 1.8vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold-light);
}
.hero-btn-group { margin-top: 2rem; }
.hero-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
  opacity: 0.95;
  transition: opacity var(--transition), transform var(--transition);
}
.hero-logo:hover { opacity: 1; transform: scale(1.06); }
.hero-logo img {
  width: 72px;
  height: 72px;
  display: block;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--transition);
}
.hero-scroll-indicator:hover { color: var(--accent-gold-light); }
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, currentColor, transparent);
  border-radius: 2px;
  animation: scrollPulse 2s var(--ease-out-quart) infinite;
}

/* Footer logo */
.footer-logo-row {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}
.footer-logo .logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.footer-logo .logo-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  letter-spacing: 0.04em;
}
.footer-logo .logo-wordmark-accent {
  color: var(--accent-gold-light);
  font-weight: 700;
}
.footer-logo:hover .logo-wordmark { color: rgba(255, 255, 255, 0.95); }
.footer-logo:hover .logo-wordmark-accent { color: var(--accent-gold-light); }

/* Page header */
.page-header {
  background: linear-gradient(160deg, var(--deep-blue) 0%, var(--charcoal-dark) 100%);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  border-bottom: 3px solid var(--accent-gold);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-gold-light);
  border-radius: 0 0 2px 2px;
}
.page-header h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.9rem, 4.5vw, 2.85rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.03em;
}
.page-header-sub {
  margin: 0;
  font-size: 1.1rem;
  color: var(--gray-400);
  font-weight: 500;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.card-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--gray-100);
}
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 1.5rem; }
.card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--charcoal-dark);
}
.card-meta { font-size: 0.85rem; color: var(--gray-400); margin: 0 0 0.75rem; }
.card p { margin: 0 0 1rem; font-size: 0.95rem; }
.card .btn { margin-top: 0.5rem; }

/* Work grid – premium gallery with hover overlay */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
.work-grid .work-item {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--gray-100);
  border-radius: var(--radius);
  position: relative;
  transition: transform var(--transition);
}
.work-grid .work-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 26, 46, 0.5), transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
}
.work-grid .work-item:hover {
  transform: scale(1.03);
}
.work-grid .work-item:hover::after { opacity: 1; }
.work-grid .work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-teaser { margin-bottom: 2rem; }
.work-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
}

/* Stats – in dark section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  text-align: center;
}
.stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--deep-blue);
  margin: 0 0 0.4rem;
  letter-spacing: -0.03em;
}
.stat-number--light {
  color: var(--accent-gold-light);
  text-shadow: 0 2px 20px rgba(201, 162, 39, 0.2);
}
.stat-label { font-size: 1.05rem; color: var(--charcoal); margin: 0; font-weight: 600; }
.stat-label--light { color: rgba(255, 255, 255, 0.85); }

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  counter-reset: step;
}
.process-step {
  display: flex;
  gap: 1.75rem;
  align-items: flex-start;
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--deep-blue), var(--charcoal-dark));
  color: var(--accent-gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-gold);
  box-shadow: var(--shadow-sm);
}
.process-step h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
  color: var(--charcoal-dark);
}
.process-step p { margin: 0; font-size: 1.05rem; line-height: 1.7; }

/* Services */
.service-block { margin-bottom: 4rem; }
.service-block:last-child { margin-bottom: 0; }
.service-block h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--deep-blue);
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 3px solid var(--accent-gold);
}
.service-list { list-style: none; padding: 0; margin: 0; }
.service-list li {
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--gray-200);
  display: grid;
  gap: 0.5rem;
}
.service-list li:last-child { border-bottom: none; }
.service-list .service-name { font-weight: 700; color: var(--charcoal-dark); font-size: 1.08rem; }
.service-list .service-desc { font-size: 1.02rem; color: var(--charcoal); margin: 0; line-height: 1.65; }

/* Contact form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}
.contact-form .form-group { margin-bottom: 1.4rem; }
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.45rem;
  color: var(--charcoal-dark);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.15);
}
.contact-form .btn { margin-top: 0.5rem; }
.alert-success {
  background: #ECFDF5;
  color: #065F46;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
  font-weight: 600;
  border: 2px solid #A7F3D0;
}

/* Map */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--gray-200);
  aspect-ratio: 16/10;
  background: var(--gray-100);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 100%; border: none; }

/* Project case study */
.project-case-study { padding: 3.5rem 0 5.5rem; }
.project-case-study-title { margin-top: 0; }
.project-meta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: grid;
  gap: 0.65rem;
}
.project-meta-list li { font-size: 1.05rem; }
.project-meta-list strong { display: inline-block; min-width: 140px; color: var(--charcoal-dark); }
.project-content h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.45rem;
  margin: 2.25rem 0 0.85rem;
  color: var(--charcoal-dark);
}
.project-content h2:first-child { margin-top: 0; }
.project-content p { margin: 0 0 1rem; font-size: 1.06rem; line-height: 1.7; }

/* Footer – gold accent top */
.site-footer {
  background: var(--charcoal-dark);
  color: var(--white);
  margin-top: 5.5rem;
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0;
}
.footer-col h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 1rem;
  color: var(--white);
  letter-spacing: 0.02em;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a { color: var(--gray-400); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent-gold-light); }
.footer-col p { margin: 0 0 0.5rem; font-size: 0.98rem; color: var(--gray-400); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 2rem 0;
  text-align: center;
}
.footer-bottom .container { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 1rem; }
.founder-credit { margin: 0; font-size: 0.9rem; color: var(--gray-400); }
.social-placeholders { margin: 0; }
.social-placeholders a { color: var(--gray-400); margin: 0 0.5rem; }
.social-placeholders a:hover { color: var(--accent-gold-light); }
.copyright { margin: 0; font-size: 0.85rem; color: var(--gray-400); }

/* Error page */
.error-page { padding: 5rem 0; text-align: center; }
.error-page-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.error-page-logo img { width: 56px; height: 56px; display: block; }
.error-page h1 { font-size: 2rem; margin-bottom: 1rem; }
.error-page p { margin-bottom: 1.5rem; }

/* Responsive – tablet */
@media (max-width: 900px) {
  .container { padding: 0 1.5rem; }
  .section { padding: 4.5rem 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .page-header { padding: 3.5rem 0; }
  .page-header h1 { font-size: clamp(1.65rem, 4vw, 2.25rem); }
  .section-title { font-size: clamp(1.65rem, 4vw, 2.15rem); }
  .process-steps { gap: 2rem; }
  .footer-logo-row { padding-top: 1.5rem; padding-bottom: 0.5rem; }
}

/* Responsive – mobile: single row, logo + wordmark + hamburger aligned */
@media (max-width: 700px) {
  .container { padding: 0 1.25rem; }
  .site-header {
    min-height: 56px;
  }
  .header-bar {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0;
    gap: 0.75rem;
    min-height: 56px;
  }
  .header-brand.logo-link {
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    flex: 0 1 auto;
    min-width: 0;
  }
  .header-brand .logo-img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: block;
  }
  .header-brand .logo-wordmark {
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .header-brand .logo-wordmark-accent {
    letter-spacing: 0.05em;
  }
  .main-nav-inline {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    flex-basis: auto;
    width: auto;
    order: 0;
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
    margin: 0;
    flex-shrink: 0;
    z-index: 10;
  }
  .nav-links {
    display: none;
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 1rem 0;
    gap: 0;
    background: rgba(5, 26, 46, 0.98);
    border-top: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-lg);
    list-style: none;
    z-index: 99;
    max-height: calc(100vh - 56px);
    overflow-y: auto;
  }
  .site-header.open .nav-links {
    display: flex;
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .nav-links li:last-child a { border-bottom: none; }
  .section { padding: 3.5rem 0; }
  .section--dark { padding: 3.5rem 0; }
  .section-title { font-size: clamp(1.5rem, 5vw, 1.9rem); padding-bottom: 0.65rem; }
  .section-title::after { width: 40px; height: 3px; }
  .section-subtitle { font-size: 1rem; margin-bottom: 1.5rem; }
  .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-number { font-size: clamp(2rem, 8vw, 2.5rem); }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 0; }
  .footer-logo-row { padding: 1.25rem 0; }
  .footer-logo .logo-img { width: 36px; height: 36px; }
  .footer-logo .logo-wordmark { font-size: 1rem; }
  .footer-bottom { padding: 1.5rem 0; }
  .footer-bottom .container { flex-direction: column; gap: 0.75rem; }
  .btn-group { flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
  .btn { width: 100%; text-align: center; padding: 0.95rem 1.5rem; }
  .work-grid,
  .work-grid--full { grid-template-columns: 1fr; gap: 1rem; }
  .card-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { min-height: 95vh; padding: 2rem 0; }
  .hero-logo { margin-bottom: 0.85rem; }
  .hero-logo img { width: 56px; height: 56px; }
  .hero-label { font-size: 0.7rem; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
  .hero-headline { font-size: clamp(2rem, 8vw, 2.75rem); margin-bottom: 0.75rem; }
  .hero .hero-subtext { font-size: clamp(1rem, 4vw, 1.15rem); }
  .hero-highlight { margin-top: 1rem; padding: 0.5rem 1rem; }
  .hero-highlight-text { font-size: 0.7rem; letter-spacing: 0.08em; }
  .hero-scroll-indicator { bottom: 1.25rem; }
  .hero-scroll-line { height: 32px; }
  .page-header { padding: 2.5rem 1rem; }
  .page-header h1 { font-size: clamp(1.5rem, 6vw, 1.9rem); }
  .page-header-sub { font-size: 0.95rem; }
  .project-names-list { margin-bottom: 1.5rem; gap: 0.65rem; }
  .project-names-list li {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.9rem 1rem;
  }
  .project-names-list a { font-size: 1rem; }
  .form-grid { gap: 1.5rem; }
  .contact-form .form-group { margin-bottom: 1.1rem; }
  .contact-form input,
  .contact-form select,
  .contact-form textarea { padding: 0.8rem 1rem; }
  .map-wrap { aspect-ratio: 4/3; }
  .process-step { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .process-step::before { width: 48px; height: 48px; font-size: 1.2rem; }
  .service-block { margin-bottom: 2.5rem; }
  .service-block h2 { font-size: 1.35rem; }
  .project-case-study { padding: 2rem 0 3rem; }
  .project-content h2 { font-size: 1.25rem; margin-top: 1.75rem; }
  .project-content p { font-size: 1rem; }
  .error-page { padding: 3rem 0; }
  .error-page h1 { font-size: 1.65rem; }
}

/* Very small screens */
@media (max-width: 380px) {
  .container { padding: 0 1rem; }
  .header-brand .logo-wordmark { font-size: 1rem; }
  .header-brand .logo-img { width: 36px; height: 36px; }
  .hero-headline { font-size: 1.75rem; }
}
