/* ==========================================================================
   Horizon Business — site styles
   Palette and type lifted from the current Squarespace build.
   ========================================================================== */

:root {
  --navy:       #040E32;
  --navy-soft:  #16204a;
  --blue:       #0083BF;
  --blue-dark:  #006a9b;

  /* Sampled from Horizon's own slide artwork (the Launchpads bands), where it
     is the third brand colour. Contrast note: #F8B000 on white is only ~2:1,
     so it is reserved for large figures on navy, where it hits ~11:1.
     --amber-ink is the darkened variant for small text on light backgrounds. */
  --amber:      #F8B000;
  --amber-ink:  #8A6100;
  --white:      #ffffff;
  --paper:      #ffffff;
  --grey-bg:    #f4f6fa;
  --ink:        #040E32;
  --ink-soft:   #4a5570;
  --line:       rgba(4, 14, 50, 0.12);

  --wrap:       1180px;
  --wrap-text:  860px;
  --radius:     6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: 'Roboto', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap      { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap-text { width: 100%; max-width: var(--wrap-text); margin-inline: auto; padding-inline: 24px; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.2rem, 5.2vw, 4.25rem); }
h2 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }
h3 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }

.eyebrow {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.lede {
  font-size: clamp(1.25rem, 2.4vw, 1.9rem);
  line-height: 1.45;
  letter-spacing: -0.02em;
  font-weight: 400;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85em 1.9em;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--blue);
  color: var(--white);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { background: var(--blue-dark); }

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { background: var(--white); color: var(--navy); }

.btn[aria-disabled="true"] {
  background: transparent;
  color: var(--ink-soft);
  border-color: var(--line);
  pointer-events: none;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 78px;
}
.site-nav { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.site-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.site-nav a:hover { color: var(--blue); }

.brand { justify-self: center; }
.brand img { width: 148px; }

.header-cta { justify-self: end; }
.header-cta.btn { white-space: nowrap; }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: 0;
  font: inherit;
  color: var(--ink);
  padding: 8px 10px;
  cursor: pointer;
}

/* ---------- hero ---------- */
.hero {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: clamp(60px, 8vw, 100px) 0 clamp(64px, 8.5vw, 104px);
}
.hero h1 { margin-bottom: clamp(16px, 2.2vw, 26px); }
.hero p { margin-inline: auto; }
.hero p {
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  opacity: .95;
}

.hero-image {
  position: relative;
  /* The clip-path cuts two triangles out of the bottom corners; whatever sits
     behind shows through them. Navy here read as a stray blue band under the
     point, so it matches the section that follows instead. */
  background: var(--paper);
}
.hero-image img {
  width: 100%;
  height: clamp(280px, 42vw, 560px);
  object-fit: cover;
  object-position: center 30%;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 70px), 50% 100%, 0 calc(100% - 70px));
}

/* ---------- generic section ---------- */
.section       { padding: clamp(56px, 8vw, 104px) 0; }
.section-tight { padding: clamp(40px, 5vw, 64px) 0; }
.section-grey  { background: var(--grey-bg); }
.section-navy  { background: var(--navy); color: var(--white); }
.center        { text-align: center; }

.intro p + p { margin-top: 1em; }
.intro .btn  { margin-top: 34px; }

/* Numbers on light backgrounds. Full-saturation --amber is only ~2:1 on
   white, so it fails even for large text -- --amber-ink is 5.4:1 and keeps
   the gold association. Saturated amber is reserved for navy. */
.stat-amber { color: var(--amber-ink); }

/* Equal-width digits, so a rolling number doesn't shuffle sideways. */
.count-up, .bp-lift-n { font-variant-numeric: tabular-nums; }

/* ---------- impact stats ---------- */
.stats {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
/* a low luminous band -- the horizon the company is named after */
.stats::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -55%;
  width: 150%;
  aspect-ratio: 2 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(248,176,0,.16), transparent 62%);
  pointer-events: none;
}
.stats > .wrap { position: relative; z-index: 1; }

