:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #53625c;
  --paper: #f7f8f5;
  --white: #ffffff;
  --line: #d9dfd8;
  --trust: #087f5b;
  --trust-dark: #055f46;
  --gold: #c69328;
  --coral: #d45d4c;
  --mist: #e8f2ed;
  --shadow: 0 18px 50px rgba(23, 33, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(247, 248, 245, 0.92);
  border-bottom: 1px solid rgba(217, 223, 216, 0.7);
  display: grid;
  gap: 18px;
  grid-template-columns: auto 1fr auto;
  left: 0;
  padding: 14px clamp(18px, 4vw, 58px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--trust);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.site-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--trust-dark);
}

.nav-toggle {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: none;
  padding: 9px 12px;
}

.header-cta {
  background: var(--ink);
  border-radius: 8px;
  color: var(--white);
  font-weight: 800;
  padding: 11px 16px;
}

.hero {
  align-items: center;
  background:
    linear-gradient(120deg, rgba(8, 23, 18, 0.96), rgba(5, 95, 70, 0.9)),
    var(--trust-dark);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 72px);
  min-height: 92vh;
  overflow: hidden;
  padding: 120px clamp(20px, 7vw, 92px) 70px;
  position: relative;
}

.hero-image {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  height: auto;
  justify-self: end;
  max-width: 520px;
  object-fit: contain;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-scrim {
  background: radial-gradient(circle at 85% 25%, rgba(198, 147, 40, 0.22), transparent 34%);
  inset: 0;
  position: absolute;
}

.hero-content {
  color: var(--white);
  grid-column: 1;
  grid-row: 1;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.hero h1,
.section h2,
.cta-footer h2 {
  letter-spacing: 0;
  line-height: 1.04;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.4vw, 4.9rem);
}

.hero p {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  max-width: 660px;
}

.eyebrow {
  color: var(--trust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b8f3dd;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
}

.button.primary {
  background: var(--trust);
  color: var(--white);
}

.button.primary:hover {
  background: var(--trust-dark);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

.button.full {
  width: 100%;
}

.trust-strip {
  background: var(--ink);
  color: var(--white);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
}

.trust-strip span {
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  padding: 20px clamp(16px, 3vw, 34px);
  text-align: center;
}

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

.split {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
}

.section h2,
.cta-footer h2 {
  font-size: clamp(2rem, 4vw, 4.2rem);
}

.section p {
  color: var(--muted);
  font-size: 1.04rem;
}

.value-grid,
.pricing-grid,
.admin-board,
.dashboard-grid,
.steps,
.service-layout {
  display: grid;
  gap: 18px;
}

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

.value-grid article,
.steps article,
.panel,
.pricing-card,
.admin-board article,
.service-card,
.price-summary,
.order-form,
.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(23, 33, 29, 0.06);
}

.value-grid article {
  padding: 24px;
}

.value-grid strong {
  color: var(--trust-dark);
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.story-photo {
  margin: 28px 0 0;
}

.story-photo img,
.corridor-panel img {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
  width: 100%;
}

.story-photo figcaption {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
  margin-top: 10px;
}

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

.section-heading {
  margin: 0 auto 34px;
  max-width: 900px;
  text-align: center;
}

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

.steps article {
  padding: 24px;
}

.steps span {
  align-items: center;
  background: var(--trust);
  border-radius: 8px;
  color: var(--white);
  display: inline-flex;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 34px;
}

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

.service-card {
  overflow: hidden;
}

.service-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.service-card h3,
.service-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.service-card h3 {
  margin-top: 22px;
}

.service-card p {
  margin-bottom: 24px;
}

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

.app-section .eyebrow,
.app-section p {
  color: #b8f3dd;
}

.order-shell {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  margin: 0 auto;
  max-width: 1120px;
}

.order-form,
.price-summary {
  box-shadow: var(--shadow);
  color: var(--ink);
  padding: 24px;
}

.order-form {
  display: grid;
  gap: 16px;
}

label {
  color: var(--muted);
  display: grid;
  font-weight: 800;
  gap: 7px;
}

input,
select,
textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 48px;
  padding: 11px 12px;
}

textarea {
  resize: vertical;
}

.checkbox-row {
  align-items: center;
  color: var(--ink);
  display: flex;
  gap: 10px;
}

.checkbox-row input {
  min-height: auto;
  width: 18px;
}

.price-summary h3 {
  margin-top: 0;
}

.line-row,
.total-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 11px 0;
}

.total-row {
  border-bottom: 0;
  font-size: 1.2rem;
  margin-top: 10px;
}

.notice {
  background: var(--mist);
  border-left: 4px solid var(--trust);
  border-radius: 8px;
  color: var(--ink) !important;
  padding: 12px;
}

.notice.error {
  background: #fff0ed;
  border-color: var(--coral);
}

.provider-card {
  background: var(--paper);
  border-radius: 8px;
  margin-top: 18px;
  padding: 16px;
}

.booking-actions {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
}

.booking-actions[hidden] {
  display: none;
}

.booking-actions h4,
.booking-actions p {
  margin: 0;
}

.booking-actions small {
  color: var(--muted);
  font-weight: 800;
}

.status-chip {
  background: var(--mist);
  border: 1px solid #bfe0d2;
  border-radius: 999px;
  color: var(--trust-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  padding: 5px 9px;
}

.status-chip.processing {
  background: #fff6dd;
  border-color: #ecd590;
  color: #795913;
}

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

.panel {
  padding: 22px;
}

.panel.wide {
  grid-column: span 2;
}

.panel-head {
  align-items: start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.timeline div {
  display: grid;
  gap: 12px;
  grid-template-columns: 16px 1fr;
}

.timeline span {
  background: var(--trust);
  border-radius: 50%;
  height: 12px;
  margin-top: 6px;
  width: 12px;
}

.timeline p,
.mini-list p,
.message-list p {
  margin: 0;
}

.mini-list,
.message-list {
  display: grid;
  gap: 12px;
}

.mini-item,
.message {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.calendar-chip {
  background: var(--mist);
  border-radius: 8px;
  color: var(--trust-dark);
  font-weight: 900;
  padding: 13px;
}

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

.pricing-card {
  padding: 24px;
}

.pricing-card.featured {
  border: 2px solid var(--trust);
}

.price {
  color: var(--ink) !important;
  font-size: clamp(1.8rem, 3vw, 2.6rem) !important;
  font-weight: 900;
  margin: 10px 0;
}

.price span {
  font-size: 1rem;
}

.pricing-note {
  color: var(--muted);
  font-size: 0.94rem !important;
  font-weight: 800;
  margin: 18px auto 0;
  max-width: 900px;
  text-align: center;
}

.country-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.corridor-panel {
  display: grid;
  gap: 20px;
}

.country-cloud span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
  padding: 10px 13px;
}

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

.admin-board article {
  padding: 24px;
}

.admin-board li {
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin: 0 auto;
  max-width: 900px;
}

.faq-list details {
  padding: 18px 20px;
}

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

.cta-footer {
  background: var(--trust-dark);
  color: var(--white);
  padding: clamp(64px, 8vw, 104px) clamp(20px, 7vw, 92px);
}

.cta-footer p {
  color: #d6f6e8;
  font-size: 1.15rem;
  max-width: 760px;
}

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

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

  .site-nav.open {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-column: 1 / -1;
    justify-content: stretch;
    padding: 14px;
  }

  .trust-strip,
  .steps,
  .service-layout,
  .pricing-grid,
  .dashboard-grid,
  .admin-board,
  .split,
  .hero,
  .order-shell {
    grid-template-columns: 1fr;
  }

  .hero-image {
    justify-self: start;
    max-width: 480px;
  }

  .panel.wide {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .hero {
    min-height: 88vh;
    padding-top: 110px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 10.8vw, 3.6rem);
  }

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

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }
}
