* {
  box-sizing: border-box;
}

:root {
  --bg: #0c0a09;
  --panel: rgba(255, 255, 255, 0.03);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f5f5f4;
  --muted: #d6d3d1;
  --soft: #a8a29e;
  --accent: #fbbf24;
  --accent-dark: #d97706;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: #0c0a09;
  color: var(--text);
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(245, 158, 11, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(10,10,10,0.96), rgba(28,25,23,0.88), rgba(120,53,15,0.56));
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  padding: 96px 0 120px;
}

.hero-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.3);
  background: rgba(252, 211, 77, 0.1);
  color: #fde68a;
  padding: 10px 16px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

h1 {
  margin-top: 20px;
  max-width: 820px;
  font-size: clamp(29px, 3.6vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.03;
  margin-top: 12px;
}

h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.lead {
  margin-top: 24px;
  max-width: 720px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.8;
}

.lead-small {
  margin-top: 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-block;
  border-radius: 18px;
  padding: 14px 24px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #1c1917;
  box-shadow: 0 12px 24px rgba(217, 119, 6, 0.18);
}

.btn-secondary {
  border: 1px solid #57534e;
  background: rgba(28, 25, 23, 0.5);
  color: #fafaf9;
}

.full-width {
  width: 100%;
  text-align: center;
  margin-top: 18px;
}

.hero-card {
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  padding: 24px;
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.28);
}

.hero-card-inner {
  border-radius: 24px;
  border: 1px solid rgba(253, 224, 71, 0.18);
  background: linear-gradient(to bottom right, rgba(253,224,71,0.08), rgba(28,25,23,0.25), rgba(124,45,18,0.24));
  padding: 24px;
}

.card-label, .section-label {
  margin: 0;
  color: #fcd34d;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.image-panel-wrap {
  margin-top: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(253, 224, 71, 0.18);
  background: rgba(28, 25, 23, 0.45);
  padding: 24px;
}

.image-panel {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  background: #1c1917;
}

.image-bg {
  position: absolute;
  inset: 0;
  background-image: url('image5.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.image-darken {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.caption {
  margin: 16px 0 0;
  color: #d6d3d1;
  font-size: 14px;
  line-height: 1.7;
}

.sector-band {
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(28, 25, 23, 0.6);
}

.sector-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 0;
}

.sector-tags span {
  border-radius: 999px;
  border: 1px solid #44403c;
  background: rgba(41,37,36,0.75);
  color: #d6d3d1;
  padding: 10px 16px;
  font-size: 14px;
}

.section {
  padding: 88px 0;
}

.approach-grid,
.positioning-grid,
.contact-wrap {
  display: grid;
  gap: 40px;
}

.approach-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-card,
.point-item,
.contact-card,
.feature-card {
  border-radius: 28px;
  border: 1px solid var(--panel-border);
  background: var(--panel);
}

.service-card {
  padding: 24px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

.service-card p,
.feature-card p,
.point-item p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.alt-section {
  background: rgba(28, 25, 23, 0.7);
}

.positioning-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.feature-card {
  padding: 32px;
  background: linear-gradient(to bottom right, rgba(28,25,23,0.94), rgba(12,10,9,0.98));
  border-color: rgba(253, 224, 71, 0.14);
  box-shadow: 0 24px 48px rgba(0,0,0,0.22);
}

.feature-card p:last-child {
  margin-top: 20px;
  font-size: 18px;
}

.points {
  display: grid;
  gap: 18px;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  margin-top: 9px;
  border-radius: 999px;
  background: var(--accent);
  flex: 0 0 auto;
}

.contact-wrap {
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  border-radius: 32px;
  border: 1px solid var(--panel-border);
  background: linear-gradient(to right, rgba(28,25,23,0.95), rgba(12,10,9,0.96));
  padding: 32px;
}

.contact-card {
  padding: 24px;
  border-color: rgba(253, 224, 71, 0.14);
}

.contact-card p + p {
  margin-top: 10px;
}

.contact-card strong {
  color: #fafaf9;
}

@media (max-width: 960px) {
  .hero-columns,
  .approach-grid,
  .positioning-grid,
  .contact-wrap,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 72px 0 88px;
  }

  h1 {
    font-size: clamp(26px, 5.25vw, 39px);
  }

  .lead {
    font-size: 18px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(1120px, calc(100% - 28px));
  }

  .section,
  .hero-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .contact-wrap {
    padding: 24px;
  }

  .hero-card,
  .hero-card-inner,
  .feature-card,
  .service-card,
  .contact-card {
    border-radius: 22px;
  }
}


/* Increased header brand size */
.brand, .brand a, .site-title, .logo-text, .header-brand { font-size: clamp(21px, 2.1vw, 30px); }


/* Top-left logo */
.site-corner-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  width: clamp(150px, 18vw, 280px);
  height: auto;
  z-index: 5;
  display: block;
}

@media (max-width: 900px) {
  .site-corner-logo {
    top: 14px;
    left: 14px;
    width: clamp(120px, 28vw, 200px);
  }

  .hero-content {
    padding-top: 140px;
  }
}


/* Recenter hero content with top-left logo present */
.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding-top: 72px;
}

@media (min-width: 901px) {
  .hero-content {
    padding-top: 96px;
  }
}

/* Keep logo in top-left but slightly smaller for balance */
.site-corner-logo {
  position: absolute;
  top: 18px;
  left: 18px;
  width: clamp(130px, 15vw, 230px);
  height: auto;
  z-index: 5;
  display: block;
}

@media (max-width: 900px) {
  .site-corner-logo {
    top: 12px;
    left: 12px;
    width: clamp(100px, 24vw, 170px);
  }
  .hero-content {
    padding-top: 120px;
  }
}
