:root {
  --ink: #111a24;
  --pine: #173c3b;
  --alpine: #2e7471;
  --brass: #bd8f48;
  --snow: #f7f8f5;
  --stone: #d8d2c4;
  --mist: #edf1ee;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(17, 26, 36, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--snow);
  line-height: 1.55;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
}

.site-header::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(17, 26, 36, 0.82), rgba(17, 26, 36, 0));
  pointer-events: none;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand span {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand strong {
  font-size: 0.95rem;
  font-weight: 750;
}

.brand em {
  font-size: 0.72rem;
  font-style: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.78;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.88rem;
  font-weight: 650;
}

.nav a {
  opacity: 0.84;
}

.nav a:hover,
.nav a:focus-visible {
  opacity: 1;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-media {
  z-index: -3;
  background-image: url("assets/hero-hospitality-software.png");
  background-size: cover;
  background-position: 64% 50%;
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(17, 26, 36, 0.94) 0%, rgba(17, 26, 36, 0.72) 43%, rgba(17, 26, 36, 0.2) 100%),
    linear-gradient(0deg, rgba(17, 26, 36, 0.5), rgba(17, 26, 36, 0.05) 42%);
}

.hero-content {
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 96px);
  padding-top: 84px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brass);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 7.8vw, 6.6rem);
  font-weight: 760;
}

h2 {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 720;
}

h3 {
  font-size: 1.22rem;
  font-weight: 720;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.03rem, 1.6vw, 1.22rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  padding: 13px 18px;
  font-size: 0.92rem;
  font-weight: 800;
}

.button.primary {
  color: var(--ink);
  background: var(--brass);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.band {
  background: var(--white);
}

.intro,
.services,
.approach,
.problems,
.about,
.contact {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 1fr);
  gap: clamp(32px, 7vw, 96px);
  width: min(1160px, 100%);
  margin: 0 auto;
  align-items: start;
}

.section-grid > p,
.problem-list {
  margin: 5px 0 0;
  color: rgba(17, 26, 36, 0.72);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(34px, 5vw, 56px);
  text-align: center;
}

.section-heading.compact {
  width: min(760px, 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.service-card {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(17, 26, 36, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(17, 26, 36, 0.05);
}

.service-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 52px;
  border: 1px solid rgba(189, 143, 72, 0.54);
  border-radius: 50%;
  color: var(--pine);
  font-weight: 850;
}

.service-card p,
.timeline-item p,
.about p,
.contact p,
.site-footer p {
  color: rgba(17, 26, 36, 0.7);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1160px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 26, 36, 0.09);
  border-radius: 8px;
  background: rgba(17, 26, 36, 0.09);
}

.timeline-item {
  min-height: 190px;
  padding: 26px;
  background: var(--snow);
}

.timeline-item span {
  display: block;
  margin-bottom: 34px;
  color: var(--pine);
  font-size: 0.88rem;
  font-weight: 850;
  text-transform: uppercase;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem-list p {
  margin: 0;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 26, 36, 0.14);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(34px, 7vw, 86px);
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: clamp(32px, 6vw, 72px);
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 26, 36, 0.92), rgba(23, 60, 59, 0.92)),
    radial-gradient(circle at 100% 0%, rgba(189, 143, 72, 0.24), transparent 34%);
  box-shadow: var(--shadow);
}

.about-panel p {
  color: rgba(255, 255, 255, 0.75);
}

.founders {
  display: grid;
  gap: 14px;
}

.founders article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.contact {
  background: var(--pine);
  color: var(--white);
}

.contact-inner {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.contact p {
  max-width: 620px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: var(--ink);
  color: var(--white);
}

.footer-brand {
  font-weight: 800;
}

.site-footer p {
  max-width: 460px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 860px;
  }

  .hero-media {
    background-position: 70% 50%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(17, 26, 36, 0.95), rgba(17, 26, 36, 0.64)),
      linear-gradient(0deg, rgba(17, 26, 36, 0.52), rgba(17, 26, 36, 0.06));
  }

  .section-grid,
  .about-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .site-header {
    padding: 16px 18px;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand em {
    font-size: 0.64rem;
  }

  .hero {
    min-height: 820px;
  }

  .hero-content {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 70px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

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

  .service-card,
  .timeline-item {
    min-height: auto;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .about-panel {
    padding: 28px;
  }
}
