@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/dm-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/playfair-display-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/playfair-display-italic-latin.woff2") format("woff2");
}

:root {
  --wine-950: #35101f;
  --wine-900: #4d132a;
  --plum-800: #6a1d4f;
  --plum-650: #8a336b;
  --rose-200: #e3b1cf;
  --blush-200: #f8d3d4;
  --blush-100: #fde9e6;
  --peach-100: #fff0e7;
  --warm-white: #fff9f7;
  --white: #ffffff;
  --ink: #2d2530;
  --muted: #6f626b;
  --line: #eadfdf;
  --success: #246747;
  --danger: #a2263f;
  --shadow-sm: 0 10px 30px rgba(77, 19, 42, 0.08);
  --shadow-md: 0 24px 60px rgba(77, 19, 42, 0.13);
  --radius-sm: 0.8rem;
  --radius-md: 1.25rem;
  --radius-lg: 2rem;
  --container: 74rem;
  --header-height: 5.25rem;
  --heading: "Playfair Display", Georgia, serif;
  --body: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--warm-white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: var(--wine-900);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--plum-800);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--plum-650);
  outline-offset: 3px;
}

.floating-whatsapp {
  position: fixed;
  right: max(1.1rem, env(safe-area-inset-right));
  bottom: max(1.1rem, env(safe-area-inset-bottom));
  z-index: 90;
  display: grid;
  width: clamp(3.65rem, 7vw, 4.75rem);
  height: clamp(3.65rem, 7vw, 4.75rem);
  place-items: center;
  border: 0.26rem solid rgba(255, 255, 255, 0.96);
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow:
    0 1rem 2.4rem rgba(37, 211, 102, 0.34),
    0 0.8rem 1.8rem rgba(53, 16, 31, 0.18);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.floating-whatsapp::before {
  position: absolute;
  inset: -0.34rem;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.18);
  content: "";
  transform: scale(0.94);
  transition: transform 180ms ease, opacity 180ms ease;
}

.floating-whatsapp svg {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  fill: currentColor;
}

.floating-whatsapp:hover {
  color: #fff;
  background: #20bd5a;
  box-shadow:
    0 1.2rem 2.8rem rgba(37, 211, 102, 0.42),
    0 1rem 2rem rgba(53, 16, 31, 0.22);
  transform: translateY(-0.18rem) scale(1.03);
}

.floating-whatsapp:hover::before {
  opacity: 0.85;
  transform: scale(1.08);
}

::selection {
  color: var(--wine-950);
  background: var(--rose-200);
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--wine-950);
  font-family: var(--heading);
  font-weight: 750;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 16ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 6.5vw, 5rem);
}

h2 {
  max-width: 19ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2rem, 4.4vw, 3.55rem);
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
}

p:last-child,
ul:last-child,
ol:last-child {
  margin-bottom: 0;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(100%, 48rem);
}

.section {
  position: relative;
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-compact {
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.section-soft {
  background:
    radial-gradient(circle at 8% 14%, rgba(248, 211, 212, 0.55), transparent 28rem),
    linear-gradient(180deg, #fffdfc, var(--peach-100));
}

.section-blush {
  background: linear-gradient(135deg, rgba(248, 211, 212, 0.58), rgba(255, 249, 247, 0.76));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--plum-800);
  font-family: var(--heading);
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 1.5rem;
  height: 2px;
  background: currentColor;
  content: "";
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.75;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  margin-bottom: clamp(2.25rem, 5vw, 4rem);
}

.section-heading p {
  max-width: 40rem;
  color: var(--muted);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  border-radius: 0.6rem;
  color: var(--white);
  background: var(--wine-900);
  font-weight: 750;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(106, 29, 79, 0.1);
  background: rgba(255, 249, 247, 0.92);
  backdrop-filter: blur(16px);
}

.header-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  min-height: 3.75rem;
  align-items: center;
  gap: 0.75rem;
  color: var(--wine-900);
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 3.6rem;
  height: 3.65rem;
  border-radius: 0.75rem;
  object-fit: cover;
}

.menu-toggle {
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  color: var(--wine-900);
  background: var(--white);
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  width: 1.35rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-icon::before {
  top: -0.4rem;
}

.menu-icon::after {
  top: 0.4rem;
}

.menu-toggle[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  width: 100%;
  padding-block: 0 1rem;
}

.site-nav ul {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  display: flex;
  min-height: 2.9rem;
  align-items: center;
  padding: 0.65rem 0.85rem;
  border-radius: 0.7rem;
  color: var(--ink);
  font-family: var(--heading);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--wine-900);
  background: var(--blush-100);
}

.js .site-nav {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  left: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  padding-inline: 1rem;
  opacity: 0;
  border-bottom: 1px solid var(--line);
  background: var(--warm-white);
  transition: max-height 240ms ease, opacity 180ms ease, visibility 180ms ease;
}

.js .site-nav[data-open="true"] {
  visibility: visible;
  max-height: 30rem;
  padding-block: 0.75rem 1.25rem;
  opacity: 1;
}

.nav-cta {
  justify-content: center;
  color: var(--white) !important;
  background: var(--wine-900) !important;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.75rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--wine-900);
  box-shadow: 0 12px 26px rgba(77, 19, 42, 0.2);
}

.btn-primary:hover {
  color: var(--white);
  background: var(--plum-800);
  box-shadow: 0 16px 30px rgba(77, 19, 42, 0.25);
}

.btn-secondary {
  color: var(--wine-900);
  border-color: rgba(77, 19, 42, 0.2);
  background: rgba(255, 255, 255, 0.78);
}

.btn-secondary:hover {
  color: var(--wine-900);
  border-color: var(--rose-200);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--heading);
  font-weight: 800;
  text-decoration: none;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(0.25rem);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(4rem, 8vw, 7rem);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(2px);
  content: "";
}

.hero::before {
  width: clamp(18rem, 48vw, 42rem);
  height: clamp(18rem, 48vw, 42rem);
  top: -14rem;
  right: -10rem;
  background: radial-gradient(circle at 35% 35%, var(--blush-200), rgba(248, 211, 212, 0.15) 65%);
}

.hero::after {
  width: 22rem;
  height: 22rem;
  bottom: -14rem;
  left: -9rem;
  background: radial-gradient(circle, rgba(227, 177, 207, 0.52), rgba(227, 177, 207, 0) 69%);
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy .lead {
  max-width: 43rem;
  margin-bottom: 2rem;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.hero-note::before {
  width: 2rem;
  height: 1px;
  background: var(--rose-200);
  content: "";
}

.hero-visual {
  position: relative;
  width: min(100%, 34rem);
  min-height: 28rem;
  margin-inline: auto;
}

.hero-orbit {
  position: absolute;
  inset: 4% 2% 8%;
  border: 1px solid rgba(106, 29, 79, 0.18);
  border-radius: 48% 52% 49% 51%;
  transform: rotate(-8deg);
}

.hero-orbit:nth-child(2) {
  inset: 14% 12% 18%;
  transform: rotate(18deg);
  border-color: rgba(77, 19, 42, 0.13);
}

.hero-center {
  position: absolute;
  inset: 17% 17% 20%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(77, 19, 42, 0.1);
  border-radius: 47% 53% 43% 57%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 211, 212, 0.88));
  box-shadow: var(--shadow-md);
}

.hero-center img {
  width: min(62%, 13rem);
  border-radius: 1.4rem;
}

.orbit-label {
  position: absolute;
  display: inline-flex;
  min-height: 2.8rem;
  align-items: center;
  padding: 0.65rem 0.95rem;
  border: 1px solid rgba(77, 19, 42, 0.09);
  border-radius: 999px;
  color: var(--wine-900);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-sm);
  font-family: var(--heading);
  font-size: clamp(0.72rem, 2.6vw, 0.88rem);
  font-weight: 800;
}

.orbit-label:nth-of-type(1) {
  top: 2%;
  left: 10%;
}

.orbit-label:nth-of-type(2) {
  top: 26%;
  right: -2%;
}

.orbit-label:nth-of-type(3) {
  right: 7%;
  bottom: 4%;
}

