/* Pearl Sea Capital — Art Studio Blue, matched to the reference
   Background #CFDAE2 · ink #607888 · navy-charcoal #1E2430 · blue-grey #7E8C9B
   Minimal nav, minimal copy, font-only wordmark. */

:root {
  --paper: #CFDAE2;
  --ink-blue: #607888;
  --navy: #1E2430;
  --muted: #7E8C9B;
  --serif: "Libre Caslon Text", "Caslon", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--paper);
  color: var(--navy);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header — wordmark left, hamburger menu right (Mousse-style, all viewports) */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 7% 0;
}

.wordmark {
  font-family: var(--serif);
  font-size: 21px;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  padding-left: 0.30em; /* optical: balance trailing letterspace */
  white-space: nowrap;
}

.menu { position: relative; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  padding: 10px 4px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--navy);
  transition: background .2s ease;
}

.menu-toggle:hover span { background: var(--ink-blue); }

.menu-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 14px;
  min-width: 170px;
  padding: 20px 24px;
  background: #f4f7f9;
  box-shadow: 0 14px 34px rgba(30,36,48,.16);
}

.menu.open .menu-dropdown { display: flex; }

.menu-dropdown a {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--navy);
  white-space: nowrap;
}

.menu-dropdown a:hover { color: var(--ink-blue); }

/* Home */
.home {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 24px 40px;
  text-align: center;
}

.map {
  width: min(840px, 76vw);
  height: auto;
  display: block;
}

.rule {
  width: 34px;
  height: 1px;
  background: var(--muted);
  opacity: 0.7;
  margin: 44px 0 8px;
}

/* Inner pages */
.page {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 24px 70px;
}

.lede {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.lede p {
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 22px;
  color: var(--navy);
  opacity: 0.88;
}

.lede a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--ink-blue);
}

.lede a:hover { color: var(--ink-blue); }

.policy {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
}

.policy h1 {
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--navy);
  margin: 0 0 8px;
  text-align: center;
}

.policy .updated {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 36px;
}

.policy h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 30px 0 10px;
}

.policy p, .policy li {
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--navy);
  opacity: 0.88;
}

.policy p { margin: 0 0 14px; }
.policy ol, .policy ul { padding-left: 22px; margin: 0 0 14px; }
.policy li { margin-bottom: 8px; }

/* Footer — quiet, small, centered */
.site-footer {
  padding: 26px 24px 36px;
  text-align: center;
}

.site-footer p, .site-footer a {
  font-family: var(--serif);
  font-size: 10.5px;
  line-height: 1.7;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  text-decoration: none;
  padding-left: 0.22em; /* optical: balance trailing letterspace */
}

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

@media (max-width: 640px) {
  .site-header { padding: 28px 6% 0; }
  .wordmark { font-size: 15px; letter-spacing: 0.22em; }
  .menu-toggle span { width: 28px; }
  .menu-dropdown { min-width: 150px; padding: 18px 20px; }
  .menu-dropdown a { font-size: 14px; }
  .lede p { font-size: 16px; }
}
