/* ==========================================================================
   HS Ocean — ui.css
   Sections and content components.
   ========================================================================== */

/* ----------------------------------------------------------------- 1. HERO */
.hero {
  padding-top: calc(var(--nav-h) + clamp(40px, 5vw, 72px));
  padding-bottom: clamp(40px, 5vw, 64px);
  background: #fff;
  text-align: center;
  position: relative;
}
.hero__in { max-width: 940px; margin-inline: auto; }
.hero__title { margin-top: 26px; }
.hero__title em { font-style: normal; color: var(--blue); }
.hero__lede { margin-top: 22px; max-width: 620px; margin-inline: auto; }
.hero__acts { margin-top: 30px; }
.hero__chips { margin-top: 40px; }

/* Segmented toggle */
.toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: #fff;
  border: 1px solid var(--fog);
  border-radius: var(--r-btn);
  box-shadow: var(--sh-md);
}
.toggle a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: var(--r-btn);
  font-size: var(--t-sm);
  font-weight: var(--w-reg);
  color: var(--slate);
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.toggle a .ico { width: 17px; height: 17px; }
.toggle a:hover { color: var(--navy); }
.toggle a.is-on { background: var(--ice); color: var(--navy); font-weight: var(--w-bold); }

/* Photo band under the hero */
.band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s20);
}
.band__i { position: relative; border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 3; }
.band__i img { width: 100%; height: 100%; object-fit: cover; }
.band__i figcaption {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  background: rgba(255, 255, 255, .94);
  border-radius: var(--r-chip);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: var(--w-semi);
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.band__i figcaption .ico { width: 17px; height: 17px; color: var(--blue); }
.band--tall .band__i { aspect-ratio: 3 / 4; }

/* --------------------------------------------------------- 2. PAGE HEADER */
.phead {
  padding-top: calc(var(--nav-h) + clamp(36px, 4.4vw, 60px));
  padding-bottom: clamp(36px, 4.4vw, 56px);
  background: var(--ice);
}
.phead__in { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(28px, 4vw, 56px); align-items: center; }
.phead--solo .phead__in { grid-template-columns: minmax(0, 1fr); max-width: 820px; }
.phead__title { margin-top: 20px; }
.phead__lede { margin-top: 18px; max-width: 620px; }
.phead__acts { margin-top: 26px; }
.phead__media { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--sh-xl); }
.phead__media img { width: 100%; height: 100%; object-fit: cover; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.crumbs a, .crumbs span { font-size: 13px; font-weight: var(--w-semi); color: var(--steel); }
.crumbs a:hover { color: var(--blue); }
.crumbs .sep { color: var(--mist); }
.crumbs [aria-current] { color: var(--navy); }

/* ---------------------------------------------------------------- 3. CARDS */
.card {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--sh-xl);
  padding: var(--s24);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease);
}
.card:hover { box-shadow: rgba(11, 54, 88, .12) 0 12px 48px 0; }
.card__ico {
  width: 48px; height: 48px;
  border-radius: var(--r-chip);
  background: var(--ice);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card__h { font-size: var(--t-h5); line-height: 1.3; letter-spacing: -.1px; font-weight: var(--w-bold); color: var(--navy); }
.card__p { margin-top: 10px; font-size: 15px; line-height: 1.62; color: var(--slate); }
.card__foot { margin-top: auto; padding-top: 18px; }
.card__n {
  font-size: 13px;
  font-weight: var(--w-bold);
  color: var(--blue);
  margin-bottom: 12px;
}
.card--ice { background: var(--ice); box-shadow: none; }
.card--ice:hover { box-shadow: var(--sh-md); }
.card--flat { box-shadow: none; border: 1px solid var(--fog); }
.card--flat:hover { box-shadow: var(--sh-md); }
.card--dark { background: rgba(255,255,255,.06); box-shadow: none; }
.card--dark .card__h { color: #fff; }
.card--dark .card__p { color: var(--fog); }
.card--dark .card__ico { background: rgba(255,255,255,.12); color: #fff; }
.card--dark .card__n { color: var(--blue); }
.card--dark:hover { background: rgba(255,255,255,.1); box-shadow: none; }

/* Photo card — image full-bleed at the top, no padding gap */
.pcard {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--sh-xl);
  padding: var(--s20);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.pcard:hover { box-shadow: rgba(11, 54, 88, .13) 0 16px 52px 0; transform: translateY(-2px); }
.pcard__media { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 16 / 10; }
.pcard__media img { width: 100%; height: 100%; object-fit: cover; }
.pcard__body { padding-top: 18px; display: flex; flex-direction: column; flex: 1; }
.pcard__top { display: flex; align-items: center; gap: 12px; }
.pcard__logo {
  width: 42px; height: 42px;
  border-radius: var(--r-chip);
  background: var(--ice);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.pcard__h { font-size: var(--t-body); font-weight: var(--w-bold); color: var(--navy); }
.pcard__meta { margin-top: 3px; font-size: var(--t-sm); color: var(--slate); }
.pcard__p { margin-top: 14px; font-size: 15px; line-height: 1.6; color: var(--slate); }
.pcard__foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex; flex-wrap: wrap; gap: 10px;
  align-items: center; justify-content: space-between;
}
.pcard__resp { font-size: var(--t-sm); font-weight: var(--w-semi); color: var(--teal); }

/* ---------------------------------------------------------------- 4. STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--s20);
}
.stat {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--sh-2);
  padding: var(--s24);
}
.stat b {
  display: block;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: var(--w-x);
  letter-spacing: -.2px;
  line-height: 1.05;
  color: var(--navy);
}
.stat span { display: block; margin-top: 10px; font-size: var(--t-sm); line-height: 1.5; color: var(--slate); }
.stat .ico { color: var(--blue); margin-bottom: 14px; }
.section--ice .stat { box-shadow: var(--sh-md); }
.section--dark .stat { background: rgba(255,255,255,.06); box-shadow: none; }
.section--dark .stat b { color: #fff; }
.section--dark .stat span { color: var(--fog); }

/* ---------------------------------------------------- 5. STEPS / KEY-VALUE */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s24); }
.step {
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--fog);
  padding: var(--s24);
}
.step__n {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: var(--t-sm);
  font-weight: var(--w-bold);
  margin-bottom: 18px;
}
.step__h { font-size: var(--t-sub); font-weight: var(--w-bold); letter-spacing: -.09px; color: var(--navy); }
.step__p { margin-top: 9px; font-size: 15px; line-height: 1.6; color: var(--slate); }
.steps--dark .step { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.14); }
.steps--dark .step__n { background: var(--blue); }
.steps--dark .step__h { color: #fff; }
.steps--dark .step__p { color: var(--fog); }

.kv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: var(--s16);
}
.kv > div { background: var(--ice); border-radius: var(--r-chip); padding: 18px 20px; }
.kv dt { font-size: 13px; font-weight: var(--w-semi); color: var(--steel); }
.kv dd { margin: 7px 0 0; font-size: var(--t-body); font-weight: var(--w-bold); color: var(--navy); letter-spacing: -.08px; }
.section--dark .kv > div { background: rgba(255,255,255,.07); }
.section--dark .kv dt { color: var(--mist); }
.section--dark .kv dd { color: #fff; }

/* --------------------------------------------------------------- 6. LISTS */
.chk { display: grid; gap: 14px; }
.chk li { display: flex; gap: 12px; font-size: var(--t-body); line-height: 1.6; color: var(--slate); }
.chk .ico { flex: none; width: 21px; height: 21px; color: var(--blue); margin-top: 2px; }
.chk b { color: var(--navy); font-weight: var(--w-bold); }
.section--dark .chk li { color: var(--fog); }
.section--dark .chk b { color: #fff; }
.section--dark .chk .ico { color: var(--blue); }

.iconlist { display: grid; gap: var(--s20); }
.iconlist li { display: flex; gap: 16px; }
.iconlist__ico {
  width: 44px; height: 44px;
  border-radius: var(--r-chip);
  background: var(--ice);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.iconlist b { display: block; font-size: var(--t-body); font-weight: var(--w-bold); color: var(--navy); }
.iconlist p { margin-top: 5px; font-size: 15px; line-height: 1.6; color: var(--slate); }

/* --------------------------------------------------------- 7. LINE / ROWS */
.lrow {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--fog);
}
.lrow:first-of-type { border-top: 0; padding-top: 0; }
.lrow__media { border-radius: var(--r-card); overflow: hidden; aspect-ratio: 4 / 3; }
.lrow__media img { width: 100%; height: 100%; object-fit: cover; }
.lrow__head { display: flex; align-items: center; gap: 12px; }
.lrow__ico {
  width: 46px; height: 46px;
  border-radius: var(--r-chip);
  background: var(--ice);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.lrow__p { margin-top: 14px; font-size: var(--t-body); line-height: 1.62; color: var(--slate); }
.lrow__tags { margin-top: 18px; }

/* --------------------------------------------------------------- 8. TABLE */
.spec {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--sh-2);
  overflow: hidden;
}
.spec-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spec table { font-size: 15px; }
.spec th, .spec td { text-align: left; padding: 16px 20px; border-bottom: 1px solid var(--fog); vertical-align: top; }
.spec thead th {
  font-size: 13px;
  font-weight: var(--w-bold);
  color: var(--steel);
  background: var(--ice);
  border-bottom-color: var(--fog);
}
.spec tbody th { font-weight: var(--w-bold); color: var(--navy); width: 28%; }
.spec tbody td { color: var(--slate); }
.spec tbody tr:last-child th, .spec tbody tr:last-child td { border-bottom: 0; }

/* ----------------------------------------------------------- 9. ACCORDION */
.acc { display: grid; gap: 12px; }
.acc__item {
  background: #fff;
  border-radius: var(--r-card);
  border: 1px solid var(--fog);
  overflow: hidden;
  transition: box-shadow .2s var(--ease);
}
.acc__item.is-open { box-shadow: var(--sh-2); }
.acc__btn {
  width: 100%;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  text-align: left;
  font-size: var(--t-sub);
  font-weight: var(--w-bold);
  letter-spacing: -.09px;
  color: var(--navy);
}
.acc__btn:hover { color: var(--blue); }
.acc__sign {
  flex: none;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--ice);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s var(--ease), background-color .2s var(--ease), color .2s var(--ease);
}
.acc__btn[aria-expanded="true"] .acc__sign { transform: rotate(180deg); background: var(--blue); color: #fff; }
.acc__wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s var(--ease); }
.acc__item.is-open .acc__wrap { grid-template-rows: 1fr; }
.acc__inner { overflow: hidden; }
.acc__body { padding: 0 24px 22px; font-size: var(--t-body); line-height: 1.66; color: var(--slate); }
.acc__body p + p { margin-top: 12px; }
.acc__body a { color: var(--blue); font-weight: var(--w-semi); }

/* ---------------------------------------------------------------- 10. TABS */
.tabs__nav {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding: 6px;
  background: var(--ice);
  border-radius: var(--r-btn);
  margin-bottom: 32px;
}
.tabs__btn {
  flex: 1 1 auto;
  min-width: 150px;
  padding: 12px 18px;
  border-radius: var(--r-btn);
  font-size: var(--t-sm);
  font-weight: var(--w-semi);
  color: var(--slate);
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.tabs__btn .ico { width: 18px; height: 18px; }
.tabs__btn:hover { color: var(--navy); }
.tabs__btn[aria-selected="true"] { background: #fff; color: var(--navy); font-weight: var(--w-bold); box-shadow: var(--sh-md); }
.tabs__panel { display: none; }
.tabs__panel.is-on { display: block; }

/* ---------------------------------------------------------- 11. NOTE BLOCK */
.note {
  background: var(--ice);
  border-radius: var(--r-card);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
}
.note__ico { flex: none; color: var(--blue); }
.note__h { font-size: var(--t-body); font-weight: var(--w-bold); color: var(--navy); margin-bottom: 7px; }
.note p { font-size: 15px; line-height: 1.62; color: var(--slate); }
.note p + p { margin-top: 10px; }
.note a { color: var(--blue); font-weight: var(--w-semi); }
.note--teal { background: rgba(66, 179, 177, .09); }
.note--teal .note__ico { color: var(--teal); }
.note--onDark { background: rgba(255,255,255,.07); }
.note--onDark .note__h { color: #fff; }
.note--onDark p { color: var(--fog); }

/* ------------------------------------------------------ 12. DARK CTA BANNER */
.cta { background: var(--navy); }
.cta__in {
  padding-block: clamp(56px, 7vw, 96px);
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.cta__title { font-size: clamp(28px, 4.2vw, 48px); line-height: 1.1; letter-spacing: -.24px; font-weight: var(--w-x); color: #fff; }
.cta__p { margin-top: 18px; font-size: var(--t-sub); line-height: 1.55; color: var(--fog); }
.cta__acts { margin-top: 30px; justify-content: center; }
.cta__foot {
  margin-top: 30px;
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
}

/* -------------------------------------------------------- 13. LEGAL / DOCS */
.legal { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(32px, 5vw, 64px); align-items: start; }
.toc { position: sticky; top: calc(var(--nav-h) + 24px); background: var(--ice); border-radius: var(--r-card); padding: 22px; }
.toc__h { font-size: var(--t-sm); font-weight: var(--w-bold); color: var(--navy); margin-bottom: 12px; }
.toc__list a { display: block; padding: 7px 0; font-size: 14px; line-height: 1.4; color: var(--slate); }
.toc__list a:hover { color: var(--navy); }
.toc__list a.is-on { color: var(--blue); font-weight: var(--w-semi); }

.doc h2 {
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: var(--w-bold);
  letter-spacing: -.13px;
  color: var(--navy);
  margin-top: 44px;
  margin-bottom: 14px;
  scroll-margin-top: calc(var(--nav-h) + 24px);
}
.doc > h2:first-child { margin-top: 0; }
.doc h3 { font-size: var(--t-sub); font-weight: var(--w-bold); color: var(--navy); margin-top: 26px; margin-bottom: 10px; }
.doc p { font-size: var(--t-body); line-height: 1.72; color: var(--slate); margin-bottom: 14px; }
.doc ul, .doc ol { margin: 0 0 18px; }
.doc li { position: relative; padding-left: 24px; font-size: var(--t-body); line-height: 1.7; color: var(--slate); margin-bottom: 8px; }
.doc ul > li::before {
  content: '';
  position: absolute;
  left: 4px; top: 11px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
.doc ol { counter-reset: n; }
.doc ol > li { counter-increment: n; }
.doc ol > li::before { content: counter(n) '.'; position: absolute; left: 0; top: 0; font-weight: var(--w-bold); color: var(--blue); font-size: 14px; }
.doc a { color: var(--blue); font-weight: var(--w-semi); }
.doc strong { color: var(--navy); font-weight: var(--w-bold); }
.doc address {
  font-style: normal;
  font-size: var(--t-body);
  line-height: 1.75;
  color: var(--slate);
  background: var(--ice);
  border-radius: var(--r-card);
  padding: 20px 22px;
}
.doc .upper { text-transform: uppercase; font-size: 14px; }
.doc__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }

/* --------------------------------------------------------- 14. CONTACT BITS */
.cbox {
  background: #fff;
  border-radius: var(--r-card);
  box-shadow: var(--sh-xl);
  padding: var(--s24);
  height: 100%;
}
.cbox__ico {
  width: 48px; height: 48px;
  border-radius: var(--r-chip);
  background: var(--ice);
  color: var(--blue);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.cbox h3 { font-size: var(--t-sub); font-weight: var(--w-bold); color: var(--navy); }
.cbox p { margin-top: 8px; font-size: 15px; line-height: 1.6; color: var(--slate); }
.cbox a.big {
  display: inline-block;
  margin-top: 14px;
  font-size: var(--t-body);
  font-weight: var(--w-bold);
  color: var(--blue);
  overflow-wrap: anywhere;
}
.cbox a.big:hover { color: var(--navy); }

.map {
  border-radius: var(--r-card);
  overflow: hidden;
  box-shadow: var(--sh-xl);
  aspect-ratio: 16 / 9;
  position: relative;
}
.map img { width: 100%; height: 100%; object-fit: cover; }
.map__pin {
  position: absolute;
  left: 20px; bottom: 20px;
  right: 20px;
  background: #fff;
  border-radius: var(--r-chip);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  max-width: 380px;
  box-shadow: var(--sh-2);
}
.map__pin .ico { color: var(--blue); flex: none; margin-top: 2px; }
.map__pin b { display: block; font-size: 15px; font-weight: var(--w-bold); color: var(--navy); }
.map__pin span { display: block; margin-top: 4px; font-size: 14px; line-height: 1.5; color: var(--slate); }

/* -------------------------------------------------------------- 15. JOBS */
.job {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--fog);
  border-radius: var(--r-card);
  padding: 22px 24px;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.job:hover { box-shadow: var(--sh-2); border-color: var(--mist); }
.job__h { font-size: var(--t-sub); font-weight: var(--w-bold); letter-spacing: -.09px; color: var(--navy); }
.job__meta { margin-top: 10px; }

/* ------------------------------------------------------------- 16. QUOTE */
.commit {
  background: var(--ice);
  border-radius: var(--r-card);
  padding: clamp(24px, 3vw, 32px);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.commit__ico { color: var(--blue); margin-bottom: 16px; }
.commit__t { font-size: var(--t-h5); line-height: 1.38; letter-spacing: -.1px; font-weight: var(--w-bold); color: var(--navy); }
.commit__p { margin-top: 12px; font-size: 15px; line-height: 1.62; color: var(--slate); }
.commit__by { margin-top: auto; padding-top: 18px; font-size: 13px; font-weight: var(--w-semi); color: var(--steel); }

/* ---------------------------------------------------------------- 17. 404 */
.nf { min-height: 70vh; display: grid; place-items: center; text-align: center; padding-top: var(--nav-h); }
.nf__code { font-size: clamp(72px, 16vw, 170px); font-weight: var(--w-x); letter-spacing: -3px; line-height: .9; color: var(--navy); }
.nf__code i { font-style: normal; color: var(--blue); }

/* --------------------------------------------------------------- 18. UTIL */
.mt-8{margin-top:8px}.mt-12{margin-top:12px}.mt-16{margin-top:16px}.mt-20{margin-top:20px}
.mt-24{margin-top:24px}.mt-32{margin-top:32px}.mt-40{margin-top:40px}.mt-48{margin-top:48px}
.maxw-560{max-width:560px}.maxw-680{max-width:680px}.maxw-720{max-width:720px}
.mi-auto{margin-inline:auto}
.media { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--sh-xl); }
.media img { width: 100%; height: auto; display: block; }
.media--r43 { aspect-ratio: 4/3; }
.media--r32 { aspect-ratio: 3/2; }
.media--r169 { aspect-ratio: 16/9; }
.media--r43 img, .media--r32 img, .media--r169 img { height: 100%; object-fit: cover; }
.media--flat { box-shadow: none; }

/* ---------------------------------------------------------- 19. RESPONSIVE */
@media (max-width: 1080px) {
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .legal { grid-template-columns: minmax(0, 1fr); }
  .toc { position: static; }
  .toc__list { display: flex; flex-wrap: wrap; gap: 4px 18px; }
  .toc__list a { padding: 4px 0; }
}
@media (max-width: 960px) {
  .phead__in { grid-template-columns: minmax(0, 1fr); }
  .lrow { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .band { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
}
@media (max-width: 680px) {
  .stats { grid-template-columns: minmax(0, 1fr); }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .band { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .band--tall .band__i { aspect-ratio: 4 / 3; }
  .toggle { width: 100%; }
  .toggle a { flex: 1; justify-content: center; }
  .tabs__btn { min-width: 100%; }
  .job { grid-template-columns: minmax(0, 1fr); }
  .acc__btn { padding: 18px 20px; font-size: var(--t-body); }
  .acc__body { padding: 0 20px 20px; }
  .map__pin { position: static; max-width: none; border-radius: 0; box-shadow: none; }
  .map { aspect-ratio: auto; }
  .map img { aspect-ratio: 16/10; object-fit: cover; }
}
