:root {
  --forest: #355f4a;
  --forest-deep: #254836;
  --card: rgba(255, 255, 252, 0.78);
}

* { box-sizing: border-box; }

html, body { min-height: 100%; }

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--forest-deep);
  font-family: "DM Sans", Arial, sans-serif;
  background: #f7fbf1 url("images/forest-background.png") center / cover no-repeat fixed;
}

.page {
  display: grid;
  min-height: 100vh;
  padding: 32px 20px;
  place-items: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(251, 255, 246, 0.31), rgba(244, 252, 239, 0.2));
}

.notice {
  width: min(100%, 720px);
  padding: clamp(38px, 7vw, 72px) clamp(24px, 6vw, 70px);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  box-shadow: 0 18px 55px rgba(48, 92, 68, 0.12);
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 16px;
  color: #527a62;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.2rem, 6vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.enquiry {
  margin: 28px 0 0;
  color: #466b55;
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.65;
}

a { color: #2d7651; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
a:hover { color: #164e31; }
a:focus-visible { outline: 3px solid #6da985; outline-offset: 4px; border-radius: 2px; }

.divider { display: block; width: 48px; height: 1px; margin: 30px auto 24px; background: #9eb9a3; }

address { color: #5c7764; font-size: clamp(0.84rem, 1.8vw, 0.98rem); font-style: normal; line-height: 1.65; }
address strong, address span { display: block; }
address strong { margin-bottom: 4px; color: #365e45; font-weight: 700; }

@media (max-width: 480px) {
  body { background-attachment: scroll; }
  .page { padding: 18px 14px; }
  .notice { border-radius: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto; }
}