.orbit-label:nth-of-type(4) {
  bottom: 18%;
  left: -2%;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.trust-grid {
  display: grid;
  gap: 1rem;
  padding-block: 1.5rem;
}

.trust-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-grid strong {
  display: block;
  color: var(--wine-950);
  font-family: var(--heading);
  font-size: 1rem;
}

.split {
  display: grid;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}

.content-stack > * + * {
  margin-top: 1.15rem;
}

.content-stack .btn-row,
.content-stack .text-link {
  margin-top: 1.75rem;
}

.visual-card {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  border: 1px solid rgba(77, 19, 42, 0.1);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--blush-100), var(--white));
  box-shadow: var(--shadow-md);
}

.portrait-frame {
  position: relative;
  max-width: 35rem;
  margin-inline: auto;
}

.portrait-frame::before {
  position: absolute;
  z-index: -1;
  inset: -1.25rem 1rem 1rem -1.25rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--blush-200), var(--rose-200));
  content: "";
}

.portrait-frame img {
  width: 100%;
  max-height: 46rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center top;
}

.portrait-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: var(--radius-md);
  color: var(--wine-950);
  background: rgba(255, 249, 247, 0.9);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
  font-family: var(--heading);
  font-weight: 750;
}

.cards {
  display: grid;
  gap: 1rem;
}

.card {
  position: relative;
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 8px 26px rgba(77, 19, 42, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(106, 29, 79, 0.22);
  box-shadow: var(--shadow-sm);
}

.card p {
  color: var(--muted);
}

.card-number {
  display: inline-grid;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.15rem;
  place-items: center;
  border-radius: 0.8rem;
  color: var(--wine-900);
  background: var(--blush-100);
  font-family: var(--heading);
  font-weight: 850;
}

.icon-wrap {
  display: inline-grid;
  width: 3.1rem;
  height: 3.1rem;
  margin-bottom: 1.25rem;
  place-items: center;
  border-radius: 1rem;
  color: var(--wine-900);
  background: linear-gradient(145deg, var(--blush-100), var(--white));
}

.icon-wrap svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.service-card h3 {
  max-width: 20ch;
}

.service-card .text-link {
  margin-top: auto;
  padding-top: 1rem;
}

.feature-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 1.7rem;
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 0.52rem;
  height: 0.52rem;
  border: 2px solid var(--rose-200);
  border-radius: 50%;
  background: var(--wine-900);
  content: "";
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.industries-grid li {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  color: var(--wine-950);
  background: rgba(255, 255, 255, 0.78);
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 750;
}

.process-grid {
  position: relative;
  display: grid;
  gap: 1rem;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  border-left: 3px solid var(--rose-200);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--white);
}

.process-step span {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--plum-800);
  font-family: var(--heading);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-grid {
  display: grid;
  gap: 1rem;
}

.quote-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.quote-card blockquote {
  color: var(--wine-950);
  font-family: var(--heading);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  font-weight: 650;
  line-height: 1.65;
}

.quote-mark {
  color: var(--rose-200);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.75;
}

.quote-source {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  overflow: clip;
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 4.2rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 0;
  color: var(--wine-950);
  background: transparent;
  font-family: var(--heading);
  font-weight: 800;
  text-align: left;
}

.faq-question::after {
  display: grid;
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--wine-900);
  background: var(--blush-100);
  content: "+";
  font-size: 1.3rem;
  transition: transform 180ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
}

.js .faq-answer[hidden] {
  display: none;
}

.cta-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(77, 19, 42, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 95% 10%, rgba(227, 177, 207, 0.62), transparent 20rem),
    linear-gradient(135deg, var(--blush-100), var(--white));
  box-shadow: var(--shadow-sm);
}

.cta-panel h2 {
  max-width: 20ch;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(4.5rem, 9vw, 8rem);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 18%, rgba(227, 177, 207, 0.52), transparent 24rem),
    linear-gradient(180deg, var(--warm-white), #fff3ef);
}

.page-hero h1 {
  max-width: 17ch;
}

.page-hero .lead {
  max-width: 48rem;
  margin-bottom: 0;
}

.page-hero-grid {
  display: grid;
  gap: 2rem;
  align-items: end;
}

.page-index {
  display: none;
}

.statements-grid {
  display: grid;
  gap: 1rem;
}

.statement {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.statement p {
  color: var(--muted);
}

.service-detail {
  scroll-margin-top: calc(var(--header-height) + 1rem);
  border-bottom: 1px solid var(--line);
}

.service-detail:nth-child(even) {
  background: rgba(253, 233, 230, 0.38);
}

.service-detail-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

.service-summary {
  position: static;
}

.service-summary h2 {
  max-width: 16ch;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
}

.service-summary .icon-wrap {
  width: 4rem;
  height: 4rem;
}

.service-content {
  padding: clamp(1.5rem, 4vw, 2.6rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

.service-content h3 {
  margin-top: 2rem;
}

.contact-grid {
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.contact-intro {
  position: static;
}

.contact-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-point {
  padding: 1rem 1.1rem;
  border-left: 3px solid var(--rose-200);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.7);
}

.contact-point strong {
  display: block;
  color: var(--wine-950);
  font-family: var(--heading);
}

.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.contact-point address {
  font-style: normal;
  line-height: 1.55;
}

.contact-point > a {
  display: inline-block;
  margin-top: 0.1rem;
  color: var(--plum-800);
  font-weight: 600;
  text-decoration: none;
  word-break: break-word;
}

.contact-point > a:hover {
  text-decoration: underline;
}

.form-card {
  padding: clamp(1.35rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.form-grid {
  display: grid;
  gap: 1.2rem;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label,
.fieldset-label {
  color: var(--wine-950);
  font-family: var(--heading);
  font-size: 0.9rem;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.72rem 0.85rem;
  border: 1px solid #cfc1c7;
  border-radius: 0.7rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--plum-650);
  box-shadow: 0 0 0 4px rgba(138, 51, 107, 0.12);
  outline: none;
}

.field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(162, 38, 63, 0.11);
}

.field-error {
  min-height: 1.25rem;
  margin: 0;
  color: var(--danger);
  font-size: 0.82rem;
  font-weight: 650;
}

.consent {
  display: grid;
  grid-template-columns: 2.75rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
}

.consent input {
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  accent-color: var(--wine-900);
}

.consent label {
  color: var(--muted);
  font-size: 0.86rem;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 0.7rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  display: block;
  color: var(--success);
  border: 1px solid rgba(36, 103, 71, 0.25);
  background: rgba(36, 103, 71, 0.08);
}

.form-status[data-state="error"] {
  display: block;
  color: var(--danger);
  border: 1px solid rgba(162, 38, 63, 0.22);
  background: rgba(162, 38, 63, 0.07);
}

.btn[aria-busy="true"] {
  opacity: 0.7;
  pointer-events: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 10%, rgba(248, 211, 212, 0.5), transparent 20rem),
    #fff3ef;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}

.footer-about {
  max-width: 33rem;
}

.footer-about .brand {
  margin-bottom: 1.15rem;
}

.footer-about p,
.footer-column a {
  color: var(--muted);
}

.footer-column h2 {
  margin-bottom: 1rem;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column ul {
  display: grid;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-column a {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(77, 19, 42, 0.1);
  color: var(--muted);
  font-size: 0.8rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float-shape {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(0, -0.65rem, 0) rotate(-5deg); }
}

.hero-orbit:first-child {
  animation: float-shape 8s ease-in-out infinite;
}

@media (min-width: 38rem) {
  .container {
    width: min(100% - 3rem, var(--container));
  }

  .trust-grid,
  .cards-2,
  .statements-grid,
  .form-grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industries-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 2fr) minmax(9rem, 1fr) minmax(11rem, 1fr);
  }
}

@media (min-width: 52rem) {
  :root {
    --header-height: 5.75rem;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav {
    position: static;
    visibility: visible;
    width: auto;
    max-height: none;
    overflow: visible;
    padding: 0;
    opacity: 1;
    border: 0;
    background: transparent;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-nav a {
    min-height: 2.75rem;
    padding-inline: 0.8rem;
  }

  .nav-cta {
    margin-left: 0.45rem;
    padding-inline: 1.05rem !important;
    border-radius: 999px !important;
  }

  .section-heading {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
  }

  .hero-grid,
  .split,
  .page-hero-grid,
  .service-detail-grid,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid {
    gap: clamp(3rem, 6vw, 6rem);
  }

  .service-summary,
  .contact-intro {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
  }

  .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .cards-3,
  .process-grid,
  .quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .industries-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-index {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
  }

  .page-index a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    padding: 0.55rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    font-weight: 750;
    text-decoration: none;
  }

  .page-index a:hover {
    color: var(--wine-900);
    border-color: var(--rose-200);
  }
}

@media (min-width: 68rem) {
  .cards-5 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .cards-5 .card:nth-child(-n + 3) {
    grid-column: span 2;
  }

  .cards-5 .card:nth-child(n + 4) {
    grid-column: span 3;
  }

  .quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: minmax(0, 2.1fr) minmax(10rem, 0.8fr) minmax(13rem, 1fr);
  }
}

@media (max-width: 23rem) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .brand span {
    display: none;
  }

  .btn-row .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }
}

/* Editorial redesign inspired by the approved reference direction */
:root {
  --wine-950: #321326;
  --wine-900: #4d132a;
  --plum-800: #79204f;
  --plum-650: #aa2d65;
  --rose-200: #e7b7cd;
  --blush-200: #f4ccd4;
  --blush-100: #fbe7e6;
  --peach-100: #fff1e9;
  --warm-white: #fffaf6;
  --white: #ffffff;
  --ink: #33283a;
  --muted: #746a74;
  --line: #eadfdf;
  --shadow-sm: 0 14px 38px rgba(77, 19, 42, 0.07);
  --shadow-md: 0 30px 75px rgba(77, 19, 42, 0.11);
  --radius-sm: 0.65rem;
  --radius-md: 1.1rem;
  --radius-lg: 1.75rem;
  --container: 76rem;
  --header-height: 5.5rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

body {
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(248, 211, 212, 0.24), transparent 28rem),
    var(--warm-white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.68;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 500;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.9rem, 6vw, 4.95rem);
  line-height: 1.02;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1.1rem;
  font-size: clamp(2.15rem, 4.3vw, 3.55rem);
  line-height: 1.08;
}

h3 {
  font-family: var(--body);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

h1 em,
h2 em {
  color: var(--plum-650);
  font-weight: 500;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
  line-height: 1.65;
}

.container {
  width: min(100% - 2rem, var(--container));
}

.section {
  padding-block: clamp(2.05rem, 3.8vw, 3.3rem);
}

.section-compact {
  padding-block: clamp(1.6rem, 2.95vw, 2.4rem);
}

.section-soft {
  background:
    linear-gradient(135deg, rgba(255, 250, 246, 0.93), rgba(251, 231, 230, 0.56)),
    var(--warm-white);
}

.section-blush {
  background: linear-gradient(128deg, rgba(248, 224, 224, 0.75), rgba(255, 250, 246, 0.95));
}

.eyebrow {
  gap: 0.65rem;
  margin-bottom: 1.15rem;
  color: var(--plum-800);
  font-family: var(--body);
  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.17em;
}

.eyebrow::before {
  width: 1.35rem;
  height: 1px;
}

.site-header {
  border-bottom-color: rgba(77, 19, 42, 0.08);
  background: rgba(255, 250, 246, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
}

.brand {
  gap: 0.65rem;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 650;
}

.brand img {
  width: 3.35rem;
  height: 3.4rem;
  border-radius: 0.9rem;
}

.site-nav a {
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--wine-900);
  background: transparent;
}

.site-nav a[aria-current="page"] {
  box-shadow: inset 0 -1px 0 var(--plum-650);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--wine-900) !important;
  box-shadow: 0 12px 26px rgba(77, 19, 42, 0.13);
}

.btn {
  min-height: 3.15rem;
  padding-inline: 1.3rem;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease, background 220ms ease, color 220ms ease;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--plum-650), var(--wine-900));
  box-shadow: 0 14px 32px rgba(121, 32, 79, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #bd356f, var(--plum-800));
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.68);
}

