:root {
  --bg: #f5f0e5;
  --ink: #1f3a5f;
  --ink-soft: #4a5a72;
  --muted: #7a7163;
  --rule: #e5dccc;
  --accent: #2a4a6d;
  --max-width: 880px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px 64px;
}

.hero {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 8px 0;
}

.logo {
  flex: 0 0 auto;
  width: 42%;
  max-width: 360px;
  height: auto;
  display: block;
}

.intro {
  flex: 1 1 auto;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}

.intro p {
  margin: 0;
}

.booking {
  margin-top: 24px;
}

.booking h2 {
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 12px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.02em;
}

#my-cal-inline {
  min-height: 640px;
  width: 100%;
  background: white;
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}

footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

footer a {
  color: var(--accent);
  text-decoration: none;
}

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

@media (max-width: 700px) {
  main { padding: 16px 16px 48px; }
  body { font-size: 16px; }
  .hero {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .logo { width: 100%; max-width: 420px; }
  .intro { font-size: 17px; }
  #my-cal-inline { min-height: 580px; }
}
