@font-face {
  font-family: "Raleway";
  src: url("/static/assets/Raleway-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

:root {
  --ink: #29141f;
  --plum: #3b1728;
  --wine: #5b2135;
  --rose: #a44a55;
  --clay: #c87357;
  --apricot: #dda07e;
  --sand: #dfc8ad;
  --cream: #f3e9dc;
  --paper: #f8f1e8;
  --white: #fffaf3;
  --line: rgba(59, 23, 40, 0.18);
  --display: Georgia, "Times New Roman", serif;
  --brand: "Raleway", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

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

a {
  color: inherit;
  text-decoration-color: var(--clay);
  text-underline-offset: 0.18em;
}

a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--clay);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  padding: 10px 16px;
  background: var(--cream);
  color: var(--plum);
  transform: translateY(-160%);
}

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

.site-header {
  position: absolute;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(24px, 5vw, 72px);
  color: var(--cream);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  position: fixed;
  height: 76px;
  background: rgba(59, 23, 40, 0.96);
  box-shadow: 0 8px 30px rgba(30, 8, 20, 0.18);
  backdrop-filter: blur(10px);
}

.brand {
  flex: 0 0 auto;
}

.brand-name,
.eyebrow.brand-name {
  font-family: var(--brand);
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.08em;
}

.brand img {
  width: 170px;
  height: 70px;
}

.site-header.scrolled .brand img {
  width: 150px;
  height: 60px;
}

.brand img {
  object-fit: contain;
  object-position: center;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.8vw, 28px);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: var(--apricot);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid rgba(243, 233, 220, 0.55);
  padding: 11px 17px;
  border-radius: 99px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover {
  background: var(--cream);
  color: var(--plum);
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 11px;
  border: 0;
  background: transparent;
  color: inherit;
}

.menu-button > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.21em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.12;
  font-synthesis: none;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 6.2vw, 6.2rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 23px;
  font-size: clamp(2.15rem, 4.3vw, 4.4rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

em {
  color: var(--apricot);
  font-weight: 400;
}

.section-pad {
  padding: clamp(72px, 8.5vw, 122px) max(24px, calc((100vw - var(--max)) / 2));
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 25px;
  border: 1px solid var(--plum);
  border-radius: 100px;
  background: var(--plum);
  color: var(--cream);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--plum);
}

.button.light {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--plum);
}

.button.light:hover {
  background: transparent;
  color: var(--cream);
}

.text-link {
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(4px, 4px);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Home */

.hero {
  position: relative;
  min-height: min(720px, 100svh);
  overflow: hidden;
  background: var(--plum);
  color: var(--cream);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  align-items: center;
  gap: 52px;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2)) 48px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.25'/%3E%3C/svg%3E");
}

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

.hero-copy {
  max-width: 730px;
}

.hero-copy h1 {
  max-width: 760px;
  font-size: clamp(2.5rem, min(5vw, 9svh), 4.5rem);
  line-height: 1.2;
  text-wrap: balance;
}

.hero-tagline {
  margin-bottom: 18px;
  color: var(--apricot);
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  font-style: normal;
  letter-spacing: 0.02em;
}

.hero-intro {
  max-width: 650px;
  color: rgba(243, 233, 220, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.14rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 32px;
}

.hero .button {
  border-color: var(--apricot);
  background: var(--apricot);
  color: var(--plum);
}

.hero .button:hover {
  background: transparent;
  color: var(--cream);
}

.hero-brand-art {
  align-self: center;
  justify-self: center;
  width: min(100%, 440px);
  pointer-events: none;
  color: rgba(243, 233, 220, 0.64);
}

.hero-brand-art img {
  width: 100%;
  height: min(480px, 60svh);
  object-fit: cover;
  object-position: center;
  border-radius: 220px 220px 4px 4px;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(221, 160, 126, 0.16);
  border-radius: 50%;
}

.orbit-one {
  width: 66vw;
  height: 66vw;
  right: -25vw;
  top: -30vw;
}

.orbit-two {
  width: 45vw;
  height: 45vw;
  left: -31vw;
  bottom: -28vw;
}

.manifesto {
  display: grid;
  grid-template-columns: 0.25fr 1.75fr;
  gap: 50px;
  background: var(--cream);
}

.manifesto-number,
.section-number {
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: normal;
}

.manifesto-copy {
  max-width: 950px;
}

.manifesto-copy h2 {
  max-width: 900px;
}

.manifesto-copy > p:not(.eyebrow) {
  max-width: 720px;
}

.large-copy {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 1.52rem);
  line-height: 1.5;
}