.eyebrow--amber { color: var(--amber); }

.stats-big {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 14px;
  color: var(--amber);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.045em;
}
.stats-big span { font-size: clamp(4.5rem, 15vw, 11rem); }
.stats-big em {
  font-style: normal;
  font-size: clamp(2rem, 6vw, 4.5rem);
  margin-top: .12em;
}
.stats-caption {
  margin: 14px auto 0;
  max-width: 30ch;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  letter-spacing: -.015em;
  color: rgba(255,255,255,.9);
}

.stats-row {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: clamp(40px, 6vw, 68px) auto 0;
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid rgba(255,255,255,.16);
}
.stats-row li { display: flex; flex-direction: column; gap: 6px; }
.stats-n {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -.03em;
  color: var(--amber);
  line-height: 1;
}
.stats-label {
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
}
.stats-foot {
  margin-top: clamp(26px, 3.5vw, 36px);
  font-size: .95rem;
  color: rgba(255,255,255,.6);
}

@media (max-width: 620px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 26px 16px; }
}

/* ---------- three-up offers ---------- */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  text-align: center;
}
.col-item img { width: 82px; margin: 0 auto 20px; }
.col-item h2 {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.col-item p { color: var(--ink-soft); font-size: 0.98rem; }
.col-item p + p { margin-top: .8em; }

/* ---------- blueprints ---------- */
.blueprints-head { text-align: center; margin-bottom: clamp(36px, 5vw, 60px); }
.blueprints-head h3 span { color: var(--amber-ink); }

.cards-5 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .cards-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .cards-5 { grid-template-columns: 1fr; } }
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 30px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.card img { width: 64px; }
.card h2 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.card p { font-size: 0.92rem; color: var(--ink-soft); flex: 1; }
.card .btn { padding: 0.7em 1.5em; font-size: 0.7rem; }

/* ---------- hero actions ---------- */
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(14px, 1.5vw, 22px);
  margin-top: clamp(30px, 4.2vw, 52px);
}
/* the hero pair sits under a very large headline, so give them more
   presence than a body-copy button */
.hero-actions .btn {
  padding: 1.05em 2.3em;
  font-size: 0.82rem;
}

/* ---------- assessment band ---------- */
.assessment-band { background: var(--navy); color: var(--white); }
.assessment-inner {
  display: grid;
  grid-template-columns: 1.6fr auto;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
}
.assessment-inner h3 { margin: 10px 0 14px; }
.assessment-inner p { color: rgba(255,255,255,.8); }
.assessment-cta { text-align: center; }
.assessment-note {
  margin-top: 12px;
  font-size: .82rem;
  color: rgba(255,255,255,.55) !important;
}

