/* Repaint Queenstown
   Palette straight off the brand mark: sky blue #4EAAE1, off-black #191919,
   cool white #ECF3F7. One accent, neutral ground, no glows.
   Display: Outfit · Body: Manrope */

:root {
  --ink: #191919;
  --ink-2: #232323;
  --ink-3: #2f3134;
  --paper: #ecf3f7;
  --paper-2: #ffffff;
  --paper-3: #dde8f0;
  --blue: #02abe7;        /* the wordmark blue */
  --blue-deep: #0289ba;
  --blue-ink: #026287;    /* small text on white */
  --blue-wash: #d8f0fb;
  --text: #232323;
  --muted: #5d666d;
  --muted-light: rgba(236, 243, 247, 0.7);
  --line: rgba(25, 25, 25, 0.13);
  --line-light: rgba(236, 243, 247, 0.16);
  --radius: 4px;
  --radius-lg: 6px;
  --shadow: 0 24px 60px -34px rgba(25, 25, 25, 0.55);
  --shadow-sm: 0 12px 30px -20px rgba(25, 25, 25, 0.5);
  --wrap: 1280px;
  --pad: clamp(20px, 5vw, 64px);
  --sec: clamp(64px, 9vw, 132px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16.5px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; image-orientation: from-image; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4 {
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--ink);
  margin: 0;
  line-height: 1.06;
  letter-spacing: -0.028em;
  font-weight: 700;
}
:focus-visible { outline: 2px solid var(--blue-deep); outline-offset: 3px; }

.container { width: 100%; max-width: var(--wrap); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: var(--sec); padding-bottom: var(--sec); }
.section--tight { padding-top: clamp(40px, 6vw, 76px); padding-bottom: clamp(48px, 7vw, 90px); }
.section--bone { background: var(--paper-2); }
.section--bone2 { background: var(--paper-3); }
.section--dark { background: var(--ink); color: var(--muted-light); }
.section--dark h2, .section--dark h3 { color: var(--paper); }

.eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: "Outfit", sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--blue-ink); margin: 0 0 14px;
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--blue); flex: none; }
.section--dark .eyebrow { color: var(--blue); }
.lede { font-size: 1.04rem; color: var(--muted); max-width: 60ch; }
.section--dark .lede { color: var(--muted-light); }
.badge-note {
  display: inline-block; font-family: "Outfit", sans-serif; font-weight: 600;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink); background: var(--blue-wash);
  border: 1px solid rgba(2, 137, 186, 0.28); padding: 5px 11px; margin-bottom: 14px;
}
.section-head { max-width: 62ch; margin-bottom: clamp(32px, 4.5vw, 58px); }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-bottom: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.97rem;
  padding: 14px 24px; min-height: 52px; border: 1.5px solid transparent;
  border-radius: var(--radius); cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn--primary { background: var(--blue); color: var(--ink); }
.btn--primary:hover { background: var(--blue-deep); color: var(--paper); }
.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: var(--ink-3); }
.btn--ghost { background: transparent; color: var(--paper); border-color: var(--line-light); }
.btn--ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--outline:hover { border-color: var(--ink); }
.btn--lg { min-height: 58px; padding: 16px 28px; font-size: 1.02rem; }
.btn:active { transform: translateY(1px); }

/* ---------- intro ---------- */
#intro {
  position: fixed; inset: 0; z-index: 200; background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}
