/* ============================================================
   3DFurler - styles that theme.json cannot express.
   Tokens all come from theme.json; nothing is hardcoded twice.
   ============================================================ */

:root {
  --furler-rule: rgba(10, 26, 38, 0.14);
  --furler-rule-dark: rgba(241, 243, 242, 0.16);
}

/* ---------- the rigging rule: a measuring-tape divider ----------
   Ticks every 8px. It reads as a rule because measuring the stay
   is what a buyer actually has to do here.                        */

.furler-tape {
  height: 14px;
  background-image: repeating-linear-gradient(
      to right,
      var(--furler-rule) 0 1px,
      transparent 1px 8px
    ),
    linear-gradient(to bottom, var(--furler-rule) 0 1px, transparent 1px);
  background-size: 8px 6px, 100% 1px;
  background-repeat: repeat-x, no-repeat;
  background-position: bottom left, bottom left;
}

.has-hull-background-color .furler-tape,
.furler-dark .furler-tape {
  background-image: repeating-linear-gradient(
      to right,
      var(--furler-rule-dark) 0 1px,
      transparent 1px 8px
    ),
    linear-gradient(to bottom, var(--furler-rule-dark) 0 1px, transparent 1px);
}

/* ---------- eyebrow ---------- */

.furler-eyebrow {
  font-family: var(--wp--preset--font-family--mono) !important;
  font-size: 0.75rem !important;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wp--preset--color--signal) !important;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.furler-eyebrow::before {
  content: '';
  width: 1.75rem;
  height: 2px;
  background: var(--wp--preset--color--signal);
  flex: none;
}

/* ---------- mono data type ---------- */

.furler-mono {
  font-family: var(--wp--preset--font-family--mono) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel) !important;
}

.furler-stat {
  font-family: var(--wp--preset--font-family--display) !important;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1 !important;
}

/* ---------- hairline grids: 1px gap over a rule-coloured bed ---------- */

.furler-grid {
  gap: 1px !important;
  background: var(--furler-rule);
  border: 1px solid var(--furler-rule);
}
.furler-grid > .wp-block-column,
.furler-grid > .wp-block-group {
  background: var(--wp--preset--color--paper);
}

.furler-grid-dark {
  gap: 1px !important;
  background: var(--furler-rule-dark);
  border: 1px solid var(--furler-rule-dark);
}
.furler-grid-dark > .wp-block-column,
.furler-grid-dark > .wp-block-group {
  background: var(--wp--preset--color--hull);
  transition: background-color 0.15s ease;
}
.furler-grid-dark > .wp-block-column:hover {
  background: var(--wp--preset--color--deep);
}

/* ---------- foil drawing ---------- */

.furler-foil {
  margin: 0;
}
.furler-foil svg {
  width: 100%;
  height: auto;
  overflow: visible;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  /* The outline traces itself, then the fill and the callouts arrive --
     the way a CAD viewport resolves. Nothing else on the page moves. */
  .furler-foil .furler-outline {
    stroke-dasharray: 2600;
    stroke-dashoffset: 2600;
    fill-opacity: 0;
    animation: furler-draw 1.6s cubic-bezier(0.35, 0, 0.2, 1) 0.2s forwards,
      furler-fill 0.7s ease 1.35s forwards;
  }
  .furler-foil .furler-marks {
    opacity: 0;
    animation: furler-in 0.6s ease 1.9s forwards;
  }
  .furler-foil .furler-labels text {
    opacity: 0;
    animation: furler-in 0.45s ease forwards;
  }
  .furler-foil .furler-labels text:nth-of-type(1) { animation-delay: 2.00s; }
  .furler-foil .furler-labels text:nth-of-type(2) { animation-delay: 2.13s; }
  .furler-foil .furler-labels text:nth-of-type(3) { animation-delay: 2.26s; }
  .furler-foil .furler-labels text:nth-of-type(4) { animation-delay: 2.39s; }
  .furler-foil .furler-labels text:nth-of-type(5) { animation-delay: 2.52s; }

  @keyframes furler-draw {
    to {
      stroke-dashoffset: 0;
    }
  }
  @keyframes furler-fill {
    to {
      fill-opacity: 1;
    }
  }
  @keyframes furler-in {
    to {
      opacity: 1;
    }
  }
}

