/* Design DNA: Full-bleed cinematic hero — turquoise bay with sailboat; Aegean blue + sail white; breezy sailing mood */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
  --fy-aegean: #1A6B8A;
  --fy-aegean-dark: #145568;
  --fy-aegean-light: #2A8BAD;
  --fy-sail: #F8FAFC;
  --fy-sail-dark: #E8EDF2;
  --fy-coral: #F08A5D;
  --fy-coral-dark: #D9754A;
  --fy-navy: #0D2B3E;
  --fy-navy-light: #1A3D52;
  --fy-white: #FFFFFF;
  --fy-text: #1E3340;
  --fy-text-light: #5A7080;
  --fy-font-display: 'Cormorant Garamond', Georgia, serif;
  --fy-font-body: 'Manrope', 'Segoe UI', sans-serif;
  --fy-radius: 6px;
  --fy-radius-pill: 50px;
  --fy-shadow: 0 8px 32px rgba(26, 107, 138, 0.14);
  --fy-transition: 0.3s ease;
  --fy-max-width: 1200px;
  --fy-header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fy-font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--fy-text);
  background: var(--fy-sail);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--fy-aegean);
  text-decoration: none;
  transition: color var(--fy-transition);
}

a:hover {
  color: var(--fy-coral);
}

h1, h2, h3, h4 {
  font-family: var(--fy-font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--fy-navy);
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Header ── */
.fy-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--fy-header-h);
  display: flex;
  align-items: center;
  transition: background var(--fy-transition), box-shadow var(--fy-transition);
}

.fy-header--transparent {
  background: transparent;
}

.fy-header--solid {
  background: rgba(13, 43, 62, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: var(--fy-shadow);
}

.fy-header-inner {
  width: 100%;
  max-width: var(--fy-max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fy-logo {
  font-family: var(--fy-font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--fy-sail);
  letter-spacing: 0.02em;
}

.fy-logo span {
  color: var(--fy-coral);
  font-weight: 400;
  font-style: italic;
}

.fy-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.fy-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(248, 250, 252, 0.9);
}

.fy-nav a:hover,
.fy-nav a.fy-active {
  color: var(--fy-coral);
}

.fy-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.fy-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fy-sail);
  transition: var(--fy-transition);
}

.fy-burger.fy-open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.fy-burger.fy-open span:nth-child(2) { opacity: 0; }
.fy-burger.fy-open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Full-bleed Cinematic Hero ── */
.fy-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.fy-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 43, 62, 0.88) 0%,
    rgba(13, 43, 62, 0.4) 45%,
    rgba(26, 107, 138, 0.12) 100%
  );
}

.fy-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--fy-max-width);
  margin: 0 auto;
  padding: calc(var(--fy-header-h) + 3rem) 2rem 5rem;
}

.fy-hero-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--fy-coral);
  margin-bottom: 1.25rem;
}

.fy-hero h1 {
  color: var(--fy-sail);
  max-width: 720px;
  margin-bottom: 1.25rem;
}

.fy-hero-sub {
  font-size: 1.1rem;
  color: rgba(248, 250, 252, 0.85);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.75;
}

.fy-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Page Hero (inner pages) ── */
.fy-page-hero {
  position: relative;
  min-height: 48vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  margin-top: var(--fy-header-h);
}

.fy-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13, 43, 62, 0.85) 0%,
    rgba(26, 107, 138, 0.35) 100%
  );
}

.fy-page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--fy-max-width);
  margin: 0 auto;
  padding: 3.5rem 2rem;
}

.fy-page-hero h1 {
  color: var(--fy-sail);
  margin-bottom: 0.75rem;
}

.fy-page-hero p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.05rem;
  max-width: 600px;
}

/* ── Buttons ── */
.fy-btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--fy-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  cursor: pointer;
  transition: all var(--fy-transition);
  border-radius: var(--fy-radius);
}

.fy-btn-primary {
  background: var(--fy-coral);
  color: var(--fy-white);
}

.fy-btn-primary:hover {
  background: var(--fy-coral-dark);
  color: var(--fy-white);
}

.fy-btn-outline {
  background: transparent;
  color: var(--fy-sail);
  border: 1px solid rgba(248, 250, 252, 0.6);
}

.fy-btn-outline:hover {
  background: rgba(248, 250, 252, 0.12);
  color: var(--fy-sail);
}

.fy-btn-aegean {
  background: var(--fy-aegean);
  color: var(--fy-white);
}

.fy-btn-aegean:hover {
  background: var(--fy-aegean-dark);
  color: var(--fy-white);
}

.fy-btn-dark {
  background: var(--fy-navy);
  color: var(--fy-sail);
}

