:root {
  --navy: #0A1828;
  --navy-deep: #050C17;
  --navy-soft: #142639;
  --gold: #C9A24F;
  --gold-hi: #E5C780;
  --gold-deep: #8C6F2D;
  --cream: #F8F5EE;
  --gray-text: #5C6B7D;
  --gray-light: #E8EBF0;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: #1A2533; line-height: 1.6; background: #fff; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: rgba(10,24,40,0.92);
  backdrop-filter: blur(10px);
  z-index: 100;
  padding: 18px 0;
  border-bottom: 1px solid rgba(201,162,79,0.18);
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold); color: var(--navy-deep);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 28px; font-weight: 700;
  box-shadow: 0 4px 14px rgba(201,162,79,0.4);
}
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b1 { color: var(--gold); font-family: var(--serif); font-size: 24px; font-weight: 600; letter-spacing: 1px; }
.brand-text .b2 { color: rgba(255,255,255,0.7); font-size: 11px; letter-spacing: 4px; text-transform: uppercase; margin-top: 4px; }
.nav nav { display: flex; gap: 28px; align-items: center; }
.nav nav a { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; transition: color 0.2s; }
.nav nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy-deep) !important;
  padding: 10px 22px; border-radius: 4px;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-hi); color: var(--navy-deep) !important; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.6);
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns { from { transform: scale(1.0); } to { transform: scale(1.12); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,24,40,0.55) 0%, rgba(10,24,40,0.30) 50%, rgba(10,24,40,0.85) 100%);
}
.hero-content { position: relative; z-index: 2; color: white; padding-top: 80px; }
.eyebrow {
  font-family: var(--sans); font-size: 12px; letter-spacing: 6px;
  color: var(--gold); text-transform: uppercase; font-weight: 600;
  margin-bottom: 24px;
}
.eyebrow.centered { text-align: center; }
.eyebrow.gold { color: var(--gold-hi); }
.hero h1 {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 96px);
  font-weight: 500; line-height: 1.05; letter-spacing: -0.5px;
  margin-bottom: 28px; max-width: 900px;
}
.hero h1 .gold { color: var(--gold); font-style: italic; }
.hero .lead { font-size: clamp(18px, 1.5vw, 22px); color: rgba(255,255,255,0.88); max-width: 660px; margin-bottom: 40px; line-height: 1.5; font-weight: 300; }
.cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 80px; }
.btn {
  display: inline-block; padding: 16px 32px;
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  border-radius: 2px; transition: all 0.25s; cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-hi); border-color: var(--gold-hi); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,79,0.4); }
.btn-outline { color: white; border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

.hero-stats {
  display: flex; gap: 50px; flex-wrap: wrap;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.15);
  max-width: 700px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { font-family: var(--serif); font-size: 48px; color: var(--gold); line-height: 1; font-weight: 600; }
.hero-stats span { font-size: 12px; letter-spacing: 2px; color: rgba(255,255,255,0.7); text-transform: uppercase; margin-top: 6px; }
.hero-scroll { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.5); font-size: 18px; animation: bounce 2s infinite; }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* SECTIONS */
.section { padding: 120px 0; background: var(--cream); }
.section-dark { background: var(--navy); color: white; }
.section-darker { background: var(--navy-deep); color: white; }
.section-light { background: white; }
.section-title {
  font-family: var(--serif); font-size: clamp(36px, 5vw, 64px);
  font-weight: 500; line-height: 1.1; letter-spacing: -0.5px;
  text-align: center; margin-bottom: 20px; color: var(--navy-deep);
}
.section-title.light { color: white; }
.section-title.left { text-align: left; }
.section-sub {
  text-align: center; font-size: 18px; color: var(--gray-text);
  max-width: 720px; margin: 0 auto 70px; font-weight: 300; line-height: 1.6;
}
.section-sub.light { color: rgba(255,255,255,0.75); }
.section-sub.left { text-align: left; margin-left: 0; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.service-card {
  background: white; padding: 40px 32px; border-radius: 4px;
  border: 1px solid var(--gray-light);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; height: 3px; width: 0;
  background: var(--gold); transition: width 0.4s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(10,24,40,0.08); border-color: rgba(201,162,79,0.3); }
.service-card:hover::before { width: 100%; }
.service-card .icon { font-size: 36px; margin-bottom: 18px; }
.service-card h3 { font-family: var(--serif); font-size: 28px; font-weight: 600; margin-bottom: 14px; color: var(--navy-deep); }
.service-card p { color: var(--gray-text); font-size: 15px; line-height: 1.6; }

/* YACHT GRID */
.yacht-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(380px, 1fr)); gap: 24px; }
.yacht-card { overflow: hidden; border-radius: 4px; position: relative; transition: transform 0.4s; }
.yacht-card img { width: 100%; height: 360px; object-fit: cover; transition: transform 0.6s; }
.yacht-card:hover img { transform: scale(1.05); }
.yacht-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* REPAIR GRID */
.repair-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: 20px; }
.repair-card { overflow: hidden; border-radius: 4px; background: white; box-shadow: 0 4px 14px rgba(10,24,40,0.06); transition: all 0.3s; }
.repair-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(10,24,40,0.12); }
.repair-card img { width: 100%; height: 240px; object-fit: cover; }
.repair-card figcaption { padding: 16px 18px; font-size: 14px; font-weight: 500; letter-spacing: 0.5px; color: var(--navy-deep); border-top: 1px solid var(--gray-light); }

