@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-italic-cyrillic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Cormorant Garamond";
  src: url("/assets/cormorant-italic-latin.woff2") format("woff2");
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-cyrillic.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/manrope-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --wine-950: #27020d;
  --wine-900: #350511;
  --wine-850: #450818;
  --wine-800: #560b20;
  --wine-700: #681127;
  --gold: #d6a653;
  --gold-light: #efc878;
  --paper: #f7f1ea;
  --paper-deep: #eee4da;
  --ink: #48101e;
  --text: #2d2421;
  --line: #d8c8bc;
  --white: #fffaf4;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --container: 1160px;
  --shadow: 0 12px 32px rgb(20 0 7 / 20%);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--wine-950);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
textarea {
  font: inherit;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.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;
}

.site-header {
  position: relative;
  z-index: 50;
  height: 76px;
  color: var(--white);
  background: rgb(42 2 14 / 96%);
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.header-inner {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.brand {
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 34px;
  letter-spacing: -1px;
  line-height: 1;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(26px, 4vw, 62px);
  font-size: 14px;
}

.site-nav a {
  position: relative;
  padding-block: 28px 26px;
  color: rgb(255 250 244 / 80%);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 16px;
  left: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 12px 10px;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1px;
  margin: 7px 0;
  background: var(--white);
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button--gold {
  color: #fffdf9;
  background: linear-gradient(110deg, #c38937, #e5b864 56%, #be7c2c);
  border-color: #e3bc6d;
  box-shadow: 0 4px 14px rgb(0 0 0 / 18%);
}

.button--gold:hover {
  box-shadow: 0 8px 22px rgb(0 0 0 / 26%), 0 0 0 1px rgb(255 228 168 / 35%);
}

.button--wine {
  min-height: 40px;
  color: white;
  background: linear-gradient(100deg, var(--wine-900), #720d2a, var(--wine-900));
  box-shadow: 0 3px 10px rgb(49 3 15 / 20%);
}

.button--large {
  min-height: 58px;
  padding-inline: 42px;
  font-size: 18px;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow--wine {
  color: #a35d3f;
}

.section {
  position: relative;
  padding-block: 62px;
}

.section--paper {
  color: var(--text);
  background:
    linear-gradient(105deg, rgb(255 255 255 / 20%), transparent 38%, rgb(255 255 255 / 22%)),
    var(--paper);
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(38px, 4.5vw, 58px);
}

.section-heading--center {
  margin-bottom: 30px;
  text-align: center;
}

.hero {
  position: relative;
  min-height: 598px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 64% 30%, rgb(105 20 40 / 42%), transparent 35%),
    linear-gradient(90deg, #30020f 0%, #470816 48%, #1d0209 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(40 0 11 / 98%) 0%, rgb(56 4 18 / 91%) 40%, rgb(40 2 13 / 27%) 66%, rgb(21 0 7 / 30%) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 598px;
  grid-template-columns: 48% 52%;
  align-items: center;
}

.hero-photo {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60%;
  overflow: hidden;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 47%;
  filter: saturate(0.83) contrast(1.04) brightness(0.82);
}

.hero-copy {
  padding-block: 52px 64px;
}

.hero h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 5.2vw, 72px);
}

.hero-lead {
  margin-bottom: 25px;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 38px);
  font-style: italic;
  line-height: 1.16;
}

.hero-text {
  max-width: 500px;
  margin-bottom: 30px;
  color: rgb(255 250 244 / 90%);
  font-size: 16px;
}

.changes {
  padding-block: 56px 52px;
}

.changes-grid {
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 28px;
  align-items: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.benefit {
  display: flex;
  min-height: 130px;
  align-items: flex-start;
  gap: 18px;
  padding: 8px 22px;
  border-right: 1px solid var(--line);
}

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

.benefit:nth-child(n + 4) {
  grid-column: span 3;
  min-height: 95px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.benefit:nth-child(3),
.benefit:nth-child(5) {
  border-right: 0;
}

.benefit p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.38;
}

.line-icon,
.card-icon {
  flex: 0 0 auto;
  color: var(--wine-700);
  font-family: var(--serif);
  font-size: 45px;
  font-weight: 400;
  line-height: 1;
}

.line-icon--round {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 22px;
}

.approach {
  min-height: 470px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 68% 32%, #6c142a 0%, transparent 28%),
    linear-gradient(120deg, #35030f 0%, #4b0718 54%, #190109 100%);
}

.approach-grid {
  display: grid;
  grid-template-columns: 43% 57%;
  align-items: center;
}

.approach-copy {
  position: relative;
  z-index: 2;
  max-width: 470px;
  padding-block: 18px;
}

.approach-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(37px, 4vw, 56px);
}

.approach-copy p:not(.eyebrow) {
  max-width: 420px;
  margin-bottom: 17px;
  color: rgb(255 250 244 / 90%);
}

.approach-art,
.formats-hero-art {
  position: relative;
  min-height: 390px;
  transform: rotate(-4deg);
}

.notebook {
  position: absolute;
  z-index: 2;
  top: 35px;
  left: 23%;
  width: 48%;
  height: 355px;
  border: 1px solid #7d3547;
  border-radius: 5px 12px 12px 5px;
  background:
    linear-gradient(100deg, rgb(255 255 255 / 3%), transparent 20%),
    radial-gradient(circle at 60% 30%, #6e1b32, transparent 65%),
    #3d0818;
  box-shadow: -18px 22px 40px rgb(0 0 0 / 46%);
}

.notebook::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgb(215 173 94 / 12%);
  border-radius: 3px 9px 9px 3px;
}

.flower-mark {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 50% 45% 50% 42%;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 74px;
  font-style: italic;
  transform: translate(-50%, -50%) rotate(4deg);
  opacity: 0.86;
}

.flower-mark::before,
.flower-mark::after {
  content: "";
  position: absolute;
  inset: 12px -14px;
  border: 1px solid var(--gold);
  border-radius: 52% 43%;
  transform: rotate(38deg);
}

.flower-mark::after {
  transform: rotate(-38deg);
}

.paper-lines {
  position: absolute;
  top: 18px;
  right: -18%;
  width: 54%;
  height: 310px;
  border: 1px solid #c8b6a7;
  background: repeating-linear-gradient(#f2eadd 0 25px, #d8cabd 26px);
  box-shadow: var(--shadow);
  transform: rotate(11deg);
}

.gold-pen {
  position: absolute;
  z-index: 4;
  top: 36px;
  right: 1%;
  width: 11px;
  height: 250px;
  border-radius: 5px;
  background: linear-gradient(90deg, #5c3a10, #e5bf65 40%, #37250a 60%, #d7ae51);
  box-shadow: 3px 5px 10px rgb(0 0 0 / 35%);
  transform: rotate(-23deg);
}

.formats {
  padding-block: 26px 54px;
}

.formats .section-heading {
  margin-bottom: 22px;
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.format-card {
  display: flex;
  min-height: 340px;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 30px 24px;
  border: 1px solid #d3c1b5;
  background: rgb(255 255 255 / 15%);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.format-card:hover {
  border-color: #ba947e;
  box-shadow: 0 12px 25px rgb(82 17 31 / 9%);
  transform: translateY(-3px);
}

.format-card .card-icon {
  display: block;
  min-height: 56px;
  margin-bottom: 14px;
  font-size: 52px;
}

.format-card h3 {
  min-height: 62px;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
}

.format-card p {
  flex: 1;
  font-size: 14px;
  line-height: 1.42;
}

.format-card .button {
  width: 100%;
  margin-top: 16px;
}

.trust {
  min-height: 350px;
  overflow: hidden;
  padding-block: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 25% 20%, #671027 0%, transparent 28%),
    radial-gradient(circle at 75% 45%, #630d25 0%, transparent 42%),
    linear-gradient(90deg, #21020b, #51091d 55%, #29030e);
}

.trust-visual {
  position: absolute;
  inset: 0 auto 0 0;
  width: 47%;
  background:
    radial-gradient(circle at 30% 28%, rgb(125 13 43 / 55%), transparent 20%),
    linear-gradient(120deg, rgb(0 0 0 / 35%), transparent);
}

.trust-visual::before,
.contact-art::before {
  content: "";
  position: absolute;
  top: 5%;
  left: 16%;
  width: 220px;
  height: 170px;
  background:
    radial-gradient(ellipse at 20% 50%, #7a0b29 0 18%, transparent 20%),
    radial-gradient(ellipse at 50% 35%, #850b30 0 20%, transparent 22%),
    radial-gradient(ellipse at 78% 50%, #660721 0 19%, transparent 21%),
    radial-gradient(ellipse at 45% 70%, #520516 0 22%, transparent 24%);
  filter: drop-shadow(0 14px 15px rgb(0 0 0 / 45%));
}

.vase {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: 26%;
  width: 90px;
  height: 128px;
  border-radius: 30% 30% 45% 45%;
  background: linear-gradient(90deg, #4d2d0b, #d4a13f 34%, #68400d 63%, #b77d24);
  box-shadow: 0 18px 30px rgb(0 0 0 / 38%);
}

.vase::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 15px;
  width: 60px;
  height: 20px;
  border-radius: 50%;
  background: #6e4914;
  box-shadow: inset 0 4px 5px #2a1705;
}

.book-stack {
  position: absolute;
  right: 7%;
  bottom: 42px;
  width: 230px;
  height: 90px;
}

.book-stack i {
  position: absolute;
  right: 0;
  display: block;
  width: 200px;
  height: 30px;
  border: 1px solid #8f594c;
  background: linear-gradient(#6b1327 0 16%, #d5bea7 18% 78%, #4f0b1b 80%);
  box-shadow: 0 5px 8px rgb(0 0 0 / 28%);
  transform: rotate(-3deg);
}

.book-stack i:nth-child(2) {
  right: 18px;
  bottom: 29px;
  width: 180px;
  transform: rotate(3deg);
}

.book-stack i:nth-child(3) {
  right: 4px;
  bottom: 58px;
  width: 160px;
  transform: rotate(-1deg);
}

.trust-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 46% 54%;
}

.trust-copy {
  padding-left: 42px;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  position: relative;
  margin-bottom: 11px;
  padding-left: 42px;
  color: rgb(255 250 244 / 87%);
  line-height: 1.36;
}

.trust-list li::before {
  content: "✓";
  position: absolute;
  top: -1px;
  left: 0;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 13px;
}

.trust-list span,
.trust-accent {
  color: var(--gold-light);
}

.trust-accent {
  margin: 8px 0 0 42px;
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
}

.results {
  padding-block: 32px 38px;
}

.results .section-heading {
  margin-bottom: 20px;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.result-item {
  display: flex;
  min-height: 80px;
  align-items: center;
  gap: 18px;
  padding: 8px 28px;
  border-right: 1px solid var(--line);
}

.result-item:last-child {
  border-right: 0;
}

.result-item span {
  color: var(--wine-700);
  font-family: var(--serif);
  font-size: 44px;
}

.result-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.42;
}

.closing {
  padding-block: 36px 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 65%, rgb(113 14 41 / 48%), transparent 27%),
    linear-gradient(105deg, #30030f, #51091d 57%, #27020c);
}

.closing-grid {
  display: grid;
  grid-template-columns: 54% 46%;
  align-items: center;
}

.closing h2 {
  margin: 0;
  padding-left: 66px;
  font-size: clamp(30px, 3.1vw, 43px);
}

.closing h2 em {
  color: var(--gold-light);
  font-weight: 400;
}

.closing-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 24px;
}

.closing-actions .button {
  width: min(100%, 390px);
}

.text-link {
  color: rgb(255 250 244 / 82%);
  font-size: 16px;
}

.text-link span {
  margin-left: 12px;
  color: var(--gold);
  font-size: 24px;
}

.site-footer {
  color: rgb(255 250 244 / 55%);
  background: #28020c;
  border-top: 1px solid rgb(255 255 255 / 7%);
}

.footer-inner {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 13px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a:hover {
  color: var(--white);
}

/* Formats page */
.formats-hero {
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 35% 45%, #681128 0%, transparent 40%),
    linear-gradient(105deg, #31030f, #4b0819 58%, #1e0108);
}

.formats-hero-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: 58% 42%;
  align-items: center;
}

.formats-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 5.3vw, 73px);
}

.formats-hero p:not(.eyebrow) {
  max-width: 630px;
  color: rgb(255 250 244 / 78%);
  font-size: 17px;
}

.formats-hero-art {
  min-height: 400px;
  transform: rotate(2deg) scale(0.94);
}

.notebook--hero {
  top: 34px;
  left: 5%;
  width: 68%;
  height: 330px;
}

.formats-hero-art .paper-lines {
  top: 55px;
  right: -32%;
  width: 65%;
  height: 290px;
}

.formats-hero-art .gold-pen {
  top: 86px;
  right: -6%;
}

.service-list {
  padding-block: 10px 24px;
}

.service-row {
  display: grid;
  min-height: 300px;
  grid-template-columns: 135px minmax(280px, 1fr) minmax(350px, 1.25fr);
  gap: 26px;
  align-items: center;
  padding: 44px 22px;
  border-bottom: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 0;
}

.service-number {
  align-self: start;
  text-align: center;
}

.service-number b {
  display: block;
  margin-bottom: 24px;
  color: #d4b99b;
  font-family: var(--serif);
  font-size: 52px;
  font-weight: 400;
  line-height: 1;
}

.service-number span {
  display: grid;
  width: 92px;
  height: 92px;
  margin: auto;
  place-items: center;
  border-radius: 50%;
  color: var(--wine-700);
  background: #eee2d7;
  font-family: var(--serif);
  font-size: 50px;
}

.service-copy h2 {
  margin-bottom: 28px;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 47px);
}

.service-copy h3,
.service-aside h3 {
  margin-bottom: 15px;
  color: #b27333;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-copy p {
  margin-bottom: 17px;
  font-size: 16px;
}

.service-copy ul,
.service-aside ul {
  margin: 0;
  padding-left: 20px;
}

.service-copy li,
.service-aside li {
  margin-block: 8px;
}

.service-aside {
  padding-left: 46px;
  border-left: 1px solid var(--line);
}

.service-aside .button {
  width: min(100%, 270px);
  margin-top: 20px;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 35px;
}

.result-note {
  margin-top: 24px;
  padding: 16px 24px;
  border-radius: 5px;
  background: #eee3d9;
}

.result-note b {
  display: inline-block;
  margin-bottom: 5px;
  color: #b27333;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-picture {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 6px;
  background:
    radial-gradient(circle at 75% 20%, #8a0d33 0 8%, transparent 9%),
    radial-gradient(circle at 84% 24%, #660720 0 11%, transparent 12%),
    linear-gradient(135deg, #22020a, #5d0c21 56%, #1d0108);
  box-shadow: inset 0 0 60px rgb(0 0 0 / 38%);
}

.service-picture--laptop span {
  position: absolute;
  bottom: 45px;
  left: 12%;
  width: 52%;
  height: 115px;
  border: 10px solid #181415;
  border-bottom-width: 14px;
  border-radius: 6px;
  background: linear-gradient(140deg, #080808, #32131a);
  box-shadow: 0 18px 20px rgb(0 0 0 / 50%);
  transform: perspective(300px) rotateX(-3deg);
}

.service-picture--laptop span::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -28px;
  left: -30px;
  height: 15px;
  background: linear-gradient(#777, #272727);
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0 100%);
}

.service-aside--split {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 20px;
  align-items: center;
  padding-left: 0;
  border-left: 0;
}

.service-picture--charts {
  min-height: 190px;
}

.service-picture--charts span {
  position: absolute;
  right: 14%;
  bottom: 24px;
  width: 70%;
  height: 105px;
  background:
    linear-gradient(160deg, transparent 48%, #a66c4d 49% 51%, transparent 52%),
    repeating-linear-gradient(0deg, #f1e7db 0 20px, #d5c5b5 21px);
  box-shadow: 0 8px 18px rgb(0 0 0 / 35%);
  transform: rotate(-5deg);
}

.contact-section {
  min-height: 430px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 67% 38%, #6c1029 0%, transparent 35%),
    linear-gradient(105deg, #35030f, #4e091b 55%, #21020a);
}

.contact-grid {
  display: grid;
  min-height: 430px;
  grid-template-columns: 48% 52%;
  align-items: center;
}

.contact-copy {
  position: relative;
  z-index: 4;
  padding-block: 42px;
}

.contact-copy h2 {
  margin-bottom: 26px;
  font-size: clamp(48px, 5vw, 68px);
}

.contact-copy p {
  margin-bottom: 7px;
  color: rgb(255 250 244 / 82%);
}

.contact-copy p strong {
  color: var(--gold-light);
  font-weight: 500;
}

.contact-copy .button {
  min-width: 340px;
  margin-top: 25px;
}

.contact-art {
  position: relative;
  align-self: stretch;
}

.contact-art::before {
  top: 10%;
  left: 12%;
  width: 270px;
  height: 210px;
}

.contact-art .vase {
  bottom: 115px;
  left: 26%;
  width: 105px;
  height: 145px;
}

.book-stack--large {
  right: 0;
  bottom: 80px;
  transform: scale(1.35);
}

.legal-page {
  min-height: 100vh;
  color: var(--white);
  background: linear-gradient(135deg, var(--wine-900), var(--wine-950));
}

.legal-content {
  max-width: 820px;
  padding-block: 90px;
}

.legal-content h1 {
  margin-bottom: 32px;
  font-size: clamp(42px, 6vw, 68px);
}

.legal-content p {
  color: rgb(255 250 244 / 80%);
}

.legal-content a {
  color: var(--gold-light);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .site-nav { gap: 22px; }
  .site-nav a { font-size: 13px; }
  .header-cta { display: none; }
  .hero-grid { grid-template-columns: 56% 44%; }
  .hero-photo { width: 54%; }
  .changes-grid { grid-template-columns: 1fr; }
  .changes .section-heading br { display: none; }
  .format-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-visual { opacity: 0.65; }
  .trust-grid { grid-template-columns: 36% 64%; }
  .closing h2 { padding-left: 0; }
  .service-row { grid-template-columns: 105px minmax(240px, 1fr) minmax(280px, 1.1fr); gap: 16px; padding-inline: 0; }
  .service-aside { padding-left: 25px; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 68px; }
  body { font-size: 15px; }
  .container { width: min(calc(100% - 32px), var(--container)); }
  .site-header { height: 68px; }
  .header-inner { display: flex; justify-content: space-between; }
  .brand { font-size: 30px; }
  .menu-toggle { display: block; order: 3; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    z-index: 30;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 40px;
    background: rgb(39 2 13 / 98%);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .site-nav a { padding: 16px; font-family: var(--serif); font-size: 26px; }
  .site-nav a::after { bottom: 8px; }
  .hero { min-height: auto; padding-bottom: 0; }
  .hero::after { background: linear-gradient(180deg, rgb(42 2 14 / 95%) 0%, rgb(53 4 18 / 78%) 48%, rgb(33 2 11 / 25%) 72%, #27020d 100%); }
  .hero-grid { min-height: 720px; grid-template-columns: 1fr; align-items: start; }
  .hero-photo { top: auto; width: 100%; height: 52%; }
  .hero-photo img { object-position: center 43%; }
  .hero-copy { padding-block: 48px 0; }
  .hero h1 { font-size: clamp(44px, 13vw, 61px); }
  .hero-lead { font-size: clamp(26px, 7.5vw, 34px); }
  .hero-text { max-width: 96%; font-size: 14px; }
  .section { padding-block: 46px; }
  .changes-grid { gap: 32px; }
  .section-heading h2 { font-size: 40px; }
  .benefits { display: grid; grid-template-columns: 1fr 1fr; }
  .benefit,
  .benefit:nth-child(-n + 3),
  .benefit:nth-child(n + 4) { grid-column: auto; min-height: 145px; padding: 18px 14px; border-top: 1px solid var(--line); border-right: 0; }
  .benefit:nth-child(odd) { border-right: 1px solid var(--line); }
  .benefit:first-child,
  .benefit:nth-child(2) { border-top: 0; }
  .benefit:last-child { grid-column: 1 / -1; min-height: 105px; }
  .approach { padding-bottom: 0; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-copy h2 { font-size: 40px; }
  .approach-art { min-height: 330px; margin-inline: -16px; }
  .notebook { left: 15%; width: 58%; height: 285px; }
  .paper-lines { right: -5%; height: 260px; }
  .format-grid { grid-template-columns: 1fr; }
  .format-card { min-height: 280px; }
  .format-card h3 { min-height: auto; }
  .trust { min-height: auto; padding-top: 220px; }
  .trust-visual { width: 100%; height: 250px; opacity: 0.8; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-copy { padding-left: 0; }
  .trust-accent { margin-left: 0; }
  .result-grid { grid-template-columns: 1fr 1fr; }
  .result-item { min-height: 110px; padding: 12px 14px; border-bottom: 1px solid var(--line); }
  .result-item:nth-child(2) { border-right: 0; }
  .result-item:nth-child(n + 3) { border-bottom: 0; }
  .closing-grid { grid-template-columns: 1fr; gap: 32px; }
  .closing h2 { font-size: 34px; }
  .closing-actions .button { width: 100%; }
  .footer-inner { min-height: 74px; flex-direction: column; justify-content: center; gap: 5px; }
  .formats-hero-grid { min-height: 670px; grid-template-columns: 1fr; align-items: start; padding-top: 52px; }
  .formats-hero h1 { font-size: clamp(44px, 12vw, 62px); }
  .formats-hero p:not(.eyebrow) { font-size: 15px; }
  .formats-hero-art { min-height: 300px; }
  .notebook--hero { left: 6%; width: 65%; height: 255px; }
  .formats-hero-art .paper-lines { right: -12%; height: 230px; }
  .formats-hero-art .gold-pen { height: 190px; }
  .service-row { min-height: auto; grid-template-columns: 76px 1fr; gap: 20px 16px; padding-block: 36px; }
  .service-number b { margin-bottom: 16px; font-size: 39px; }
  .service-number span { width: 68px; height: 68px; font-size: 35px; }
  .service-copy h2 { margin-bottom: 22px; font-size: 34px; }
  .service-aside,
  .service-picture { grid-column: 2; padding: 22px 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .service-aside--split { grid-template-columns: 1fr; }
  .two-columns { grid-template-columns: 1fr; }
  .service-picture { min-height: 190px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { padding-block: 50px 26px; }
  .contact-copy h2 { font-size: 52px; }
  .contact-copy .button { width: 100%; min-width: 0; }
  .contact-art { min-height: 280px; }
  .legal-content { padding-block: 60px; }
}

@media (max-width: 420px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .button { padding-inline: 20px; }
  .hero-grid { min-height: 760px; }
  .benefit { display: block; }
  .benefit p { font-size: 13px; }
  .line-icon { font-size: 36px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-item { min-height: 90px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .result-item:last-child { border-bottom: 0 !important; }
  .service-row { grid-template-columns: 1fr; }
  .service-number { display: flex; align-items: center; gap: 16px; text-align: left; }
  .service-number b { margin: 0; }
  .service-number span { width: 60px; height: 60px; margin: 0; }
  .service-aside,
  .service-picture { grid-column: 1; }
}

/* High-fidelity pass based on the supplied desktop renders. */
.site-header {
  height: 68px;
  background: rgba(46, 2, 15, 0.98);
}

.header-inner {
  grid-template-columns: 130px 1fr auto;
}

.brand {
  font-size: 31px;
  font-weight: 500;
}

.site-nav {
  gap: clamp(34px, 4.2vw, 68px);
  font-size: 13px;
}

.site-nav a {
  padding-block: 24px 22px;
}

.site-nav a::after {
  bottom: 12px;
}

.button {
  min-height: 43px;
  border-radius: 3px;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.button--gold {
  background: linear-gradient(112deg, #c48b3e, #e4b765 52%, #c28431);
  border-color: #e7bf73;
}

.eyebrow {
  margin-bottom: 12px;
  font-size: 11px;
  letter-spacing: 0.24em;
}

.section-heading h2 {
  font-weight: 500;
  letter-spacing: -0.025em;
}

.hero,
.hero-grid {
  min-height: 610px;
}

.hero {
  background: #31030f;
}

.hero::after {
  background: linear-gradient(90deg, #35030f 0%, #420617 42%, rgba(50, 3, 16, 0.54) 58%, rgba(22, 1, 8, 0.24) 100%);
}

.hero-photo {
  width: 60%;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(89, 8, 33, 0.2);
  mix-blend-mode: color;
  pointer-events: none;
}

.hero-photo img {
  object-position: 52% 46%;
  filter: saturate(0.72) contrast(1.08) brightness(0.72);
}

.hero-grid {
  grid-template-columns: 47% 53%;
}

.hero-copy {
  max-width: 515px;
  padding-block: 62px;
}

.hero h1 {
  margin-bottom: 12px;
  font-size: clamp(56px, 5.25vw, 74px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.hero-lead {
  margin-bottom: 25px;
  font-size: clamp(30px, 2.6vw, 37px);
  font-weight: 500;
  line-height: 1.06;
}

.hero-text {
  max-width: 475px;
  margin-bottom: 27px;
  font-size: 14px;
  line-height: 1.58;
}

.changes {
  padding-block: 55px 48px;
}

.changes-grid {
  grid-template-columns: 36% minmax(0, 1fr);
}

.changes .section-heading h2 {
  font-size: clamp(40px, 4.2vw, 55px);
  line-height: 0.98;
}

.changes .section-heading br {
  display: block;
}

.benefit {
  min-height: 118px;
  gap: 15px;
  padding: 6px 21px;
}

.benefit:nth-child(n + 4) {
  grid-column: span 2;
  min-height: 82px;
  padding-top: 18px;
}

.benefit:nth-child(5) {
  border-right: 1px solid var(--line);
}

.benefit:nth-child(6) {
  border-right: 0;
}

.benefit p {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.42;
}

.line-icon,
.card-icon {
  display: block;
  width: 42px;
  height: 42px;
  color: var(--wine-700);
  overflow: visible;
}

.approach {
  min-height: 480px;
  padding-block: 0;
  background: #3a0413;
}

.approach::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, #3a0413 0%, #450617 38%, rgba(58, 4, 19, 0.2) 68%, rgba(24, 1, 8, 0.2));
  pointer-events: none;
}

.approach-grid {
  position: relative;
  z-index: 2;
  min-height: 480px;
  grid-template-columns: 43% 57%;
}

.approach-copy {
  padding-block: 54px;
}

.approach-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(43px, 4.1vw, 57px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

.approach-copy p:not(.eyebrow) {
  max-width: 395px;
  margin-bottom: 15px;
  font-size: 13px;
  line-height: 1.55;
}

.approach-art,
.formats-hero-art {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  transform: none;
}

.approach-art {
  align-self: stretch;
  margin-right: calc((100vw - min(calc(100vw - 48px), var(--container))) / -2);
}

.approach-art img,
.formats-hero-art img,
.service-picture img,
.trust-visual img,
.contact-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-art img {
  object-position: 59% 50%;
}

.formats {
  padding-block: 24px 48px;
}

.formats .section-heading h2,
.results .section-heading h2 {
  font-size: clamp(39px, 3.8vw, 52px);
  line-height: 0.96;
}

.format-grid {
  gap: 13px;
}

.format-card {
  min-height: 320px;
  padding: 25px 27px 22px;
  background: rgba(255, 255, 255, 0.12);
}

.format-card .card-icon {
  width: 46px;
  height: 46px;
  min-height: 46px;
  margin-bottom: 15px;
}

.format-card h3 {
  min-height: 58px;
  margin-bottom: 12px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.02;
}

.format-card p {
  font-size: 12px;
  line-height: 1.5;
}

.format-card .button {
  min-height: 37px;
  margin-top: 13px;
}

.trust {
  min-height: 355px;
  padding-block: 0;
  background: #35030f;
}

.trust::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(25, 1, 8, 0.06) 0%, rgba(51, 3, 16, 0.4) 42%, #460619 57%, #36030f 100%);
  pointer-events: none;
}

.trust-visual {
  inset: 0 auto 0 0;
  width: 54%;
  opacity: 1;
  background: none;
}

.trust-visual::before,
.contact-art::before {
  display: none;
}

.trust-visual img {
  object-position: 49% 53%;
  filter: brightness(0.8) saturate(0.88);
}

.trust-grid {
  z-index: 3;
  min-height: 355px;
  grid-template-columns: 46% 54%;
  align-items: center;
}

.trust-copy {
  padding: 25px 0 25px 52px;
}

.trust-list li {
  margin-bottom: 9px;
  padding-left: 38px;
  font-size: 13px;
  line-height: 1.38;
}

.trust-list li::before {
  width: 23px;
  height: 23px;
  font-size: 11px;
}

.trust-accent {
  margin: 8px 0 0 38px;
  font-size: 20px;
}

.results {
  padding-block: 29px 34px;
}

.result-item {
  min-height: 72px;
  gap: 15px;
  padding: 7px 23px;
}

.result-item svg {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  color: var(--wine-700);
}

.result-item p {
  font-size: 12px;
}

.closing {
  padding-block: 30px;
}

.closing h2 {
  padding-left: 62px;
  font-size: clamp(32px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.01;
}

.closing-actions {
  gap: 20px;
}

.text-link {
  font-size: 13px;
}

/* Formats page */
.formats-hero {
  position: relative;
  min-height: 430px;
  background: #390412;
}

.formats-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  height: auto;
  background: linear-gradient(90deg, #390412 0%, #460617 49%, rgba(40, 2, 12, 0.18) 76%);
  pointer-events: none;
}

.formats-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 430px;
  grid-template-columns: 56% 44%;
}

.formats-hero h1 {
  margin-bottom: 19px;
  font-size: clamp(50px, 5.2vw, 71px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.94;
}

.formats-hero p:not(.eyebrow) {
  max-width: 565px;
  font-size: 14px;
  line-height: 1.55;
}

.formats-hero-art {
  align-self: stretch;
  margin-right: calc((100vw - min(calc(100vw - 48px), var(--container))) / -2);
}

.formats-hero-art img {
  object-position: 65% 50%;
}

.service-list {
  padding-block: 4px 18px;
}

.service-row {
  min-height: 285px;
  grid-template-columns: 120px minmax(280px, 1fr) minmax(360px, 1.28fr);
  gap: 25px;
  padding: 40px 18px;
}

.service-number b {
  margin-bottom: 21px;
  font-size: 48px;
  font-weight: 500;
}

.service-number span {
  width: 82px;
  height: 82px;
}

.service-number span svg {
  width: 47px;
  height: 47px;
}

.service-copy h2 {
  margin-bottom: 23px;
  font-size: clamp(34px, 3.5vw, 47px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 0.96;
}

.service-copy p,
.service-copy li,
.service-aside li {
  font-size: 13px;
  line-height: 1.5;
}

.service-copy h3,
.service-aside h3 {
  font-size: 11px;
}

.service-picture {
  min-height: 225px;
  padding: 0;
  border: 0;
  border-radius: 5px;
  background: #390412;
  box-shadow: 0 9px 20px rgba(48, 3, 15, 0.18);
}

.service-picture img {
  object-position: center;
}

.service-picture--charts {
  min-height: 185px;
}

.service-picture--charts img {
  object-position: 70% 50%;
}

.contact-section,
.contact-grid {
  min-height: 430px;
}

.contact-section {
  position: relative;
  background: #35030f;
}

.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #410518 0%, #480619 45%, rgba(50, 3, 16, 0.4) 68%, rgba(24, 1, 8, 0.3));
  pointer-events: none;
}

.contact-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 47% 53%;
}

.contact-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(50px, 5vw, 68px);
  font-weight: 500;
  line-height: 0.93;
}

.contact-copy p {
  margin-bottom: 6px;
  font-size: 13px;
}

.contact-art {
  align-self: stretch;
  margin-right: calc((100vw - min(calc(100vw - 48px), var(--container))) / -2);
}

.contact-art img {
  object-position: 49% 53%;
  filter: brightness(0.78) saturate(0.9);
}

@media (max-width: 980px) {
  .header-inner { grid-template-columns: auto 1fr auto; }
  .header-cta { display: inline-flex; min-width: 188px; padding-inline: 15px; font-size: 11px; }
  .site-nav { gap: 21px; }
  .format-grid { grid-template-columns: repeat(4, 1fr); }
  .format-card { min-height: 270px; padding: 21px 17px 18px; }
  .format-card h3 { font-size: 18px; }
  .format-card p { font-size: 10px; }
  .approach-art,
  .formats-hero-art,
  .contact-art { margin-right: -24px; }
  .trust-copy { padding-left: 30px; }
  .service-row { grid-template-columns: 100px minmax(240px, 1fr) minmax(280px, 1.1fr); gap: 16px; }
}

@media (max-width: 760px) {
  .site-header { height: 64px; }
  .header-inner { display: flex; }
  .brand { font-size: 27px; }
  .menu-toggle { display: block; }
  .site-nav { top: 64px; }
  .header-cta { display: none; }

  .hero,
  .hero-grid { min-height: 760px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero::after { background: linear-gradient(180deg, #35030f 0%, rgba(53, 3, 16, 0.98) 43%, rgba(45, 2, 13, 0.28) 71%, #27020d 100%); }
  .hero-photo { width: 100%; height: 52%; }
  .hero-photo img { object-position: 50% 41%; filter: saturate(0.7) contrast(1.06) brightness(0.76); }
  .hero-copy { max-width: 100%; padding-block: 38px 0; }
  .hero h1 { font-size: clamp(47px, 13.5vw, 60px); }
  .hero-lead { font-size: clamp(28px, 8vw, 34px); }
  .hero-text { max-width: 98%; font-size: 12px; line-height: 1.52; }

  .changes { padding-block: 39px 34px; }
  .changes-grid { grid-template-columns: 1fr; gap: 26px; }
  .changes .section-heading h2 { font-size: 40px; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .benefit,
  .benefit:nth-child(-n + 3),
  .benefit:nth-child(n + 4) { grid-column: auto; min-height: 128px; padding: 16px 12px; }
  .benefit p { font-size: 10px; }
  .line-icon { width: 34px; height: 34px; }
  .benefit:nth-child(odd) { border-right: 1px solid var(--line); }
  .benefit:nth-child(even) { border-right: 0; }
  .benefit:last-child { min-height: 128px; }

  .approach { padding-bottom: 0; }
  .approach-grid { min-height: 0; grid-template-columns: 1fr; }
  .approach-copy { padding-block: 43px 32px; }
  .approach-copy h2 { font-size: 42px; }
  .approach-copy p:not(.eyebrow) { font-size: 12px; }
  .approach-art { height: 310px; margin: 0 -16px; }
  .approach-art img { object-position: 61% 50%; }

  .formats { padding-block: 25px 36px; }
  .formats .section-heading h2 { font-size: 39px; }
  .format-grid { grid-template-columns: 1fr; gap: 11px; }
  .format-card { min-height: 265px; padding: 23px; }
  .format-card h3 { min-height: auto; }

  .trust { min-height: 0; padding-top: 225px; }
  .trust::after { background: linear-gradient(180deg, rgba(32, 1, 9, 0) 0%, rgba(45, 2, 13, 0.35) 34%, #420517 58%); }
  .trust-visual { width: 100%; height: 260px; }
  .trust-visual img { object-position: 48% 55%; }
  .trust-grid { min-height: 0; grid-template-columns: 1fr; }
  .trust-copy { padding: 30px 0 36px; }
  .trust-list li { font-size: 11px; }

  .results { padding-block: 28px 31px; }
  .results .section-heading h2 { font-size: 39px; }
  .result-grid { grid-template-columns: 1fr; }
  .result-item { min-height: 77px; border-right: 0; border-bottom: 1px solid var(--line) !important; }
  .result-item:last-child { border-bottom: 0 !important; }
  .result-item svg { width: 38px; height: 38px; }

  .closing-grid { grid-template-columns: 1fr; gap: 26px; }
  .closing h2 { padding-left: 0; font-size: 34px; }

  .formats-hero { min-height: 670px; }
  .formats-hero::after { inset: 64px 0 0; height: auto; background: linear-gradient(180deg, #390412 0%, #430517 48%, rgba(49, 3, 15, 0.15) 78%); }
  .formats-hero-grid { min-height: 670px; grid-template-columns: 1fr; padding-top: 42px; }
  .formats-hero h1 { font-size: clamp(47px, 13vw, 61px); }
  .formats-hero p:not(.eyebrow) { font-size: 12px; }
  .formats-hero-art { height: 305px; margin: 15px -16px 0; }
  .formats-hero-art img { object-position: 62% 50%; }

  .service-row { grid-template-columns: 70px 1fr; gap: 18px 14px; padding-block: 32px; }
  .service-number b { font-size: 37px; }
  .service-number span { width: 62px; height: 62px; }
  .service-number span svg { width: 36px; height: 36px; }
  .service-copy h2 { font-size: 35px; }
  .service-copy p,
  .service-copy li,
  .service-aside li { font-size: 11px; }
  .service-aside,
  .service-picture { grid-column: 2; }
  .service-picture { min-height: 185px; }

  .contact-section,
  .contact-grid { min-height: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-section::after { background: linear-gradient(180deg, #410518 0%, #460619 52%, rgba(34, 2, 10, 0.25) 78%); }
  .contact-copy { padding-block: 42px 20px; }
  .contact-copy h2 { font-size: 50px; }
  .contact-copy p { font-size: 11px; }
  .contact-art { height: 280px; margin: 0 -16px; }
  .contact-art img { object-position: 49% 53%; }
}

@media (max-width: 420px) {
  .approach-art,
  .formats-hero-art,
  .contact-art { margin-inline: -12px; }
  .service-row { grid-template-columns: 1fr; }
  .service-number { display: flex; align-items: center; gap: 16px; }
  .service-number b { margin: 0; }
  .service-number span { margin: 0; }
  .service-aside,
  .service-picture { grid-column: 1; }
}