.text-link {
  font-family: var(--body);
  font-weight: 600;
}

.hero {
  min-height: auto;
  padding-block: clamp(4rem, 7vw, 6.75rem);
  background:
    radial-gradient(circle at 88% 18%, rgba(244, 204, 212, 0.46), transparent 28rem),
    linear-gradient(180deg, #fffaf7, #fff7f2);
}

.hero::before,
.hero::after,
.hero-orbit,
.hero-center,
.orbit-label {
  display: none;
}

.hero-grid {
  gap: clamp(2.5rem, 6vw, 5.5rem);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy .lead {
  max-width: 38rem;
  margin-bottom: 1.85rem;
}

.hero-note {
  margin-top: 1.3rem;
  font-size: 0.82rem;
  font-weight: 500;
}

.hero-photo,
.page-hero-photo {
  position: relative;
  min-width: 0;
  margin: 0;
}

.photo-arch {
  position: relative;
  min-height: 30.5rem;
  overflow: hidden;
  border: 0.45rem solid rgba(255, 255, 255, 0.82);
  border-radius: 18rem 18rem 2rem 2rem;
  box-shadow: var(--shadow-md);
}

.photo-arch::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(50, 19, 38, 0.18));
  content: "";
}

.photo-arch img {
  width: 100%;
  height: 100%;
  min-height: 30.5rem;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms var(--ease-out);
}

.home-hero-photo .photo-arch img {
  object-position: 52% center;
}

.hero-photo:hover .photo-arch img {
  transform: scale(1.025);
}

.hero-photo figcaption,
.page-hero-photo figcaption {
  position: absolute;
  right: 1.4rem;
  bottom: 1.35rem;
  left: 1.4rem;
  z-index: 2;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 0.85rem;
  color: var(--white);
  background: rgba(50, 19, 38, 0.52);
  backdrop-filter: blur(10px);
  font-size: 0.78rem;
}

.hero-photo figcaption span {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  font-weight: 500;
}

.spark {
  position: absolute;
  z-index: 3;
  width: 1rem;
  height: 1rem;
  transform: rotate(45deg);
  border: 1px solid var(--plum-650);
  background: var(--warm-white);
  box-shadow: 0 0 0 0.35rem rgba(255, 250, 246, 0.65);
}

.spark::after {
  position: absolute;
  inset: 0.25rem;
  background: var(--plum-650);
  content: "";
}

.spark-one {
  top: 12%;
  left: -0.2rem;
}

.spark-two {
  right: -0.15rem;
  bottom: 20%;
}

.service-ribbon {
  overflow: hidden;
  padding-inline: clamp(1.25rem, 4vw, 4rem);
  border-block: 1px solid rgba(77, 19, 42, 0.09);
  background: var(--wine-900);
}

.service-ribbon-track {
  display: flex;
  width: max-content;
  align-items: center;
  padding-block: 0.95rem;
  color: rgba(255, 255, 255, 0.94);
  animation: service-ribbon-scroll 34s linear infinite;
  will-change: transform;
}

.service-ribbon:hover .service-ribbon-track,
.service-ribbon:focus-within .service-ribbon-track {
  animation-play-state: paused;
}

.service-ribbon-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.35rem);
  padding-right: clamp(1.2rem, 3vw, 2.35rem);
}

@keyframes service-ribbon-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-ribbon-track {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-ribbon-group:last-child {
    display: none;
  }
}

.service-ribbon span {
  flex: 0 0 auto;
  font-family: var(--heading);
  font-size: clamp(0.96rem, 1.15vw, 1.08rem);
  font-style: italic;
  line-height: 1;
  white-space: nowrap;
}

