:root {
  --bg: #fbf7f2;
  --surface: #ffffff;
  --surface-soft: #f3ebe3;
  --text: #26201c;
  --muted: #6d625b;
  --border: #e2d6ca;
  --accent: #8c6f5b;
  --accent-dark: #6f5645;
  --accent-soft: #eaded2;
  --error: #a33b2f;
  --shadow: 0 20px 60px rgba(64, 45, 34, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1120px;
  --banner-height: 54px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 140px;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  background: var(--surface);
  color: var(--text);
}

input:focus,
select:focus,
textarea:focus,
a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(140, 111, 91, 0.35);
  outline-offset: 3px;
}

textarea {
  resize: vertical;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.demo-banner {
  position: sticky;
  top: 0;
  z-index: 1000;
  min-height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  background: var(--accent-dark);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

.site-header {
  position: sticky;
  top: var(--banner-height);
  z-index: 900;
  background: rgba(251, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 214, 202, 0.7);
}

.nav {
  width: min(100% - 2rem, var(--max-width));
  margin: 0 auto;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 650;
}

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

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  white-space: nowrap;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 0.7rem 1rem;
  color: #fff !important;
}

.full-width {
  width: 100%;
}

.text-link {
  font-weight: 800;
  color: var(--accent-dark);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero {
  padding-top: 4rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 8vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-text {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.hero-card {
  position: relative;
  min-height: 440px;
  padding: 2rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(234, 222, 210, 0.9), transparent 30%),
    linear-gradient(145deg, #ffffff, #f0e5da);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card:after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -90px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(140, 111, 91, 0.14);
}

.card-topline {
  width: 90px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
  margin-bottom: 5rem;
}

.card-label {
  color: var(--accent-dark);
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.hero-card h2 {
  max-width: 400px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.hero-card p:last-child {
  max-width: 420px;
  color: var(--muted);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

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

.card-grid,
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-card,
.step,
.booking-form,
.mini-note {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.service-card,
.step {
  padding: 1.5rem;
}

.service-card p,
.step p,
.split p,
.form-copy p {
  color: var(--muted);
}

.service-card a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.service-card a:hover {
  text-decoration: underline;
}

.about {
  background: var(--surface-soft);
}

.split {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.step span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  margin-bottom: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.mini-note {
  padding: 1rem;
  margin-top: 1.5rem;
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.booking-form {
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 1rem;
}

.field label {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-weight: 800;
}

.field label span {
  color: var(--error);
}

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

.error-message {
  min-height: 1.2rem;
  margin: 0.35rem 0 0;
  color: var(--error);
  font-size: 0.9rem;
}

.form-status {
  min-height: 1.5rem;
  margin: 1rem 0 0;
  font-weight: 800;
}

.form-status.success {
  color: #226c3d;
}

.form-status.error {
  color: var(--error);
}

.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

@media (max-width: 820px) {
  :root {
    --banner-height: auto;
  }

  .demo-banner {
    min-height: auto;
  }

  .site-header {
    top: 0;
  }

  html {
    scroll-padding-top: 150px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 126px;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-grid,
  .split,
  .form-layout,
  .card-grid,
  .steps-grid,
  .field-group {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: auto;
  }

  .card-topline {
    margin-bottom: 3rem;
  }
}

@media (max-width: 430px) {
  .container,
  .nav {
    width: min(100% - 1.25rem, var(--max-width));
  }

  .demo-banner {
    font-size: 0.78rem;
    padding: 0.65rem 0.75rem;
  }

  .nav {
    min-height: 68px;
  }

  .logo {
    max-width: 210px;
    line-height: 1.1;
  }

  .nav-links {
    top: 118px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .booking-form {
    padding: 1.1rem;
  }
}
