/* EYMS – Executive Yacht Management Solutions
   Brand: deep navy, silver/chrome, aqua accents. Serif headings, sans body. */

:root {
  --bg-dark: #0a0e17;
  --bg-navy: #0f1629;
  --accent-aqua: #4dd4e4;
  --accent-aqua-soft: rgba(77, 212, 228, 0.15);
  --text-primary: #e8ecf1;
  --text-muted: #8a9fb5;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* match sticky header height */
}

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-aqua);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: #7ae4f0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(77, 212, 228, 0.12);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: block;
  line-height: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-list a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.nav-list a:hover {
  color: var(--accent-aqua);
}

/* Hero */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: #000;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.hero-title {
  margin: 0 0 1rem;
  line-height: 0;
}

.hero-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
  font-weight: 300;
}

/* Sections */
.section {
  padding: 4rem 1.5rem;
}

.section--alt {
  background: var(--bg-navy);
}

.container {
  max-width: 720px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.section-lead {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.section p + p {
  margin-top: 1rem;
}

.services-list {
  margin: 1rem 0 0;
  padding-left: 1.25rem;
  color: var(--text-primary);
}

.services-list li {
  margin-bottom: 0.5rem;
}

.services-list li::marker {
  color: var(--accent-aqua);
}

/* Contact form */
.contact-form {
  margin: 2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-row label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
}

.form-row input,
.form-row textarea {
  font-family: var(--sans);
  font-size: 1rem;
  padding: 0.65rem 0.85rem;
  background: var(--bg-dark);
  border: 1px solid rgba(77, 212, 228, 0.25);
  border-radius: 4px;
  color: var(--text-primary);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--accent-aqua);
  box-shadow: 0 0 0 3px var(--accent-aqua-soft);
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  background: var(--accent-aqua);
  color: var(--bg-dark);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  align-self: flex-start;
}

.form-submit:hover {
  background: #7ae4f0;
}

.form-submit:active {
  transform: scale(0.98);
}

.contact-address {
  margin: 2rem 0 0;
  font-style: normal;
  color: var(--text-primary);
  line-height: 1.6;
}

.contact-address strong {
  color: var(--text-primary);
}

.contact-owner {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-social {
  margin: 1rem 0 0;
  font-size: 0.95rem;
}

.social-sep {
  margin: 0 0.5rem;
  color: var(--text-muted);
}

/* Footer */
.site-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(77, 212, 228, 0.12);
  background: var(--bg-navy);
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-img {
    height: 40px;
  }

  .nav-list {
    gap: 1rem;
  }

  .hero {
    min-height: 50vh;
    padding: 3rem 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }
}