#intro.is-done { opacity: 0; visibility: hidden; }
.intro-mark { text-align: center; color: var(--paper); }
.intro-mark b { font-family: "Outfit", sans-serif; font-size: clamp(20px, 3.6vw, 30px); font-weight: 700; letter-spacing: -0.02em; }
.intro-rule { height: 3px; width: 0; background: var(--blue); margin: 14px auto 0; animation: introRule 1s var(--ease) forwards 0.25s; }
@keyframes introRule { to { width: 130px; } }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(236, 243, 247, 0.86); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color 0.3s, background 0.3s;
}
.nav.is-solid { border-color: var(--line); background: rgba(236, 243, 247, 0.96); }
.nav-inner {
  width: 100%; max-width: var(--wrap); margin: 0 auto;
  padding: 12px var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
/* the wordmark is black and blue, so on the dark footer it sits on its own white card */
.brand-logo { height: 40px; width: auto; display: block; }
.footer-brand { background: var(--paper-2); padding: 12px 16px; border-radius: var(--radius); }
.footer-brand .brand-logo { height: 34px; }
@media (max-width: 760px) { .brand-logo { height: 32px; } }
.brand-mark {
  width: 42px; height: 42px; flex: none; display: grid; place-items: center;
  background: var(--blue); color: var(--ink); border-radius: var(--radius);
}
.brand-mark svg { width: 23px; height: 23px; }
.brand-name { display: block; font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.02rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-sub { display: block; font-size: 10.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { font-family: "Outfit", sans-serif; font-weight: 500; font-size: 0.94rem; color: var(--ink-3); position: relative; padding: 6px 0; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--blue); transition: right 0.3s var(--ease); }
.nav-links a:hover::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-call {
  display: inline-flex; align-items: center; gap: 9px; background: var(--ink); color: var(--paper);
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.9rem;
  padding: 11px 18px; min-height: 46px; border-radius: var(--radius); transition: background 0.25s var(--ease);
}
.nav-call svg { width: 17px; height: 17px; }
.nav-call:hover { background: var(--blue); color: var(--ink); }
.nav-toggle {
  display: none; width: 48px; height: 48px; align-items: center; justify-content: center;
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block; width: 20px; height: 2px; background: var(--ink); position: relative; transition: transform 0.3s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.mobile-menu { display: none; }

/* ---------- hero: asymmetric split, image column bleeding right ---------- */
.hero {
  position: relative; background: var(--paper);
  display: grid; grid-template-columns: 0.88fr 1.12fr; align-items: stretch;
  /* kept close to the photos' 4:3 so the subject is not cropped to a sliver */
  min-height: clamp(500px, 66dvh, 680px);
}
.hero-inner {
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(36px, 4.5vw, 68px) clamp(24px, 4vw, 64px) clamp(36px, 4.5vw, 68px) var(--pad);
  max-width: 760px; margin-left: auto; width: 100%;
}
.hero h1 { font-size: clamp(2.3rem, 4.4vw, 3.5rem); margin-bottom: 20px; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--blue-deep); }
.hero-eyebrow { margin-bottom: 18px; }
.hero-sub { font-size: 1.04rem; color: var(--muted); max-width: 52ch; margin-bottom: 28px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
.rating-badge {
  display: flex; align-items: center; gap: 13px; background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 13px 18px; max-width: 560px;
}
.rating-badge .stars { display: inline-flex; gap: 2px; color: var(--blue); flex: none; align-self: flex-start; margin-top: 3px; }
.rating-badge .stars svg { width: 15px; height: 15px; }
.rating-text { font-size: 0.9rem; color: var(--muted); line-height: 1.45; }
.rating-text b { color: var(--ink); font-family: "Outfit", sans-serif; }
.rating-text small { display: block; font-size: 0.78rem; color: var(--muted); opacity: 0.8; }

.hero-media {
  position: relative; overflow: hidden; background: var(--paper); min-height: 320px;
  /* the supplied photos are 3:2; matching that ratio means object-fit: contain
     shows each one whole with no crop and no visible letterboxing */
  aspect-ratio: 16 / 10; align-self: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s var(--ease); }
.hero-slide.is-active { opacity: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: contain; object-position: 50% 50%; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(100deg, var(--paper) 0%, rgba(236, 243, 247, 0) 26%, rgba(25, 25, 25, 0.12) 100%); pointer-events: none; }
/* the swatch rail: the three brand colours down the seam */
.hero-rail { position: absolute; left: 0; top: 0; bottom: 0; width: 10px; display: grid; grid-template-rows: 1fr 1fr 1fr; z-index: 2; }
.hero-rail i { display: block; }
.hero-rail i:nth-child(1) { background: var(--blue); }
.hero-rail i:nth-child(2) { background: var(--paper-2); }
.hero-rail i:nth-child(3) { background: var(--ink); }
.hero-dots { position: absolute; right: clamp(18px, 3vw, 34px); bottom: clamp(18px, 3vw, 32px); z-index: 3; display: flex; gap: 8px; }
.hero-dots button {
  width: 26px; height: 4px; padding: 0; border: 0; cursor: pointer;
  background: rgba(236, 243, 247, 0.45); transition: background 0.3s var(--ease);
}
.hero-dots button.is-active { background: var(--blue); }

/* ---------- kinetic marquee ---------- */
.marquee { background: var(--ink); color: var(--paper); overflow: hidden; padding: 13px 0; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marq 34s linear infinite; will-change: transform; }
.marquee span { font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.86rem; letter-spacing: 0.2em; text-transform: uppercase; padding: 0 1.6em; }
.marquee i { font-style: normal; color: var(--blue); padding-right: 1.6em; }
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }


/* ---------- services: an index that swaps one large image ---------- */
.services-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 4vw, 64px); align-items: start; }
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px;
  width: 100%; text-align: left; background: none; border: 0; border-bottom: 1px solid var(--line);
  padding: 26px 14px 26px 4px; cursor: pointer; font: inherit; color: inherit;
  transition: background 0.35s var(--ease);
}
.service-row > * { transition: transform 0.35s var(--ease); }
.service-row:hover > *, .service-row.is-active > * { transform: translateX(12px); }
.service-row:hover, .service-row.is-active { background: rgba(2, 171, 231, 0.07); }
.service-num { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.1em; color: var(--blue-ink); }
.service-row h3 { font-size: clamp(1.1rem, 1.9vw, 1.4rem); transition: color 0.3s var(--ease); }
.service-row.is-active h3 { color: var(--blue-ink); }
.service-row .service-go { width: 20px; height: 20px; color: var(--muted); opacity: 0; transform: translateX(-6px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease); }
.service-row:hover .service-go, .service-row.is-active .service-go { opacity: 1; transform: none; }
.service-copy { grid-column: 1 / -1; font-size: 0.95rem; color: var(--muted); margin: 0; max-width: 56ch; display: none; }
.service-row.is-active .service-copy { display: block; margin-top: 8px; }
.service-media { position: sticky; top: 96px; }
.service-media-frame { position: relative; aspect-ratio: 4 / 5; max-height: 560px; overflow: hidden; background: var(--paper-3); border-radius: var(--radius-lg); }
.service-media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.7s var(--ease), transform 6s linear; }
.service-media-frame img.is-active { opacity: 1; transform: scale(1.04); }
.service-media-caption { display: flex; align-items: center; gap: 10px; margin-top: 14px; font-size: 0.86rem; color: var(--muted); }
.service-media-caption b { color: var(--ink); font-family: "Outfit", sans-serif; font-weight: 600; }
.service-media-caption::before { content: ""; width: 22px; height: 3px; background: var(--blue); flex: none; }

