@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600&family=Cinzel:wght@700&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: var(--lh-body);
  -webkit-text-size-adjust: 100%;
}

.skip-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.skip-nav:focus {
  clip: auto;
  clip-path: none;
  width: auto;
  height: auto;
  overflow: visible;
  padding: 4px 10px;
  font-size: 11px;
  border-radius: 0 0 3px 0;
}

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

a { color: var(--color-link); text-decoration: none; }
a:not(.button):not(.brand):not(.photo-card):not(.facility-panel) { font-weight: 600; position: relative; }
h1 a, h2 a, h3 a, h4 a { display: inline-block; }
a:not(.button):not(.brand):not(.photo-card):not(.facility-panel)::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}
a:not(.button):not(.brand):not(.photo-card):not(.facility-panel):hover::after { transform: scaleX(1); }

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  font-weight: 600;
  color: var(--color-heading);
}

h1 { font-size: var(--fs-h1); margin-bottom: var(--space-4); }
h2 { font-size: var(--fs-h2); margin-bottom: var(--space-3); }
h3 { font-size: var(--fs-h3); margin-bottom: var(--space-2); }
h4 { font-size: var(--fs-h4); margin-bottom: var(--space-2); }

p { font-size: var(--fs-body); line-height: var(--lh-body); }
p + p { margin-top: 1em; }
small { font-size: var(--fs-small); }

/* ── Utilities ── */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-4);
}

.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.center { text-align: center; }
.small { font-size: var(--fs-small); color: var(--color-muted); }

/* ── Mobile-first responsive ── */
@media (max-width: 768px) {
  :root {
    --fs-h1: 32px;
    --fs-h2: 26px;
    --fs-h3: 22px;
    --fs-h4: 18px;
  }
  .container { padding-inline: var(--space-3); }
  p { line-height: 1.75; }
  p + p { margin-top: 1.35em; }
}