.accent-line {
  margin-top: 32px;
  padding-left: 24px;
  border-left: 2px solid var(--clay);
  color: var(--wine);
  font-family: var(--display);
  font-size: 1.22rem;
  font-style: normal;
}

.offerings {
  background: var(--paper);
}

.section-heading {
  max-width: 870px;
  margin-bottom: 52px;
}

.offering-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}

.offering-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 325px;
  padding: clamp(32px, 4vw, 56px);
  background: var(--cream);
  text-decoration: none;
  transition: transform 250ms ease, background 250ms ease;
}

.offering-card:hover {
  z-index: 2;
  transform: translateY(-6px);
}

.offering-card.dark {
  background: var(--plum);
  color: var(--cream);
}

.offering-card.clay {
  background: var(--clay);
  color: var(--plum);
}

.offering-card.wide {
  grid-column: 1 / -1;
  min-height: 255px;
}

.card-index {
  display: block;
  margin-bottom: 45px;
  color: var(--clay);
  font-family: var(--display);
  font-size: 0.9rem;
  font-style: normal;
}

.dark .card-index,
.clay .card-index {
  color: currentColor;
  opacity: 0.7;
}

.offering-card h3 {
  max-width: 500px;
  margin-bottom: 20px;
  font-size: clamp(1.8rem, 2.8vw, 3rem);
}

.offering-card p {
  max-width: 560px;
  opacity: 0.78;
}

.card-link {
  align-self: flex-end;
  margin-top: auto;
  padding-top: 24px;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.body-guide {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(48px, 8vw, 115px);
  background: var(--wine);
  color: var(--cream);
}

.body-guide-art {
  margin: 0;
}

.body-guide-art img {
  width: 100%;
  height: clamp(420px, 45vw, 560px);
  object-fit: cover;
  object-position: center 70%;
}

.body-guide-copy {
  max-width: 680px;
}

.body-guide-copy p:not(.eyebrow) {
  color: rgba(243, 233, 220, 0.75);
}

.body-guide-copy p:last-child {
  color: var(--apricot);
  font-family: var(--display);
  font-size: 1.25rem;
  font-style: normal;
}

.quote-band {
  padding: clamp(78px, 10vw, 150px) 24px;
  overflow: hidden;
  background: var(--sand);
  text-align: center;
}

.quote-band > p {
  max-width: 1150px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5.2rem);
  font-style: italic;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.liberation {
  background: var(--cream);
}

.two-column-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(32px, 5vw, 72px);
  max-width: 980px;
  margin-left: auto;
}

.two-column-copy p:first-child {
  font-family: var(--display);
  font-size: 1.22rem;
  line-height: 1.5;
}

.testimonials {
  background: var(--paper);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
}

.testimonial-grid .testimonial-long {
  grid-column: 1 / -1;
  min-height: 0;
}

.testimonial-long blockquote {
  max-width: 1000px;
  align-self: center;
}

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

.testimonial-grid figure {
  min-height: 335px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: 35px;
  background: var(--cream);
}

.testimonial-grid blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: 1.16rem;
  font-style: italic;
  line-height: 1.6;
}

.testimonial-grid figcaption {
  margin-top: 35px;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-testimonials {
  background: var(--cream);
}

.final-cta {
  padding: clamp(80px, 9.5vw, 142px) 24px;
  background: var(--plum);
  color: var(--cream);
  text-align: center;
}

.final-cta h2,
.final-cta p {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 38px;
  color: rgba(243, 233, 220, 0.75);
}

/* Service pages */

.service-hero {
  position: relative;
  min-height: min(680px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  align-items: stretch;
  background: var(--plum);
  color: var(--cream);
}

.service-hero-copy {
  align-self: center;
  min-width: 0;
  width: 100%;
  /* Keep outer page gutters out of any text-width cap on wide screens. */
  padding: 120px min(5vw, 72px) 48px max(24px, calc((100vw - var(--max)) / 2));
}

.service-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, min(4vw, 8svh), 4rem);
  line-height: 1.2;
  text-wrap: balance;
}

