:root {
  --ink: #17242b;
  --muted: #5f7078;
  --line: #d6e0e2;
  --paper: #f6f8f7;
  --white: #ffffff;
  --teal: #174e5b;
  --teal-dark: #103842;
  --teal-soft: #dceced;
  --gold: #bd8c2f;
  --gold-soft: #f5e6c1;
  --green: #37624a;
  --red: #a43d31;
  --shadow: 0 20px 45px rgba(16, 56, 66, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 220px;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font-weight: 700;
  letter-spacing: 0;
}

.brand-name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-line {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  white-space: nowrap;
}

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

.nav .nav-cta {
  padding: 9px 13px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: calc(100vh - 66px);
  max-height: 820px;
  display: grid;
  align-items: end;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px) clamp(52px, 8vw, 84px);
  color: var(--white);
  background-image:
    linear-gradient(90deg, rgba(10, 34, 41, 0.92) 0%, rgba(12, 45, 54, 0.78) 42%, rgba(12, 45, 54, 0.28) 100%),
    url("./hotel-operations-hero.png");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.12);
}

.button.dark {
  color: var(--white);
  background: var(--teal);
}

.button.light {
  color: var(--teal);
  border-color: var(--line);
  background: var(--white);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-item {
  padding: 22px clamp(16px, 3vw, 36px);
  background: var(--white);
}

.trust-item strong {
  display: block;
  color: var(--teal);
  font-size: 22px;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
}

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

.section.teal {
  color: var(--white);
  background: var(--teal-dark);
}

.section-header {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin-bottom: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.section-header p,
.lead {
  color: var(--muted);
  font-size: 18px;
}

.teal .section-header p,
.teal .lead,
.teal .card p {
  color: rgba(255, 255, 255, 0.78);
}

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

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

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

.card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.teal .card {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.card p {
  color: var(--muted);
}

.price {
  display: block;
  margin: 14px 0 16px;
  color: var(--teal);
  font-size: 24px;
  font-weight: 800;
}

.teal .price {
  color: var(--gold-soft);
}

.list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.steps li::before {
  content: counter(step);
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: var(--white);
  background: var(--teal);
  font-weight: 800;
}

.product-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.product-preview {
  min-height: 260px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--teal-soft), var(--white));
}

.sheet-mock {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.sheet-row,
.sheet-head {
  display: grid;
  grid-template-columns: 1fr 1.3fr 0.9fr 1fr;
}

.sheet-head span {
  padding: 9px;
  color: var(--white);
  background: var(--teal);
  font-size: 12px;
  font-weight: 700;
}

.sheet-row span {
  min-height: 34px;
  padding: 9px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
}

.status-open {
  color: var(--red) !important;
  background: #f9e1de;
}

.status-progress {
  color: #7a5617 !important;
  background: var(--gold-soft);
}

.status-done {
  color: var(--green) !important;
  background: #e4f1e9;
}

.page-hero {
  padding: clamp(58px, 8vw, 96px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background: var(--teal-dark);
}

.page-hero .inner {
  max-width: 920px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: clamp(40px, 6vw, 64px);
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.breadcrumb {
  margin-bottom: 18px;
  color: var(--gold-soft);
  font-size: 13px;
}

.breadcrumb a {
  text-decoration: none;
}

.content {
  max-width: 980px;
  margin: 0 auto;
}

.content p {
  color: var(--muted);
}

.callout {
  padding: 20px;
  border-left: 5px solid var(--gold);
  background: var(--gold-soft);
}

.faq details {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.contact-box {
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--teal);
}

.contact-box a {
  color: var(--gold-soft);
}

.site-footer {
  padding: 32px clamp(20px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.74);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

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

  .nav {
    flex-wrap: wrap;
  }

  .hero {
    min-height: 680px;
    background-position: 62% center;
  }

  .trust-strip,
  .grid.three,
  .grid.two,
  .split,
  .product-band,
  .contact-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .nav {
    gap: 12px;
    font-size: 13px;
  }

  .hero {
    min-height: 660px;
    padding-top: 54px;
  }

  .button {
    width: 100%;
  }

  .trust-item,
  .card,
  .panel {
    padding: 20px;
  }

  .steps li {
    grid-template-columns: 34px 1fr;
  }

  .steps li::before {
    width: 32px;
    height: 32px;
  }
}