.service-ribbon i {
  flex: 0 0 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  transform: rotate(45deg);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.trust-strip {
  background: rgba(255, 255, 255, 0.68);
}

.trust-grid {
  padding-block: 1.35rem;
}

.trust-grid p {
  position: relative;
  padding-left: 1rem;
  font-size: 0.82rem;
}

.trust-grid p::before {
  position: absolute;
  top: 0.5rem;
  bottom: 0.5rem;
  left: 0;
  width: 1px;
  background: var(--rose-200);
  content: "";
}

.trust-grid strong {
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-heading p,
.card p,
.process-step p,
.content-stack p {
  color: var(--muted);
}

.portrait-frame::before {
  inset: -1rem 1.2rem 1.1rem -1rem;
  border-radius: 16rem 16rem 1.5rem 1.5rem;
  background: linear-gradient(150deg, var(--blush-200), rgba(227, 177, 207, 0.48));
}

.portrait-frame img {
  max-height: 42rem;
  border-radius: 16rem 16rem 1.5rem 1.5rem;
}

.portrait-frame-landscape::before {
  border-radius: 1.5rem;
}

.portrait-frame-landscape img {
  aspect-ratio: 4 / 3;
  max-height: 34rem;
  border-radius: 1.5rem;
  object-fit: cover;
  object-position: center;
}

.portrait-caption {
  right: 1.1rem;
  bottom: 1.1rem;
  left: 1.1rem;
  padding: 0.8rem 1rem;
  font-family: var(--heading);
  font-size: 0.94rem;
  font-style: italic;
  font-weight: 400;
}

.card {
  padding: clamp(1.35rem, 2.6vw, 1.9rem);
  border-color: rgba(77, 19, 42, 0.1);
  border-radius: 1.1rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: none;
}

.card:hover {
  transform: translateY(-0.4rem);
  border-color: rgba(170, 45, 101, 0.28);
  box-shadow: var(--shadow-sm);
}

.icon-wrap {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.15rem;
  border: 1px solid rgba(121, 32, 79, 0.14);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(251, 231, 230, 0.9), var(--white));
}

.icon-wrap.mini {
  width: 3rem;
  height: 3rem;
}

.icon-wrap svg {
  width: 1.45rem;
  height: 1.45rem;
  stroke-width: 1.5;
}

.service-card h3 {
  max-width: 16ch;
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 500;
}

.service-card .text-link {
  font-size: 0.86rem;
}

.service-card {
  --service-art: none;
  --service-glow: rgba(251, 231, 230, 0.74);
  isolation: isolate;
  overflow: hidden;
  min-height: 24rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), var(--service-glow));
}

.service-card::before,
.service-card::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.service-card::before {
  z-index: -2;
  right: -8%;
  bottom: -10%;
  width: min(74%, 22rem);
  aspect-ratio: 1;
  background-image: var(--service-art);
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.48;
  filter: saturate(0.9);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: right bottom;
  transition: opacity 240ms var(--ease-out), transform 300ms var(--ease-out);
}

.service-card::after {
  z-index: -1;
  inset: 0;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.94) 43%, rgba(255, 255, 255, 0.35) 72%, rgba(255, 255, 255, 0.03) 100%);
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover::before {
  opacity: 0.56;
  transform: translate3d(-0.35rem, -0.2rem, 0) scale(1.025);
}

.service-card-engagement {
  --service-art: url("../images/service-bg-engagement.webp");
  --service-glow: rgba(248, 211, 212, 0.7);
}

.service-card-wellbeing {
  --service-art: url("../images/service-bg-wellbeing.webp");
  --service-glow: rgba(227, 177, 207, 0.4);
}

.service-card-leadership {
  --service-art: url("../images/service-bg-leadership.webp");
  --service-glow: rgba(218, 197, 231, 0.46);
}

.service-card-offsite {
  --service-art: url("../images/service-bg-offsite.webp");
  --service-glow: rgba(248, 211, 212, 0.48);
}

.service-card-mental {
  --service-art: url("../images/service-bg-mental-wellness.webp");
  --service-glow: rgba(255, 224, 203, 0.58);
}

@media (min-width: 68rem) {
  .cards-5 .service-card:nth-child(-n + 3) {
    min-height: 29rem;
  }

  .cards-5 .service-card:nth-child(n + 4) {
    min-height: 23rem;
  }

  .cards-5 .service-card:nth-child(n + 4)::before {
    right: -2%;
    bottom: -24%;
    width: min(58%, 26rem);
  }

  .cards-5 .service-card:nth-child(n + 4) p {
    max-width: 30rem;
  }
}

@media (max-width: 37.99rem) {
  .service-card {
    min-height: 25rem;
  }

  .service-card::before {
    right: -12%;
    bottom: -9%;
    width: 82%;
    opacity: 0.38;
  }

  .service-card::after {
    background: linear-gradient(125deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.2) 100%);
  }
}

.card-number {
  border: 1px solid rgba(121, 32, 79, 0.12);
  border-radius: 50%;
  background: transparent;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
}

.visual-story {
  background: #fff8f4;
}

.visual-story-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.story-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
  transition: transform 650ms var(--ease-out);
}

.story-photo:hover img {
  transform: scale(1.035);
}

.story-photo figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.65rem;
  color: var(--white);
  background: rgba(50, 19, 38, 0.55);
  backdrop-filter: blur(8px);
  font-size: 0.78rem;
}

.visual-story-copy {
  max-width: 31rem;
  padding: clamp(1rem, 3vw, 2.5rem);
}

.visual-story-copy h2 {
  max-width: 12ch;
}

.industries-grid li {
  min-height: 3.25rem;
  border-color: rgba(77, 19, 42, 0.09);
  background: rgba(255, 255, 255, 0.62);
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 500;
}

.process-step {
  border-left-width: 1px;
  border-radius: 0;
  background: transparent;
}

.process-step span {
  font-family: var(--body);
  font-weight: 600;
}

.quote-card blockquote {
  font-family: var(--heading);
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  font-weight: 400;
  line-height: 1.65;
}

.quote-mark {
  color: var(--plum-650);
  opacity: 0.45;
}

.faq-list {
  gap: 0;
  border-top: 1px solid var(--line);
}

.faq-item {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.faq-question {
  min-height: 4rem;
  padding: 1rem 0.25rem;
  color: var(--ink);
  font-family: var(--body);
  font-size: 0.98rem;
  font-weight: 500;
  line-height: 1.45;
}

.faq-question::after {
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(121, 32, 79, 0.15);
  background: rgba(255, 255, 255, 0.58);
  font-size: 1.08rem;
  font-weight: 400;
}

.faq-answer {
  padding: 0 3.25rem 1.25rem 0.25rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.cta-panel {
  padding: clamp(2rem, 5.5vw, 4.2rem);
  border-color: rgba(77, 19, 42, 0.09);
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(231, 183, 205, 0.64), transparent 18rem),
    linear-gradient(135deg, #fff3ee, #fffaf7);
}

.cta-panel h2 {
  max-width: 15ch;
}

.page-hero {
  padding-block: clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(circle at 88% 10%, rgba(244, 204, 212, 0.44), transparent 28rem),
    linear-gradient(180deg, #fffaf7, #fff5f0);
}

.page-hero-grid {
  align-items: center;
}

.page-hero h1 {
  max-width: 11ch;
}

.page-hero .lead {
  max-width: 36rem;
}

.page-hero-photo {
  height: 30.5rem;
  overflow: visible;
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  border: 0.4rem solid rgba(255, 255, 255, 0.82);
  border-radius: 16rem 16rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  object-position: center top;
}

.about-hero-portrait img {
  object-position: center 46%;
}

.page-hero-photo-wide {
  height: 30.5rem;
}

.page-hero-photo-wide img {
  border-radius: 14rem 14rem 1.5rem 1.5rem;
  object-position: center;
}

.services-hero-photo img {
  object-position: 50% 48%;
}

.contact-hero-photo img {
  object-position: 54% center;
}

.page-index {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.page-index a {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 500;
}

.statements-grid {
  align-items: stretch;
}

.statement {
  border: 1px solid rgba(77, 19, 42, 0.08);
  box-shadow: none;
}

.service-detail {
  border-bottom-color: rgba(77, 19, 42, 0.09);
}

.service-detail:nth-child(even) {
  background: rgba(251, 231, 230, 0.28);
}

.service-summary h2 {
  max-width: 10ch;
  font-size: clamp(2.15rem, 3.7vw, 3.3rem);
}

.service-full-name {
  max-width: 30rem;
  margin-bottom: 0.7rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.5;
}

.service-content {
  border-color: rgba(77, 19, 42, 0.09);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
}

.photo-cta-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.photo-cta-grid > div {
  padding: clamp(1rem, 4vw, 3rem);
}

.photo-cta-grid img {
  width: 100%;
  height: 100%;
  min-height: 23rem;
  border-radius: 12rem 12rem 1rem 1rem;
  object-fit: cover;
}

.contact-intro h2 {
  max-width: 11ch;
}

.contact-point {
  border-left-width: 1px;
  background: rgba(255, 255, 255, 0.54);
}

.contact-point strong,
.field label,
.fieldset-label {
  font-family: var(--body);
  font-weight: 600;
}

.form-card {
  border-color: rgba(77, 19, 42, 0.09);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
}

.site-footer {
  background:
    radial-gradient(circle at 15% 10%, rgba(248, 211, 212, 0.36), transparent 22rem),
    #fff3ee;
}

.footer-column h2 {
  font-family: var(--body);
  font-size: 0.74rem;
  font-weight: 600;
}

.footer-column a {
  font-size: 0.86rem;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(2rem) scale(0.99);
  transition: opacity 480ms var(--ease-out), transform 480ms var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .hero-copy.reveal.is-visible h1 {
  animation: hero-title-in 720ms var(--ease-out) both;
}

.js .hero-photo.reveal.is-visible .photo-arch,
.js .page-hero-photo.reveal.is-visible img {
  animation: photo-reveal 820ms var(--ease-out) both;
}

@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(1.5rem); }
  to { opacity: 1; transform: none; }
}

@keyframes photo-reveal {
  from { opacity: 0; clip-path: inset(100% 0 0 round 16rem 16rem 1.5rem 1.5rem); transform: scale(0.97); }
  to { opacity: 1; clip-path: inset(0 0 0 round 16rem 16rem 1.5rem 1.5rem); transform: scale(1); }
}

@keyframes sparkle-pulse {
  0%, 100% { transform: rotate(45deg) scale(1); opacity: 0.72; }
  50% { transform: rotate(45deg) scale(1.18); opacity: 1; }
}

.spark {
  animation: sparkle-pulse 3.8s ease-in-out infinite;
}

@media (min-width: 38rem) {
  .container {
    width: min(100% - 3rem, var(--container));
  }
}

@media (min-width: 52rem) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }

  .page-hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: clamp(3rem, 7vw, 6rem);
  }

  .visual-story-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    grid-template-rows: auto auto;
  }

  .story-photo-large {
    grid-row: 1 / span 2;
    height: 42rem;
  }

  .story-photo-small {
    height: 20rem;
  }

  .photo-cta-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  }
}