/* ---------- header ---------- */

.furler-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--wp--preset--color--paper);
}
body.admin-bar .furler-header {
  top: 32px;
}
@media (max-width: 782px) {
  body.admin-bar .furler-header {
    top: 46px;
  }
}

.furler-header .wp-block-site-title a {
  text-decoration: none;
  color: var(--wp--preset--color--hull);
}

.furler-header .wp-block-navigation .wp-block-navigation-item__content {
  text-decoration: none;
  padding-block: 0.5rem;
  border-bottom: 2px solid transparent;
}
.furler-header
  .wp-block-navigation
  > ul
  > li
  > .wp-block-navigation-item__content:hover,
.furler-header .wp-block-navigation .current-menu-item > a {
  border-bottom-color: var(--wp--preset--color--signal);
}

/* ---------- desktop dropdowns ----------
   Scoped to the closed state. Without :not(.is-menu-open) these leak into the
   mobile overlay, where WordPress renders submenus inline and resets their
   background — leaving near-white link text on a light ground. That is the
   "menu is hard to read" bug: the text was there, just invisible. */

.furler-header
  .wp-block-navigation__responsive-container:not(.is-menu-open)
  .wp-block-navigation__submenu-container {
  background: var(--wp--preset--color--hull) !important;
  border: 0 !important;
  border-top: 2px solid var(--wp--preset--color--signal) !important;
  min-width: 232px;
  padding-block: 0.6rem;
}
.furler-header
  .wp-block-navigation__responsive-container:not(.is-menu-open)
  .wp-block-navigation__submenu-container a {
  color: var(--wp--preset--color--gelcoat) !important;
  font-family: var(--wp--preset--font-family--body);
  font-weight: 400;
  font-size: 0.88rem;
  padding: 0.45rem 1.25rem !important;
  border-bottom: 0;
}
.furler-header
  .wp-block-navigation__responsive-container:not(.is-menu-open)
  .wp-block-navigation__submenu-container a:hover {
  background: var(--wp--preset--color--deep);
}

/* ---------- mobile overlay ----------
   Set explicitly rather than inherited. Core's overlay takes its background
   from the nav's context, which here is transparent, so nothing about the
   contrast was guaranteed. Everything below is deliberate. */

.furler-header .wp-block-navigation__responsive-container.is-menu-open {
  background-color: var(--wp--preset--color--hull) !important;
  color: var(--wp--preset--color--gelcoat) !important;
  padding: 1.25rem clamp(1.25rem, 6vw, 2.5rem) 3rem;
  /* 28 links will not fit on a phone — let the overlay scroll. */
  overflow-y: auto;
  overscroll-behavior: contain;
}

.furler-header .is-menu-open .wp-block-navigation__responsive-container-close {
  color: var(--wp--preset--color--signal) !important;
  padding: 0.75rem;
  margin: -0.25rem -0.5rem 0 0;
}

.furler-header .is-menu-open .wp-block-navigation__container {
  gap: 0 !important;
  align-items: stretch;
  width: 100%;
}

.furler-header .is-menu-open .wp-block-navigation-item {
  width: 100%;
}

/* Top level. The row carries the rule and the layout, not the link — that way
   the label and its chevron stay on one line and the hairline spans the full
   width instead of stopping where the text does. */
