:root {
  --ap-accent: #0b7d6e;
  --ap-accent-soft: #e6f5f2;
  --ap-text: #1d1d1d;
  --ap-muted: #666;
  --ap-border: #e2e2e2;
  --ap-max: 1100px;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--ap-text);
  line-height: 1.6;
  background: #fafafa;
}
a { color: var(--ap-accent); }
h1, h2, h3 { line-height: 1.25; }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--ap-border);
}
.site-header__inner {
  max-width: var(--ap-max);
  margin: 0 auto;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ap-text);
}
.site-logo img { height: 48px; width: auto; display: block; }
.site-logo__name { font-size: 1.25rem; font-weight: 700; }
.site-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.9rem;
  color: var(--ap-muted);
}
.site-contact__phone { font-weight: 700; font-size: 1.05rem; text-decoration: none; }
@media (max-width: 640px) {
  .site-header__inner { justify-content: center; text-align: center; }
  .site-contact { align-items: center; }
}

/* Layout */
.site-highlighted,
.site-main  {
  max-width: var(--ap-max);
  margin: 0 auto;
  padding: 0 1rem;
}
.site-main { padding-top: 1.5rem; padding-bottom: 3rem; }

/* Footer */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--ap-border);
  margin-top: 2rem;
  padding: 1.25rem 3rem;
  font-size: 0.9rem;
  color: var(--ap-muted);
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Forms & buttons (no base theme, so provide the essentials) */
.button,
button,
input[type="submit"] {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border: 1px solid var(--ap-accent);
  border-radius: 6px;
  background: var(--ap-accent);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
}
.button:hover, button:hover, input[type="submit"]:hover { filter: brightness(1.1); color: #fff; }
.button--primary { background: var(--ap-accent); }
.button:not(.button--primary):not(.pb-age-accept) {
  background: var(--ap-accent-soft);
  color: var(--ap-accent);
}
input[type="text"], input[type="tel"], input[type="email"],
input[type="date"], input[type="number"], textarea, select {
  width: 100%;
  max-width: 480px;
  box-sizing: border-box;
  padding: 0.5rem 0.65rem;
  border: 1px solid #c5c5c5;
  border-radius: 6px;
  font: inherit;
}
.form-item { margin: 0 0 1rem; }
.form-item label { display: block; font-weight: 600; margin-bottom: 0.25rem; }
.form-item input[type="checkbox"] { width: auto; margin-right: 0.5rem; }
fieldset {
  border: 1px solid var(--ap-border);
  border-radius: 8px;
  padding: 1rem 1.25rem;
  margin: 0 0 1rem;
}
.form-item .description { font-size: 0.85rem; color: var(--ap-muted); }

/* Status messages */
[data-drupal-messages] { margin: 1rem 0; }
.messages { padding: 0.9rem 1.1rem; border-radius: 6px; margin-bottom: 0.75rem; }
.messages--status { background: #e6f5ec; border: 1px solid #9fd8b4; }
.messages--warning { background: #fdf3d9; border: 1px solid #ecd08c; }
.messages--error { background: #fbe5e5; border: 1px solid #eaa0a0; }

/* Tables (booking summary) */
table { border-collapse: collapse; width: 100%; max-width: 640px; background: #fff; }
td, th { border: 1px solid var(--ap-border); padding: 0.55rem 0.8rem; text-align: left; }

.site-contact__email { text-decoration: none; }
.site-contact__email:hover { text-decoration: underline; }

.site-contact__location { font-size: 0.85rem; color: #889; font-style: italic; }