@media (max-width: 51.99rem) {
  .photo-arch {
    min-height: 25.5rem;
    border-radius: 13rem 13rem 1.5rem 1.5rem;
  }

  .photo-arch img {
    min-height: 25.5rem;
  }

  .page-hero-photo {
    height: 25.5rem;
  }

  .home-hero-photo .photo-arch img {
    object-position: 60% center;
  }

  .about-hero-portrait img {
    object-position: center 43%;
  }

  .services-hero-photo img {
    object-position: 50% center;
  }

  .contact-hero-photo img {
    object-position: 56% center;
  }

  .site-nav a[aria-current="page"] {
    box-shadow: none;
    background: var(--blush-100);
  }
}

@media (max-width: 37.99rem) {
  h1 {
    font-size: clamp(2.75rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(2.05rem, 9.5vw, 2.75rem);
  }

  .hero {
    padding-top: 3.75rem;
  }

  .hero-photo figcaption,
  .page-hero-photo figcaption {
    right: 0.85rem;
    bottom: 0.85rem;
    left: 0.85rem;
  }

  .story-photo img,
  .photo-cta-grid img {
    min-height: 18rem;
  }

  .page-hero-photo,
  .page-hero-photo-wide {
    height: 25.5rem;
  }

  .page-hero-photo img,
  .page-hero-photo-wide img {
    border-radius: 12rem 12rem 1.25rem 1.25rem;
  }

  .faq-question {
    font-size: 0.94rem;
  }

  .faq-answer {
    padding-right: 0.25rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .trust-grid p {
    padding: 0.85rem 0.85rem 0.9rem 1rem;
    border: 1px solid rgba(77, 19, 42, 0.07);
    border-radius: 0.9rem;
    background: rgba(255, 255, 255, 0.78);
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .trust-grid p::before {
    top: 0.85rem;
    bottom: 0.85rem;
    left: 0.4rem;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--plum-650), var(--rose-200));
  }

  .trust-grid strong {
    margin-bottom: 0.15rem;
    font-size: 0.86rem;
  }

  .service-ribbon-track {
    animation-duration: 22s;
  }

  .service-ribbon span {
    font-size: 0.9rem;
  }
}

/* Violet Vibes journey timeline */
.journey-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(77, 19, 42, 0.07);
  background:
    radial-gradient(circle at 92% 14%, rgba(227, 177, 207, 0.24), transparent 24rem),
    radial-gradient(circle at 8% 88%, rgba(245, 214, 209, 0.32), transparent 22rem),
    var(--warm-white);
}

.journey-section::after {
  position: absolute;
  right: -9rem;
  bottom: -11rem;
  width: 29rem;
  height: 29rem;
  border: 1px solid rgba(172, 45, 100, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(172, 45, 100, 0.025), 0 0 0 7rem rgba(172, 45, 100, 0.018);
  content: "";
  pointer-events: none;
}

.journey-timeline {
  position: relative;
  z-index: 1;
  min-height: 34rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  padding: 1rem 0 0;
}

.journey-list {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 32rem;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  list-style: none;
}

.journey-track {
  position: absolute;
  z-index: 1;
  inset: 0 0 auto;
  height: 12rem;
  pointer-events: none;
}

.journey-path {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.journey-path path {
  fill: none;
  opacity: 0;
  stroke: url("#journey-gradient");
  stroke-linecap: round;
  stroke-width: 7;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0.35rem 0.5rem rgba(132, 35, 78, 0.13));
  transition: opacity 300ms var(--ease-out);
}

.journey-timeline.is-visible .journey-path path {
  opacity: 1;
}

.journey-step {
  position: relative;
  min-width: 0;
  padding: calc(var(--node-y) + 6.25rem) clamp(0.65rem, 1.25vw, 1.15rem) 0;
  opacity: 0;
  transform: translateY(0.85rem);
  transition: opacity 280ms var(--ease-out), transform 280ms var(--ease-out);
  transition-delay: calc(110ms + (var(--step) * 45ms));
}

.journey-timeline.is-visible .journey-step {
  opacity: 1;
  transform: none;
}

.journey-step::before {
  position: absolute;
  top: calc(var(--node-y) + 3.6rem);
  left: 50%;
  height: 2.15rem;
  border-left: 1px dashed rgba(77, 19, 42, 0.34);
  content: "";
}

.journey-node {
  position: absolute;
  z-index: 3;
  top: var(--node-y);
  left: 50%;
  display: grid;
  width: 3.6rem;
  height: 3.6rem;
  border: 0.28rem solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blush-100), var(--rose-200));
  box-shadow: 0 0.7rem 2rem rgba(94, 24, 56, 0.16), 0 0 0 2px rgba(172, 45, 100, 0.12);
  transform: translateX(-50%);
  place-items: center;
}

.journey-node .icon-wrap {
  display: grid;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  align-self: center;
  justify-self: center;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  line-height: 0;
}

.journey-node svg {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0;
}

.journey-step article {
  position: relative;
  padding-top: 1rem;
  border-top: 1px solid rgba(77, 19, 42, 0.12);
}

.journey-number {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(77, 19, 42, 0.2);
  font-family: var(--heading);
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  font-variant-numeric: lining-nums;
  line-height: 1;
}