.furler-header .is-menu-open .wp-block-navigation__container
  > .wp-block-navigation-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid var(--furler-rule-dark);
}
.furler-header .is-menu-open .wp-block-navigation__container
  > .wp-block-navigation-item > .wp-block-navigation-item__content {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--wp--preset--color--gelcoat) !important;
  padding: 0.85rem 0 !important;
  border-bottom: 0 !important;
  min-height: 44px;                       /* a real tap target */
  display: flex;
  align-items: center;
  flex: 1 1 auto;
}
/* The submenu is a sibling of the label, so it needs the whole next row. */
.furler-header .is-menu-open .wp-block-navigation__container
  > .wp-block-navigation-item > .wp-block-navigation__submenu-container {
  flex: 0 0 100%;
}

/* Children: indented, quieter, still comfortably legible. */
.furler-header .is-menu-open .wp-block-navigation__submenu-container {
  background: transparent !important;
  border: 0 !important;
  min-width: 0 !important;
  padding: 0.25rem 0 0.75rem !important;
  position: static !important;
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
}
.furler-header .is-menu-open .wp-block-navigation__submenu-container a {
  color: var(--wp--preset--color--steel-dim) !important;
  font-family: var(--wp--preset--font-family--body);
  font-weight: 400;
  font-size: 1rem;
  padding: 0.6rem 0 0.6rem 1.1rem !important;
  border-left: 1px solid var(--furler-rule-dark);
  border-bottom: 0 !important;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.furler-header .is-menu-open .wp-block-navigation__submenu-container a:hover,
.furler-header .is-menu-open .wp-block-navigation__submenu-container a:focus {
  background: transparent;
  color: var(--wp--preset--color--signal) !important;
  border-left-color: var(--wp--preset--color--signal);
}

/* The submenu chevron has to be visible on the dark ground and big enough to hit. */
.furler-header .is-menu-open .wp-block-navigation__submenu-icon {
  color: var(--wp--preset--color--signal) !important;
  padding: 0.75rem;
}

.furler-tel {
  font-family: var(--wp--preset--font-family--mono) !important;
  font-size: 0.85rem !important;
  color: var(--wp--preset--color--signal) !important;
}
.furler-tel a {
  color: inherit !important;
  text-decoration: none;
}

/* ---------- footer ---------- */

.furler-footer a {
  color: var(--wp--preset--color--steel-dim);
  text-decoration: none;
}
.furler-footer a:hover {
  color: var(--wp--preset--color--signal);
}
.furler-footer .furler-col-head {
  font-family: var(--wp--preset--font-family--mono) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--signal) !important;
  font-weight: 500;
}
.furler-footer .wp-block-page-list a,
.furler-footer li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.furler-footer .wp-block-page-list .wp-block-pages-list__item__link {
  color: var(--wp--preset--color--steel-dim);
}

/* ---------- interior title band ---------- */

.furler-band h1 {
  max-width: 20ch;
}
.furler-band .furler-lede {
  max-width: 58ch;
  color: var(--wp--preset--color--steel-dim);
}

/* ---------- prose ---------- */

.furler-prose {
  /* A readable measure, centred. Without margin-inline the max-width
     collapses the column and pins it to the left edge. */
  width: min(100% - 2.5rem, 74ch);
  max-width: none;
  margin-inline: auto;
}
.furler-prose h2 {
  /* The section-head step is sized for full-width bands. Inside a 74ch
     measure it swamps the text, so step it down but keep the same voice. */
  font-size: clamp(1.6rem, 3vw, 2.05rem);
  margin-top: 2.75rem;
}
.furler-prose h3 {
  font-size: 1.22rem;
  margin-top: 2rem;
}
.furler-prose h2 + h3 {
  margin-top: 1.25rem;
}
.furler-todo {
  border-left: 3px solid var(--wp--preset--color--signal);
  background: var(--wp--preset--color--gelcoat);
  padding: 1.1rem 1.35rem;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--wp--preset--color--deep);
}

/* ---------- a11y floor ---------- */

