:root {
  --bg-dark: #120d09;
  --bg-deep: #1f1510;
  --accent: #efb35e;
  --accent-soft: #ffd8a5;
  --text: #f8f3ec;
  --muted: #c7b9a7;
  --card: rgba(255, 255, 255, 0.05);
  --stroke: rgba(255, 255, 255, 0.12);
  --radius: 18px;
  --shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 5%, #3a2318 0%, transparent 45%),
    radial-gradient(circle at 90% 30%, #2f1c13 0%, transparent 40%),
    linear-gradient(165deg, var(--bg-dark), var(--bg-deep));
  min-height: 100vh;
  position: relative;
}

.texture-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  background-image:
    repeating-linear-gradient(
      35deg,
      rgba(255, 255, 255, 0.12) 0,
      rgba(255, 255, 255, 0.12) 1px,
      transparent 1px,
      transparent 8px
    );
}

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

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 6vw;
  border-bottom: 1px solid var(--stroke);
  font-size: 0.85rem;
  color: var(--accent-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 6vw;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(16, 12, 9, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--stroke);
}

.brand {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
  font-size: 1.45rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.brand__icon {
  background: linear-gradient(135deg, #e08b34, #f6cb8b);
  color: #1f150f;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.nav__links {
  display: flex;
  gap: 1.3rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f4c080;
  background: linear-gradient(130deg, #d68e3e, #f0c17d);
  color: #21160d;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(239, 179, 94, 0.35);
}

.btn--small {
  font-size: 0.8rem;
  padding: 0.55rem 1rem;
}

.btn--ghost {
  background: transparent;
  color: var(--accent-soft);
  border: 1px solid var(--stroke);
}

.section {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 4rem 0;
}

.hero {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 2.5rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.75rem;
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

h1,
h2,
h3 {
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 0.8px;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  margin-bottom: 1rem;
}

h1 span {
  color: var(--accent);
}

.hero__lead {
  max-width: 64ch;
  line-height: 1.7;
  color: var(--muted);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: grid;
  gap: 1rem;
}

.hero__stats article {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero__stats h3 {
  font-size: 2.6rem;
  color: var(--accent);
}

.hero__stats p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  line-height: 1.4;
}

.section__heading {
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

.card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.4rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent);
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.experience {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.experience__item {
  padding: 1.4rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.18);
}

.experience__item span {
  font-family: "Bebas Neue", sans-serif;
  color: var(--accent);
  font-size: 1.9rem;
}

.experience__item h3 {
  font-size: 1.8rem;
  margin: 0.4rem 0 0.5rem;
}

.experience__item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.testimonials .quote {
  margin: 0;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  line-height: 1.7;
}

.testimonials cite {
  display: block;
  margin-top: 0.75rem;
  color: var(--accent-soft);
  font-style: normal;
}

.cta {
  border: 1px solid var(--stroke);
  border-radius: calc(var(--radius) + 6px);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(239, 179, 94, 0.2), transparent 55%),
    rgba(255, 255, 255, 0.03);
}

.cta h2 {
  margin-bottom: 0.6rem;
}

.cta p {
  color: var(--muted);
  margin: 0 auto 1.2rem;
  max-width: 56ch;
}

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.location p,
.location li {
  color: var(--muted);
  line-height: 1.65;
}

.location ul {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.location__map {
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  min-height: 250px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(130deg, rgba(224, 139, 52, 0.2), transparent),
    rgba(255, 255, 255, 0.03);
  color: var(--accent-soft);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1px;
}

.footer {
  border-top: 1px solid var(--stroke);
  padding: 1.4rem 6vw 2rem;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

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

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

@media (max-width: 960px) {
  .hero,
  .location,
  .grid--3,
  .experience {
    grid-template-columns: 1fr;
  }

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

  .nav {
    flex-wrap: wrap;
  }

  .nav__links {
    width: 100%;
    order: 3;
    justify-content: center;
    padding-top: 0.5rem;
  }

  h1 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .topbar {
    font-size: 0.75rem;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    min-height: auto;
  }

  .btn {
    width: 100%;
  }
}