.journey-tag {
  margin: 0 0 0.65rem;
  color: var(--plum-800);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.journey-step h3 {
  margin-bottom: 0.65rem;
  font-family: var(--heading);
  font-size: clamp(1.35rem, 1.7vw, 1.65rem);
  font-weight: 500;
  line-height: 1.08;
}

.journey-step article > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

@media (max-width: 69.99rem) {
  .journey-timeline,
  .journey-list {
    min-height: 0;
  }

  .journey-timeline {
    max-width: 46rem;
    margin-inline: auto;
    padding-top: 0.5rem;
  }

  .journey-track {
    display: none;
  }

  .journey-list {
    display: block;
  }

  .journey-step {
    display: grid;
    min-height: 0;
    padding: 0 0 2.5rem;
    grid-template-columns: 4.75rem minmax(0, 1fr);
  }

  .journey-step::before {
    top: 3.6rem;
    bottom: 0;
    left: 1.78rem;
    width: 0.28rem;
    height: auto;
    border: 0;
    border-radius: 99rem;
    background: linear-gradient(var(--plum-650), rgba(227, 177, 207, 0.5));
  }

  .journey-step:last-child::before {
    display: none;
  }

  .journey-node {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1;
    grid-row: 1;
    transform: none;
  }

  .journey-step article {
    grid-column: 2;
    grid-row: 1;
  }

  .journey-number {
    font-size: 2.25rem;
  }

  .journey-step h3 {
    font-size: clamp(1.5rem, 4vw, 1.9rem);
  }

  .journey-step article > p:last-child {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .journey-path path,
  .journey-timeline.is-visible .journey-path path {
    opacity: 1;
  }

  .journey-step,
  .journey-timeline.is-visible .journey-step {
    opacity: 1;
    transform: none;
  }
}

/* Refined industry tiles — scoped to the grid only */
.industries-grid .industry-tile {
  --tile-accent: #a92d67;
  --tile-soft: rgba(244, 204, 212, 0.58);
  position: relative;
  display: flex;
  min-height: 9rem;
  overflow: hidden;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 1rem;
  border: 1px solid rgba(77, 19, 42, 0.085);
  border-radius: 1.05rem;
  color: var(--wine-950);
  background: #fff;
  box-shadow: inset 0 -2px 0 var(--tile-soft), 0 0.65rem 1.6rem rgba(91, 31, 57, 0.045);
  isolation: isolate;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms var(--ease-out);
}

.industries-grid .industry-tile:nth-child(4n + 2) {
  --tile-accent: #8a3674;
  --tile-soft: rgba(221, 190, 224, 0.58);
}

.industries-grid .industry-tile:nth-child(4n + 3) {
  --tile-accent: #c04a6b;
  --tile-soft: rgba(248, 204, 207, 0.64);
}

.industries-grid .industry-tile:nth-child(4n) {
  --tile-accent: #7b3155;
  --tile-soft: rgba(226, 188, 204, 0.58);
}

.industries-grid .industry-tile::after {
  content: none;
}

.industry-tile-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  border: 1px solid rgba(169, 45, 103, 0.08);
  border-radius: 50%;
  color: var(--tile-accent);
  background: linear-gradient(145deg, rgba(251, 231, 230, 0.9), rgba(255, 255, 255, 0.78));
  box-shadow: 0 0.35rem 1rem rgba(132, 35, 78, 0.07);
  place-items: center;
  transition: color 200ms ease, background 200ms ease, transform 200ms var(--ease-out);
}

.industry-tile-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.industry-tile > span:last-child {
  position: relative;
  z-index: 1;
  max-width: 12rem;
  font-size: clamp(0.78rem, 1.1vw, 0.9rem);
  font-weight: 650;
  line-height: 1.35;
}

@media (hover: hover) and (pointer: fine) {
  .industries-grid .industry-tile:hover {
    border-color: color-mix(in srgb, var(--tile-accent) 24%, transparent);
    box-shadow: inset 0 -3px 0 var(--tile-soft), 0 0.95rem 2.1rem rgba(91, 31, 57, 0.1);
    transform: translateY(-0.2rem);
  }

  .industries-grid .industry-tile:hover .industry-tile-icon {
    color: #fff;
    background: var(--tile-accent);
    transform: rotate(-3deg) scale(1.04);
  }
}

@media (max-width: 47.99rem) {
  .industries-grid .industry-tile {
    min-height: 8.2rem;
    padding: 0.9rem;
  }

  .industry-tile-icon {
    width: 2.7rem;
    height: 2.7rem;
  }

  .industry-tile-icon svg {
    width: 1.3rem;
    height: 1.3rem;
  }
}

/* Testimonial attributions */
.quote-attribution {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(77, 19, 42, 0.09);
}

.quote-avatar {
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 auto;
  border: 1px solid rgba(169, 45, 103, 0.1);
  border-radius: 50%;
  color: var(--plum-800);
  background: linear-gradient(145deg, var(--blush-100), rgba(255, 255, 255, 0.92));
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  place-items: center;
}

.quote-attribution p {
  display: grid;
  gap: 0.12rem;
  margin: 0;
}

.quote-attribution strong {
  color: var(--wine-950);
  font-family: var(--heading);
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.3;
}

.quote-attribution p span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 550;
  line-height: 1.4;
}

/* Testimonial slider */
.testimonial-slider {
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-block: 0.25rem 0.75rem;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-track:focus-visible {
  outline: 2px solid var(--plum-650);
  outline-offset: 4px;
  border-radius: 1rem;
}

.testimonial-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.6rem;
}

.testimonial-arrow {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--wine-900);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  place-items: center;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.testimonial-arrow:hover {
  color: var(--plum-800);
  border-color: var(--rose-200);
  background: #fff;
  transform: translateY(-1px);
}

.testimonial-arrow:disabled {
  opacity: 0.35;
  cursor: default;
  transform: none;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.testimonial-dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--rose-200);
  opacity: 0.45;
  cursor: pointer;
  transition: width 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.testimonial-dot[aria-current="true"] {
  width: 1.4rem;
  background: var(--plum-650);
  opacity: 1;
}

@media (min-width: 38rem) {
  .testimonial-slide {
    flex-basis: calc((100% - 1rem) / 2);
  }
}

@media (min-width: 68rem) {
  .testimonial-slide {
    flex-basis: calc((100% - 2rem) / 3);
  }
}

/* Editorial closing footer */
.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0;
  color: #fff8f7;
  background:
    radial-gradient(circle at 9% 15%, rgba(214, 100, 143, 0.24), transparent 24rem),
    radial-gradient(circle at 91% 75%, rgba(226, 177, 207, 0.12), transparent 28rem),
    linear-gradient(135deg, #2c0f22 0%, #4d132a 48%, #321326 100%);
}