:focus-visible {
  outline: 3px solid var(--wp--preset--color--signal);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---------- full-bleed safety net ----------
   Belt and braces: if a section somehow renders inside a constrained
   parent, this still lets the coloured bands reach both edges. */

.furler-header,
.furler-band,
.furler-footer {
  width: 100%;
  max-width: none;
}

/* The site title must never be flush against the viewport edge. */
.furler-header > .wp-block-group {
  width: 100%;
  margin-inline: auto;
  max-width: 1240px;
}

/* Editor parity: the block editor canvas otherwise clips full-width groups. */
.editor-styles-wrapper .alignfull {
  max-width: none;
}

/* ---------- looping foil-join clip ---------- */

.furler-clip {
  margin: 0;
  width: 100%;
}

.furler-clip video {
  display: block;
  width: 100%;
  height: auto;
  background: var(--wp--preset--color--hull);
}

.furler-clip__cap {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel);
  padding: 0.9rem 0 0;
  margin: 0;
}

/* On a dark section the clip should sit flush, no card, no border. */
.has-hull-background-color .furler-clip video {
  border: 0;
}

/* ---------- blog listing rows ---------- */

.furler-postrow {
  align-items: flex-start;
}

.furler-postrow .wp-block-post-featured-image {
  flex: 0 0 200px;
  margin: 0;
}

.furler-postrow .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.furler-postrow__body {
  flex: 1 1 320px;
  min-width: 0;
}

.furler-postrow__body .wp-block-post-title {
  margin: 0 0 0.4rem;
}
.furler-postrow__body .wp-block-post-title a {
  text-decoration: none;
}
.furler-postrow__body .wp-block-post-title a:hover {
  color: var(--wp--preset--color--signal);
}
.furler-postrow__body .wp-block-post-date {
  margin: 0 0 0.7rem;
}
.furler-postrow__body .wp-block-post-excerpt__excerpt {
  margin-bottom: 0.5rem;
}
.furler-postrow__body .wp-block-post-excerpt__more-link {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--signal);
  text-decoration: none;
}

@media (max-width: 600px) {
  .furler-postrow .wp-block-post-featured-image {
    flex-basis: 100%;
  }
}

/* Single post: keep the hero image from dwarfing the article. */
.wp-block-post-featured-image img {
  border-radius: 2px;
}

/* ---------- features grid (Learn) ----------
   Hairline cells, no boxes. The mono kicker carries the category so the
   headline can stay short. */

/* Hairlines are drawn per cell rather than by a coloured bed showing through
   1px gaps. With a bed, a partial last row leaves grey blocks where the empty
   grid tracks are; per-cell borders simply stop where the cells stop. */
.furler-features {
  gap: 0 !important;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--furler-rule);
  border-left: 1px solid var(--furler-rule);
}

.furler-features > .wp-block-group {
  background: var(--wp--preset--color--paper);
  border-right: 1px solid var(--furler-rule);
  border-bottom: 1px solid var(--furler-rule);
  padding: 1.5rem 1.6rem 1.7rem;
}

.furler-features h3 {
  margin: 0;
  font-size: var(--wp--preset--font-size--large);
  letter-spacing: -0.015em;
}

.furler-features .furler-mono {
  margin-bottom: 0.8rem;
}

/* On the tinted section the cells should read as paper, not disappear. */
.has-gelcoat-background-color .furler-features > .wp-block-group {
  background: var(--wp--preset--color--paper);
}

/* Stat figures should never break mid-word ("Unde r 2 hrs"). */
.furler-stat {
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

/* ---------- labelled diagram ---------- */

.furler-diagram {
  margin: 0;
}

.furler-diagram img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 2px;
}

.furler-diagram__cap {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel);
  padding: 0.9rem 0 0;
  margin: 0;
}

/* ---------- stacked steps beside the diagram ---------- */

.furler-steps > .wp-block-group {
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid var(--furler-rule);
}
.furler-steps > .wp-block-group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.furler-steps .furler-mono {
  margin-bottom: 0.5rem;
}
.furler-steps h3 {
  margin-bottom: 0.5rem;
}
.furler-steps p:last-child {
  margin-bottom: 0;
}

