:root {
  --ink: #17130f;
  --muted: #626a62;
  --paper: #f3f5f0;
  --paper-strong: #e2ebe3;
  --line: rgba(42, 32, 23, 0.14);
  --charcoal: #211b16;
  --cedar: #754b39;
  --moss: #3f6b5a;
  --clay: #9a6845;
  --white: #fffdf7;
  --shadow: 0 24px 60px rgba(36, 26, 17, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.topbar {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(18, 13, 9, 0.82), rgba(18, 13, 9, 0.2));
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Georgia, serif;
}

.nav {
  display: flex;
  gap: 22px;
  color: rgba(255, 250, 241, 0.84);
  font-size: 14px;
}

.nav a:hover,
.nav-cta:hover {
  color: var(--white);
}

.nav-cta {
  border: 1px solid rgba(255, 250, 241, 0.56);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
}

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

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

.hero-bg {
  background-image: url("assets/hero-banya-concierge.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(15, 11, 8, 0.92) 0%, rgba(18, 13, 9, 0.75) 38%, rgba(18, 13, 9, 0.25) 72%),
    linear-gradient(180deg, rgba(15, 11, 8, 0.26), rgba(15, 11, 8, 0.62));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 88px);
  padding-top: 78px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

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

.hero-text {
  max-width: 660px;
  color: rgba(255, 250, 241, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.messenger-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font-weight: 750;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.primary {
  color: #fff8ed;
  background: var(--cedar);
}

.button.secondary,
.button.outline {
  color: var(--white);
  border-color: rgba(255, 250, 241, 0.45);
  background: rgba(255, 250, 241, 0.08);
}

.microcopy {
  max-width: 540px;
  margin: 16px 0 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 14px;
}

.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: var(--white);
}

.strip-item {
  padding: 24px clamp(20px, 4vw, 56px);
  border-right: 1px solid rgba(255, 250, 241, 0.12);
}

.strip-item:last-child {
  border-right: 0;
}

.strip-item strong,
.strip-item span {
  display: block;
}

.strip-item strong {
  margin-bottom: 4px;
  font-size: 24px;
}

.strip-item span {
  color: rgba(255, 250, 241, 0.7);
}

.section,
.problem-band,
.selection-band,
.compare-band,
.trust-band,
.request-section {
  padding: clamp(72px, 9vw, 128px) clamp(18px, 5vw, 72px);
}

.section-head {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-head.wide {
  max-width: 920px;
}

.section-head p,
.problem-copy p,
.selection-band p,
.trust-band p,
.request-copy p {
  color: var(--muted);
  font-size: 18px;
}

.card-grid,
.service-grid,
.scenario-grid,
.package-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.scenario,
.package,
.service-grid article,
.example-list article,
.compare article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.62);
  box-shadow: 0 12px 36px rgba(42, 32, 23, 0.06);
}

.card {
  min-height: 250px;
  padding: 22px;
}

.card p,
.scenario p,
.service-grid p,
.package p,
.package li,
.example-list p,
.compare p,
.faq p {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cedar);
  font-weight: 800;
}

.problem-band,
.selection-band,
.trust-band,
.request-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.problem-band {
  background: var(--paper-strong);
}

.check-list,
.criteria {
  display: grid;
  gap: 12px;
}

.check-list span,
.criteria li {
  list-style: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
  background: rgba(255, 250, 241, 0.72);
}

.check-list span::before,
.criteria li::before {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--moss);
}

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

.service-grid article {
  padding: 28px;
}

.accent {
  background: #dfe8e1;
}

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

.scenario {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 250, 241, 0.55);
}

.process {
  background: var(--charcoal);
  color: var(--white);
}

.process .eyebrow {
  color: #df9765;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.steps li {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 250, 241, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.05);
}

.steps span {
  display: block;
  margin-bottom: 42px;
  color: #df9765;
  font-weight: 900;
}

.steps p {
  color: rgba(255, 250, 241, 0.7);
}

.selection-band {
  background: var(--paper-strong);
}

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

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

.package {
  padding: 30px;
}

.package.featured {
  color: var(--white);
  background: var(--charcoal);
  transform: translateY(-12px);
}

.package.featured p,
.package.featured li {
  color: rgba(255, 250, 241, 0.72);
}

.package-label {
  color: var(--cedar);
  font-weight: 800;
}

.package.featured .package-label {
  color: #df9765;
}

.package ul {
  display: grid;
  gap: 8px;
  min-height: 96px;
  padding-left: 18px;
  margin: 22px 0;
}

.package a {
  color: var(--cedar);
  font-weight: 800;
}

.package.featured a {
  color: #df9765;
}

.examples {
  padding-top: 24px;
}

.example-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.example-list article {
  display: grid;
  grid-template-columns: 70px minmax(180px, 0.35fr) 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.example-list span {
  color: var(--cedar);
  font-weight: 900;
}

.compare-band {
  background: #dce7ee;
}

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

.compare article {
  min-height: 190px;
  padding: 28px;
  background: rgba(255, 250, 241, 0.5);
}

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

.trust-band p {
  color: rgba(255, 250, 241, 0.72);
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 241, 0.62);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  padding: 0 22px 20px;
}

.request-section {
  background: #edf0e8;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label,
label span {
  display: grid;
  gap: 8px;
}

label span {
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(42, 32, 23, 0.18);
  border-radius: 8px;
  padding: 14px 14px;
  color: var(--ink);
  background: #fffdf8;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
}

.form-button {
  width: 100%;
  border: 0;
  cursor: pointer;
  font: inherit;
}

.policy,
.form-success {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-success {
  min-height: 20px;
  color: var(--moss);
  font-weight: 800;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: rgba(255, 250, 241, 0.74);
  background: #12100d;
}

.footer p {
  margin: 0;
}

@media (max-width: 1100px) {
  .card-grid.five,
  .service-grid,
  .scenario-grid,
  .steps,
  .package-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-band,
  .selection-band,
  .trust-band,
  .request-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: absolute;
    padding: 14px 18px;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(15, 11, 8, 0.88) 0%, rgba(15, 11, 8, 0.8) 50%, rgba(15, 11, 8, 0.58) 100%),
      linear-gradient(90deg, rgba(15, 11, 8, 0.88), rgba(15, 11, 8, 0.25));
  }

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

  h1 {
    font-size: 42px;
  }

  .strip,
  .card-grid.five,
  .service-grid,
  .scenario-grid,
  .steps,
  .criteria,
  .package-grid,
  .compare,
  .form-row,
  .example-list article {
    grid-template-columns: 1fr;
  }

  .strip-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 250, 241, 0.12);
  }

  .card,
  .scenario,
  .steps li {
    min-height: auto;
  }

  .package.featured {
    transform: none;
  }

  .example-list article {
    gap: 4px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