.service-hero .eyebrow {
  margin-bottom: 16px;
}

.service-hero .button {
  border-color: var(--cream);
  background: transparent;
  color: var(--cream);
}

.service-hero .button:hover,
.service-hero .button:focus-visible {
  background: var(--cream);
  color: var(--plum);
}

.service-hero .button:focus-visible {
  outline-color: var(--cream);
}

.service-intro {
  max-width: 650px;
  margin-bottom: 24px;
  color: rgba(243, 233, 220, 0.78);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.35vw, 1.3rem);
  line-height: 1.45;
}

.service-hero-image {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
}

.service-hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.service-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(59, 23, 40, 0.92), rgba(59, 23, 40, 0.72) 94px, transparent 230px);
}

.intimacy-coaching-hero .service-hero-image img {
  object-position: 80% center;
}

.leadership-hero .service-hero-image img {
  /* A wider landscape crop reveals more water without stretching the photo. */
  top: auto;
  bottom: 0;
  height: 85%;
  object-position: center;
}

.circlework-hero .service-hero-image img {
  object-position: center;
}

.service-symbol {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 112px 40px 48px;
  pointer-events: none;
  background: var(--wine);
  color: rgba(221, 160, 126, 0.6);
}

.service-symbol::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(243, 233, 220, 0.08);
  border-radius: 50%;
}

.service-symbol img {
  position: relative;
  width: min(100%, 340px);
  height: auto;
  max-height: min(440px, 58svh);
  object-fit: contain;
}

.service-symbol path,
.service-symbol circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.leadership-hero .service-symbol {
  background: #48273c;
}

.circlework-hero .service-symbol {
  background: var(--clay);
  color: rgba(59, 23, 40, 0.5);
}

.mediation-hero .service-symbol {
  background: #713d44;
}

.service-lead {
  background: var(--sand);
}

.service-lead p {
  max-width: 1040px;
  margin: 0 auto;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 3rem);
  line-height: 1.35;
  text-align: center;
}

.content-section {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 7.5vw, 110px);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.content-section:nth-of-type(even) {
  background: var(--paper);
}

.content-title {
  max-width: 520px;
}

.content-title h2 {
  font-size: clamp(2.2rem, 3.9vw, 4rem);
}

.content-title .section-number {
  display: block;
  margin-bottom: 40px;
}

.content-body {
  max-width: 720px;
  padding-top: 55px;
}

.content-body > p {
  margin-bottom: 26px;
}

.content-body > p:first-child {
  font-size: 1.12rem;
}

.check-list {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding: 18px 0 18px 34px;
  border-top: 1px solid var(--line);
}

.check-list li::before {
  content: "↘";
  position: absolute;
  left: 2px;
  color: var(--clay);
}

.points-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 30px;
  background: var(--line);
}

.points-grid article {
  min-height: 195px;
  padding: 26px;
  background: var(--paper);
}

.points-grid h3 {
  margin-bottom: 14px;
  color: var(--wine);
}

.points-grid p {
  margin: 0;
  font-size: 0.94rem;
}

.image-interlude {
  position: relative;
  min-height: 580px;
  height: min(68vw, 780px);
  margin: 0;
  overflow: hidden;
  background: var(--wine);
}

.image-interlude img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(0.9) contrast(1.06);
}

.image-interlude::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(43, 13, 26, 0.82), transparent 70%), linear-gradient(0deg, rgba(43, 13, 26, 0.45), transparent 60%);
}

.image-interlude-copy {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 10%;
  width: min(42%, 560px);
  margin: 0;
  color: var(--cream);
}

.image-interlude-copy h2 {
  font-size: clamp(2rem, 3.3vw, 3.5rem);
}

