:root {
  --swy-navy: #072b3f;
  --swy-navy-2: #0f4b61;
  --swy-navy-3: #2f6371;
  --swy-blue: #73aab7;
  --swy-gold: #bd8f46;
  --swy-sand: #efe3cf;
  --swy-seafoam: #e8f5f3;
  --swy-ink: #113244;
  --swy-muted: #5b7280;
  --swy-soft: #f8f2e8;
  --swy-soft-blue: #eaf6f6;
  --swy-line: rgba(7, 43, 63, .14);
  --swy-card: #ffffff;
  --swy-shadow: 0 24px 64px rgba(7, 43, 63, .15);
  --swy-radius: 28px;
  --swy-radius-sm: 16px;
  --swy-max: 1180px;
  --swy-header-height: 76px;
  --swy-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--swy-font);
  color: var(--swy-ink);
  background: #fff;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--swy-navy-2); }
button, input, textarea, select { font: inherit; }

.swy-container { width: min(calc(100% - 40px), var(--swy-max)); margin-inline: auto; }

.swy-site-header {
  min-height: var(--swy-header-height);
  background: rgba(255,255,255,.90);
  border-bottom: 1px solid var(--swy-line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
}
.admin-bar .swy-site-header { top: 32px; }
.swy-header-inner {
  width: min(calc(100% - 40px), var(--swy-max));
  min-height: var(--swy-header-height);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.swy-logo-link { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.swy-logo-img { width: 210px; height: auto; max-height: 56px; object-fit: contain; }
.swy-nav { justify-self: center; }
.swy-menu { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; gap: 28px; }
.swy-menu a, .swy-header-link { font-size: 14px; font-weight: 700; color: var(--swy-navy); letter-spacing: -.01em; }
.swy-menu a:hover, .swy-header-link:hover { color: var(--swy-gold); }
.swy-header-actions { display: flex; align-items: center; gap: 16px; }
.swy-menu-toggle { width: 38px; height: 38px; display: none; place-items: center; border: 0; border-radius: 999px; color: var(--swy-navy); background: transparent; cursor: pointer; }
.swy-menu-toggle span { display: block; width: 20px; height: 2px; background: currentColor; margin: 3px 0; }
.swy-menu li { position: relative; }
.swy-menu .sub-menu { position: absolute; top: calc(100% + 14px); left: 0; min-width: 228px; list-style: none; margin: 0; padding: 10px; background: #fff; border: 1px solid var(--swy-line); border-radius: 16px; box-shadow: var(--swy-shadow); opacity: 0; visibility: hidden; transform: translateY(-4px); transition: .16s ease; z-index: 60; }
.swy-menu li:hover > .sub-menu, .swy-menu .swy-submenu-open > .sub-menu { opacity: 1; visibility: visible; transform: none; }
.swy-menu .sub-menu a { display: block; padding: 9px 10px; border-radius: 10px; }
.swy-menu .sub-menu a:hover { background: var(--swy-soft-blue); }
.swy-skip-link { position: absolute; left: -9999px; top: auto; }
.swy-skip-link:focus { left: 20px; top: 20px; z-index: 100; background: #fff; padding: 10px 14px; border-radius: 8px; }

.swy-hero {
  position: relative;
  min-height: clamp(640px, 76vh, 880px);
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-bottom: 1px solid var(--swy-line);
  background: radial-gradient(circle at 78% 18%, rgba(115,170,183,.34), transparent 28%), linear-gradient(135deg, #eef6f6 0%, #fff6e7 100%);
}
.swy-hero-media { position: absolute; inset: 0; z-index: 0; }
.swy-hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 67% 50%; filter: saturate(1.08) contrast(1.03); }
.swy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.91) 31%, rgba(255,255,255,.52) 54%, rgba(255,255,255,.12) 76%, rgba(255,255,255,.04) 100%),
    linear-gradient(0deg, rgba(7,43,63,.22) 0%, rgba(255,255,255,0) 40%);
}
.swy-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 92px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.96) 76%, #fff 100%);
  clip-path: polygon(0 40%, 11% 56%, 24% 41%, 37% 59%, 51% 45%, 66% 61%, 81% 43%, 100% 58%, 100% 100%, 0 100%);
  opacity: .95;
}
.swy-hero-content { position: relative; z-index: 3; width: min(calc(100% - 40px), var(--swy-max)); margin: 0 auto; padding: clamp(86px, 8vw, 126px) 0 clamp(76px, 8vw, 112px); display: flex; align-items: center; }
.swy-hero-copy { max-width: 620px; }
.swy-kicker { display: inline-flex; align-items: center; gap: 9px; color: var(--swy-gold); font-weight: 760; letter-spacing: .08em; font-size: 13px; text-transform: uppercase; }
.swy-kicker::before { content: ""; width: 32px; height: 2px; background: var(--swy-gold); }
.swy-hero-title { margin: 10px 0 12px; font-size: clamp(54px, 7.2vw, 96px); line-height: .95; letter-spacing: -.06em; color: var(--swy-navy); font-weight: 770; }
.swy-hero-text, .swy-section-intro { max-width: 700px; color: var(--swy-muted); font-size: 18px; }
.swy-hero-text { color: #24495a; font-size: clamp(18px, 1.55vw, 22px); }
.swy-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 30px; }
.swy-button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 14px 23px; border-radius: 14px; border: 1px solid transparent; font-weight: 780; transition: .16s ease; }
.swy-button:hover { transform: translateY(-1px); }
.swy-button-primary { color: #fff; background: linear-gradient(135deg, var(--swy-navy), var(--swy-navy-2)); box-shadow: 0 18px 34px rgba(7,43,63,.24); }
.swy-button-primary:hover { color: #fff; background: #123f55; }
.swy-button-secondary { background: rgba(255,255,255,.82); color: #8a6734; border-color: rgba(189,143,70,.58); }

.swy-section { padding: clamp(58px, 7vw, 94px) 0; }
.swy-section-light { background: linear-gradient(180deg, #fff 0%, #f7fbfb 100%); }
.swy-section-head, .swy-split-head { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.swy-section-title { margin: 0; color: var(--swy-navy); font-size: clamp(30px, 3.25vw, 48px); line-height: 1.04; letter-spacing: -.048em; }
.swy-section-title::after { content: ""; display: block; width: 62px; height: 2px; margin-top: 14px; background: var(--swy-gold); }
.swy-eyebrow { margin: 0 0 8px; color: var(--swy-gold); font-weight: 780; text-transform: uppercase; letter-spacing: .08em; font-size: 13px; }

.swy-yacht-grid, .swy-shortcode-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.swy-yacht-card, .swy-shortcode-card, .aey-yacht-card { background: var(--swy-card); border: 1px solid var(--swy-line); border-radius: 18px; overflow: hidden; box-shadow: 0 14px 36px rgba(7,43,63,.09); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.swy-yacht-card:hover, .swy-shortcode-card:hover, .aey-yacht-card:hover { transform: translateY(-4px); box-shadow: var(--swy-shadow); border-color: rgba(189,143,70,.48); }
.swy-yacht-image, .swy-shortcode-image, .aey-yacht-card-image { position: relative; aspect-ratio: 16/10; background: #dce9ea; overflow: hidden; display: block; }
.swy-yacht-image::after, .swy-shortcode-image::after, .aey-yacht-card-image::after { content: ""; position: absolute; inset: auto 0 0; height: 46%; background: linear-gradient(180deg, transparent, rgba(7,43,63,.48)); pointer-events: none; }
.swy-yacht-image img, .swy-shortcode-image img, .aey-yacht-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease, filter .35s ease; }
.swy-yacht-card:hover img, .swy-shortcode-card:hover img, .aey-yacht-card:hover img { transform: scale(1.035); filter: saturate(1.08); }
.swy-yacht-badge, .swy-shortcode-image em { position: absolute; top: 10px; right: 10px; z-index: 2; display: inline-flex; align-items: center; min-height: 25px; padding: 4px 9px; border-radius: 999px; background: rgba(7,43,63,.90); color: #fff; font-size: 12px; font-weight: 780; font-style: normal; }
.swy-yacht-card-body, .swy-shortcode-body { display: block; padding: 17px 18px 18px; }
.swy-yacht-name, .swy-shortcode-body strong { display: block; color: var(--swy-navy); font-size: 19px; font-weight: 780; letter-spacing: -.025em; }
.swy-yacht-card-body small, .swy-shortcode-body small { display: block; margin-top: 7px; color: var(--swy-muted); font-size: 14px; }

.swy-facts-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; }
.swy-fact { background: #fff; border: 1px solid var(--swy-line); border-radius: var(--swy-radius-sm); padding: 18px; box-shadow: 0 10px 28px rgba(7,43,63,.07); }
.swy-fact strong { display: block; color: var(--swy-navy); font-size: 25px; }
.swy-fact span { color: var(--swy-muted); }
.swy-shortcode-panel, .swy-cta-panel { background: linear-gradient(135deg, #eaf6f6, #fff9ef); border: 1px solid var(--swy-line); border-radius: var(--swy-radius); padding: clamp(24px,4vw,44px); box-shadow: 0 18px 48px rgba(7,43,63,.10); }
.swy-note { color: var(--swy-muted); }

.ytr-review-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #072b3f 0%, #0e4e62 58%, #bd8f46 150%); color: #fff; }
.ytr-review-section::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 12% 22%, rgba(255,255,255,.16), transparent 30%), radial-gradient(circle at 84% 78%, rgba(255,255,255,.12), transparent 32%); pointer-events: none; }
.ytr-review-section .swy-container { position: relative; z-index: 1; }
.ytr-review-section .swy-eyebrow { color: #f2d49c; }
.ytr-review-section .swy-section-title { color: #fff; max-width: 760px; }
.ytr-review-section .swy-section-title::after { background: #f2d49c; }
.ytr-review-section .swy-section-intro { color: rgba(255,255,255,.78); }
.ytr-review-shell { margin-top: 10px; }
.ytr-review-section .aey-swf-reviews { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.ytr-review-section .aey-swf-review { background: rgba(255,255,255,.94); color: var(--swy-ink); border: 1px solid rgba(255,255,255,.42); border-radius: 22px; padding: 22px; box-shadow: 0 22px 54px rgba(0,0,0,.18); min-height: 100%; }
.ytr-review-section .aey-swf-review-stars { color: var(--swy-gold); font-size: 18px; letter-spacing: .02em; margin-bottom: 12px; }
.ytr-review-section .aey-swf-review-rating { color: var(--swy-navy); font-weight: 780; margin-left: 8px; font-size: 13px; }
.ytr-review-section .aey-swf-review-text { color: #173848; font-size: 16px; line-height: 1.62; }
.ytr-review-section .aey-swf-review-meta { color: var(--swy-muted); margin-top: 16px; font-size: 13px; font-weight: 650; }
.ytr-yacht-review-section { background: linear-gradient(135deg, #f7fbfb 0%, #fff 52%, #fff3dd 100%); color: var(--swy-ink); }
.ytr-yacht-review-section::before { opacity: .45; }
.ytr-yacht-review-section .swy-section-title { color: var(--swy-navy); }
.ytr-yacht-review-section .swy-section-intro { color: var(--swy-muted); }
.ytr-yacht-review-section .aey-swf-review { background: #fff; border: 1px solid var(--swy-line); box-shadow: 0 16px 38px rgba(7,43,63,.10); }

.swy-site-footer { border-top: 1px solid var(--swy-line); background: linear-gradient(135deg, #f7f1e6, #edf6f6); padding: 36px 0; }
.swy-footer-inner { width: min(calc(100% - 40px), var(--swy-max)); margin-inline: auto; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.swy-footer-brand img { width: 190px; }
.swy-footer-brand p { margin: 10px 0 0; color: var(--swy-muted); }
.swy-footer-menu { display: flex; gap: 18px; flex-wrap: wrap; }
.swy-mobile-panel { border-top: 1px solid var(--swy-line); background: #fff; }
.swy-mobile-menu-list { list-style: none; margin: 0; padding: 16px 20px; }
.swy-mobile-menu-list a { display: block; padding: 10px 0; color: var(--swy-navy); font-weight: 700; }

@media (max-width: 1060px) {
  .swy-yacht-grid, .swy-shortcode-grid { grid-template-columns: repeat(2, 1fr); }
  .ytr-review-section .aey-swf-reviews { grid-template-columns: 1fr; }
  .swy-nav { display: none; }
  .swy-menu-toggle { display: inline-grid; }
  .swy-header-inner { grid-template-columns: auto 1fr auto; }
  .swy-logo-img { width: 180px; }
}
@media (max-width: 720px) {
  .swy-container, .swy-header-inner, .swy-footer-inner { width: min(calc(100% - 28px), var(--swy-max)); }
  .swy-hero { min-height: 570px; }
  .swy-hero-title { font-size: clamp(42px, 14vw, 64px); }
  .swy-yacht-grid, .swy-shortcode-grid { grid-template-columns: 1fr; }
  .swy-section-head, .swy-split-head, .swy-footer-inner { display: block; }
  .swy-header-link { display: none; }
  .admin-bar .swy-site-header { top: 46px; }
  .ytr-review-section .aey-swf-review { padding: 18px; }
}
