:root {
  --bg: #f9f8f2;
  --surface: rgba(255, 255, 255, 0.88);
  --text: #20303a;
  --muted: #4f636f;
  --stroke: #c5d2d8;
  --accent: #005c66;
  --accent-strong: #01353c;
  --accent-soft: #e6f7f8;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 20px 45px -34px rgba(1, 53, 60, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, #fffde4 0%, #f9f8f2 46%),
    linear-gradient(130deg, #f2f8ff 0%, #f9f8f2 60%, #e8f6f2 100%);
  line-height: 1.55;
  min-height: 100vh;
  position: relative;
  overflow-x: clip;
}

.bg-shape {
  position: fixed;
  pointer-events: none;
  z-index: -1;
  filter: blur(2px);
}

.bg-shape-a {
  width: min(35rem, 62vw);
  aspect-ratio: 1 / 1;
  top: -10rem;
  right: -10rem;
  border-radius: 40% 60% 58% 42% / 52% 43% 57% 48%;
  background: linear-gradient(170deg, rgba(255, 213, 157, 0.42), rgba(168, 224, 207, 0.24));
  animation: drift 18s ease-in-out infinite alternate;
}

.bg-shape-b {
  width: min(26rem, 55vw);
  aspect-ratio: 1 / 1;
  left: -9rem;
  bottom: -8rem;
  border-radius: 63% 37% 32% 68% / 47% 45% 55% 53%;
  background: linear-gradient(190deg, rgba(144, 199, 255, 0.2), rgba(255, 196, 180, 0.28));
  animation: drift 14s ease-in-out infinite alternate-reverse;
}

.site-header,
main,
.site-footer {
  width: min(1100px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0 0.8rem;
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(8px);
}

.brand {
  font-family: "Fraunces", "Iowan Old Style", serif;
  font-size: clamp(1.2rem, 0.95rem + 1vw, 1.8rem);
  color: var(--accent-strong);
  text-decoration: none;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.48rem 0.9rem;
  font-weight: 500;
  transition: border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--stroke);
  background: var(--surface);
  color: var(--accent-strong);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  font: inherit;
  font-weight: 600;
}

main {
  padding: 1.1rem 0 2.2rem;
}

section {
  margin-block: 1.2rem 1.7rem;
}

.hero {
  border: 1px solid var(--stroke);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(232, 247, 248, 0.62));
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 1rem + 2.4vw, 2.4rem);
  box-shadow: var(--shadow);
}

.eyebrow {
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Fraunces", "Iowan Old Style", serif;
  color: #142229;
  line-height: 1.15;
  margin: 0.25rem 0 0.7rem;
}

h1 {
  font-size: clamp(1.95rem, 1.2rem + 3vw, 3.2rem);
  max-width: 18ch;
}

h2 {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.95rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0.45rem 0 0.75rem;
}

.lead {
  max-width: 66ch;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.62rem 1.1rem;
  font-weight: 700;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(160deg, var(--accent), #007581);
  color: #fff;
}

.btn-secondary {
  border-color: var(--stroke);
  color: var(--accent-strong);
  background: var(--surface);
}

.grid {
  display: grid;
  gap: 1rem;
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--stroke);
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.1rem 1rem;
  box-shadow: var(--shadow);
}

.card ul {
  padding-left: 1.2rem;
  margin: 0.7rem 0;
}

.section-title {
  margin-bottom: 0.8rem;
}

.brand-card a {
  color: var(--accent-strong);
  font-weight: 700;
}

address {
  font-style: normal;
  color: var(--accent-strong);
  font-weight: 700;
}

.small {
  font-size: 0.92rem;
  color: var(--muted);
}

.info-grid {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) 2fr;
  gap: 0.5rem 0.95rem;
  align-items: start;
}

.info-grid p {
  margin: 0;
}

.info-grid .label {
  color: var(--muted);
  font-weight: 700;
}

.site-footer {
  padding: 0.6rem 0 2rem;
}

.site-footer p {
  margin: 0.2rem 0;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 450ms ease,
    transform 450ms ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 840px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .site-header {
    flex-wrap: wrap;
    padding-top: 1rem;
    gap: 0.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-wrap: wrap;
    gap: 0.45rem;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: fit-content;
  }

  main,
  .site-footer {
    width: min(1100px, calc(100% - 1.2rem));
  }

  .info-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  to {
    transform: translate3d(0, 12px, 0) rotate(8deg);
  }
}