.fy-btn-dark:hover {
  background: var(--fy-navy-light);
  color: var(--fy-sail);
}

/* ── Sections ── */
.fy-section {
  padding: 5rem 2rem;
}

.fy-section-alt {
  background: var(--fy-white);
}

.fy-section-aegean {
  background: var(--fy-aegean);
  color: var(--fy-sail);
}

.fy-section-aegean h2,
.fy-section-aegean h3 {
  color: var(--fy-sail);
}

.fy-section-aegean p {
  color: rgba(248, 250, 252, 0.85);
}

.fy-container {
  max-width: var(--fy-max-width);
  margin: 0 auto;
}

.fy-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.fy-section-header p {
  color: var(--fy-text-light);
  font-size: 1.05rem;
}

.fy-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--fy-coral);
  margin-bottom: 0.75rem;
}

/* ── Grids ── */
.fy-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.fy-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fy-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* ── Cards ── */
.fy-card {
  background: var(--fy-white);
  border-radius: var(--fy-radius);
  overflow: hidden;
  box-shadow: var(--fy-shadow);
  transition: transform var(--fy-transition), box-shadow var(--fy-transition);
}

.fy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(26, 107, 138, 0.18);
}

.fy-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.fy-card-body {
  padding: 1.75rem;
}

.fy-card-body h3 {
  margin-bottom: 0.5rem;
  color: var(--fy-aegean);
}

.fy-card-body p {
  font-size: 0.92rem;
  color: var(--fy-text-light);
  margin-bottom: 1rem;
}

.fy-card-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--fy-coral);
}

/* ── Features ── */
.fy-feature {
  text-align: center;
  padding: 2rem 1.5rem;
}

.fy-feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: rgba(26, 107, 138, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fy-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fy-aegean);
}

.fy-feature h3 {
  margin-bottom: 0.75rem;
  color: var(--fy-aegean);
}

.fy-feature p {
  font-size: 0.92rem;
  color: var(--fy-text-light);
}

/* ── Stats ── */
.fy-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.fy-stat-num {
  font-family: var(--fy-font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--fy-coral);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.fy-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fy-text-light);
}

/* ── Feature List ── */
.fy-feature-list {
  list-style: none;
  margin-top: 1.5rem;
}

.fy-feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  color: var(--fy-text);
}

.fy-feature-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--fy-coral);
  font-size: 0.6rem;
  top: 0.35rem;
}

/* ── About Image ── */
.fy-about-img {
  border-radius: var(--fy-radius);
  width: 100%;
  height: 420px;
  object-fit: cover;
  box-shadow: var(--fy-shadow);
}

/* ── Route Item ── */
.fy-route-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.fy-route-item:last-child {
  margin-bottom: 0;
}

.fy-route-item:nth-child(even) {
  direction: rtl;
}

.fy-route-item:nth-child(even) > * {
  direction: ltr;
}

.fy-route-img {
  border-radius: var(--fy-radius);
  width: 100%;
  height: 320px;
  object-fit: cover;
  box-shadow: var(--fy-shadow);
}

.fy-route-badge {
  display: inline-block;
  background: var(--fy-aegean);
  color: var(--fy-sail);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.85rem;
  border-radius: var(--fy-radius-pill);
  margin-bottom: 1rem;
}

/* ── CTA ── */
.fy-cta {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.fy-cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.fy-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13, 43, 62, 0.72);
  z-index: 1;
}

.fy-cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.fy-cta h2 {
  color: var(--fy-sail);
  margin-bottom: 1rem;
}

.fy-cta p {
  color: rgba(248, 250, 252, 0.85);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ── Contact ── */
.fy-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.fy-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.fy-contact-item h4 {
  font-family: var(--fy-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fy-coral);
  margin-bottom: 0.35rem;
}

.fy-contact-item p,
.fy-contact-item a {
  font-size: 1rem;
  color: var(--fy-text);
}

.fy-contact-form {
  background: var(--fy-white);
  padding: 2.5rem;
  border-radius: var(--fy-radius);
  box-shadow: var(--fy-shadow);
}

.fy-form-group {
  margin-bottom: 1.25rem;
}

.fy-form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fy-text-light);
  margin-bottom: 0.5rem;
}

.fy-form-group input,
.fy-form-group select,
.fy-form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--fy-font-body);
  font-size: 0.95rem;
  border: 1px solid var(--fy-sail-dark);
  border-radius: var(--fy-radius);
  background: var(--fy-sail);
  color: var(--fy-text);
  transition: border-color var(--fy-transition);
}

.fy-form-group input:focus,
.fy-form-group select:focus,
.fy-form-group textarea:focus {
  outline: none;
  border-color: var(--fy-aegean);
}