/* ---------- product render ---------- */

.furler-render {
  margin: 0;
  display: flex;
  justify-content: center;
}

.furler-render img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 560px;
  height: auto;
}

@media (max-width: 880px) {
  .furler-render img {
    max-height: 380px;
  }
}

/* A figure dropped into a light section keeps its own dark ground. */
.furler-sectionfig {
  padding: 1.25rem 1.25rem 0.75rem;
  border-radius: 2px;
}

/* ============================================================
   Interior page components (added with the page loader).
   Same tokens, same hairline vocabulary as the homepage.
   ============================================================ */

/* ---------- sizing calculator ----------
   Reads as an instrument panel, not a form. Mono for everything the
   sailor types or is told, because those are measurements. */

.furler-calc {
  border: 1px solid var(--furler-rule);
  background: var(--wp--preset--color--paper);
  padding: 1.5rem 1.5rem 1.25rem;
  border-radius: 2px;
}

.has-hull-background-color .furler-calc {
  border-color: var(--furler-rule-dark);
  background: rgba(255, 255, 255, 0.03);
}

.furler-calc__title {
  margin: 0 0 1.25rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--furler-rule);
  color: var(--wp--preset--color--signal) !important;
}
.has-hull-background-color .furler-calc__title {
  border-bottom-color: var(--furler-rule-dark);
}

.furler-calc__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.9rem;
}

.furler-calc__row label {
  font-size: 0.95rem;
  flex: 1 1 12rem;
}

.furler-calc__input {
  display: flex;
  gap: 0.5rem;
  flex: 0 1 auto;
}

.furler-calc input[type='number'],
.furler-calc select {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.95rem;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--furler-rule);
  border-radius: 2px;
  background: var(--wp--preset--color--paper);
  color: var(--wp--preset--color--hull);
  min-width: 0;
}

.furler-calc input[type='number'] {
  width: 7rem;
  text-align: right;
}

.furler-calc input:focus,
.furler-calc select:focus {
  outline: 2px solid var(--wp--preset--color--signal);
  outline-offset: 1px;
  border-color: transparent;
}

.furler-calc__out {
  display: block;
  margin-top: 1.35rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--furler-rule);
}
.has-hull-background-color .furler-calc__out {
  border-top-color: var(--furler-rule-dark);
}

.furler-calc__hint {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel);
}

.furler-calc__result {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem 1.1rem;
}

.furler-calc__size {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 800;
  font-size: 2.7rem;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--wp--preset--color--signal);
}
.furler-calc__size--warn {
  font-size: 1.6rem;
  color: var(--wp--preset--color--deep);
}
.has-hull-background-color .furler-calc__size--warn {
  color: var(--wp--preset--color--steel-dim);
}

.furler-calc__verdict {
  margin: 0;
  flex: 1 1 16rem;
  font-size: 0.95rem;
}

.furler-calc__work {
  width: 100%;
  margin-top: 1.1rem;
  border-collapse: collapse;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.78rem;
}
.furler-calc__work th,
.furler-calc__work td {
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--furler-rule);
  text-align: left;
  font-weight: 400;
  color: var(--wp--preset--color--steel);
}
.furler-calc__work td {
  text-align: right;
  color: var(--wp--preset--color--hull);
}
.has-hull-background-color .furler-calc__work td {
  color: var(--wp--preset--color--gelcoat);
}
.furler-calc__work tr:last-child th,
.furler-calc__work tr:last-child td {
  border-bottom: 0;
}

.furler-calc__note {
  margin: 1.1rem 0 0;
  font-size: 0.82rem;
  color: var(--wp--preset--color--steel);
}

/* ---------- question and answer stack ---------- */

