/* ============================================
   Hook Yachting B.V. — styles
   ============================================ */

:root {
  --ink:          #081620;
  --navy-deep:    #0b2130;
  --navy:         #123249;
  --navy-mid:     #1a3f57;
  --navy-light:   #2e5674;
  --foam:         #d7e4e6;
  --cream:        #f6f0e4;
  --cream-dim:    #ece3d1;
  --paper:        #fbf8f2;
  --gold:         #b98a4c;
  --gold-light:   #d9b374;
  --gold-pale:    #f0dfba;
  --ink-soft:     rgba(8, 22, 32, 0.7);

  --font-display: "Fraunces", "Iowan Old Style", serif;
  --font-body:    "Newsreader", "Iowan Old Style", serif;

  --container: 1180px;
  --gutter: 6vw;

  --ease: cubic-bezier(.22,1,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 500;
  margin: 0;
  color: var(--navy-deep);
  letter-spacing: -0.01em;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
dl { margin: 0; }

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.muted { color: var(--ink-soft); font-family: var(--font-body); font-style: italic; font-size: 0.65em; }

/* subtle grain overlay for the whole page */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 500;
  opacity: 0.035;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--gold); }
.eyebrow.centered, h2.centered { display: block; text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 8px 24px -8px rgba(185, 138, 76, 0.55);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(185, 138, 76, 0.7); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 400;
  padding: 1.1rem var(--gutter);
  background: linear-gradient(to bottom, rgba(8,22,32,0.55), rgba(8,22,32,0));
  backdrop-filter: blur(2px);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 22, 32, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.7rem var(--gutter);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--cream);
}
.brand-hy {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  fill: var(--cream);
}
.brand-wave { fill: none; stroke: var(--gold); stroke-width: 2; stroke-linecap: round; }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.main-nav {
  display: flex;
  gap: 2.1rem;
}
.main-nav a {
  color: var(--foam);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--gold-light);
  transition: right 0.35s var(--ease);
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 1.4rem; }

.lang-toggle {
  background: none;
  border: 1px solid rgba(246,240,228,0.35);
  border-radius: 20px;
  color: var(--cream);
  padding: 0.35rem 0.85rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.lang-option { opacity: 0.5; transition: opacity 0.3s var(--ease); }
.lang-option.active { opacity: 1; color: var(--gold-light); font-weight: 600; }
.lang-sep { opacity: 0.4; }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-burger span { width: 22px; height: 1.5px; background: var(--cream); display: block; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(46,86,116,0.55), transparent 55%),
    linear-gradient(160deg, var(--ink) 0%, var(--navy-deep) 45%, var(--navy) 100%);
}

.hero-sea {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  z-index: 1;
}
.hero-wave { position: absolute; bottom: 0; width: 100%; height: 100%; }
.hero-wave-1 path { fill: rgba(28, 63, 87, 0.55); }
.hero-wave-2 path { fill: rgba(18, 50, 73, 0.7); }
.hero-wave-3 path { fill: var(--ink); }
.hero-wave-1 { animation: drift 22s ease-in-out infinite; }
.hero-wave-2 { animation: drift 16s ease-in-out infinite reverse; }
.hero-wave-3 { animation: drift 26s ease-in-out infinite; }

@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-3%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 var(--gutter);
  text-align: center;
  animation: rise 1.1s var(--ease) both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero .eyebrow { color: var(--gold-light); }

.hero-title {
  color: var(--paper);
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 1.6rem;
}
.hero-title em { font-style: italic; color: var(--gold-light); }

.hero-subtitle {
  color: var(--foam);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.4rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 46px;
  background: rgba(246,240,228,0.3);
}
.hero-scroll span {
  position: absolute;
  top: 0; left: -2.5px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: scrolldown 2.2s ease-in-out infinite;
}
@keyframes scrolldown {
  0% { top: 0; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { top: 40px; opacity: 0; }
}

/* ============================================
   Section base
   ============================================ */
.section { padding: 7.5rem 0; }

/* ---------- About ---------- */
.about { background: var(--paper); }
.about-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-text h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 1.6rem; }
.about-text .lead { font-size: 1.15rem; line-height: 1.75; color: var(--ink-soft); max-width: 46ch; }

.about-figures { display: flex; flex-direction: column; gap: 2.2rem; padding-top: 0.6rem; }
.figure { border-left: 2px solid var(--gold-pale); padding-left: 1.3rem; }
.figure-number { display: block; font-family: var(--font-display); font-size: 2.6rem; color: var(--navy); line-height: 1; margin-bottom: 0.4rem; }
.figure-label { font-size: 0.9rem; color: var(--ink-soft); letter-spacing: 0.01em; }