.image-interlude-copy p {
  max-width: 440px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.quote-panel {
  padding: clamp(78px, 9.5vw, 142px) 24px;
  background: var(--sand);
  text-align: center;
}

.quote-panel blockquote,
.quote-panel > p {
  max-width: 1060px;
  margin: 0 auto 30px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 4rem);
  font-style: italic;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.quote-panel cite {
  color: var(--wine);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* About */

.about-hero {
  position: relative;
  min-height: min(680px, 100svh);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(32px, 6vw, 80px);
  overflow: hidden;
  padding: 120px max(24px, calc((100vw - var(--max)) / 2)) 48px;
  background: var(--plum);
  color: var(--cream);
}

.about-copy,
.about-intro {
  position: relative;
  z-index: 2;
}

.about-copy h1 {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 28px;
}

.about-intro {
  max-width: 600px;
  color: rgba(243, 233, 220, 0.78);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  line-height: 1.5;
}

.about-portrait {
  margin: 0;
  justify-self: center;
  width: min(100%, 420px);
  height: min(420px, 60svh);
  overflow: hidden;
  border-radius: 210px 210px 4px 4px;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
}

.about-approach {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 7.5vw, 110px);
  background: var(--cream);
}

.about-approach .content-body {
  padding-top: 50px;
}

.about-photo {
  position: relative;
  height: min(72vw, 850px);
  margin: 0;
  overflow: hidden;
  background: var(--sand);
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(39, 16, 27, 0.48), transparent 60%);
}

.about-photo img {
  /* Crop the left fifth of the source so the café sign stays outside the frame. */
  width: 125%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: translateX(-20%);
}

.about-photo figcaption {
  position: absolute;
  z-index: 2;
  left: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 9%;
  max-width: 620px;
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 3rem);
  font-style: normal;
  line-height: 1.3;
}

.beliefs {
  background: var(--wine);
  color: var(--cream);
}

.beliefs > .eyebrow {
  margin-bottom: 38px;
}

.belief-list p {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  max-width: 1000px;
  margin: 0 0 0 auto;
  padding: 27px 0;
  border-top: 1px solid rgba(243, 233, 220, 0.2);
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.5vw, 2.35rem);
  line-height: 1.3;
}

.belief-list span {
  color: var(--apricot);
  font-size: 0.8rem;
  font-style: normal;
}

.why-limina {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(48px, 7.5vw, 110px);
  background: var(--paper);
}

.why-art {
  color: var(--clay);
}

.why-art img {
  width: 150px;
  height: auto;
  margin: 0 auto;
}

.why-art path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.why-copy {
  max-width: 680px;
}

.about-close {
  max-width: 960px;
  margin: auto;
  text-align: center;
}

.about-close h2 {
  color: var(--wine);
  font-style: normal;
}

.about-close p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.about-close .button {
  margin-top: 20px;
}

/* Contact and prose */

.contact-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  background: var(--plum);
  color: var(--cream);
}

.contact-copy {
  align-self: center;
  padding: 150px 6vw 80px max(24px, calc((100vw - var(--max)) / 2));
}

.contact-copy h1 {
  font-size: clamp(3rem, 5.2vw, 5.5rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 550px;
  color: rgba(243, 233, 220, 0.76);
}

.contact-detail {
  margin-top: 45px;
  padding-top: 30px;
  border-top: 1px solid rgba(243, 233, 220, 0.22);
}

.contact-detail span {
  display: block;
  margin-bottom: 8px;
  color: var(--apricot);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-detail a {
  font-family: var(--display);
  font-size: 1.8rem;
}

.contact-detail .contact-email {
  display: block;
  margin-bottom: 12px;
  font-family: var(--sans);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.contact-form-wrap {
  display: grid;
  align-items: center;
  padding: 130px max(24px, calc((100vw - var(--max)) / 2)) 75px 5vw;
  background: var(--cream);
  color: var(--ink);
}

.success-panel {
  max-width: 620px;
}

.success-panel > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 35px;
  border: 1px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  font-size: 1.5rem;
}

.success-panel h2 {
  font-size: clamp(2.45rem, 4.2vw, 4.25rem);
}

.placeholder-panel .button {
  margin: 15px 0 28px;
}

.external-note {
  color: rgba(41, 20, 31, 0.58);
  font-size: 0.78rem;
}

.prose-page {
  max-width: 960px;
  margin: 0 auto;
  padding-top: 145px;
}

.prose-page h1 {
  max-width: 850px;
  color: var(--wine);
}

.prose-page h2 {
  margin-top: 52px;
  font-size: 1.95rem;
}

.prose-page p {
  max-width: 760px;
}

.not-found {
  min-height: 78vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 170px 24px 100px;
  background: var(--plum);
  color: var(--cream);
  text-align: center;
}

.not-found p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(243, 233, 220, 0.74);
}

.not-found .button {
  margin-top: 25px;
  border-color: var(--apricot);
  background: var(--apricot);
  color: var(--plum);
}

/* Footer */

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px max(24px, calc((100vw - var(--max)) / 2)) 26px;
  background: #241019;
  color: var(--cream);
}