/* ---------- colour band ---------- */
.swatches { display: grid; grid-template-columns: repeat(6, 1fr); border: 1px solid var(--line); background: var(--paper-2); }
.swatch { padding: 0; border-right: 1px solid var(--line); }
.swatch:last-child { border-right: 0; }
.swatch i { display: block; height: clamp(80px, 11vw, 128px); }
.swatch span { display: block; padding: 12px 14px 14px; font-size: 0.78rem; color: var(--muted); line-height: 1.4; }
.swatch b { display: block; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.86rem; color: var(--ink); letter-spacing: -0.01em; }

/* ---------- gallery: masonry at natural aspect ratios ---------- */
.gallery-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.filter-btn {
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.85rem;
  padding: 9px 16px; min-height: 42px; background: transparent; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.filter-btn:hover { border-color: var(--ink); }
.filter-btn.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.gallery {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 22px); align-items: stretch;
}
.gallery figure {
  margin: 0; position: relative; display: flex; flex-direction: column;
  background: var(--paper-2); border: 1px solid var(--line); padding: 10px; cursor: zoom-in;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.gallery figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center; display: block; }
.gallery figcaption {
  padding: 11px 3px 3px; font-size: 0.84rem; color: var(--muted); line-height: 1.5;
  min-height: calc(2 * 1.5em + 14px);
}
.gallery figure[hidden] { display: none; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 120; background: rgba(25, 25, 25, 0.94);
  display: none; align-items: center; justify-content: center; padding: clamp(16px, 4vw, 56px);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 82vh; width: auto; height: auto; }