.furler-qa > .wp-block-group {
  padding: 1.5rem 0;
  border-top: 1px solid var(--furler-rule);
}
.furler-qa > .wp-block-group:last-child {
  border-bottom: 1px solid var(--furler-rule);
}
.furler-qa h3 {
  margin: 0 0 0.7rem;
  font-size: 1.28rem;
  letter-spacing: -0.015em;
}
.furler-qa p {
  margin-bottom: 0.65rem;
  max-width: 68ch;
}
.furler-qa p:last-child {
  margin-bottom: 0;
}

/* ---------- data table ----------
   Specifications and comparisons. Mono throughout: it is all measurement. */

.furler-table table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.82rem;
}
.furler-table th,
.furler-table td {
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--furler-rule);
  text-align: left;
  vertical-align: top;
}
.furler-table thead th {
  background: var(--wp--preset--color--hull);
  color: var(--wp--preset--color--gelcoat);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.7rem;
}
.furler-table tbody th {
  font-weight: 500;
  color: var(--wp--preset--color--hull);
  background: var(--wp--preset--color--gelcoat);
}
.furler-table td {
  color: var(--wp--preset--color--deep);
}
.furler-table .is-yes {
  color: var(--wp--preset--color--signal);
  font-weight: 500;
}
.furler-table figcaption,
.furler-table__cap {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel);
  padding-top: 0.9rem;
}
@media (max-width: 700px) {
  .furler-table {
    overflow-x: auto;
  }
  .furler-table table {
    min-width: 34rem;
  }
}

/* ---------- owner case records ----------
   Four owners, four different problems. A grid of equal cards flattens that,
   so each one gets a full row: their own photo, their own headline pulled
   from what they actually said, and a mono spec block for the facts. Rows
   alternate side; row-reverse rather than DOM order so the photo still comes
   first when they stack on a phone. */

.furler-case {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 4vw, 3.25rem);
  align-items: start;
}

.furler-case--flip {
  flex-direction: row-reverse;
}

.furler-case__shot {
  /* No grow: the photo holds its column and the text takes the rest.
     With grow it swells to half the row and towers over the quote. */
  flex: 0 1 clamp(14rem, 30%, 21rem);
  margin: 0;
  position: relative;
}

.furler-case__shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 2px;
}

/* The index sits on the photo's corner like a plate number on a drawing. */
.furler-case__no {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0.4rem 0.7rem;
  background: var(--wp--preset--color--signal);
  color: #fff !important;
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.7rem !important;
  font-weight: 500;
  letter-spacing: 0.14em;
}

.furler-case__body {
  flex: 1 1 22rem;
  min-width: 0;
}

.furler-case__body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  margin: 0 0 1.1rem;
  text-wrap: balance;
}

/* An opening quote mark, hung in the margin so the text stays aligned. */
.furler-case__body h2::before {
  content: '\201C';
  color: var(--wp--preset--color--signal);
  margin-left: -0.5em;
}

.furler-case__body p {
  max-width: 60ch;
  margin-bottom: 0.85rem;
}

.furler-case__meta {
  margin: 1.5rem 0 0;
  border-top: 1px solid var(--furler-rule);
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.furler-case__meta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px dotted var(--furler-rule);
}

.furler-case__meta dt {
  flex: 0 0 8.5rem;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel);
}

.furler-case__meta dd {
  margin: 0;
  flex: 1 1 12rem;
  color: var(--wp--preset--color--hull);
}

.furler-case__meta dd.is-owner {
  color: var(--wp--preset--color--signal);
  font-weight: 500;
}

/* ---------- picture / video grids ---------- */

.furler-tiles {
  gap: 0 !important;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--furler-rule);
  border-left: 1px solid var(--furler-rule);
}
.furler-tiles > .wp-block-group {
  background: var(--wp--preset--color--paper);
  border-right: 1px solid var(--furler-rule);
  border-bottom: 1px solid var(--furler-rule);
  padding: 0;
}
.furler-tiles figure,
.furler-tiles .wp-block-image {
  margin: 0;
}
.furler-tiles img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.furler-tiles .furler-tile-cap {
  margin: 0;
  padding: 0.75rem 0.9rem 0.95rem;
  font-family: var(--wp--preset--font-family--mono) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel) !important;
  line-height: 1.5;
}

