/* Minimal reset — this build ships without a framework preflight. */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { background: #0a141c; color-scheme: light; -webkit-text-size-adjust: 100%; }
body { background: #0a141c; }
img, svg, video, picture { display: block; max-width: 100%; }
h1, h2, h3, p, figure, blockquote, dl, dd, ul { margin: 0; padding: 0; }
address { font-style: normal; }
button, input, select, textarea { font: inherit; }

/* ==========================================================================
   Mr Pro Painter — "The Wet Edge"
   A painter's site built as a wall being finished: you scroll down through the
   coats, and every boundary between them is a hand-cut paint edge rather than
   a rule. Unlayered on purpose so it wins over the scaffold's @layer base.
   ========================================================================== */

.mp {
  --chalk: #f2efe8;
  --chalk-2: #e7e2d7;
  --chalk-3: #d5cfc1;
  --prussian: #12293a;
  --prussian-2: #0d1f2c;
  --ink: #0a141c;
  --jade: #3fa88c;
  --jade-deep: #2c7d67;

  --on-chalk: #16222c;
  --on-chalk-soft: #56646f;
  --on-ink: #eeebe3;
  --on-ink-soft: #9db0bd;

  --display: "Archivo", ui-sans-serif, system-ui, "Helvetica Neue", sans-serif;
  --body: "Instrument Sans", ui-sans-serif, system-ui, "Helvetica Neue", sans-serif;
  --serif: "Instrument Serif", Iowan Old Style, Georgia, serif;

  --gutter: clamp(1.25rem, 5vw, 5.5rem);
  --measure: 78rem;

  background: var(--chalk);
  color: var(--on-chalk);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

.mp *,
.mp *::before,
.mp *::after {
  box-sizing: border-box;
  border-color: currentColor;
}

.mp h1,
.mp h2,
.mp h3,
.mp p,
.mp figure,
.mp blockquote,
.mp ul {
  margin: 0;
  padding: 0;
}

.mp ul {
  list-style: none;
}

:where(.mp) :where(a) {
  color: inherit;
  text-decoration: none;
}

.mp ::selection {
  background: var(--jade);
  color: #fff;
}

.mp :focus-visible {
  outline: 3px solid var(--jade);
  outline-offset: 3px;
  border-radius: 2px;
}

.mp-shell {
  width: 100%;
  max-width: var(--measure);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* --- the coats ---------------------------------------------------------- */

.mp-band {
  position: relative;
  padding-block: clamp(5rem, 11vw, 9.5rem);
}

.mp-band--chalk {
  background: var(--chalk);
  color: var(--on-chalk);
}

.mp-band--ink {
  background: var(--prussian);
  color: var(--on-ink);
}

.mp-band--deep {
  background: var(--ink);
  color: var(--on-ink);
}

/* The cut line that opens each coat, painted in that coat's own colour. */
.mp-cut {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: clamp(26px, 3.2vw, 46px);
  transform: translateY(-99%);
  display: block;
  pointer-events: none;
  z-index: 2;
}

/* --- the progress rail -------------------------------------------------- */

.mp-rail {
  position: fixed;
  inset-block: 0;
  left: 0;
  width: 5px;
  background: rgba(20, 32, 42, 0.14);
  z-index: 60;
  pointer-events: none;
}

.mp-rail__fill {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--jade), var(--jade-deep));
  transform-origin: 0 0;
  transform: scaleY(var(--mp-progress, 0));
}

@media (max-width: 640px) {
  .mp-rail {
    width: 3px;
  }
}

/* --- masthead ----------------------------------------------------------- */

.mp-nav {
  position: absolute;
  inset-inline: 0;
  top: 0;
  z-index: 30;
  padding-block: clamp(1.1rem, 2.4vw, 2rem);
}

.mp-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mp-nav__id {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--on-ink);
}

.mp-nav__mark {
  width: clamp(30px, 3.4vw, 40px);
  height: clamp(30px, 3.4vw, 40px);
  border-radius: 4px;
  display: block;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.35);
}

.mp-nav__word {
  font-family: var(--display);
  font-variation-settings: "wght" 700, "wdth" 112;
  font-size: clamp(0.82rem, 1.35vw, 1rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.1;
}

/* CTA — masthead. Its identity is the rule that fills in from the left. */
.cta-mast {
  position: relative;
  font-family: var(--display);
  font-variation-settings: "wght" 620, "wdth" 104;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--on-ink);
  padding-block: 0.45rem;
}