/* ---------- Yacht ---------- */
.yacht { background: var(--cream); }
.yacht-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4.5rem;
  align-items: center;
}
.yacht-placeholder {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(11,33,48,0.18);
  background: linear-gradient(160deg, var(--paper), var(--cream-dim));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  overflow: hidden;
}
.yacht-placeholder::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(185,138,76,0.4);
  pointer-events: none;
}
.yacht-icon { width: 40%; }
.sail { fill: var(--navy-light); opacity: 0.85; }
.sail-2 { fill: var(--navy); opacity: 0.65; }
.hull { fill: var(--navy-deep); }
.mast { stroke: var(--navy-deep); stroke-width: 2; }
.yacht-placeholder-label {
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.yacht-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1.2rem; }
.yacht-info .lead { font-size: 1.08rem; line-height: 1.75; color: var(--ink-soft); margin-bottom: 2.2rem; max-width: 52ch; }

.spec-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem 2rem;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(11,33,48,0.14);
  border-bottom: 1px solid rgba(11,33,48,0.14);
  margin-bottom: 2rem;
}
.spec-list dt {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.spec-list dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy-deep);
}

.skippers-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.skippers-list { display: flex; flex-wrap: wrap; gap: 0.7rem 1rem; }
.skippers-list li {
  font-family: var(--font-display);
  font-size: 0.98rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(11,33,48,0.2);
  border-radius: 30px;
  color: var(--navy-deep);
}

/* ---------- Experiences ---------- */
.experiences { background: var(--paper); }
.experiences h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin-bottom: 3.2rem; }

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.card {
  background: var(--paper);
  border: 1px solid rgba(11,33,48,0.12);
  padding: 2.2rem 1.7rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -20px rgba(11,33,48,0.25);
  border-color: var(--gold-pale);
}
.card-index {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-pale);
  font-size: 1rem;
  margin-bottom: 1rem;
}
.card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; line-height: 1.65; margin-bottom: 1.6rem; flex-grow: 1; }

.price-list { display: flex; flex-direction: column; gap: 0.65rem; border-top: 1px solid rgba(11,33,48,0.1); padding-top: 1.2rem; }
.price-list li { display: flex; justify-content: space-between; gap: 0.8rem; font-size: 0.86rem; }
.price-list li span { color: var(--ink-soft); }
.price-list li b { font-family: var(--font-display); color: var(--navy-deep); white-space: nowrap; }

.rates-note {
  margin-top: 2.4rem;
  font-size: 0.82rem;
  color: var(--ink-soft);
  font-style: italic;
  text-align: center;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- How it works ---------- */
.how { background: linear-gradient(160deg, var(--ink), var(--navy)); }
.how h2 { color: var(--paper); margin-bottom: 3.6rem; }
.how .eyebrow { color: var(--gold-light); display: block; text-align: center; }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.steps::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(246,240,228,0.18);
}
.step { position: relative; text-align: center; padding-top: 0; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ink);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  margin-bottom: 1.3rem;
  position: relative;
  z-index: 1;
}
.step h3 { color: var(--paper); font-size: 1.15rem; margin-bottom: 0.7rem; }
.step p { color: rgba(246,240,228,0.65); font-size: 0.92rem; line-height: 1.6; }

/* ---------- Contact ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); margin: 0.4rem 0 1.4rem; }
.contact .lead { color: var(--ink-soft); font-size: 1.08rem; line-height: 1.75; margin-bottom: 2.2rem; max-width: 44ch; }
.contact-actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.phone-placeholder {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.company-card {
  border-left: 2px solid var(--gold);
  padding-left: 1.8rem;
}
.company-name { font-family: var(--font-display); font-size: 1.3rem; margin-bottom: 0.6rem; color: var(--navy-deep); }
.company-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.6; }
.company-reg { margin-top: 0.8rem; font-size: 0.82rem; letter-spacing: 0.02em; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); padding: 2.6rem 0; }
.footer-inner { display: flex; flex-direction: column; gap: 0.9rem; }
.legal { color: rgba(246,240,228,0.55); font-size: 0.8rem; line-height: 1.6; max-width: 78ch; }
.copyright { color: rgba(246,240,228,0.4); font-size: 0.78rem; }

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .about-grid, .yacht-grid, .contact-grid { grid-template-columns: 1fr; }
  .yacht-visual { max-width: 340px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 2.6rem 1.6rem; }
  .steps::before { display: none; }
}

@media (max-width: 760px) {
  :root { --gutter: 6.5vw; }
  .main-nav { display: none; }
  .nav-burger { display: flex; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(8,22,32,0.97);
    padding: 1.6rem var(--gutter) 2rem;
    gap: 1.1rem;
  }

  .hero-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .section { padding: 5rem 0; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 2.4rem; }
}