.lightbox-cap { position: absolute; left: 0; right: 0; bottom: clamp(14px, 3vw, 30px); text-align: center; color: var(--muted-light); font-size: 0.88rem; padding: 0 20px; }
.lightbox-close {
  position: absolute; top: clamp(12px, 3vw, 26px); right: clamp(12px, 3vw, 26px);
  width: 46px; height: 46px; background: none; border: 1px solid var(--line-light);
  color: var(--paper); cursor: pointer; border-radius: var(--radius);
}
.lightbox-close svg { width: 20px; height: 20px; margin: 0 auto; }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(30px, 5vw, 76px); align-items: center; }
.about-grid.is-flipped .about-media { order: 2; }
.about-media { position: relative; }
.about-media img { width: 100%; height: auto; aspect-ratio: auto; object-fit: fill; border-radius: var(--radius-lg); }
.about-tag {
  position: absolute; left: -12px; bottom: -16px; background: var(--blue); color: var(--ink);
  font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.84rem;
  padding: 12px 18px; border-radius: var(--radius);
}
.checklist { display: grid; gap: 12px; margin: 22px 0 26px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.97rem; }
.checklist svg { width: 20px; height: 20px; flex: none; color: var(--blue-ink); margin-top: 3px; }

/* ---------- crew ---------- */
.crew-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); }
.crew-card { padding: 30px clamp(16px, 2.2vw, 30px); border-left: 1px solid var(--line); }
.crew-card:first-child { border-left: 0; padding-left: 0; }
.crew-card:last-child { padding-right: 0; }
.avatar {
  width: 56px; height: 56px; display: grid; place-items: center; margin-bottom: 16px;
  background: var(--blue-wash); color: var(--blue-ink); border: 1px solid rgba(2, 137, 186, 0.3);
  font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.05rem; border-radius: var(--radius);
}
.crew-card h3 { font-size: 1.1rem; margin-bottom: 3px; }
.crew-role { font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue-ink); margin: 0 0 10px; font-weight: 600; }
.crew-card p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* ---------- reviews ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.review-card { background: var(--paper-2); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; }
.review-stars { display: inline-flex; gap: 2px; color: var(--blue); margin-bottom: 14px; }
.review-stars svg { width: 16px; height: 16px; }
.review-card p { font-size: 1rem; color: var(--ink-3); margin-bottom: 20px; flex: 1; }
.review-meta { display: flex; align-items: center; gap: 12px; }
.review-initial { width: 40px; height: 40px; display: grid; place-items: center; background: var(--paper-3); color: var(--ink); font-family: "Outfit", sans-serif; font-weight: 700; border-radius: var(--radius); }
.review-name { display: block; font-family: "Outfit", sans-serif; font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.review-sub { display: block; font-size: 0.82rem; color: var(--muted); }
.reviews-actions { margin-top: 30px; }

/* ---------- review banner ---------- */
.review-banner { background: var(--ink); color: var(--muted-light); padding: clamp(52px, 7vw, 92px) 0; position: relative; }
.review-banner::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: linear-gradient(90deg, var(--blue) 0 34%, var(--paper) 34% 67%, var(--ink-3) 67% 100%); }
.review-banner h2 { color: var(--paper); font-size: clamp(1.7rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
.review-banner p { max-width: 56ch; }
.review-banner .btn { margin-top: 12px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(30px, 5vw, 70px); align-items: start; }
.contact-rows { display: grid; gap: 20px; margin-top: 26px; }
.contact-rows li { display: flex; gap: 15px; align-items: flex-start; }
.contact-rows > li > svg { width: 21px; height: 21px; flex: none; color: var(--blue); margin-top: 4px; }
.contact-rows .label { display: block; font-family: "Outfit", sans-serif; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(236, 243, 247, 0.55); }
.contact-rows a, .contact-rows .value { color: var(--paper); font-size: 1rem; }
.contact-rows a:hover { color: var(--blue); }
.socials { display: flex; gap: 9px; margin-top: 8px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--line-light); border-radius: var(--radius); color: var(--paper); transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease); }
.socials a svg { width: 19px; height: 19px; }
.socials a:hover { background: var(--blue); color: var(--ink); border-color: var(--blue); transform: translateY(-2px); }
.contact-panel { background: rgba(236, 243, 247, 0.05); border: 1px solid var(--line-light); padding: clamp(26px, 3vw, 38px); }
.contact-panel h3 { font-size: 1.3rem; margin-bottom: 10px; }
.contact-panel p { font-size: 0.95rem; }
.contact-buttons { display: grid; gap: 12px; margin: 22px 0 16px; }
.contact-buttons .btn { width: 100%; }
.contact-fine { font-size: 0.85rem; color: rgba(236, 243, 247, 0.55); margin: 0; }

