:root {
  color-scheme: dark;
  --ink: #f5f5f1;
  --muted: #b9bcb8;
  --line: rgba(255, 255, 255, 0.14);
  --paper: #101113;
  --panel: #17191d;
  --panel-soft: #1f211f;
  --charcoal: #111315;
  --gold: #f3c900;
  --gold-dark: #d0ad12;
  --green: #8ba799;
  --blue: #8ba6bd;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(16, 17, 19, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(240px, 50vw);
}

.brand img {
  width: 100%;
  height: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
}

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

.menu-toggle {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 76vh;
  display: grid;
  align-items: center;
  padding: clamp(64px, 10vw, 112px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.98) 0%, rgba(17, 19, 21, 0.9) 50%, rgba(17, 19, 21, 0.58) 100%),
    url("Logos/Kaura%20Enterprises%20Logo.png") right 8% center / min(48vw, 520px) no-repeat,
    var(--charcoal);
  color: #ffffff;
}

.hero-watermark {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: 3.45rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.role {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: 5.25rem;
  line-height: 0.95;
  font-weight: 760;
}

h2 {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 3.45rem;
  line-height: 1.02;
  font-weight: 720;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  font-weight: 750;
  text-decoration: none;
}

.button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #171717;
}

.button.secondary {
  color: #ffffff;
}

.button:hover {
  transform: translateY(-1px);
}

.section {
  scroll-margin-top: 112px;
  padding: clamp(64px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 7vw, 92px);
  align-items: start;
}

.about-panel {
  max-width: 980px;
}

.about-copy {
  margin-bottom: 18px;
  color: rgba(245, 245, 241, 0.9);
  font-size: 1.45rem;
  line-height: 1.55;
}

.about-copy:last-child {
  margin-bottom: 0;
}

.prose {
  color: var(--muted);
  font-size: 1.05rem;
}

.prose p {
  margin-bottom: 18px;
}

.services-section,
.directors-section {
  background: var(--paper);
}

.service-grid,
.director-grid {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.service-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.service-card,
.director-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.service-card {
  min-height: 260px;
  padding: 24px;
}

.service-number {
  display: block;
  margin-bottom: 34px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 800;
}

.service-card p,
.director-details p,
.contact-panel p {
  color: var(--muted);
}

.director-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.director-card {
  overflow: hidden;
}

.director-card img,
.placeholder-photo {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  background: #252924;
}

.director-card img {
  object-position: center top;
}

.placeholder-photo {
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 5.5rem;
  font-weight: 800;
}

.director-details {
  padding: 24px;
}

.director-details .role {
  margin-bottom: 8px;
  color: var(--green);
}

.director-details p:last-child {
  margin-bottom: 0;
}

.contact-section {
  background: #0b0c0e;
  color: #ffffff;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 36px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-panel h2 {
  color: #ffffff;
}

.contact-panel p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.74);
}

.contact-lines {
  display: grid;
  gap: 0;
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.contact-item {
  display: grid;
  gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-item:last-child {
  border-bottom: 0;
}

.contact-item span {
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-lines a,
.contact-lines strong {
  overflow-wrap: anywhere;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
  text-decoration: none;
  font-style: normal;
}

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

.site-footer {
  padding: 22px clamp(20px, 5vw, 72px);
  background: #070708;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .split,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3.85rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .section-kicker {
    font-size: 2.85rem;
  }

  .hero-copy {
    font-size: 1.14rem;
  }

  .about-copy {
    font-size: 1.22rem;
  }

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

  .director-grid {
    grid-template-columns: 1fr;
  }

  .director-card {
    display: grid;
    grid-template-columns: minmax(160px, 0.45fr) minmax(0, 1fr);
  }

  .director-card img,
  .placeholder-photo {
    height: 100%;
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 15px;
  }

  .site-header {
    position: sticky;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 18px;
  }

  .brand {
    width: min(230px, 68vw);
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
  }

  .menu-toggle span:not(.sr-only) {
    position: absolute;
    left: 11px;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--ink);
    transform-origin: center;
    transition: top 180ms ease, transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle span:nth-child(1) {
    top: 14px;
  }

  .menu-toggle span:nth-child(2) {
    top: 21px;
  }

  .menu-toggle span:nth-child(3) {
    top: 28px;
  }

  .site-header.nav-open .menu-toggle span:nth-child(1) {
    top: 21px;
    transform: rotate(45deg);
  }

  .site-header.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-open .menu-toggle span:nth-child(3) {
    top: 21px;
    transform: rotate(-45deg);
  }

  .nav {
    display: none;
    width: 100%;
    align-items: stretch;
    justify-items: center;
    grid-template-columns: 1fr;
    gap: 12px;
    overflow: visible;
    padding: 24px 0 20px;
    border-top: 0;
    font-size: 1.12rem;
  }

  .site-header.nav-open .nav {
    display: grid;
  }

  .nav a {
    display: block;
    justify-self: center;
    width: auto;
    padding: 7px 16px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    min-height: 620px;
    align-items: center;
    padding: 72px 18px 84px;
    background:
      linear-gradient(180deg, rgba(17, 19, 21, 0.94) 0%, rgba(17, 19, 21, 0.9) 100%),
      var(--charcoal);
  }

  .hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 0;
    display: block;
    width: min(92vw, 390px);
    max-width: none;
    opacity: 0.12;
    transform: translate(-50%, -48%);
    pointer-events: none;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .section-kicker {
    font-size: 2.25rem;
  }

  .about-copy {
    font-size: 1.08rem;
  }

  .button {
    width: 100%;
  }

  .section {
    scroll-margin-top: 24px;
    padding: 56px 18px;
  }

  .service-grid,
  .director-card {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
    padding: 24px;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .director-card img,
  .placeholder-photo {
    min-height: auto;
  }

  .placeholder-photo {
    font-size: 3.8rem;
  }
}