.cta-mast::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: var(--jade);
  transform: scaleX(0.28);
  transform-origin: 0 50%;
  transition: transform 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-mast:hover::after,
.cta-mast:focus-visible::after {
  transform: scaleX(1);
}

@media (max-width: 700px) {
  .cta-mast {
    font-size: 0.78rem;
    letter-spacing: 0.06em;
  }
}

/* --- hero --------------------------------------------------------------- */

.mp-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--prussian-2);
  color: var(--on-ink);
  isolation: isolate;
}

.mp-hero__frame {
  position: absolute;
  inset: -12% 0 -12% 0;
  z-index: 0;
}

.mp-hero__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      100deg,
      rgba(9, 20, 28, 0.9) 0%,
      rgba(9, 20, 28, 0.66) 38%,
      rgba(9, 20, 28, 0.15) 72%,
      rgba(9, 20, 28, 0.4) 100%
    ),
    linear-gradient(180deg, rgba(9, 20, 28, 0.55) 0%, rgba(9, 20, 28, 0) 30%);
}

.mp-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  padding-top: clamp(8rem, 18vw, 12rem);
}

.mp-eyebrow {
  font-family: var(--display);
  font-variation-settings: "wght" 600, "wdth" 108;
  font-size: clamp(0.7rem, 1.05vw, 0.84rem);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--jade);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mp-eyebrow::before {
  content: "";
  width: clamp(22px, 4vw, 46px);
  height: 2px;
  background: var(--jade);
  flex: none;
}

.mp-h1 {
  font-family: var(--display);
  font-variation-settings: "wght" 800, "wdth" 118;
  font-size: clamp(3rem, 11.5vw, 9.5rem);
  line-height: 0.85;
  letter-spacing: -0.028em;
  text-transform: uppercase;
  margin-top: clamp(1rem, 2.2vw, 1.8rem);
  text-wrap: balance;
}

.mp-h1 em {
  font-style: normal;
  display: block;
  color: var(--chalk);
}

.mp-h1 em + em {
  color: #b9cbd6;
}

.mp-hero__lede {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  max-width: 34ch;
  font-size: clamp(1.02rem, 1.55vw, 1.3rem);
  line-height: 1.5;
  color: #d3ddE4;
  color: #d3dde4;
}

.mp-hero__actions {
  margin-top: clamp(1.8rem, 3.4vw, 2.8rem);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
  align-items: center;
}

/* CTA — primary. A filled slab whose jade shoulder slides out on hover. */
.cta-call {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  background: var(--chalk);
  color: var(--prussian);
  padding: clamp(0.95rem, 1.7vw, 1.2rem) clamp(1.4rem, 2.6vw, 2rem);
  font-family: var(--display);
  font-variation-settings: "wght" 750, "wdth" 110;
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  letter-spacing: 0.02em;
  transition:
    transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1),
    box-shadow 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 0 0 0 var(--jade);
}

.cta-call small {
  font-family: var(--body);
  font-variation-settings: normal;
  font-size: 0.72em;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--jade-deep);
}

.cta-call:hover,
.cta-call:focus-visible {
  transform: translate(-5px, -5px);
  box-shadow: 10px 10px 0 0 var(--jade);
}

/* CTA — secondary. Outlined; the arrow travels, the box does not. */
.cta-map {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: clamp(0.95rem, 1.7vw, 1.2rem) clamp(1.2rem, 2.2vw, 1.6rem);
  border: 1.5px solid rgba(238, 235, 227, 0.4);
  color: var(--on-ink);
  font-family: var(--display);
  font-variation-settings: "wght" 640, "wdth" 106;
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

.cta-map svg {
  width: 1.05em;
  height: 1.05em;
  transition: transform 0.34s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-map:hover,
.cta-map:focus-visible {
  border-color: var(--jade);
  background: rgba(63, 168, 140, 0.14);
}

.cta-map:hover svg,
.cta-map:focus-visible svg {
  transform: translateX(4px);
}

/* Rating chip */
.mp-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-variation-settings: "wght" 620, "wdth" 104;
  font-size: clamp(0.8rem, 1.2vw, 0.95rem);
  letter-spacing: 0.04em;
}

.mp-rating__stars {
  width: 84px;
  height: 16px;
  color: var(--jade);
  flex: none;
}

.mp-rating--onink {
  color: var(--on-ink);
}

.mp-rating--onink span {
  color: var(--on-ink-soft);
}

.mp-hero__rating {
  margin-top: clamp(1.4rem, 2.6vw, 2rem);
}

.mp-scrollcue {
  position: absolute;
  right: var(--gutter);
  bottom: clamp(3.5rem, 8vw, 7rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  writing-mode: vertical-rl;
  font-family: var(--display);
  font-variation-settings: "wght" 600, "wdth" 100;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--on-ink-soft);
}

.mp-scrollcue::after {
  content: "";
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, var(--jade), transparent);
  animation: mp-cue 2.6s ease-in-out infinite;
}