/* ---------- map ---------- */
.map-wrap { border: 1px solid var(--line); background: var(--paper-2); padding: 10px; border-radius: var(--radius-lg); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(236, 243, 247, 0.62); padding: clamp(52px, 6vw, 78px) 0 26px; }
.footer .brand-name { color: var(--paper); }
.footer .brand-sub { color: rgba(236, 243, 247, 0.5); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); margin-bottom: 40px; }
.footer p { font-size: 0.93rem; max-width: 38ch; margin: 16px 0 18px; }
.footer h4 { color: var(--paper); font-size: 0.76rem; letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 0.93rem; transition: color 0.25s var(--ease); }
.footer-links a:hover { color: var(--blue); }
.footer-bottom { border-top: 1px solid var(--line-light); padding-top: 22px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; font-size: 0.84rem; color: rgba(236, 243, 247, 0.45); }
.footer-bottom a:hover { color: var(--blue); }

/* ---------- inner pages ---------- */
.page-head { padding-top: clamp(46px, 6vw, 80px); padding-bottom: clamp(30px, 4vw, 52px); background: var(--paper-2); border-bottom: 1px solid var(--line); }
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-head p { max-width: 60ch; color: var(--muted); margin: 0; }
.prose { max-width: 78ch; }
.prose h2 { font-size: 1.3rem; margin: 34px 0 12px; }
.prose p { margin-bottom: 14px; color: var(--muted); }
.prose ul { list-style: disc; margin: 0 0 16px 22px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.note-box { background: var(--blue-wash); border: 1px solid rgba(2, 137, 186, 0.25); padding: 18px 20px; margin: 20px 0; font-size: 0.94rem; }
.process { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 30px; }
.process-step { background: var(--paper-2); padding: clamp(22px, 3vw, 32px); display: grid; grid-template-columns: auto 1fr; column-gap: 22px; row-gap: 8px; align-items: start; }
.step-num { grid-column: 1; grid-row: 1 / span 2; }
.process-step h3, .process-step p { grid-column: 2; }
.step-num { font-family: "Outfit", sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--blue); }
.process-step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.95rem; color: var(--muted); margin: 0; }
.cta-strip { background: var(--blue-wash); border: 1px solid rgba(2, 137, 186, 0.25); padding: clamp(24px, 3vw, 36px); margin-top: 36px; display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; }
.cta-strip h3 { font-size: 1.3rem; margin-bottom: 6px; }
.cta-strip p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track, .hero-slide, .service-media-frame img { animation: none !important; transition: none !important; }
  #intro { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1150px) {
  .hero { grid-template-columns: 1fr; min-height: 0; }
  .hero-inner { max-width: none; padding: clamp(36px, 7vw, 60px) var(--pad); }
  .hero-media { min-height: 0; aspect-ratio: 16 / 10; align-self: stretch; width: 100%; max-height: 68vh; }
  .hero-scrim { background: linear-gradient(180deg, rgba(236, 243, 247, 0.9) 0%, rgba(236, 243, 247, 0) 22%); }
  .hero-rail { left: 0; right: 0; top: 0; bottom: auto; width: auto; height: 8px; grid-template-rows: none; grid-template-columns: 1fr 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-media { position: static; order: -1; }
  .service-media-frame { aspect-ratio: 16 / 10; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-grid.is-flipped .about-media { order: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .swatches { grid-template-columns: repeat(3, 1fr); }
  .swatch:nth-child(3) { border-right: 0; }
  .swatch:nth-child(1), .swatch:nth-child(2), .swatch:nth-child(3) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-call span { display: none; }
  .nav-call { padding: 11px 14px; }
  .mobile-menu {
    display: block; position: fixed; top: 68px; left: 12px; right: 12px; z-index: 59;
    background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
    padding: 8px; box-shadow: var(--shadow);
    transform: translateY(-14px); opacity: 0; pointer-events: none; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .mobile-menu.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-menu a { display: block; padding: 14px 12px; font-family: "Outfit", sans-serif; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
  .mobile-menu a:last-child { border-bottom: 0; }
  .crew-grid { grid-template-columns: 1fr; }
  .crew-card { border-left: 0; border-top: 1px solid var(--line); padding-left: 0; padding-right: 0; }
  .crew-card:first-child { border-top: 0; }
  .reviews-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .swatches { grid-template-columns: repeat(2, 1fr); }
  .swatch:nth-child(odd) { border-right: 1px solid var(--line); }
  .swatch:nth-child(even) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta .btn, .contact-buttons .btn { width: 100%; }
  .about-tag { left: 0; }
  .map-wrap iframe { height: 320px; }
}

/* hero review rotator */
.rating-text { transition: opacity .45s ease; min-width: 0; }
.rating-text.fading { opacity: 0; }
.rb-quote { display: block; }
.rb-who { display: block; margin-top: 2px; }

/* ---------- Why Repaint Queenstown ---------- */
.why-grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.why-item { padding: 26px 0; border-top: 1px solid var(--line); }
.why-item:first-child { border-top: 0; padding-top: 0; }
.why-item h3 { font-size: 1.18rem; margin-bottom: 8px; }
.why-item p { color: var(--muted); margin: 0; max-width: 62ch; }
.why-cta { padding-top: 30px; border-top: 1px solid var(--line); }

/* ---------- How a job runs ---------- */
.proc-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; gap: 22px; }
.proc { position: relative; padding: 26px 24px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.proc-n {
  display: inline-grid; place-items: center; width: 34px; height: 34px; margin-bottom: 14px;
  border-radius: 50%; background: var(--blue); color: var(--ink);
  font-weight: 700; font-size: .95rem;
}
.proc h3 { font-size: 1.1rem; margin-bottom: 7px; }
.proc p { color: var(--muted); margin: 0; font-size: .96rem; }
.proc-cta { margin-top: 34px; }

@media (min-width: 720px) {
  .why-grid { grid-template-columns: 1fr 1fr; column-gap: 46px; }
  .why-item { padding: 24px 0; }
  .why-item:nth-child(2) { border-top: 0; padding-top: 0; }
  .why-cta { grid-column: 1 / -1; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .proc-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Google review badge ---------- */
.gmark { width: 18px; height: 18px; flex: none; }
.gmark--sm { width: 13px; height: 13px; vertical-align: -2px; margin-right: 5px; }

.gbadge {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 18px; padding: 10px 16px;
  background: var(--paper-2); border: 1px solid var(--line);
  border-radius: 999px; text-decoration: none; color: var(--text);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.gbadge:hover { border-color: var(--blue); transform: translateY(-1px); }
.gbadge b { font-family: "Outfit", sans-serif; font-size: 1.05rem; line-height: 1; }
.gbadge .gstars { display: inline-flex; gap: 2px; color: #f5a623; }
.gbadge .gstars svg { width: 14px; height: 14px; }
.gbadge .gcount { font-size: 0.86rem; color: var(--muted); white-space: nowrap; }

@media (max-width: 420px) {
  .gbadge { gap: 8px; padding: 9px 13px; }
  .gbadge .gcount { font-size: 0.8rem; }
}

/* ---------- Google mark in the hero rating badge ---------- */
.rb-g {
  display: inline-flex; align-items: center; gap: 7px; flex: none;
  align-self: flex-start; margin-top: 1px;
  padding-right: 12px; margin-right: 2px;
  border-right: 1px solid var(--line);
  text-decoration: none; color: var(--ink);
  transition: opacity .2s var(--ease);
}
.rb-g:hover { opacity: .72; }
.rb-g b { font-family: "Outfit", sans-serif; font-size: 1.02rem; line-height: 1; }
@media (max-width: 480px) {
  .rb-g { padding-right: 9px; }
  .rb-g b { font-size: .95rem; }
}
