/* ============================================
   PRIVACY PAGE — Byron Bay by Oli Ayo
   Quiet, readable, white ground. Matches site system.
   ============================================ */

:root {
  --bg:        #FFFFFF;
  --ink:       #0E1419;
  --ink-soft:  #3A434C;
  --ink-mute:  #7A828A;
  --rule:      #E5E7EA;
  --accent:    #1B4F6B;
  --bar:       #0E1419;
  --bar-text:  #F5F5F2;

  --sans:    'Inter',   -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
  --display: 'Manrope', 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;

  --gutter: clamp(1.5rem, 5vw, 5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
  transition: color 0.25s ease;
}
a:hover { color: var(--ink); }

/* --- Header / nav --- */
.nav {
  border-bottom: 1px solid var(--rule);
  padding: 1.5rem var(--gutter);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.brand {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--ink);
  text-decoration: none;
}
.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.nav-links a:hover { color: var(--accent); }

/* --- Main content --- */
.wrap {
  padding: clamp(3rem, 6vw, 6rem) var(--gutter) clamp(4rem, 7vw, 7rem);
}
.inner {
  max-width: 720px;
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 1.25rem;
}

h1 {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3rem);
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}
.lead {
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  letter-spacing: 0.02em;
}

section {
  margin-bottom: 2.75rem;
  padding-bottom: 2.75rem;
  border-bottom: 1px solid var(--rule);
}
section:last-of-type { border-bottom: none; }

h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1rem;
}

h3 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

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

strong {
  color: var(--ink);
  font-weight: 600;
}

em {
  font-style: italic;
}

/* --- Footer --- */
.site-footer {
  background: var(--bar);
  color: var(--bar-text);
  padding: 2rem var(--gutter);
}
.footer-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  color: var(--bar-text);
  opacity: 0.8;
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: var(--bar-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  opacity: 0.85;
}
.footer-links a:hover { opacity: 1; color: var(--bar-text); }

@media (max-width: 600px) {
  .nav-inner { justify-content: center; text-align: center; }
  .nav-links { width: 100%; justify-content: center; gap: 1.25rem; }
  .footer-inner { justify-content: center; text-align: center; }
}