@keyframes mp-cue {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.6);
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@media (max-width: 900px) {
  .mp-scrollcue {
    display: none;
  }
}

/* --- the statement ------------------------------------------------------ */

.mp-statement {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.mp-quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.85rem);
  line-height: 1.24;
  letter-spacing: -0.012em;
  text-wrap: pretty;
}

.mp-quote__open {
  color: var(--jade-deep);
}

.mp-plate {
  position: relative;
  overflow: hidden;
  background: var(--chalk-2);
}

.mp-plate--tall {
  aspect-ratio: 4 / 5;
}

.mp-plate--wide {
  aspect-ratio: 16 / 9;
}

.mp-plate__layer {
  position: absolute;
  inset: -14% 0;
}

.mp-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-facts {
  margin-top: clamp(3rem, 6vw, 5rem);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 3vw, 2.5rem);
  border-top: 1px solid var(--chalk-3);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
}

.mp-fact__k {
  font-family: var(--display);
  font-variation-settings: "wght" 600, "wdth" 100;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-chalk-soft);
}

.mp-fact__v {
  margin-top: 0.5rem;
  font-family: var(--display);
  font-variation-settings: "wght" 700, "wdth" 112;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  line-height: 1.15;
  letter-spacing: -0.012em;
}

@media (max-width: 820px) {
  .mp-statement {
    grid-template-columns: minmax(0, 1fr);
  }
  .mp-plate--tall {
    aspect-ratio: 3 / 2;
  }
  .mp-facts {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.4rem;
  }
}

/* --- section headings --------------------------------------------------- */

.mp-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mp-h2 {
  font-family: var(--display);
  font-variation-settings: "wght" 780, "wdth" 116;
  font-size: clamp(2rem, 5.4vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.026em;
  text-transform: uppercase;
  text-wrap: balance;
}

.mp-head__note {
  max-width: 34ch;
  font-size: clamp(0.95rem, 1.35vw, 1.08rem);
  color: var(--on-ink-soft);
}

.mp-band--chalk .mp-head__note {
  color: var(--on-chalk-soft);
}

/* --- services ----------------------------------------------------------- */

.mp-svc {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 2.6vw, 2rem);
}

.mp-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(238, 235, 227, 0.14);
  transition: border-color 0.4s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mp-card:hover {
  border-color: rgba(63, 168, 140, 0.65);
  transform: translateY(-6px);
}

.mp-card__shot {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--prussian-2);
}

.mp-card__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mp-card:hover .mp-card__shot img {
  transform: scale(1.045);
}