.site-footer::after {
  position: absolute;
  z-index: -1;
  right: -12rem;
  bottom: -18rem;
  width: 36rem;
  height: 36rem;
  border: 1px solid rgba(255, 237, 241, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 4rem rgba(255, 237, 241, 0.025), 0 0 0 9rem rgba(255, 237, 241, 0.016);
  content: "";
  pointer-events: none;
}

.footer-main {
  display: grid;
  gap: 2.5rem 2rem;
  padding-block: clamp(3rem, 6vw, 5rem);
}

.site-footer .footer-about {
  max-width: 30rem;
}

.site-footer .footer-about .brand {
  width: fit-content;
  margin-bottom: 1.2rem;
  color: #fff;
}

.site-footer .brand img {
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0.65rem 1.5rem rgba(15, 2, 9, 0.18);
}

.site-footer .footer-about p,
.site-footer .footer-column p {
  max-width: 28rem;
  margin: 0;
  color: rgba(255, 244, 246, 0.65);
  font-size: 0.84rem;
  line-height: 1.75;
}

.footer-commitments {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.4rem;
}

.footer-commitments span {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(255, 238, 242, 0.13);
  border-radius: 999px;
  color: rgba(255, 246, 247, 0.76);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.site-footer .footer-column h2 {
  margin-bottom: 1rem;
  color: #efb6cb;
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.site-footer .footer-column ul {
  gap: 0.18rem;
}

.site-footer .footer-column a {
  min-height: 2.75rem;
  color: rgba(255, 247, 248, 0.72);
  font-size: 0.82rem;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms var(--ease-out);
}

.site-footer .footer-column a:hover {
  color: #fff;
  transform: translateX(0.18rem);
}

.footer-start {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(255, 237, 241, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.045);
}

.footer-start-number {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  color: rgba(255, 235, 240, 0.16);
  font-family: var(--heading);
  font-size: 2.2rem;
  line-height: 1;
}

.site-footer .footer-start h2 {
  margin-bottom: 0.8rem;
}

.footer-action {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(239, 159, 189, 0.42);
  color: #fff6f7 !important;
  font-weight: 650 !important;
  text-decoration: none;
}

.footer-action span {
  color: #ef9fbd;
}

.site-footer .footer-bottom {
  align-items: center;
  padding-block: 1.35rem;
  border-top: 1px solid rgba(255, 241, 244, 0.12);
  color: rgba(255, 244, 246, 0.7);
  font-size: 0.75rem;
}

.footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.2rem;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: rgba(255, 248, 249, 0.78);
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #fff;
}

@media (min-width: 48rem) {
  .footer-main {
    grid-template-columns: minmax(0, 1.4fr) minmax(8rem, 0.62fr) minmax(10rem, 0.9fr);
  }

  .footer-start {
    grid-column: 2 / -1;
  }
}

@media (min-width: 68rem) {
  .footer-main {
    grid-template-columns: minmax(0, 1.45fr) minmax(8rem, 0.6fr) minmax(11rem, 0.9fr) minmax(12rem, 1fr);
  }

  .footer-start {
    grid-column: auto;
  }
}

@media (max-width: 35.99rem) {
  .footer-main {
    gap: 2.25rem;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* Services catalogue redesign */
.services-catalog {
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 12%, rgba(227, 177, 207, 0.2), transparent 25rem),
    linear-gradient(180deg, #fffdfb 0%, #fff8f5 48%, #fffdfb 100%);
}

.services-catalog-intro,
.services-process-heading {
  display: grid;
  gap: 1.25rem 3rem;
  align-items: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.services-catalog-intro h2,
.services-process-heading h2 {
  max-width: 15ch;
  margin-bottom: 0;
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
}

.services-catalog-intro > p,
.services-process-heading > p {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.service-showcase-list {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.service-showcase {
  --service-accent: #8f315f;
  --service-accent-rgb: 143, 49, 95;
  --service-surface: #fff0f1;
  position: relative;
  display: grid;
  scroll-margin-top: calc(var(--header-height) + 1.25rem);
  overflow: hidden;
  border: 1px solid rgba(77, 19, 42, 0.1);
  border-radius: clamp(1.25rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 1.2rem 3.5rem rgba(77, 19, 42, 0.075);
}

.service-showcase--wellbeing {
  --service-accent: #2a5b87;
  --service-accent-rgb: 42, 91, 135;
  --service-surface: #edf5fb;
}

.service-showcase--leadership {
  --service-accent: #774095;
  --service-accent-rgb: 119, 64, 149;
  --service-surface: #f5eef9;
}

.service-showcase--offsite {
  --service-accent: #2f7153;
  --service-accent-rgb: 47, 113, 83;
  --service-surface: #edf7f0;
}

.service-showcase--mental {
  --service-accent: #8b5600;
  --service-accent-rgb: 139, 86, 0;
  --service-surface: #fff6e5;
}

.service-showcase-visual {
  position: relative;
  isolation: isolate;
  min-height: 20rem;
  overflow: hidden;
  padding: 1.25rem;
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.94), transparent 8rem),
    linear-gradient(145deg, var(--service-surface), rgba(255, 255, 255, 0.78));
}

.service-showcase-visual::before {
  position: absolute;
  z-index: -1;
  right: -5rem;
  bottom: -7rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(var(--service-accent-rgb), 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.2rem rgba(var(--service-accent-rgb), 0.035),
    0 0 0 4.8rem rgba(var(--service-accent-rgb), 0.022);
  content: "";
}

.service-showcase-visual img {
  position: absolute;
  right: -3%;
  bottom: -14%;
  width: min(93%, 29rem);
  height: auto;
  opacity: 0.92;
  filter: saturate(0.9);
  object-fit: contain;
  pointer-events: none;
}

.service-showcase-number {
  position: absolute;
  z-index: 2;
  top: 1.15rem;
  left: 1.25rem;
  color: rgba(var(--service-accent-rgb), 0.18);
  font-family: var(--heading);
  font-size: clamp(3.6rem, 7vw, 5.8rem);
  line-height: 1;
}

.service-showcase-icon {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  right: 1.25rem;
  display: grid;
  width: 3.65rem;
  height: 3.65rem;
  border: 1px solid rgba(var(--service-accent-rgb), 0.15);
  border-radius: 50%;
  color: var(--service-accent);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 0.65rem 1.4rem rgba(var(--service-accent-rgb), 0.1);
  place-items: center;
}

.service-showcase-icon svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.service-showcase-visual > p {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  margin: 0;
  padding: 0.65rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: var(--service-accent);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0.55rem 1.4rem rgba(77, 19, 42, 0.07);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  backdrop-filter: blur(12px);
}

.service-showcase-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(1.5rem, 4.5vw, 3.5rem);
}

.service-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
  color: var(--service-accent);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.service-label::before {
  width: 1.25rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.service-showcase-copy h2 {
  max-width: 17ch;
  margin-bottom: 0.65rem;
  font-size: clamp(2rem, 3.6vw, 3.15rem);
}

.service-approved-name {
  max-width: 45rem;
  margin-bottom: 1.25rem;
  color: var(--wine-900);
  font-size: 0.845rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.service-description {
  max-width: 46rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.service-focus {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.65rem;
}

.service-focus span {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(var(--service-accent-rgb), 0.13);
  border-radius: 999px;
  color: var(--service-accent);
  background: rgba(var(--service-accent-rgb), 0.055);
  font-size: 0.7rem;
  font-weight: 650;
  line-height: 1.2;
}

.service-includes {
  width: 100%;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(77, 19, 42, 0.09);
}

.service-includes h3 {
  margin-bottom: 0.9rem;
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-activity-grid {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-activity-grid li {
  position: relative;
  min-height: 3.2rem;
  padding: 0.72rem 0.75rem 0.72rem 2.35rem;
  border: 1px solid rgba(77, 19, 42, 0.075);
  border-radius: 0.8rem;
  color: #493b44;
  background: #fffaf8;
  font-size: 0.84rem;
  font-weight: 550;
  line-height: 1.45;
}

.service-activity-grid li::before {
  position: absolute;
  top: 0.83rem;
  left: 0.78rem;
  display: grid;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  color: #fff;
  background: var(--service-accent);
  content: "✓";
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1;
  place-items: center;
}

.service-plan-link {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  gap: 0.9rem;
  margin-top: 1.5rem;
  padding: 0 0.2rem 0.2rem 0;
  border-bottom: 1px solid rgba(var(--service-accent-rgb), 0.35);
  color: var(--service-accent);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration: none;
}

.service-plan-link span:last-child {
  transition: transform 180ms var(--ease-out);
}

.service-plan-link:hover {
  color: var(--service-accent);
}

.service-plan-link:hover span:last-child {
  transform: translateX(0.3rem);
}

.services-process {
  overflow: hidden;
  border-block: 1px solid rgba(77, 19, 42, 0.08);
  background:
    radial-gradient(circle at 4% 22%, rgba(248, 211, 212, 0.55), transparent 23rem),
    radial-gradient(circle at 94% 88%, rgba(227, 177, 207, 0.3), transparent 24rem),
    #fff7f3;
}

.services-process-steps {
  position: relative;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.services-process-steps::before {
  position: absolute;
  top: 1.4rem;
  bottom: 1.4rem;
  left: 1.25rem;
  width: 1px;
  background: linear-gradient(var(--wine-900), var(--rose-200));
  content: "";
}

.services-process-steps li {
  position: relative;
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  gap: 1rem;
  padding: 0 0 2.25rem;
}

.services-process-steps li:last-child {
  padding-bottom: 0;
}

.services-step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(77, 19, 42, 0.18);
  border-radius: 50%;
  color: var(--wine-900);
  background: #fff9f7;
  box-shadow: 0 0 0 0.45rem rgba(255, 247, 243, 0.9);
  font-size: 0.68rem;
  font-weight: 750;
  place-items: center;
}

.services-process-steps h3 {
  margin: 0.12rem 0 0.45rem;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.services-step-kicker {
  display: block;
  margin: 0 0 0.55rem;
  color: var(--plum-800);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.services-process-steps p {
  max-width: 31rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.services-closing {
  background: #fffdfb;
}

.services-closing-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 2rem;
  align-items: center;
  overflow: hidden;
  padding: clamp(2rem, 6vw, 4.5rem);
  border: 1px solid rgba(77, 19, 42, 0.1);
  border-radius: clamp(1.35rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 90% 5%, rgba(227, 177, 207, 0.42), transparent 19rem),
    linear-gradient(135deg, #fff0eb, #fffaf7);
  box-shadow: 0 1.2rem 3.8rem rgba(77, 19, 42, 0.08);
}

.services-closing-panel::after {
  position: absolute;
  z-index: -1;
  right: -7rem;
  bottom: -9rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(106, 29, 79, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 3rem rgba(106, 29, 79, 0.025), 0 0 0 6rem rgba(106, 29, 79, 0.018);
  content: "";
}

.services-closing-panel h2 {
  max-width: 14ch;
  margin-bottom: 0.8rem;
  font-size: clamp(2.1rem, 4.4vw, 3.7rem);
}

.services-closing-panel p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.services-closing-panel .btn {
  width: fit-content;
  min-width: 12.5rem;
}

@media (min-width: 40rem) {
  .service-activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 52rem) {
  .services-catalog-intro,
  .services-process-heading {
    grid-template-columns: minmax(0, 1.18fr) minmax(20rem, 0.82fr);
  }

  .service-showcase {
    grid-template-columns: minmax(18rem, 0.76fr) minmax(0, 1.24fr);
  }

  .service-showcase:nth-child(even) {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  }

  .service-showcase:nth-child(even) .service-showcase-visual {
    order: 2;
  }

  .service-showcase:nth-child(even) .service-showcase-copy {
    order: 1;
  }

  .service-showcase-visual {
    min-height: 37rem;
    padding: 1.5rem;
  }

  .service-showcase-visual img {
    right: -10%;
    bottom: 1%;
    width: 110%;
  }

  .service-showcase:nth-child(even) .service-showcase-visual img {
    right: -3%;
    bottom: 5%;
    width: 88%;
    max-width: 21rem;
  }

  .service-showcase-visual > p {
    right: 1.5rem;
    bottom: 1.5rem;
    left: 1.5rem;
  }

  .services-process-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .services-process-steps--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .services-process-steps::before {
    top: 1.25rem;
    right: 1.25rem;
    bottom: auto;
    left: 1.25rem;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, var(--wine-900), var(--rose-200));
  }

  .services-process-steps li {
    display: block;
    padding: 0 clamp(0.8rem, 2vw, 1.5rem) 0 0;
  }

  .services-process-steps li + li {
    padding-left: clamp(0.8rem, 2vw, 1.5rem);
    border-left: 1px solid rgba(77, 19, 42, 0.08);
  }

  .services-step-number {
    margin-bottom: 1.6rem;
  }

  .services-process-steps--five h3 {
    font-size: clamp(0.9rem, 1.2vw, 1rem);
  }

  .services-process-steps--five p {
    font-size: 0.8rem;
  }

  .services-closing-panel {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 52rem) and (max-width: 69.99rem) {
  .services-process-steps--five {
    grid-template-columns: 1fr;
  }

  .services-process-steps--five::before {
    top: 1.4rem;
    right: auto;
    bottom: 1.4rem;
    left: 1.25rem;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--wine-900), var(--rose-200));
  }

  .services-process-steps--five li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: 1rem;
    padding: 0 0 2.25rem;
  }

  .services-process-steps--five li + li {
    padding-left: 0;
    border-left: 0;
  }

  .services-process-steps--five .services-step-number {
    margin-bottom: 0;
  }

  .services-process-steps--five h3 {
    font-size: 1rem;
  }

  .services-process-steps--five p {
    max-width: 34rem;
    font-size: 0.86rem;
  }
}

@media (min-width: 70rem) {
  .service-showcase {
    grid-template-columns: minmax(21rem, 0.72fr) minmax(0, 1.28fr);
  }

  .service-showcase:nth-child(even) {
    grid-template-columns: minmax(0, 1.4fr) minmax(19rem, 0.6fr);
  }

  .service-showcase-visual {
    min-height: 35rem;
  }

  .service-showcase-copy {
    padding-inline: 4rem;
  }
}

@media (max-width: 39.99rem) {
  .services-catalog {
    padding-top: 4rem;
  }

  .service-showcase-copy {
    padding: 1.4rem 1.2rem 1.6rem;
  }

  .service-showcase-visual {
    min-height: 18rem;
  }

  .service-showcase-visual img {
    bottom: -18%;
    width: 91%;
  }

  .service-showcase-copy h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .service-description {
    font-size: 0.94rem;
  }

  .services-closing-panel .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .service-plan-link span:last-child {
    transition: none;
  }
}

/* About page — coach profile */
.coach-profile-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(227, 177, 207, 0.26), transparent 24rem),
    linear-gradient(180deg, #fffdfb, #fff8f5);
}

.coach-profile-card {
  position: relative;
  isolation: isolate;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(77, 19, 42, 0.1);
  border-radius: clamp(1.35rem, 3vw, 2rem);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 1.4rem 4rem rgba(77, 19, 42, 0.085);
}

.coach-profile-card::after {
  position: absolute;
  z-index: -1;
  right: -8rem;
  bottom: -10rem;
  width: 24rem;
  height: 24rem;
  border: 1px solid rgba(138, 51, 107, 0.1);
  border-radius: 50%;
  box-shadow: 0 0 0 3.5rem rgba(227, 177, 207, 0.05), 0 0 0 7rem rgba(227, 177, 207, 0.025);
  content: "";
}

.coach-profile-portrait {
  position: relative;
  min-height: 30rem;
  margin: 0;
  overflow: hidden;
  background: var(--blush-100);
}

.coach-profile-portrait img {
  width: 100%;
  height: 100%;
  min-height: 30rem;
  object-fit: cover;
  object-position: center 34%;
}

.coach-profile-portrait figcaption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.12rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0.9rem;
  color: #fff;
  background: rgba(53, 16, 31, 0.76);
  backdrop-filter: blur(12px);
}

.coach-profile-portrait figcaption span {
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 600;
}

.coach-profile-portrait figcaption strong {
  color: rgba(255, 248, 249, 0.78);
  font-size: 0.7rem;
  font-weight: 550;
  letter-spacing: 0.05em;
}

.coach-profile-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.6rem, 5vw, 4.5rem);
}

.coach-profile-role {
  margin-bottom: 0.8rem;
  color: var(--plum-800);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.coach-profile-copy h2 {
  max-width: 14ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2.15rem, 4.2vw, 3.7rem);
}

.coach-profile-copy > p:not(.coach-profile-role) {
  max-width: 43rem;
}

.coach-profile-copy .lead {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.coach-profile-copy > p:not(.lead):not(.coach-profile-role) {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.coach-profile-note {
  padding-left: 1rem;
  border-left: 2px solid var(--rose-200);
  font-size: 0.84rem !important;
}

.coach-profile-pillars {
  display: grid;
  width: 100%;
  gap: 0.6rem;
  margin: 0.55rem 0 1.35rem;
}

.coach-profile-pillars > div {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(77, 19, 42, 0.08);
  border-radius: 0.85rem;
  background: rgba(255, 249, 247, 0.82);
}

.coach-profile-pillars strong {
  color: var(--wine-950);
  font-family: var(--heading);
  font-size: 0.92rem;
  font-weight: 600;
}

.coach-profile-pillars span {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

@media (min-width: 40rem) {
  .coach-profile-pillars {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 52rem) {
  .coach-profile-card {
    grid-template-columns: minmax(19rem, 0.78fr) minmax(0, 1.22fr);
  }

  .coach-profile-portrait,
  .coach-profile-portrait img {
    min-height: 43rem;
  }
}

@media (max-width: 39.99rem) {
  .coach-profile-portrait,
  .coach-profile-portrait img {
    min-height: 27rem;
  }

  .coach-profile-copy {
    padding: 1.6rem 1.2rem 1.8rem;
  }

  .coach-profile-copy h2 {
    font-size: clamp(2.05rem, 10vw, 2.65rem);
  }
}

/* Slightly bolder small text for readability across all pages */
.hero-note {
  font-weight: 650;
}

.hero-photo figcaption span,
.page-hero-photo figcaption span,
.story-photo figcaption,
.trust-grid p,
.contact-point address,
.contact-point span,
.quote-attribution p span,
.form-note,
.form-label-note,
.field-error {
  font-weight: 600;
}
