  :root {
    --navy: #0f1a2b;
    --navy-2: #1b2a44;
    --navy-soft: #3a4a66;
    --brass: #a06c1e;
    --brass-light: #c8963e;
    --brass-glow: #e8c98a;
    --parchment: #f5f2ec;
    --parchment-2: #ebe5d4;
    --paper: #fbf9f3;
    --canvas: #e0dccd;
    --rule: #d9d2c0;
    --ink: #1a2333;
    --muted: #5e6880;
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --radius-pill: 999px;
  }
  *,*::before,*::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Libre Baskerville', Georgia, serif;
    background: var(--canvas);
    color: var(--ink);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    padding: 1.25rem;
  }
  h1,h2,h3,h4 { font-family: 'Cormorant Garamond', serif; font-weight: 500; line-height: 1.08; margin: 0; color: var(--navy); }
  a { color: var(--brass); text-decoration: none; }
  a:hover { color: var(--brass-light); }
  .mono { font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.7rem; }

  /* Page card wrapper — the WANDER-style contained layout */
  .page {
    max-width: 1280px;
    margin: 0 auto;
    background: var(--paper);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px -40px rgba(15,26,43,0.25);
  }
  .container { max-width: 1180px; margin: 0 auto; padding: 0 2.25rem; }

  /* Top nav — pill style */
  nav.top {
    padding: 1.25rem 2.25rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }
  nav.top .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.75rem;
    color: var(--navy);
    font-weight: 600;
    letter-spacing: 0.01em;
  }
  nav.top .logo svg { width: 36px; height: 36px; }
  nav.top .links {
    display: flex;
    gap: 2rem;
    margin-left: 2rem;
  }
  nav.top .links a {
    color: var(--navy);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0;
    border-bottom: 1px solid transparent;
    transition: border-color 200ms, color 200ms;
  }
  nav.top .links a:hover, nav.top .links a.active { border-bottom-color: var(--brass); color: var(--navy); }
  nav.top .right { margin-left: auto; display: flex; align-items: center; gap: 0.75rem; }
  .nav-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--parchment);
    border: 1px solid var(--rule);
    border-radius: var(--radius-pill);
    padding: 0.55rem 1rem;
    width: 280px;
    transition: border-color 200ms;
  }
  .nav-search:hover { border-color: var(--brass); }
  .nav-search svg { width: 14px; height: 14px; opacity: 0.5; flex-shrink: 0; }
  .nav-search input {
    border: 0;
    background: transparent;
    outline: none;
    flex: 1;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.85rem;
    color: var(--navy);
    min-width: 0;
  }
  .nav-search input::placeholder { color: #9ba3b3; font-style: italic; }
  .btn-pill {
    background: var(--navy);
    color: #fff;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 0.7rem 1.4rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 220ms ease, transform 200ms ease;
    white-space: nowrap;
  }
  .btn-pill:hover { background: var(--brass); }
  .btn-pill.outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
  }
  .btn-pill.outline:hover { background: var(--navy); color: #fff; }

  /* HERO — big rounded card with overlay */
  .hero-wrap { padding: 0 2.25rem; }
  .hero {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/8;
    background-image: url('hero-sailboat.png');
    background-size: cover;
    background-position: center right;
    background-color: #15273f;
  }
  .hero::before {
    /* legibility scrim — darker at bottom-left where copy lives */
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, rgba(10,22,40,0.78) 0%, rgba(10,22,40,0.5) 35%, rgba(10,22,40,0.08) 60%, transparent 78%),
      linear-gradient(180deg, transparent 50%, rgba(10,22,40,0.55) 100%);
    pointer-events: none;
  }
  .hero .display-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 38% 0 4%;
    pointer-events: none;
  }
  .hero .display-text span {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 500;
    color: rgba(255,255,255,0.97);
    font-size: clamp(4rem, 11vw, 10rem);
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-shadow: 0 6px 40px rgba(0,0,0,0.55);
    white-space: nowrap;
  }
  .hero .display-text span em {
    font-style: italic;
    color: var(--brass-glow);
    font-weight: 400;
  }
  .hero .body {
    position: absolute;
    bottom: 2.5rem;
    left: 2.5rem;
    right: 2.5rem;
    z-index: 2;
    color: #fff;
  }
  .hero .body .eyebrow {
    color: var(--brass-glow);
    margin-bottom: 1rem;
  }
  .hero .body p {
    max-width: 46ch;
    font-size: 1rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.85);
    margin: 0 0 1.5rem;
  }
  .hero .body .ctas { display: flex; gap: 0.75rem; }
  .hero .body .btn-pill {
    background: var(--paper);
    color: var(--navy);
  }
  .hero .body .btn-pill:hover { background: var(--brass); color: #fff; }
  .hero .body .btn-pill.outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.7);
  }
  .hero .body .btn-pill.outline:hover { background: #fff; color: var(--navy); }

  /* Big hero search */
  .hero-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(251,249,243,0.97);
    border-radius: var(--radius-pill);
    padding: 0.75rem 0.85rem 0.75rem 1.6rem;
    max-width: 560px;
    box-shadow: 0 18px 50px -18px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.15);
    margin-bottom: 1rem;
  }
  .hero-search svg.s-ico { width: 18px; height: 18px; color: var(--navy); flex-shrink: 0; opacity: 0.7; }
  .hero-search input {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    font-family: 'Libre Baskerville', serif;
    font-size: 1rem;
    color: var(--navy);
    padding: 0.4rem 0;
    min-width: 0;
  }
  .hero-search input::placeholder { color: #8a93a4; font-style: italic; }
  .hero-search button {
    background: var(--brass);
    color: #fff;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 0.7rem 1.4rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 200ms;
    white-space: nowrap;
  }
  .hero-search button:hover { background: var(--brass-light); }
  .hero .body .quick-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
  }
  .hero .body .quick-tags .tag {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    padding: 0.35rem 0.85rem;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background 180ms, border-color 180ms;
  }
  .hero .body .quick-tags .tag:hover { background: rgba(255,255,255,0.12); border-color: var(--brass-glow); }

  /* LATEST FREE LISTINGS strip */
  .listings-strip { padding: 3rem 2.25rem 1rem; }
  .listings-strip .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 2rem;
  }
  .listings-strip .head .left .eyebrow {
    color: var(--brass);
    margin-bottom: 0.4rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
  }
  .listings-strip .head .left .eyebrow .badge {
    background: var(--brass);
    color: #fff;
    padding: 0.15rem 0.55rem;
    border-radius: var(--radius-pill);
    font-size: 0.6rem;
    letter-spacing: 0.12em;
  }
  .listings-strip .head h2 {
    font-size: clamp(1.85rem, 3vw, 2.5rem);
    font-weight: 500;
  }
  .listings-strip .head h2 em { font-style: italic; color: var(--brass); }
  .listings-strip .head .right p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
    max-width: 32ch;
    text-align: right;
  }
  .listings-strip .head .right a {
    display: inline-block;
    margin-top: 0.4rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    border-bottom: 1px solid var(--brass);
    padding-bottom: 2px;
  }
  .listings-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
  .listing-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    display: flex;
    flex-direction: column;
  }
  .listing-card:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
    box-shadow: 0 22px 36px -22px rgba(15,26,43,0.25);
  }
  .listing-card .photo {
    aspect-ratio: 4/3;
    position: relative;
    background: var(--navy);
  }
  .listing-card.l1 .photo { background: linear-gradient(160deg, #5a7898 0%, #1b2a44 60%, #0a1628 100%); }
  .listing-card.l2 .photo { background: linear-gradient(160deg, #4a6488 0%, #15273f 60%, #050f1c 100%); }
  .listing-card.l3 .photo { background: linear-gradient(160deg, #6b87a8 0%, #2c4866 60%, #122236 100%); }
  .listing-card.l4 .photo { background: linear-gradient(160deg, #3a5478 0%, #15273f 60%, #050f1c 100%); }
  .listing-card .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.025) 30px, rgba(255,255,255,0.025) 31px);
  }
  .listing-card .free-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: var(--brass);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-pill);
    z-index: 2;
  }
  .listing-card .price-tag {
    position: absolute;
    bottom: 0.85rem;
    right: 0.85rem;
    background: rgba(251,249,243,0.95);
    color: var(--navy);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-family: 'DM Mono', monospace;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    z-index: 2;
    font-weight: 700;
  }
  .listing-card .body {
    padding: 1rem 1.15rem 1.15rem;
  }
  .listing-card .body h4 {
    font-size: 1.2rem;
    margin: 0 0 0.2rem;
    font-weight: 600;
  }
  .listing-card .body .loc {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .listing-card .body .meta {
    margin-top: 0.7rem;
    padding-top: 0.7rem;
    border-top: 1px dashed var(--rule);
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
  }

  /* THREE PILLARS */
  .pillars { padding: 4rem 2.25rem 0; }
  .pillars .row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .pillar {
    background: var(--parchment);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 220ms, box-shadow 220ms, border-color 220ms;
    cursor: pointer;
  }
  .pillar:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
    box-shadow: 0 22px 36px -22px rgba(15,26,43,0.25);
  }
  .pillar.feature {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
    position: relative;
    overflow: hidden;
  }
  .pillar.feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(200,150,62,0.18), transparent 60%),
      repeating-linear-gradient(0deg, transparent 0, transparent 50px, rgba(255,255,255,0.025) 50px, rgba(255,255,255,0.025) 51px);
    pointer-events: none;
  }
  .pillar.feature > * { position: relative; z-index: 1; }
  .pillar .ico-pill {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--brass-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }
  .pillar.feature .ico-pill {
    background: rgba(232,201,138,0.15);
  }
  .pillar .ico-pill svg { width: 26px; height: 26px; }
  .pillar .num-big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-style: italic;
    color: var(--brass);
    margin-bottom: 0.25rem;
  }
  .pillar.feature .num-big { color: var(--brass-glow); }
  .pillar h3 {
    font-size: 1.85rem;
    font-weight: 500;
    margin: 0 0 0.65rem;
    max-width: 14ch;
  }
  .pillar.feature h3 { color: #fff; }
  .pillar p {
    font-size: 0.92rem;
    color: var(--muted);
    margin: 0 0 1.5rem;
    line-height: 1.55;
  }
  .pillar.feature p { color: rgba(255,255,255,0.78); }
  .pillar .pill-cta {
    margin-top: auto;
    align-self: flex-start;
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--navy);
    padding: 0.55rem 1.1rem;
    border: 1px solid var(--navy);
    border-radius: var(--radius-pill);
    background: transparent;
    cursor: pointer;
    transition: background 200ms, color 200ms;
  }
  .pillar .pill-cta:hover { background: var(--navy); color: #fff; }
  .pillar.feature .pill-cta {
    background: var(--brass);
    color: #fff;
    border-color: var(--brass);
  }
  .pillar.feature .pill-cta:hover { background: var(--brass-light); border-color: var(--brass-light); }

  /* "Why Sailors Choose" section */
  .why { padding: 5rem 0 4rem; }
  .why .grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .why .left .eyebrow { color: var(--brass); margin-bottom: 1rem; }
  .why .left h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); max-width: 16ch; margin-bottom: 1.25rem; font-weight: 500; }
  .why .left p {
    font-size: 1rem;
    color: var(--muted);
    max-width: 50ch;
    margin: 0 0 2rem;
  }
  .why .stat-row {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 2.5rem;
    justify-content: start;
    padding-top: 2rem;
    border-top: 1px solid var(--rule);
  }
  .why .stat {
    text-align: left;
  }
  .why .stat .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--navy);
    color: var(--brass-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
  }
  .why .stat .icon-circle svg { width: 20px; height: 20px; }
  .why .stat .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
  }
  .why .stat .lbl {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    margin-top: 0.35rem;
    max-width: 14ch;
  }

  .benefit-stack { display: flex; flex-direction: column; gap: 1rem; }
  .benefit {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--parchment);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
    cursor: pointer;
  }
  .benefit:hover {
    transform: translateY(-3px);
    border-color: var(--brass);
    box-shadow: 0 18px 36px -22px rgba(15,26,43,0.2);
  }
  .benefit .ico {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--navy);
    color: var(--brass-light);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .benefit .ico svg { width: 24px; height: 24px; }
  .benefit h4 {
    font-size: 1.35rem;
    margin: 0 0 0.35rem;
    font-weight: 600;
  }
  .benefit p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.55;
  }

  /* FEATURED BOATS — slimmer secondary section */
  .featured { padding: 0 2.25rem 3rem; }
  .featured .panel {
    background: transparent;
    padding: 0;
    border: 0;
    border-top: 1px solid var(--rule);
    padding-top: 2.5rem;
    position: relative;
  }
  .featured .head {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: 1.75rem;
  }
  .featured .head .left h2 { font-size: 1.75rem; font-weight: 500; }
  .featured .head .left .eyebrow { color: var(--brass); margin-bottom: 0.5rem; }
  .featured .head .right p { margin: 0; color: var(--muted); font-size: 0.95rem; max-width: 36ch; }
  .featured .head .nav-arrows { display: flex; gap: 0.5rem; align-items: center; }
  .arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--navy);
    background: transparent;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 200ms, color 200ms;
  }
  .arrow-btn:hover { background: var(--navy); color: #fff; }
  .arrow-btn svg { width: 16px; height: 16px; }

  .boat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
  .boat-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/5;
    cursor: pointer;
    transition: transform 280ms ease, box-shadow 280ms ease;
    background: var(--navy);
  }
  .boat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px -20px rgba(15,26,43,0.4); }
  .boat-card .photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
  }
  .boat-card.b1 .photo { background: linear-gradient(160deg, #4a6488 0%, #1b2a44 60%, #0a1628 100%); }
  .boat-card.b2 .photo { background: linear-gradient(160deg, #6b87a8 0%, #2c4866 60%, #122236 100%); }
  .boat-card.b3 .photo { background: linear-gradient(160deg, #5a7898 0%, #233d5c 60%, #0e1d30 100%); }
  .boat-card.b4 .photo { background: linear-gradient(160deg, #3a5478 0%, #15273f 60%, #050f1c 100%); }
  .boat-card .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%),
      repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px);
  }
  .boat-card .price-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(251,249,243,0.95);
    color: var(--navy);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    z-index: 2;
  }
  .boat-card .price-tag strong { color: var(--brass); }
  .boat-card .info {
    position: absolute;
    bottom: 1.25rem;
    left: 1.25rem;
    right: 1.25rem;
    color: #fff;
    z-index: 2;
  }
  .boat-card .info h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 0.25rem;
    font-weight: 600;
  }
  .boat-card .info .sub {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.7);
    font-family: 'DM Mono', monospace;
    margin-bottom: 0.6rem;
  }
  .boat-card .info .meta {
    display: flex;
    gap: 1rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255,255,255,0.2);
  }
  .boat-card .info .meta svg { width: 12px; height: 12px; vertical-align: middle; margin-right: 0.25rem; opacity: 0.7; }
  .boat-card .stars {
    color: var(--brass-glow);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
  }
  .featured .browse {
    margin-top: 2.5rem;
    text-align: center;
  }

  /* Mixed cards row */
  .mix { padding: 0 2.25rem 4rem; }
  .mix .row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 1.25rem; }
  .mix-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 5/4;
    cursor: pointer;
    transition: transform 280ms ease, box-shadow 280ms ease;
  }
  .mix-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -22px rgba(15,26,43,0.3); }
  .mix-card.solid {
    background: var(--navy);
    color: #fff;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
  }
  .mix-card.solid::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 80% 20%, rgba(200,150,62,0.15), transparent 60%),
      repeating-linear-gradient(0deg, transparent 0, transparent 50px, rgba(255,255,255,0.02) 50px, rgba(255,255,255,0.02) 51px);
  }
  .mix-card.solid > * { position: relative; z-index: 1; }
  .mix-card.solid .ico {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(232,201,138,0.15);
    color: var(--brass-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }
  .mix-card.solid .ico svg { width: 26px; height: 26px; }
  .mix-card.solid h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    max-width: 14ch;
    font-weight: 500;
  }
  .mix-card.solid p {
    color: rgba(255,255,255,0.7);
    font-size: 0.92rem;
    max-width: 36ch;
    margin: 0 0 1.5rem;
  }
  .mix-card.solid .btn-pill {
    margin-top: auto;
    align-self: flex-start;
    background: var(--brass);
    color: #fff;
  }
  .mix-card.solid .btn-pill:hover { background: var(--brass-light); }

  .mix-card.photo { background: var(--navy); }
  .mix-card.photo .photo {
    position: absolute;
    inset: 0;
  }
  .mix-card.p1 .photo { background: linear-gradient(160deg, #5a7898 0%, #1b2a44 60%, #0a1628 100%); }
  .mix-card.p2 .photo { background: linear-gradient(160deg, #4a6488 0%, #15273f 60%, #050f1c 100%); }
  .mix-card.photo .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
  }
  .mix-card.photo .label {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background: rgba(251,249,243,0.95);
    color: var(--navy);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'DM Mono', monospace;
    z-index: 2;
  }
  .mix-card.photo .info {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    color: #fff;
    z-index: 2;
  }
  .mix-card.photo .info h3 {
    color: #fff;
    font-size: 1.65rem;
    margin: 0 0 0.4rem;
    font-weight: 600;
  }
  .mix-card.photo .info p {
    color: rgba(255,255,255,0.78);
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  /* Steps row */
  .steps { padding: 0 2.25rem 5rem; }
  .steps h2 { font-size: 2rem; margin-bottom: 2rem; text-align: left; font-weight: 500; }
  .steps h2 em { font-style: italic; color: var(--brass); }
  .step-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch;
  }
  .step {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1.75rem;
    background: var(--parchment);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
  }
  .step .num {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--brass);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--brass);
    font-weight: 600;
  }
  .step h4 {
    font-size: 1.35rem;
    margin: 0 0 0.15rem;
    font-weight: 600;
  }
  .step p { margin: 0; color: var(--muted); font-size: 0.85rem; line-height: 1.5; }

  /* Section divider */
  .sep {
    text-align: center;
    padding: 4rem 2.25rem 3rem;
    color: var(--brass);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-style: italic;
  }
  .sep::before, .sep::after {
    content: '';
    display: inline-block;
    width: 60px;
    height: 1px;
    background: var(--brass);
    vertical-align: middle;
    margin: 0 1.5rem;
  }

  /* BOAT DETAIL */
  .detail-wrap { padding: 0 2.25rem 4rem; }
  .detail {
    background: var(--parchment);
    border-radius: var(--radius-lg);
    padding: 3rem;
    border: 1px solid var(--rule);
  }
  .detail .breadcrumb {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'DM Mono', monospace;
  }
  .detail .breadcrumb strong { color: var(--brass); }
  .detail-head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: end;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--rule);
  }
  .detail-head h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .detail-head h1 em { font-style: italic; color: var(--brass); }
  .detail-head .builder {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--brass);
  }

  .price-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    position: relative;
  }
  .price-card .lbl {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .price-card .amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin: 0.4rem 0;
  }
  .price-card .range {
    font-size: 0.85rem;
    color: var(--muted);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px dashed var(--rule);
  }
  .price-card .meta-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
  }
  .price-card .meta-row div { font-size: 0.78rem; }
  .price-card .meta-row .k { color: var(--muted); display: block; font-family: 'DM Mono', monospace; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.62rem; }
  .price-card .meta-row .v { color: var(--navy); font-weight: 700; font-size: 0.92rem; }
  .price-card .btn-pill { width: 100%; text-align: center; }

  .layout-2 { display: grid; grid-template-columns: 1.55fr 1fr; gap: 2.5rem; }

  .panel-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    padding: 2rem 2.25rem;
  }
  .panel-card + .panel-card { margin-top: 1.5rem; }
  .panel-card h3 {
    font-size: 1.65rem;
    margin: 0 0 1.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid var(--rule);
    display: flex;
    align-items: center;
    gap: 0.85rem;
  }
  .panel-card h3::before {
    content: '';
    width: 4px;
    height: 22px;
    background: var(--brass);
    border-radius: 2px;
  }

  .spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2.5rem;
  }
  .spec-grid > div {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 0.92rem;
  }
  .spec-grid .k {
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .spec-grid .v { color: var(--navy); font-weight: 700; }

  .ratios { display: grid; gap: 1.5rem; }
  .ratio {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  .ratio .top { display: flex; justify-content: space-between; align-items: baseline; }
  .ratio .name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--navy); font-weight: 600; }
  .ratio .val {
    font-family: 'DM Mono', monospace;
    color: var(--brass);
    font-size: 1rem;
    background: var(--parchment);
    padding: 0.2rem 0.7rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--rule);
  }
  .ratio .bar {
    height: 6px;
    background: var(--parchment);
    border-radius: 3px;
    overflow: hidden;
  }
  .ratio .bar .fill { height: 100%; background: var(--brass); border-radius: 3px; }
  .ratio .caption { font-size: 0.82rem; color: var(--muted); font-style: italic; margin: 0; }

  .side-block {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    padding: 1.75rem;
  }
  .side-block + .side-block { margin-top: 1.25rem; }
  .side-block h4 {
    font-size: 1.35rem;
    margin: 0 0 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--rule);
  }
  .review .stars { color: var(--brass); font-size: 1.05rem; letter-spacing: 0.1em; margin-bottom: 0.65rem; }
  .review blockquote {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.5;
    color: var(--navy);
    padding-left: 1rem;
    border-left: 2px solid var(--brass);
  }
  .review .author {
    font-size: 0.72rem;
    margin-top: 0.85rem;
    color: var(--muted);
    font-family: 'DM Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .listing-list { list-style: none; padding: 0; margin: 0; }
  .listing-list li {
    padding: 0.85rem 0;
    border-bottom: 1px dashed var(--rule);
    font-size: 0.88rem;
  }
  .listing-list li:last-child { border-bottom: 0; }
  .listing-list li a.row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.4rem 0.75rem;
    color: var(--ink);
    text-decoration: none;
    align-items: center;
  }
  .listing-list li a.row:hover .ttl { color: var(--brass); }
  .listing-list li .ttl {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.88rem;
    color: var(--navy);
    font-weight: 700;
    line-height: 1.35;
    transition: color 180ms;
  }
  .listing-list li .price {
    color: var(--brass);
    font-family: 'DM Mono', monospace;
    font-size: 0.92rem;
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
  }
  .listing-list li .sub {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-top: 0.1rem;
  }
  .listing-list li .src {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--brass);
  }
  .listing-list li .src svg { width: 9px; height: 9px; }
  .listing-list li .src.craigslist { color: #6f4ea0; }
  .listing-list li .src.sailingtexas { color: #2a6a5a; }
  .listing-list li .src.keelindex { color: var(--brass); font-weight: 700; }
  .listings-foot {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--rule);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .listings-foot .count {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
  .listings-foot a {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--navy);
    border-bottom: 1px solid var(--brass);
    padding-bottom: 1px;
  }

  .phrf-display {
    display: flex;
    align-items: baseline;
    gap: 1rem;
  }
  .phrf-display .big {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--navy);
    line-height: 1;
    font-weight: 600;
  }
  .phrf-display .label {
    font-family: 'DM Mono', monospace;
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* Description / Overview prose */
  .overview-card .lede {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.45rem;
    line-height: 1.45;
    color: var(--navy);
    margin: 0 0 1.25rem;
  }
  .overview-card .lede::first-letter {
    font-size: 3.4rem;
    font-weight: 600;
    float: left;
    line-height: 0.85;
    padding: 0.35rem 0.55rem 0 0;
    color: var(--brass);
    font-style: normal;
  }
  .overview-card p {
    font-size: 0.96rem;
    color: var(--ink);
    line-height: 1.7;
    margin: 0 0 1rem;
  }
  .overview-card p:last-child { margin-bottom: 0; }
  .overview-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.25rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px dashed var(--rule);
  }
  .overview-tags .tg {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--parchment);
    color: var(--navy);
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid var(--rule);
  }

  /* Videos */
  .video-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .video-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    transition: transform 200ms, border-color 200ms, box-shadow 200ms;
  }
  .video-card:hover {
    transform: translateY(-3px);
    border-color: var(--brass);
    box-shadow: 0 18px 30px -22px rgba(15,26,43,0.25);
  }
  .video-thumb {
    aspect-ratio: 16/9;
    position: relative;
    background: var(--navy);
    overflow: hidden;
  }
  .video-thumb.v1 { background: linear-gradient(160deg, #6b87a8 0%, #2c4866 60%, #122236 100%); }
  .video-thumb.v2 { background: linear-gradient(160deg, #4a6488 0%, #15273f 60%, #050f1c 100%); }
  .video-thumb.v3 { background: linear-gradient(160deg, #5a7898 0%, #1b2a44 60%, #0a1628 100%); }
  .video-thumb.v4 { background: linear-gradient(160deg, #3a5478 0%, #15273f 60%, #050f1c 100%); }
  .video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.025) 30px, rgba(255,255,255,0.025) 31px);
  }
  .video-thumb .play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(251,249,243,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 200ms;
  }
  .video-card:hover .video-thumb .play { background: var(--brass); }
  .video-card:hover .video-thumb .play svg { color: #fff; }
  .video-thumb .play svg { width: 22px; height: 22px; color: var(--navy); margin-left: 3px; }
  .video-thumb .duration {
    position: absolute;
    bottom: 0.55rem;
    right: 0.55rem;
    background: rgba(15,26,43,0.85);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    padding: 0.18rem 0.45rem;
    border-radius: 4px;
    z-index: 2;
  }
  .video-card .meta {
    padding: 0.85rem 1rem 1rem;
  }
  .video-card .meta h5 {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.88rem;
    color: var(--navy);
    margin: 0 0 0.35rem;
    line-height: 1.4;
    font-weight: 700;
  }
  .video-card .meta .channel {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }

  /* Related Boats */
  .related-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
  }
  .related-section .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 2rem;
  }
  .related-section .head .eyebrow { color: var(--brass); margin-bottom: 0.4rem; }
  .related-section .head h3 {
    font-size: 1.85rem;
    font-weight: 500;
  }
  .related-section .head h3 em { font-style: italic; color: var(--brass); }
  .related-section .head p { margin: 0; color: var(--muted); font-size: 0.88rem; max-width: 32ch; text-align: right; }
  .related-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .related-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 220ms, border-color 220ms, box-shadow 220ms;
  }
  .related-card:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
    box-shadow: 0 22px 36px -22px rgba(15,26,43,0.25);
  }
  .related-card .photo {
    aspect-ratio: 4/3;
    position: relative;
  }
  .related-card.r1 .photo { background: linear-gradient(160deg, #5a7898 0%, #1b2a44 60%, #0a1628 100%); }
  .related-card.r2 .photo { background: linear-gradient(160deg, #6b87a8 0%, #2c4866 60%, #122236 100%); }
  .related-card.r3 .photo { background: linear-gradient(160deg, #4a6488 0%, #15273f 60%, #050f1c 100%); }
  .related-card.r4 .photo { background: linear-gradient(160deg, #3a5478 0%, #15273f 60%, #050f1c 100%); }
  .related-card .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.025) 30px, rgba(255,255,255,0.025) 31px);
  }
  .related-card .photo .similarity {
    position: absolute;
    top: 0.7rem;
    left: 0.7rem;
    background: rgba(251,249,243,0.95);
    color: var(--navy);
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-pill);
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    z-index: 2;
  }
  .related-card .photo .similarity strong { color: var(--brass); }
  .related-card .meta {
    padding: 0.9rem 1.1rem 1.1rem;
  }
  .related-card .meta h4 {
    font-size: 1.15rem;
    margin: 0 0 0.2rem;
    font-weight: 600;
  }
  .related-card .meta .sub {
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
  .related-card .meta .stat-row {
    margin-top: 0.65rem;
    padding-top: 0.65rem;
    border-top: 1px dashed var(--rule);
    display: flex;
    justify-content: space-between;
    font-size: 0.78rem;
    color: var(--muted);
  }
  .related-card .meta .stat-row strong { color: var(--brass); font-family: 'DM Mono', monospace; }

  /* BOAT-LEVEL TAB BAR (URL-per-tab, SEO-friendly) */
  .boat-tabs {
    margin: 0 0 2.5rem;
    padding-bottom: 0;
    border-bottom: 1px solid var(--rule);
    display: flex;
    gap: 0.25rem;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .boat-tabs::-webkit-scrollbar { display: none; }
  .boat-tabs a {
    position: relative;
    color: var(--muted);
    font-family: 'Libre Baskerville', serif;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 1.35rem;
    text-decoration: none;
    white-space: nowrap;
    transition: color 200ms;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .boat-tabs a:hover { color: var(--navy); }
  .boat-tabs a.active {
    color: var(--navy);
    border-bottom-color: var(--brass);
    font-weight: 700;
  }
  .boat-tabs a .tab-count {
    font-family: 'DM Mono', monospace;
    font-size: 0.62rem;
    background: var(--parchment);
    color: var(--muted);
    border-radius: var(--radius-pill);
    padding: 0.15rem 0.5rem;
    letter-spacing: 0.04em;
  }
  .boat-tabs a.active .tab-count {
    background: var(--brass);
    color: #fff;
  }

  /* Tab-route hint card — small note explaining the URL pattern, shown in mockup only */
  .tab-route-hint {
    background: var(--parchment);
    border: 1px dashed var(--brass);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.15rem;
    margin: 0 0 2rem;
    display: flex;
    gap: 0.85rem;
    align-items: center;
    font-size: 0.78rem;
    color: var(--muted);
  }
  .tab-route-hint .ico {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--brass);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'DM Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
  }
  .tab-route-hint code {
    font-family: 'DM Mono', monospace;
    background: var(--paper);
    color: var(--brass);
    padding: 0.1rem 0.45rem;
    border-radius: 4px;
    border: 1px solid var(--rule);
    font-size: 0.72rem;
  }

  /* ARTICLES SECTION on boat detail */
  .articles-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--rule);
  }
  .articles-section .head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    gap: 2rem;
  }
  .articles-section .head .eyebrow { color: var(--brass); margin-bottom: 0.4rem; }
  .articles-section .head h3 {
    font-size: 1.85rem;
    font-weight: 500;
  }
  .articles-section .head h3 em { font-style: italic; color: var(--brass); }
  .articles-section .head a.all {
    font-family: 'DM Mono', monospace;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--navy);
    border-bottom: 1px solid var(--brass);
    padding-bottom: 2px;
  }
  .article-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.25rem;
  }
  .article-card {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    transition: transform 220ms, border-color 220ms, box-shadow 220ms;
    display: flex;
    flex-direction: column;
  }
  .article-card:hover {
    transform: translateY(-4px);
    border-color: var(--brass);
    box-shadow: 0 22px 36px -22px rgba(15,26,43,0.25);
  }
  .article-card .photo {
    aspect-ratio: 16/9;
    position: relative;
  }
  .article-card.a1 .photo { background: linear-gradient(160deg, #6b87a8 0%, #2c4866 60%, #122236 100%); }
  .article-card.a2 .photo { background: linear-gradient(160deg, #5a7898 0%, #1b2a44 60%, #0a1628 100%); }
  .article-card.a3 .photo { background: linear-gradient(160deg, #4a6488 0%, #15273f 60%, #050f1c 100%); }
  .article-card.featured { grid-row: span 1; }
  .article-card.featured .photo { aspect-ratio: 16/10; }
  .article-card .photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.025) 30px, rgba(255,255,255,0.025) 31px);
  }
  .article-card .kicker {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    background: var(--brass);
    color: #fff;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 0.7rem;
    border-radius: var(--radius-pill);
    z-index: 2;
  }
  .article-card .body {
    padding: 1.15rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .article-card .body h4 {
    font-size: 1.3rem;
    margin: 0 0 0.55rem;
    font-weight: 600;
    line-height: 1.25;
  }
  .article-card.featured .body h4 { font-size: 1.55rem; }
  .article-card .body p {
    font-size: 0.86rem;
    color: var(--muted);
    margin: 0 0 0.85rem;
    line-height: 1.55;
  }
  .article-card .meta {
    margin-top: auto;
    padding-top: 0.85rem;
    border-top: 1px dashed var(--rule);
    display: flex;
    justify-content: space-between;
    font-family: 'DM Mono', monospace;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
  }
  .article-card .meta .read-more { color: var(--brass); }

  /* EMPTY STATES — when no listings, no reviews, no sold history */
  .empty-state {
    text-align: center;
    padding: 1.75rem 0.5rem 1rem;
  }
  .empty-state .ico-empty {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--parchment);
    border: 1px dashed var(--brass);
    color: var(--brass);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .empty-state .ico-empty svg { width: 24px; height: 24px; }
  .empty-state h5 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    color: var(--navy);
    margin: 0 0 0.4rem;
    font-weight: 600;
  }
  .empty-state p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 1.1rem;
    line-height: 1.55;
    max-width: 28ch;
    margin-left: auto;
    margin-right: auto;
  }
  .empty-state .btn-empty {
    background: var(--brass);
    color: #fff;
    border: 0;
    border-radius: var(--radius-pill);
    padding: 0.6rem 1.2rem;
    font-family: 'Libre Baskerville', serif;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 200ms;
  }
  .empty-state .btn-empty:hover { background: var(--brass-light); }
  .empty-state .btn-empty.outline {
    background: transparent;
    color: var(--navy);
    border: 1px solid var(--navy);
  }
  .empty-state .btn-empty.outline:hover { background: var(--navy); color: #fff; }
  .empty-state .micro {
    display: block;
    margin-top: 0.85rem;
    font-family: 'DM Mono', monospace;
    font-size: 0.58rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
  }
  .star-input {
    display: inline-flex;
    gap: 0.25rem;
    margin: 0.5rem 0 1rem;
    color: var(--canvas);
    font-size: 1.3rem;
    letter-spacing: 0.15em;
    cursor: pointer;
  }
  .star-input:hover { color: var(--brass); }

  /* Empty states preview block — for the mockup only, shows side-by-side */
  .empty-preview {
    padding: 0 2.25rem 4rem;
  }
  .empty-preview .preview-head {
    text-align: center;
    margin-bottom: 2rem;
  }
  .empty-preview .preview-head .mono {
    color: var(--brass);
    margin-bottom: 0.5rem;
    display: inline-block;
  }
  .empty-preview .preview-head h3 {
    font-size: 1.85rem;
    font-weight: 500;
  }
  .empty-preview .preview-head h3 em { font-style: italic; color: var(--brass); }
  .empty-preview .preview-head p { color: var(--muted); font-size: 0.92rem; max-width: 56ch; margin: 0.5rem auto 0; }
  .empty-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
  }

  /* Footer */
  footer.foot {
    background: var(--navy);
    color: rgba(255,255,255,0.8);
    padding: 4rem 2.25rem 2rem;
  }
  footer.foot .container { max-width: none; }
  footer.foot .grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
  footer.foot h5 {
    color: var(--brass-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    margin: 0 0 1rem;
  }
  footer.foot .brand-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  footer.foot .logo-w {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    color: #fff;
    font-weight: 600;
  }
  footer.foot .logo-w svg { width: 36px; height: 36px; }
  footer.foot p { font-size: 0.9rem; line-height: 1.6; max-width: 36ch; color: rgba(255,255,255,0.65); margin: 0; }
  footer.foot a {
    color: rgba(255,255,255,0.7);
    display: block;
    padding: 0.3rem 0;
    font-size: 0.9rem;
  }
  footer.foot a:hover { color: var(--brass-light); }
  footer.foot .bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .back-link {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    background: var(--navy);
    color: #fff;
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    z-index: 100;
    font-family: 'Libre Baskerville', serif;
    box-shadow: 0 8px 20px -10px rgba(15,26,43,0.4);
  }
  .back-link:hover { background: var(--brass); color: #fff; }

  @media (max-width: 1024px) {
    .why .grid, .layout-2, .detail-head { grid-template-columns: 1fr; gap: 2.5rem; }
    .boat-row, .listings-row, .related-row, .article-row { grid-template-columns: repeat(2, 1fr); }
    .video-grid, .pillars .row, .empty-grid { grid-template-columns: 1fr; }
    .articles-section .head { flex-direction: column; align-items: start; gap: 1rem; }
    .mix .row { grid-template-columns: 1fr; }
    .step-row { grid-template-columns: 1fr; }
    .featured .head { grid-template-columns: 1fr; gap: 1.5rem; }
    nav.top .links, .nav-search { display: none; }
    footer.foot .grid { grid-template-columns: 1fr 1fr; }
    .spec-grid { grid-template-columns: 1fr; }
    .hero { aspect-ratio: 4/5; }
    .hero .display-text span { font-size: clamp(3rem, 14vw, 6rem); }
    body { padding: 0.5rem; }
    .container, .hero-wrap, .featured, .mix, .steps, .detail-wrap { padding-left: 1rem; padding-right: 1rem; }
    nav.top { padding: 1rem; }
  }