@media (max-width: 760px) {
  .assessment-inner { grid-template-columns: 1fr; }
  .assessment-cta { text-align: left; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

/* ---------- blueprint tabs ---------- */
.bp-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 860px;
  margin: 0 auto clamp(30px, 4vw, 44px);
}
.bp-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 68px;
  padding: 14px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  color: var(--ink);
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease;
}
.bp-tab-name {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.bp-tab-lift { font-size: 1.15rem; font-weight: 700; color: var(--amber-ink); letter-spacing: -.02em; }
.bp-tab:hover { border-color: var(--blue); transform: translateY(-2px); }
.bp-tab[aria-selected="true"] {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.bp-tab[aria-selected="true"] .bp-tab-lift { color: var(--amber); }

/* Without JS every panel renders stacked and readable. */
.bp-panel {
  padding: clamp(26px, 3.2vw, 46px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.bp-panel + .bp-panel { margin-top: 26px; }
.bp--enhanced .bp-panel + .bp-panel { margin-top: 0; }

.bp-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.bp-head h4 { font-size: clamp(1.5rem, 2.8vw, 2.15rem); margin-top: 6px; }
.bp-lift { font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft); text-align: right; }
.bp-lift-n {
  display: block;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--amber-ink);
}

.bp-lead {
  margin: 26px 0;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  line-height: 1.4;
  letter-spacing: -.015em;
  max-width: 60ch;
}

/* The diagrams are landscape and detailed -- give them the full width. */
.bp-figure { margin: 0 0 28px; }
/* inline anchor + block img collapses the link box to a couple of pixels,
   so the image is barely clickable. Make the anchor a block. */
.bp-figure a { display: block; }
.bp-figure img {
  width: 100%;
  border: 1px solid var(--line-soft, rgba(4,14,50,.07));
  border-radius: var(--radius);
}
.bp-figure figcaption { margin-top: 12px; text-align: center; }
.bp-figure figcaption a {
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 131, 191, .35);
  padding-bottom: 3px;
  transition: border-color .16s ease;
}
.bp-figure figcaption a:hover { border-bottom-color: var(--blue); }

.bp-body {
  color: var(--ink-soft);
  font-size: 1rem;
  max-width: 76ch;
  margin-inline: auto;
  text-align: center;
}

.bp-pads { margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); }
.bp-pads-title {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.bp-pads-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
}
.bp-pads-grid li {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 18px 20px;
  background: var(--grey-bg);
  border-radius: var(--radius);
  font-size: .93rem;
  line-height: 1.45;
  color: var(--ink);
}
.bp-pad-n {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--blue);
}

@media (max-width: 760px) {
  .bp-tabs { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bp-tab { min-height: 60px; padding: 12px 8px; }
  .bp-tab-name { font-size: .72rem; letter-spacing: .06em; }
  .bp-tab-lift { font-size: 1rem; }

  .bp-panel { padding: 22px 18px 26px; }
  .bp-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .bp-lift { text-align: left; font-size: .78rem; }
  .bp-lift-n { display: inline; font-size: 1.6rem; margin-right: 6px; }

  .bp-lead { margin: 20px 0; }

  /* Shrunk to 330px these diagrams are unreadable, so pan them instead.
     The caption link still opens the full one-pager. */
  .bp-figure { margin-inline: -18px; }
  .bp-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-inline: 18px;
  }
  .bp-scroll img { width: 660px; max-width: none; }
  .bp-figure figcaption { padding-inline: 18px; }
  .bp-figure figcaption a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  .bp-body { text-align: left; }
  .bp-pads-grid { grid-template-columns: 1fr; gap: 12px; }
}

/* ---------- client grid ---------- */
.clients-head { text-align: center; max-width: 720px; margin: 0 auto clamp(36px, 5vw, 56px); }
.clients-head h3 { margin: 10px 0 16px; }
.clients-sub { color: var(--ink-soft); font-size: 1.02rem; }

.client-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.client-grid li {
  display: grid;
  place-items: center;
  min-height: 132px;
  padding: 26px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.client-grid li:hover {
  border-color: rgba(0, 131, 191, .45);
  box-shadow: 0 6px 20px -12px rgba(4, 14, 50, .35);
}
.client-grid img {
  max-height: 52px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .78;
  transition: filter .18s ease, opacity .18s ease;
}
.client-grid li:hover img { filter: none; opacity: 1; }

.section-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---------- contact ---------- */
.contact-inner { max-width: 620px; margin-inline: auto; }
.contact-inner h3 { margin-bottom: 16px; }
.contact-copy { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 32px; }
.contact-note {
  margin-top: 16px;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-faint, #7C8AA3);
}
.btn-lg { padding: 1.1em 2.6em; font-size: .86rem; }

/* Kept for the assessment result screen, which will embed the widget inline
   at the point where someone actually has a reason to book. */
.calendly-wrap {
  width: 100%;
  max-width: 1080px;
  margin: 40px auto 0;
  height: 1060px;
}
.calendly-wrap iframe { display: block; width: 100%; height: 100%; border: 0; }

/* ---------- article ---------- */
.article h1 { margin-bottom: 28px; }
.article h2 { margin: 2em 0 .6em; }
.article p  { margin-bottom: 1.15em; color: var(--ink-soft); font-size: 1.02rem; }
.article strong { color: var(--ink); font-weight: 500; }
.article figure { margin: 2.4em 0; }
.article figure img { margin-inline: auto; border-radius: var(--radius); }

/* ---------- article pull stats ---------- */
.pull-stats {
  margin: clamp(36px, 5vw, 56px) 0;
  padding: clamp(28px, 4vw, 40px) clamp(22px, 3vw, 36px);
  background: var(--navy);
  border-radius: var(--radius);
  color: var(--white);
}
.pull-stats ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 34px);
}
.pull-stats li { display: flex; flex-direction: column; gap: 8px; }
.pull-n {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--amber);
}
.pull-l { font-size: .9rem; line-height: 1.45; color: rgba(255,255,255,.75); }