.footer-mark {
  position: absolute;
  right: -40px;
  bottom: -80px;
  width: 340px;
  color: rgba(221, 160, 126, 0.07);
}

.footer-mark path,
.footer-mark circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1;
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1.1fr;
  gap: 52px;
}

.footer-name {
  margin-bottom: 4px;
  font-size: 2.6rem;
}

.footer-quote {
  position: relative;
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.footer-quote blockquote {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-style: italic;
  line-height: 1.5;
}

.footer-quote figcaption {
  color: var(--apricot);
  font-size: 0.8rem;
}

.footer-line {
  margin-bottom: 8px;
  color: var(--apricot);
  font-family: var(--display);
  font-style: normal;
}

.footer-small {
  color: rgba(243, 233, 220, 0.5);
  font-size: 0.82rem;
}

.footer-label {
  margin-bottom: 20px;
  color: var(--apricot);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div:nth-child(2) a,
.footer-grid > div:nth-child(3) > a {
  display: block;
  width: fit-content;
  margin-bottom: 9px;
  color: rgba(243, 233, 220, 0.75);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--apricot);
}

.newsletter {
  max-width: 390px;
  margin-top: 28px;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.6fr 0.4fr;
  gap: 60px;
  align-items: end;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid rgba(243, 233, 220, 0.15);
  color: rgba(243, 233, 220, 0.43);
  font-size: 0.68rem;
  line-height: 1.5;
}

.footer-bottom p {
  max-width: 830px;
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

/* Logo review: the site uses the simpler mark at small navigation sizes. */
.brand-preview {
  max-width: 1380px;
  margin: 0 auto;
  padding: 64px 24px;
}

.brand-preview h1 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.brand-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: 24px;
  margin: 36px 0;
}

.brand-options figure {
  margin: 0;
}

.brand-options figure > div {
  padding: 35px 24px;
  background: var(--plum);
}

.brand-options img {
  width: 100%;
  height: auto;
}

.brand-options figcaption {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 0;
  font-size: 0.85rem;
}

.hero .eyebrow,
.service-hero .eyebrow,
.about-hero .eyebrow,
.body-guide .eyebrow,
.beliefs .eyebrow,
.contact-page .eyebrow,
.final-cta .eyebrow {
  color: var(--apricot);
}

.contact-form-wrap .eyebrow {
  color: var(--clay);
}

@media (max-width: 1100px) {
  .site-header {
    height: 86px;
  }

  .site-header.scrolled {
    /* A backdrop filter would contain and clip the fixed mobile drawer. */
    backdrop-filter: none;
    background: var(--plum);
  }

  .menu-button {
    position: relative;
    z-index: 102;
    display: block;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 101;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 13px;
    padding: calc(106px + env(safe-area-inset-top)) 9vw calc(40px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    scroll-padding-top: calc(106px + env(safe-area-inset-top));
    scroll-padding-bottom: calc(40px + env(safe-area-inset-bottom));
    background: var(--plum);
    font-family: var(--display);
    font-size: clamp(1.6rem, 5vw, 3rem);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 260ms ease, visibility 0s linear 260ms;
  }

  .site-nav a {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    min-height: 44px;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
    transition-delay: 0s;
  }

  body.menu-open .site-header,
  body.menu-open .site-header.scrolled {
    position: fixed;
    height: 86px;
    background: transparent;
    box-shadow: none;
  }

  body.menu-open .site-header::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 102;
    background: var(--plum);
  }

  body.menu-open .brand {
    position: relative;
    z-index: 102;
  }

  .nav-cta {
    margin-top: 15px;
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .home-hero {
    grid-template-columns: 1fr 0.72fr;
    gap: 30px;
  }

  .testimonial-grid,
  .testimonial-grid:has(.testimonial-long) {
    grid-template-columns: 1fr;
  }

  .testimonial-grid figure {
    min-height: 300px;
  }

  .contact-page {
    grid-template-columns: 1fr;
  }

  .contact-copy {
    padding-right: max(24px, calc((100vw - var(--max)) / 2));
  }

  .contact-form-wrap {
    padding: 72px max(24px, calc((100vw - var(--max)) / 2));
  }
}

@media (max-width: 780px) {
  body {
    font-size: 16px;
  }

  .brand img {
    width: 150px;
    height: 60px;
  }

  .home-hero {
    min-height: min(640px, 100svh);
    grid-template-columns: 1fr;
    align-content: center;
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero-copy {
    z-index: 3;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-brand-art {
    position: absolute;
    z-index: 1;
    top: calc(50% + 32px);
    right: 24px;
    width: min(80vw, 340px);
    transform: translateY(-50%);
    opacity: 0.24;
  }

  .manifesto,
  .body-guide,
  .content-section,
  .about-approach,
  .why-limina {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .manifesto-number {
    display: none;
  }

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

  .offering-card.wide {
    grid-column: auto;
  }

  .offering-card {
    min-height: 315px;
  }

  .body-guide-art {
    width: 260px;
    margin: 0 auto;
  }

  .two-column-copy {
    grid-template-columns: 1fr;
  }

  .service-hero {
    min-height: min(640px, 100svh);
    grid-template-columns: 1fr;
  }

  .service-hero-copy {
    position: relative;
    z-index: 2;
    padding: 112px 24px 40px;
  }

  .service-hero-image,
  .service-symbol {
    position: absolute;
    inset: 0;
    opacity: 0.28;
  }

  .service-hero-image::after,
  .service-symbol::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--plum) 0%, rgba(59, 23, 40, 0.62) 100%);
  }

  .service-hero-image img {
    object-position: 62% center;
  }

  .service-symbol {
    place-items: center end;
  }

  .content-title .section-number {
    margin-bottom: 25px;
  }

  .content-body,
  .about-approach .content-body {
    padding-top: 0;
  }

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

  .points-grid article {
    min-height: 0;
  }

  .image-interlude {
    height: 680px;
  }

  .image-interlude-copy {
    width: auto;
    max-width: 520px;
    left: 24px;
    right: 24px;
    bottom: 6%;
  }

  .image-interlude-copy h2 {
    max-width: 400px;
  }

  .image-interlude::after {
    background: linear-gradient(0deg, rgba(43, 13, 26, 0.92), rgba(43, 13, 26, 0.25) 50%, transparent 75%);
  }

  .image-interlude img {
    object-position: 58% center;
  }

  .about-hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .about-portrait {
    width: min(100%, 340px);
    height: 340px;
  }

  .belief-list p {
    grid-template-columns: 40px 1fr;
    gap: 18px;
  }

  .why-art {
    width: 260px;
    margin: 0 auto;
  }

  .about-photo {
    height: 540px;
  }

  .about-photo img {
    object-position: 65% center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-bottom > div {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .offering-card {
    min-height: 285px;
    padding: 27px 24px;
  }

  .offering-card h3 {
    font-size: 1.75rem;
  }

  .card-link {
    right: 24px;
    bottom: 24px;
  }

  .testimonial-grid figure {
    padding: 27px 24px;
  }

  .contact-copy {
    padding-top: 125px;
  }

  .site-footer {
    padding-top: 58px;
  }
}

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

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

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