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

body {
  font-family: 'Inter', sans-serif;
  background-color: #FAF7F2;
  color: #1A1A1A;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #E5E7EB;
  padding: 1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

.site-header__inner {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #1B3A5C;
  text-decoration: none;
  white-space: nowrap;
}

.site-logo:hover { color: #E8714A; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #E8714A;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.back-link:hover { gap: 0.625rem; }

/* ── Page hero ── */
.page-hero {
  background-color: #1B3A5C;
  color: #ffffff;
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.page-hero__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #E8714A;
  margin-bottom: 1rem;
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.page-hero__updated {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

/* ── Content ── */
main {
  flex: 1;
  padding: 3.5rem 1.5rem 4rem;
}

.content {
  max-width: 800px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.content section {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #E5E7EB;
}

.content section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B3A5C;
  margin-bottom: 0.875rem;
}

.content p {
  font-size: 0.9375rem;
  color: #374151;
  margin-bottom: 0.75rem;
}

.content p:last-child { margin-bottom: 0; }

.content ul {
  padding-left: 1.25rem;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.content ul li {
  font-size: 0.9375rem;
  color: #374151;
  margin-bottom: 0.375rem;
}

.content a {
  color: #E8714A;
  text-decoration: underline;
  text-decoration-color: rgba(232,113,74,0.4);
  text-underline-offset: 2px;
}

.content a:hover {
  text-decoration-color: #E8714A;
}

.highlight-box {
  background-color: #FAF7F2;
  border-left: 3px solid #E8714A;
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
  margin-top: 0.75rem;
}

.highlight-box p {
  margin: 0;
  font-size: 0.9rem;
  color: #4B5563;
}

/* ── Contact details ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.contact-item {
  background-color: #FAF7F2;
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
}

.contact-item__label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9CA3AF;
  margin-bottom: 0.3rem;
}

.contact-item__value {
  font-size: 0.9rem;
  color: #1A1A1A;
  font-weight: 500;
}

.contact-item__value a {
  color: #E8714A;
}

/* ── Footer ── */
.site-footer {
  background-color: #0F172A;
  color: rgba(255,255,255,0.6);
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.8;
}

.site-footer a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}

.site-footer a:hover { color: #E8714A; }

.site-footer__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  display: block;
  margin-bottom: 0.5rem;
}

/* ── Cookie banner (same as main site) ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #1B3A5C;
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.cookie-banner--visible { transform: translateY(0); }
.cookie-banner.cookie-banner--hidden  { transform: translateY(100%); }

.cookie-banner__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
  margin: 0;
  min-width: 200px;
}

.cookie-banner__learn-more {
  color: #9CA3AF;
  text-decoration: underline;
  margin-left: 0.25rem;
  font-size: 0.8125rem;
}

.cookie-banner__learn-more:hover { color: #D1D5DB; }

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
  white-space: nowrap;
}

.cookie-btn:hover  { opacity: 0.9; transform: translateY(-1px); }
.cookie-btn:active { transform: translateY(0); }

.cookie-btn--accept {
  background-color: #E8714A;
  color: #ffffff;
  border: 2px solid #E8714A;
}

.cookie-btn--decline {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

@media (max-width: 639px) {
  .content { padding: 1.75rem 1.25rem; }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1rem;
  }

  .cookie-banner__actions { width: 100%; flex-direction: column; }
  .cookie-btn { width: 100%; text-align: center; padding: 0.625rem 1rem; }
}