.mp-card__body {
  padding: clamp(1.2rem, 2.2vw, 1.7rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.mp-card__icon {
  width: 28px;
  height: 28px;
  color: var(--jade);
}

.mp-card__t {
  font-family: var(--display);
  font-variation-settings: "wght" 720, "wdth" 110;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  letter-spacing: -0.014em;
}

.mp-card__d {
  color: var(--on-ink-soft);
  font-size: 0.98rem;
  line-height: 1.55;
}

.mp-strip {
  margin-top: clamp(1.2rem, 2.6vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid rgba(238, 235, 227, 0.14);
}

.mp-strip__text {
  padding: clamp(1.6rem, 3.4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
}

.mp-strip__shot {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

@media (max-width: 900px) {
  .mp-svc {
    grid-template-columns: minmax(0, 1fr);
  }
  .mp-strip {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- reviews ------------------------------------------------------------ */

.mp-reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.6rem);
}

.mp-review {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  padding-top: 1.6rem;
  border-top: 3px solid var(--prussian);
}

.mp-review:nth-child(2) {
  border-top-color: var(--jade);
}

.mp-review:nth-child(3) {
  border-top-color: var(--chalk-3);
}

.mp-review__q {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  line-height: 1.32;
  text-wrap: pretty;
}

.mp-review__a {
  font-family: var(--display);
  font-variation-settings: "wght" 640, "wdth" 104;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-chalk-soft);
  margin-top: auto;
}

@media (max-width: 900px) {
  .mp-reviews {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* --- hours, area, address ----------------------------------------------- */

.mp-visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4.5vw, 4rem);
  align-items: start;
}

.mp-panel {
  border: 1px solid rgba(238, 235, 227, 0.16);
  padding: clamp(1.5rem, 3vw, 2.4rem);
}

.mp-panel + .mp-panel {
  margin-top: clamp(1rem, 2vw, 1.5rem);
}

.mp-panel__k {
  font-family: var(--display);
  font-variation-settings: "wght" 600, "wdth" 100;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jade);
}

.mp-hours__v {
  font-family: var(--display);
  font-variation-settings: "wght" 800, "wdth" 118;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-top: 0.7rem;
}

.mp-panel__n {
  margin-top: 0.9rem;
  color: var(--on-ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

.mp-areas {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.mp-areas li {
  border: 1px solid rgba(238, 235, 227, 0.22);
  padding: 0.3rem 0.7rem;
  font-size: 0.85rem;
  color: var(--on-ink-soft);
}

.mp-addr {
  font-family: var(--display);
  font-variation-settings: "wght" 700, "wdth" 110;
  font-size: clamp(1.2rem, 2.3vw, 1.7rem);
  line-height: 1.25;
  margin-top: 0.7rem;
  letter-spacing: -0.012em;
}

@media (max-width: 900px) {
  .mp-visit {
    grid-template-columns: minmax(0, 1fr);
  }
}

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

.mp-foot {
  position: relative;
  background: var(--ink);
  color: var(--on-ink);
  padding-block: clamp(4rem, 9vw, 7rem) clamp(2rem, 4vw, 3rem);
}

.mp-foot__call {
  display: block;
  font-family: var(--display);
  font-variation-settings: "wght" 800, "wdth" 120;
  font-size: clamp(2.4rem, 9vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  color: var(--chalk);
  transition: color 0.35s ease;
  word-break: break-word;
}

/* CTA — footer. The number itself is the control: it warms to jade and the
   rule beneath it wipes across. */
.cta-number {
  position: relative;
  display: inline-block;
  padding-bottom: 0.12em;
}

.cta-number::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 5px;
  width: 100%;
  background: var(--jade);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-number:hover,
.cta-number:focus-visible {
  color: var(--jade);
}

.cta-number:hover::after,
.cta-number:focus-visible::after {
  transform: scaleX(1);
}

.mp-foot__grid {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.4rem, 3vw, 2.4rem);
  border-top: 1px solid rgba(238, 235, 227, 0.16);
  padding-top: clamp(1.6rem, 3vw, 2.4rem);
}

.mp-foot__k {
  font-family: var(--display);
  font-variation-settings: "wght" 600, "wdth" 100;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--jade);
}

.mp-foot__v {
  margin-top: 0.55rem;
  color: #cad6de;
  font-size: 0.97rem;
  line-height: 1.55;
}

/* CTA — inline link. A quiet underline that thickens. */
.cta-inline {
  border-bottom: 1px solid rgba(63, 168, 140, 0.55);
  padding-bottom: 1px;
  transition: border-bottom-width 0.2s ease, color 0.25s ease;
}

.cta-inline:hover,
.cta-inline:focus-visible {
  color: var(--jade);
  border-bottom-width: 2px;
}

.mp-foot__fine {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #7c8d99;
}

@media (max-width: 820px) {
  .mp-foot__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 460px) {
  .mp-foot__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.mp-band > .mp-shell {
  position: relative;
  z-index: 1;
}

/* --- motion policy ------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  .mp *,
  .mp *::before,
  .mp *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .mp-scrollcue::after {
    animation: none;
    opacity: 0.7;
  }
}

.mp-rail__wrap {
  height: 100%;
}

@media (max-width: 700px) {
  }

/* Any image riding a parallax layer fills that layer, whatever frame holds it. */
.mp-plate__layer,
.mp-plate picture {
  display: block;
}

.mp-plate__layer picture,
.mp-plate__layer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- the enquiry form ---------------------------------------------------- */

.mp-enq {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.mp-enq__call {
  margin-top: clamp(1.4rem, 2.6vw, 2rem);
}

.mp-enq__or {
  margin-top: clamp(1.2rem, 2.4vw, 1.8rem);
  max-width: 30ch;
  color: var(--on-ink-soft);
  font-size: 0.97rem;
  line-height: 1.55;
}

.mp-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 2.2vw, 1.6rem);
  border: 1px solid rgba(238, 235, 227, 0.16);
  padding: clamp(1.4rem, 3vw, 2.4rem);
  background: rgba(255, 255, 255, 0.03);
}

.mp-field--wide,
.mp-form__foot {
  grid-column: 1 / -1;
}

.mp-field label {
  display: block;
  font-family: var(--display);
  font-variation-settings: "wght" 600, "wdth" 100;
  font-size: 0.71rem;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--jade);
  margin-bottom: 0.55rem;
}

.mp-field label span {
  color: var(--on-ink-soft);
  letter-spacing: 0.12em;
}

/* Inputs read as masking-tape lines rather than boxes. */
.mp-field input,
.mp-field textarea,
.mp-field select {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1.5px solid rgba(238, 235, 227, 0.32);
  border-radius: 0;
  color: var(--on-ink);
  font-family: var(--body);
  font-size: 1.02rem;
  padding: 0.55rem 0 0.6rem;
  transition: border-color 0.28s ease, background-color 0.28s ease;
  -webkit-appearance: none;
  appearance: none;
}

.mp-field textarea {
  resize: vertical;
  min-height: 6.5rem;
  line-height: 1.5;
}

.mp-field input::placeholder,
.mp-field textarea::placeholder {
  color: rgba(157, 176, 189, 0.72);
}

.mp-field select {
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--jade) 50%),
    linear-gradient(135deg, var(--jade) 50%, transparent 50%);
  background-position: right 0.85rem center, right 0.45rem center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2rem;
}

.mp-field select option {
  background: var(--prussian-2);
  color: var(--on-ink);
}

.mp-field input:focus,
.mp-field textarea:focus,
.mp-field select:focus {
  outline: none;
  border-bottom-color: var(--jade);
  background: rgba(63, 168, 140, 0.08);
}

.mp-field input:focus-visible,
.mp-field textarea:focus-visible,
.mp-field select:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 3px;
}

.mp-field[data-invalid="true"] input,
.mp-field[data-invalid="true"] textarea,
.mp-field[data-invalid="true"] select {
  border-bottom-color: #e8836c;
}

.mp-field__err {
  margin-top: 0.4rem;
  font-size: 0.83rem;
  color: #f0a08c;
}

/* Never rendered to people; only bots type here. */
.mp-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.mp-form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.4rem;
  margin-top: 0.4rem;
}