.furler-videos .wp-block-embed {
  margin: 0;
}
.furler-videos > .wp-block-group {
  background: var(--wp--preset--color--paper);
  padding: 0 0 0.25rem;
}

/* ---------- contact / detail rows ---------- */

.furler-details > .wp-block-group {
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--furler-rule);
}
.has-hull-background-color .furler-details > .wp-block-group {
  border-bottom-color: var(--furler-rule-dark);
}
.furler-details .furler-mono {
  margin-bottom: 0.35rem;
}
.furler-details p:last-child {
  margin-bottom: 0;
}
.furler-details .furler-big {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0;
}
.furler-details .furler-big a {
  text-decoration: none;
}

/* ---------- pull figure inside prose ---------- */

.furler-prose figure,
.furler-prose .wp-block-image {
  margin: 2rem 0;
}
.furler-prose .wp-block-image img {
  width: 100%;
  height: auto;
  border-radius: 2px;
}
.furler-prose figcaption {
  font-family: var(--wp--preset--font-family--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--wp--preset--color--steel);
  padding-top: 0.7rem;
  text-align: left;
}
.furler-prose .furler-pull {
  font-family: var(--wp--preset--font-family--display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  border-left: 3px solid var(--wp--preset--color--signal);
  padding-left: 1.25rem;
  margin: 2.25rem 0;
  color: var(--wp--preset--color--hull);
}

/* ---------- sitemap columns ---------- */

.furler-sitemap ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.furler-sitemap li {
  padding: 0.4rem 0;
  border-bottom: 1px dotted var(--furler-rule);
}
.furler-sitemap li a {
  text-decoration: none;
}
.furler-sitemap .wp-block-page-list .wp-block-navigation-item__content {
  text-decoration: none;
}

/* Headings that are really links -- feature cards, "go deeper" grids. */
.furler-features h3 a,
.furler-qa h3 a,
.furler-details a {
  text-decoration: none;
}
.furler-features h3 a:hover,
.furler-qa h3 a:hover {
  color: var(--wp--preset--color--signal);
}

/* A caveat box sitting on the tinted band needs its own ground. */
.has-gelcoat-background-color .furler-todo {
  background: var(--wp--preset--color--paper);
}

/* ---------- clip rendered on a pale ground ----------
   The drum assembly is rendered against near-white, so it needs its own
   frame rather than the flush treatment the dark foil clip gets. */

.furler-clip--light video {
  background: #EDEDE8;
  border: 1px solid var(--furler-rule);
  border-radius: 2px;
}

.has-hull-background-color .furler-clip--light video {
  border-color: var(--furler-rule-dark);
}

.has-hull-background-color .furler-clip--light .furler-clip__cap {
  color: var(--wp--preset--color--steel-dim);
}

/* ---------- small-phone corrections ---------- */

/* A 340px minimum track gives a clean three-up on a desktop and is wider than
   an iPhone SE. CSS grid auto-fill will build a track wider than its container
   rather than shrink it, so below that width take the cards to one column. */
@media (max-width: 480px) {
  .furler-features,
  .furler-videos {
    grid-template-columns: 1fr !important;
  }
}

/* Long technical words -- "Polycyclohexylenedimethylene", part numbers, URLs --
   do not break by default and will push a page sideways on a narrow screen. */
h1,
h2,
h3,
.furler-case__body h2,
.furler-prose p,
.furler-prose li,
.furler-qa p {
  overflow-wrap: break-word;
}

/* Tap targets on the phone number and the footer links. */
@media (max-width: 600px) {
  .furler-tel a,
  .furler-footer a {
    display: inline-block;
    padding-block: 0.35rem;
  }
}