.fy-form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* ── Privacy ── */
.fy-legal {
  padding: 5rem 2rem;
  margin-top: var(--fy-header-h);
}

.fy-legal-inner {
  max-width: 800px;
  margin: 0 auto;
}

.fy-legal h1 {
  margin-bottom: 0.5rem;
}

.fy-legal-updated {
  font-size: 0.88rem;
  color: var(--fy-text-light);
  margin-bottom: 2.5rem;
}

.fy-legal h2 {
  font-size: 1.4rem;
  margin: 2rem 0 1rem;
  color: var(--fy-aegean);
}

.fy-legal p,
.fy-legal li {
  font-size: 0.95rem;
  color: var(--fy-text-light);
  line-height: 1.75;
}

.fy-legal ul {
  margin: 0.75rem 0 1rem 1.5rem;
}

/* ── Footer ── */
.fy-footer {
  background: var(--fy-navy);
  color: rgba(248, 250, 252, 0.75);
  padding: 4rem 2rem 0;
}

.fy-footer-grid {
  max-width: var(--fy-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.fy-footer-brand {
  font-family: var(--fy-font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fy-sail);
  margin-bottom: 1rem;
}

.fy-footer h4 {
  font-family: var(--fy-font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fy-coral);
  margin-bottom: 1.25rem;
}

.fy-footer ul {
  list-style: none;
}

.fy-footer li {
  margin-bottom: 0.6rem;
  font-size: 0.88rem;
}

.fy-footer a {
  color: rgba(248, 250, 252, 0.75);
}

.fy-footer a:hover {
  color: var(--fy-coral);
}

.fy-footer-bottom {
  max-width: var(--fy-max-width);
  margin: 0 auto;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(248, 250, 252, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ── Cookie Pill (bottom) ── */
.fy-cookie-pill {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  max-width: 720px;
  width: calc(100% - 2rem);
  background: var(--fy-navy);
  color: rgba(248, 250, 252, 0.9);
  padding: 0.85rem 1.25rem;
  border-radius: var(--fy-radius-pill);
  box-shadow: 0 8px 32px rgba(13, 43, 62, 0.4);
  transition: transform 0.4s ease;
}

.fy-cookie-pill.fy-show {
  transform: translateX(-50%) translateY(0);
}

.fy-cookie-pill p {
  font-size: 0.82rem;
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.fy-cookie-pill a {
  color: var(--fy-coral);
  text-decoration: underline;
}

.fy-cookie-pill-actions {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.fy-cookie-pill-actions .fy-btn {
  padding: 0.5rem 1.1rem;
  font-size: 0.72rem;
}

/* ── Boat specs table ── */
.fy-specs {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--fy-sail-dark);
}

.fy-spec {
  font-size: 0.82rem;
}

.fy-spec strong {
  display: block;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fy-text-light);
  margin-bottom: 0.15rem;
}

/* ── Responsive 900px ── */
@media (max-width: 900px) {
  .fy-nav {
    position: fixed;
    top: var(--fy-header-h);
    left: 0;
    right: 0;
    background: var(--fy-navy);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(248, 250, 252, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    transition: all var(--fy-transition);
  }

  .fy-nav.fy-open {
    transform: translateY(0);
    opacity: 1;
  }

  .fy-burger {
    display: flex;
  }

  .fy-grid-2,
  .fy-grid-3,
  .fy-grid-4,
  .fy-contact-grid,
  .fy-route-item {
    grid-template-columns: 1fr;
  }

  .fy-route-item:nth-child(even) {
    direction: ltr;
  }

  .fy-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fy-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .fy-card-img {
    height: 200px;
  }

  .fy-about-img,
  .fy-route-img {
    height: 280px;
  }
}

/* ── Responsive 560px ── */
@media (max-width: 560px) {
  .fy-header-inner {
    padding: 0 1.25rem;
  }

  .fy-section {
    padding: 3.5rem 1.25rem;
  }

  .fy-hero-content {
    padding: calc(var(--fy-header-h) + 2rem) 1.25rem 3.5rem;
  }

  .fy-page-hero-content {
    padding: 2.5rem 1.25rem;
  }

  .fy-footer-grid {
    grid-template-columns: 1fr;
  }

  .fy-footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .fy-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .fy-hero-actions .fy-btn {
    display: block;
    width: 100%;
    text-align: center;
  }

  .fy-cookie-pill {
    flex-direction: column;
    border-radius: 20px;
    text-align: center;
    padding: 1rem 1.25rem;
  }

  .fy-cookie-pill-actions {
    width: 100%;
    flex-direction: column;
  }

  .fy-cookie-pill-actions .fy-btn {
    width: 100%;
  }

  .fy-contact-form {
    padding: 1.75rem;
  }
}
