:root {
  --ink: #17211f;
  --muted: #56645f;
  --line: #d9e3df;
  --paper: #f7faf8;
  --brand: #0a6f7a;
  --brand-dark: #064d55;
  --accent: #e4a11b;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font: 16px/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: var(--brand-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.brand {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.site-header nav a {
  text-decoration: none;
}

.admin-link {
  opacity: .55;
}

.hero {
  min-height: 68vh;
  display: grid;
  place-items: end start;
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5,32,36,.86), rgba(5,32,36,.46)),
    var(--hero-image) center/cover no-repeat;
}

.hero-inner {
  max-width: 780px;
}

.kicker {
  margin: 0 0 12px;
  color: #d7f7f3;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 13px;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 7vw, 72px);
  line-height: 1.02;
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.12;
}

h3 {
  margin: 0 0 10px;
  font-size: 21px;
}

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

.section {
  padding: clamp(44px, 7vw, 84px) clamp(20px, 5vw, 72px);
  max-width: 1180px;
  margin: 0 auto;
}

.section-muted {
  max-width: none;
  background: var(--white);
}

.section-muted > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: 4px;
  background: var(--accent);
  color: #1b1608;
  font-weight: 800;
  text-decoration: none;
}

.button-secondary {
  background: var(--line);
}

.card-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.card {
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.gallery-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.cta-band {
  max-width: none;
  color: var(--white);
  background: var(--brand-dark);
}

.cta-band > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

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

details {
  padding: 16px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--white);
  background: #13211f;
}

.site-footer nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--white);
}

.admin-body {
  background: #eef3f1;
}

.admin-shell {
  width: min(1040px, calc(100% - 32px));
  margin: 32px auto;
}

.admin-panel,
fieldset {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

textarea {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.admin-error,
.admin-notice {
  padding: 12px 14px;
  border-radius: 4px;
}

.admin-error {
  background: #ffe2e2;
}

.admin-notice {
  background: #ddf4df;
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: 58vh;
  }
}
