:root {
  --navy:        #1b2d5e;
  --navy-dark:   #111e3f;
  --orange:      #e8671a;
  --orange-hover:#f07830;
  --orange-text: #b34f13;
  --white:       #ffffff;
  --grey-50:     #f8f9fb;
  --grey-100:    #f1f3f6;
  --grey-200:    #e5e7eb;
  --grey-500:    #5c6370;
  --grey-900:    #111827;
  --radius:      12px;
  --shadow:      0 1px 3px rgba(0,0,0,0.07), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-hover:0 4px 8px rgba(0,0,0,0.10), 0 14px 30px rgba(0,0,0,0.12);
  --ease:        0.2s ease;
  --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── HERO ── */
.hero {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

/* boat-pattern SVG overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-pattern svg {
  position: absolute;
  right: -60px;
  top: -80px;
  width: 70%;
  height: 140%;
  opacity: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 60px;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.hero-name {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.hero-name span { color: var(--orange); }

.hero-tagline {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero-bio {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  max-width: 460px;
  padding-left: 18px;
  border-left: 3px solid var(--orange);
}
.hero-bio + .hero-bio {
  margin-top: 20px;
  border-left-color: rgba(255,255,255,0.2);
}
.hero-bio a {
  color: rgba(255,255,255,0.95);
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 3px;
  transition: color var(--ease);
}
.hero-bio a:hover { color: var(--white); }

.hero-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-photo {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 10%;
  border: 4px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}

/* ── PROFILES ── */
.profiles {
  padding: 80px 0 60px;
  background: var(--grey-50);
}

.section-header { margin-bottom: 48px; }
.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.section-sub {
  font-size: 0.9375rem;
  color: var(--grey-500);
}

.profile-group { margin-bottom: 44px; }

.group-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--grey-500);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--grey-200);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 14px;
}

/* profile card */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  border: 1px solid var(--grey-200);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
  border-color: rgba(27,45,94,0.25);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon svg { width: 22px; height: 22px; }
.card-icon-text {
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: -0.03em;
  color: var(--navy-dark);
}
.card-body { flex: 1; min-width: 0; }
.card-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--grey-900);
  margin-bottom: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.card-handle {
  font-size: 0.8125rem;
  color: var(--grey-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-arrow {
  color: var(--grey-200);
  flex-shrink: 0;
  transition: color var(--ease), transform var(--ease);
}
.card:hover .card-arrow { color: var(--orange); transform: translateX(3px); }

/* disabled / coming-soon card */
.card-disabled {
  cursor: default;
  pointer-events: none;
  background: var(--grey-50);
  border-color: var(--grey-200);
  box-shadow: none;
}
.card-disabled .card-name,
.card-disabled .card-handle {
  color: var(--grey-500);
}
.card-disabled .card-icon {
  opacity: 0.45;
}
.card-disabled .card-arrow {
  display: none;
}

.badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: var(--orange);
  color: var(--navy-dark);
  padding: 2px 7px;
  border-radius: 999px;
}

/* ── SAILING FEATURE ── */
.sailing {
  position: relative;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.sailing-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.sailing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,30,63,0.88) 0%, rgba(27,45,94,0.55) 100%);
}
.sailing-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 640px;
}
.sailing-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.sailing-content h2 a {
  color: var(--white);
  text-decoration: none;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
  transition: border-color var(--ease);
}
.sailing-content h2 a:hover { border-color: var(--white); }
.sailing-content p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
}
.sailing-bullets {
  list-style: none;
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.sailing-bullets li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sailing-bullets li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all var(--ease);
}
.btn-primary {
  background: var(--orange);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,103,26,0.45);
}

/* ── CONTACT ── */
.contact {
  padding: 64px 0;
  background: var(--white);
  text-align: center;
}
.contact h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.contact p {
  color: var(--grey-500);
  margin-bottom: 24px;
}
.contact a {
  color: var(--orange-text);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color var(--ease);
}
.contact a:hover {
  border-bottom-color: var(--orange-text);
}

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.5);
  padding: 28px 0;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 0.875rem; }
.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--white); }

/* ── LANGUAGE SWITCHER ── */
.lang-switch {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.lang-switch a, .lang-switch span {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: all var(--ease);
}
.lang-switch .lang-active {
  background: var(--orange);
  color: var(--navy-dark);
}
.lang-switch a {
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
}
.lang-switch a:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

/* ── LEGAL PAGES ── */
.legal-nav {
  background: var(--navy);
  padding: 20px 0;
}
.legal-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.legal-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
  transition: opacity var(--ease);
}
.legal-nav a:hover { opacity: 1; }

.legal-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 24px 80px;
}
.legal-body h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.legal-body .legal-crumb {
  font-size: 0.875rem;
  color: var(--grey-500);
  margin-bottom: 48px;
}
.legal-body .legal-crumb a {
  color: var(--orange);
  text-decoration: none;
}
.legal-body h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 40px;
  margin-bottom: 10px;
}
.legal-body p, .legal-body address {
  font-style: normal;
  color: var(--grey-500);
  line-height: 1.75;
  margin-bottom: 14px;
}
.legal-body a { color: var(--orange); text-decoration: none; }
.legal-body a:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 40px;
  }
  .hero-photo-wrap { order: -1; }
  .hero-photo { width: 200px; height: 200px; }
  .hero-bio {
    border-left: none;
    border-top: 3px solid var(--orange);
    padding-left: 0;
    padding-top: 16px;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-bio + .hero-bio { border-top-color: rgba(255,255,255,0.2); }
  .sailing { height: 380px; }
}

@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
}
