*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: #f5f4f0;
  color: #1e2430;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

:root {
  --ink: #1e2430;
  --muted: #6b7280;
  --ivory: #f5f4f0;
  --ivory-dark: #eae8e1;
  --indigo: #2c3a5c;
  --indigo-deep: #1a243d;
  --coral: #e07a5f;
  --coral-dark: #c45f46;
  --border: rgba(30,36,48,0.1);
}

/* ——— TOP MINIMAL + RIGHT DRAWER NAV (unique) ——— */
.top {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 28px;
  background: rgba(245,244,240,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.top .logo {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.top .logo span {
  font-weight: 500;
  color: var(--muted);
  margin-left: 6px;
  font-size: 0.85rem;
}
.drawer-btn {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--ink);
  background: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s, color 0.2s;
}
.drawer-btn span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--ink);
  transition: background 0.2s;
}
.drawer-btn:hover {
  background: var(--ink);
}
.drawer-btn:hover span { background: #fff; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100vh;
  background: var(--indigo-deep);
  color: #e8e6e0;
  z-index: 2000;
  padding: 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.drawer.open { transform: translateX(0); }
.drawer .close {
  align-self: flex-end;
  background: none;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  margin-bottom: 40px;
}
.drawer .close:hover { background: #fff; color: var(--indigo-deep); }
.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.drawer nav a {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: -0.5px;
  color: rgba(232,230,224,0.4);
  padding: 8px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.drawer nav a:hover,
.drawer nav a.active {
  color: #fff;
  padding-left: 10px;
}
.drawer nav a.active { color: var(--coral); }
.drawer .drawer-note {
  font-size: 0.8rem;
  color: rgba(232,230,224,0.4);
  line-height: 1.5;
}
.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.scrim.open {
  opacity: 1;
  pointer-events: auto;
}

/* ——— HARBOR HERO: offset text box ——— */
.harbor {
  margin-top: 84px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: calc(100vh - 84px);
}
.harbor .visual {
  position: relative;
  min-height: 420px;
}
.harbor .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.harbor .panel {
  background: var(--indigo);
  color: #e8e6e0;
  padding: 56px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.harbor .panel .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 16px;
}
.harbor .panel h1 {
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 16px;
}
.harbor .panel p {
  color: rgba(232,230,224,0.65);
  margin-bottom: 28px;
  font-size: 1.02rem;
}

.btn {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 13px 24px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-dark); }
.btn-indigo {
  background: var(--indigo);
  color: #fff;
}
.btn-indigo:hover { background: var(--indigo-deep); }
.btn-line {
  background: transparent;
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.btn-line:hover { background: var(--ink); color: #fff; }

/* ——— STRIP of three equal ——— */
.strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.strip article {
  padding: 36px 28px;
  border-right: 1px solid var(--border);
}
.strip article:last-child { border-right: none; }
.strip .n {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 10px;
}
.strip h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.strip p {
  font-size: 0.92rem;
  color: var(--muted);
}

/* ——— NESTS: horizontal cards ——— */
.section {
  padding: 64px 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.section .head {
  margin-bottom: 32px;
}
.section .head .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.section .head h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 300;
  letter-spacing: -0.3px;
}

.nests {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nest {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
}
.nest img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}
.nest .body {
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.nest h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.nest p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 8px;
}
.nest .meta {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ——— SPIRIT ——— */
.spirit-top {
  margin-top: 84px;
  padding: 56px 28px 32px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.spirit-top .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.spirit-top h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}
.spirit-top p {
  color: var(--muted);
  font-size: 1.08rem;
}
.spirit-img {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 28px;
}
.spirit-img img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.spirit-prose {
  max-width: 600px;
  margin: 0 auto;
  padding: 36px 28px 70px;
}
.spirit-prose p {
  color: var(--muted);
  margin-bottom: 14px;
  font-size: 1.02rem;
}

/* ——— BRIDGE ——— */
.bridge-wrap {
  margin-top: 84px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: calc(100vh - 84px);
}
.bridge-side {
  background: var(--indigo-deep);
  color: rgba(232,230,224,0.7);
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.bridge-side .tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
}
.bridge-side h1 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 14px;
}
.bridge-side > p {
  margin-bottom: 32px;
}
.b-row { margin-bottom: 18px; }
.b-row .lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 4px;
}
.b-row p, .b-row a { font-size: 0.95rem; }
.b-row a:hover { color: #fff; }

.bridge-form {
  padding: 64px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--ivory);
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.95rem;
  color: var(--ink);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--coral);
}
.form-group textarea { min-height: 110px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.ft {
  background: var(--ink);
  color: #8b919c;
  padding: 28px;
  font-size: 0.84rem;
  text-align: center;
}
.ft strong { color: #d4d6db; }

@media (max-width: 860px) {
  .harbor { grid-template-columns: 1fr; }
  .harbor .panel { padding: 40px 24px; }
  .strip { grid-template-columns: 1fr; }
  .strip article { border-right: none; border-bottom: 1px solid var(--border); }
  .nest { grid-template-columns: 1fr; }
  .bridge-wrap { grid-template-columns: 1fr; }
  .bridge-side, .bridge-form { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .spirit-img img { height: 260px; }
}