/* CTA — submit. A jade slab that presses in rather than lifting, so it reads
   as a different action from the call button's shoulder slide. */
.cta-submit {
  border: 0;
  cursor: pointer;
  background: var(--jade);
  color: #04231b;
  padding: clamp(0.85rem, 1.6vw, 1.1rem) clamp(1.5rem, 2.8vw, 2.2rem);
  font-family: var(--display);
  font-variation-settings: "wght" 760, "wdth" 110;
  font-size: clamp(0.92rem, 1.4vw, 1.05rem);
  letter-spacing: 0.03em;
  transition: background-color 0.28s ease, transform 0.16s ease, opacity 0.28s ease;
}

.cta-submit:hover,
.cta-submit:focus-visible {
  background: #4cc0a1;
}

.cta-submit:active {
  transform: translateY(2px);
}

.cta-submit[disabled] {
  opacity: 0.55;
  cursor: progress;
}

.mp-form__status {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--on-ink-soft);
}

.mp-form__status[data-state="ok"] {
  color: var(--jade);
}

.mp-form__status[data-state="error"] {
  color: #f0a08c;
}

.mp-form--sent {
  border-color: rgba(63, 168, 140, 0.5);
}

@media (max-width: 900px) {
  .mp-enq {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 560px) {
  .mp-form {
    grid-template-columns: minmax(0, 1fr);
  }
}

/* Phone links are the primary conversion on this site, so every one of them
   clears the 44px minimum tap target on touch screens. */
@media (max-width: 700px) {
  .cta-mast {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding-block: 0.6rem;
  }

  .mp-foot__v .cta-inline,
  .mp-strip__text .cta-inline {
    display: inline-block;
    min-height: 44px;
    line-height: 44px;
  }
}