/* BAY */
.bay-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin-bottom: 60px; }
.bay-card { overflow: hidden; border-radius: 4px; transition: transform 0.4s; }
.bay-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.6s; }
.bay-card:hover img { transform: scale(1.06); }
.bay-features {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px; padding: 40px; background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--gold); border-radius: 4px;
}
.bay-features > div { display: flex; flex-direction: column; }
.bay-features strong { color: var(--gold); font-family: var(--serif); font-size: 22px; margin-bottom: 8px; font-weight: 600; }
.bay-features span { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.5; }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.why-text .eyebrow { color: var(--gold-deep); }
.why-lead { font-size: 18px; color: var(--gray-text); margin-bottom: 32px; line-height: 1.7; font-weight: 300; }
.why-list { list-style: none; }
.why-list li { padding: 16px 0; border-bottom: 1px solid var(--gray-light); color: var(--gray-text); font-size: 15px; }
.why-list li strong { color: var(--navy-deep); font-weight: 600; margin-right: 4px; }
.why-list li:last-child { border-bottom: none; }
.why-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-big {
  background: var(--navy); color: white; padding: 36px 28px; border-radius: 4px;
  text-align: center; transition: all 0.3s;
}
.stat-big:hover { transform: translateY(-4px); box-shadow: 0 14px 32px rgba(10,24,40,0.18); }
.stat-big strong { display: block; font-family: var(--serif); font-size: 60px; color: var(--gold); line-height: 1; font-weight: 600; margin-bottom: 12px; }
.stat-big span { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.7); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info { margin-top: 40px; }
.contact-info > div { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.1); align-items: baseline; }
.contact-info > div:last-child { border-bottom: none; }
.ci-label { color: var(--gold); font-size: 14px; font-weight: 600; min-width: 130px; }
.ci-val { color: rgba(255,255,255,0.85); font-size: 15px; }
.contact-form {
  background: rgba(255,255,255,0.04); padding: 40px; border-radius: 4px;
  border: 1px solid rgba(201,162,79,0.18);
}
.contact-form label { display: flex; flex-direction: column; margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 1px; text-transform: uppercase; font-weight: 600; gap: 8px; }
.contact-form input, .contact-form textarea {
  font-family: var(--sans); font-size: 15px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: white;
  padding: 14px 16px; border-radius: 4px; transition: border 0.2s;
  text-transform: none; letter-spacing: 0;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); background: rgba(255,255,255,0.10); }

/* FOOTER */
.footer { background: var(--navy-deep); color: rgba(255,255,255,0.6); padding: 60px 0 40px; border-top: 1px solid rgba(201,162,79,0.18); }
.footer-inner { text-align: center; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.footer p { font-size: 14px; margin-bottom: 8px; }
.footer-copy { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 20px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .nav nav { gap: 14px; font-size: 12px; }
  .nav nav a { font-size: 12px; }
  .nav nav a:not(.nav-cta):nth-child(-n+4) { display: none; }
  .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 30px; }
  .hero-stats strong { font-size: 36px; }
  .section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .yacht-card img, .bay-card img { height: 280px; }
  .repair-card img { height: 200px; }
}