@media (max-width: 700px) {
  .pull-stats ul { grid-template-columns: 1fr; gap: 22px; }
  .pull-stats li { flex-direction: row; align-items: baseline; gap: 14px; }
  .pull-n { flex: none; min-width: 4ch; }
}

/* ---------- slide gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 28px;
}
.gallery img { width: 100%; border: 1px solid var(--line); border-radius: var(--radius); }

/* ---------- resources ---------- */
.resource-list { display: grid; gap: 18px; margin-top: 36px; }
.resource {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.resource h2 { font-size: 1.15rem; margin-bottom: 4px; }
.resource p  { color: var(--ink-soft); font-size: .95rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy); color: var(--white); padding: 64px 0 44px; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: start;
}
.site-footer img { width: 190px; height: auto; }
.site-footer h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,.78); font-size: .95rem; text-decoration: none; }
.site-footer a:hover { color: var(--white); }
.footer-base {
  margin-top: 48px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.16);
  font-size: .82rem;
  color: rgba(255,255,255,.55);
}

/* ---------- scroll reveal ---------- */
/* Scoped to .reveal-on, which JS adds only when motion is welcome and the
   observer exists -- so content is never hidden by CSS alone. */
.reveal-on .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s ease, transform .5s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-on .reveal.revealed {
  opacity: 1;
  transform: none;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 700px) {
  /* Calendly's mobile layout stacks the calendar above the time list */
  .calendly-wrap { height: 1250px; }

  /* Touch targets. 44px is the Apple HIG minimum; several buttons were 36px.
     inline-flex rather than inline-block so min-height is actually honoured. */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    font-size: .82rem;
  }
  .card .btn { font-size: .8rem; padding: .8em 1.7em; }
  .hero-actions .btn { min-height: 48px; font-size: .84rem; }

  /* the logo link box was 37px tall */
  .brand { display: inline-flex; align-items: center; min-height: 44px; }

  /* inline footer links were 18px tall */
  .site-footer a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
  }

  /* The research diagrams are dense charts. At ~327px wide they are not
     readable, so they link to the full-size image -- say so. */
  .article figure a { display: block; }
  .article figure a::after {
    content: "Tap to view full size";
    display: block;
    margin-top: 10px;
    font-size: .78rem;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-soft);
    text-align: center;
  }
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .client-grid li { min-height: 104px; padding: 18px 14px; }
  .client-grid img { max-height: 40px; }
}

@media (max-width: 960px) {
  .site-header .wrap { grid-template-columns: auto 1fr auto; min-height: 66px; }
  .brand { justify-self: start; order: -1; }
  .brand img { width: 120px; }
  .nav-toggle { display: flex; justify-self: end; order: 3; }
  .header-cta { display: none; }
  .site-nav {
    order: 4;
    grid-column: 1 / -1;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 18px;
  }
  .site-nav:not(.open) { display: none; }
  .site-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 8px 0;
    font-size: .95rem;
    letter-spacing: .04em;
  }
  .gallery { grid-template-columns: 1fr; }
  .hero-image img { clip-path: polygon(0 0, 100% 0, 100% calc(100% - 34px), 50% 100%, 0 calc(100% - 34px)); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
