@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Montserrat:wght@400;500;600;700&display=swap');

.cv-site {
  --cv-burgundy: #5b2b2e;
  --cv-burgundy-deep: #421d21;
  --cv-ivory: #f8f6f1;
  --cv-paper: #efebe4;
  --cv-black: #0f0d0d;
  --cv-muted: #756b68;
  --cv-line: rgba(15, 13, 13, 0.18);
  --cv-line-light: rgba(255, 255, 255, 0.22);
  --cv-serif: 'Cormorant Garamond', Georgia, serif;
  --cv-sans: 'Montserrat', Arial, sans-serif;
}

.cv-site,
.cv-site * {
  box-sizing: border-box;
}

.cv-site {
  background: var(--cv-ivory);
  color: var(--cv-black);
  font-family: var(--cv-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow: hidden;
  scroll-behavior: smooth;
}

.cv-site img {
  display: block;
  height: auto;
  max-width: 100%;
}

.cv-site a {
  color: inherit;
  text-decoration: none;
}

.cv-site button {
  font: inherit;
}

.cv-container {
  margin: 0 auto;
  max-width: 1220px;
  padding-left: 34px;
  padding-right: 34px;
  width: 100%;
}

.cv-section {
  position: relative;
  scroll-margin-top: 90px;
}

/* La landing se comporta como una página canvas: oculta el header/footer del tema que la envuelve. */
body.cv-eventos-page .site-header,
body.cv-eventos-page #masthead,
body.cv-eventos-page #site-header,
body.cv-eventos-page #page > header,
body.cv-eventos-page .wp-site-blocks > header,
body.cv-eventos-page .wp-site-blocks > footer,
body.cv-eventos-page .wp-block-template-part.is-header,
body.cv-eventos-page .wp-block-template-part.is-footer,
body.cv-eventos-page .wp-block-template-part:has(> header),
body.cv-eventos-page .wp-block-template-part:has(> footer),
body.cv-eventos-page .entry-header,
body.cv-eventos-page .site-footer {
  display: none !important;
}

body.cv-eventos-page .wp-site-blocks,
body.cv-eventos-page .wp-site-blocks > main,
body.cv-eventos-page .entry-content,
body.cv-eventos-page .wp-block-post-content,
body.cv-eventos-page .site-content,
body.cv-eventos-page .site-main,
body.cv-eventos-page #primary,
body.cv-eventos-page .content-area,
body.cv-eventos-page .ast-container {
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

body.cv-eventos-page #page,
body.cv-eventos-page .site {
  margin: 0 !important;
  padding: 0 !important;
}

body.cv-eventos-page.ast-separate-container {
  background: #f8f6f1 !important;
  padding: 0 !important;
}

body.cv-eventos-page.ast-separate-container .ast-article-single,
body.cv-eventos-page .ast-article-single,
body.cv-eventos-page .ast-article-post,
body.cv-eventos-page .post-content {
  background: transparent !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.cv-skip-link {
  background: var(--cv-burgundy);
  color: #fff;
  left: 16px;
  padding: 10px 16px;
  position: fixed;
  top: -100px;
  z-index: 100;
}

.cv-skip-link:focus {
  top: 16px;
}

.cv-header {
  background: rgba(248, 246, 241, 0.94);
  border-bottom: 1px solid var(--cv-line);
  position: sticky;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 20;
}

.cv-header__inner {
  align-items: center;
  display: flex;
  gap: 28px;
  min-height: 88px;
}

.cv-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  text-decoration: none !important;
}

.cv-brand__lockup {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.cv-brand__mark-logo,
.cv-brand__wordmark,
.cv-brand__logo {
  display: block;
  height: auto;
  max-width: none;
}

.cv-brand__mark-logo {
  max-height: 38px;
  width: 60px;
}

.cv-brand__wordmark {
  max-height: 46px;
  width: 196px;
}

.cv-navigation {
  align-items: center;
  display: flex;
  gap: clamp(18px, 2.5vw, 36px);
  margin-left: auto;
}

.cv-navigation a,
.cv-button--header {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.cv-navigation a {
  color: #4a4341;
  padding: 8px 0;
  position: relative;
}

.cv-navigation a::after {
  background: var(--cv-burgundy);
  bottom: 0;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
  width: 100%;
}

.cv-navigation a:hover::after,
.cv-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cv-button {
  align-items: center;
  background: var(--cv-burgundy);
  border: 1px solid var(--cv-burgundy);
  color: #fff;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  gap: 17px;
  justify-content: center;
  letter-spacing: 0.16em;
  min-height: 49px;
  padding: 12px 21px;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.cv-button:hover,
.cv-button:focus-visible {
  background: var(--cv-black);
  border-color: var(--cv-black);
  color: #fff;
  transform: translateY(-2px);
}

.cv-hero__actions .cv-button,
.cv-hero__actions .cv-button:hover,
.cv-hero__actions .cv-button:focus-visible {
  color: #fff !important;
  text-decoration: none !important;
}

.cv-button span,
.cv-text-link span,
.cv-footer__mail span {
  font-size: 15px;
  line-height: 0;
}

.cv-button--header {
  background: transparent;
  border-color: var(--cv-burgundy);
  color: var(--cv-burgundy);
  gap: 11px;
  min-height: 42px;
  padding: 9px 15px;
}

.cv-button--header:hover,
.cv-button--header:focus-visible {
  background: var(--cv-burgundy);
  border-color: var(--cv-burgundy);
}

.cv-menu-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--cv-burgundy);
  cursor: pointer;
  display: none;
  font-size: 10px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.16em;
  padding: 8px;
  text-transform: uppercase;
}

.cv-menu-toggle__icon {
  display: grid;
  gap: 5px;
}

.cv-menu-toggle__icon i {
  background: currentColor;
  display: block;
  height: 1px;
  transition: transform 200ms ease;
  width: 20px;
}

.cv-hero {
  background-color: var(--cv-ivory);
  background-image: linear-gradient(rgba(91, 43, 46, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(91, 43, 46, 0.045) 1px, transparent 1px);
  background-size: 54px 54px;
  min-height: min(850px, calc(100vh - 88px));
}

.cv-hero__grid {
  align-items: center;
  display: grid;
  gap: clamp(55px, 9vw, 140px);
  grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.78fr);
  min-height: min(760px, calc(100vh - 150px));
  padding-bottom: 78px;
  padding-top: 82px;
}

.cv-kicker {
  color: var(--cv-burgundy);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.23em;
  margin: 0 0 25px;
  text-transform: uppercase;
}

.cv-kicker--light {
  color: #d8b9ad;
}

.cv-hero h1,
.cv-service h2,
.cv-social h2,
.cv-gallery h2 {
  font-family: var(--cv-serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.83;
  margin: 0;
}

.cv-hero h1 {
  color: var(--cv-burgundy);
  font-size: clamp(76px, 9vw, 142px);
}

.cv-hero h1 em,
.cv-service h2 em,
.cv-social h2 em,
.cv-gallery h2 em {
  color: var(--cv-black);
  font-style: italic;
  font-weight: 400;
}

.cv-hero__lead {
  font-family: var(--cv-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.16;
  margin: 36px 0 32px;
  max-width: 450px;
}

.cv-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.cv-text-link {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 600;
  gap: 14px;
  letter-spacing: 0.17em;
  padding: 8px 0;
  text-transform: uppercase;
}

.cv-text-link:hover,
.cv-text-link:focus-visible {
  color: var(--cv-burgundy);
}

.cv-text-link--light {
  color: #fff;
  margin-top: 24px;
}

.cv-text-link--light:hover,
.cv-text-link--light:focus-visible {
  color: #e1bcb2;
}

.cv-hero__signature {
  align-items: center;
  color: var(--cv-muted);
  display: flex;
  font-family: var(--cv-serif);
  font-size: 15px;
  gap: 13px;
  line-height: 1.05;
  margin-top: 66px;
}

.cv-hero__signature-line {
  background: var(--cv-burgundy);
  height: 1px;
  width: 44px;
}

.cv-hero__visual {
  justify-self: end;
  max-width: 492px;
  padding: 24px 24px 0 0;
  position: relative;
  width: 100%;
}

.cv-hero__visual::before {
  border: 1px solid var(--cv-burgundy);
  content: '';
  height: 85%;
  left: 0;
  position: absolute;
  top: 0;
  width: 88%;
}

.cv-hero__visual-frame {
  aspect-ratio: 0.82;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.cv-hero__visual-frame img {
  filter: saturate(0.76);
  height: 100%;
  object-fit: cover;
  object-position: 51% 20%;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1);
  width: 100%;
}

.cv-hero__visual:hover .cv-hero__visual-frame img {
  transform: scale(1.03);
}

.cv-hero__visual-stamp {
  align-items: center;
  background: var(--cv-burgundy);
  bottom: 38px;
  color: #fff;
  display: flex;
  height: 54px;
  left: -21px;
  justify-content: center;
  padding: 6px 12px;
  position: absolute;
  width: 176px;
  z-index: 2;
}

.cv-hero__visual-stamp-logo {
  display: block;
  height: auto;
  max-height: 47px;
  max-width: none !important;
  width: 124px;
}

.cv-hero__visual-caption {
  bottom: -6px;
  color: var(--cv-muted);
  font-family: var(--cv-serif);
  font-size: 16px;
  line-height: 1.15;
  margin: 0;
  position: absolute;
  right: -24px;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
  width: 190px;
  z-index: 2;
}

.cv-hero__visual-caption span {
  color: var(--cv-burgundy);
  font-family: var(--cv-sans);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-right: 8px;
}

.cv-hero__footer-note {
  align-items: center;
  border-top: 1px solid var(--cv-line);
  color: var(--cv-muted);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.14em;
  min-height: 58px;
  text-transform: uppercase;
}

.cv-hero__footer-note a {
  color: var(--cv-burgundy);
  font-weight: 600;
}

.cv-hero__footer-note a span {
  font-size: 16px;
  margin-left: 10px;
}

.cv-about {
  background: var(--cv-paper);
  padding-bottom: 124px;
  padding-top: 122px;
}

.cv-about__intro {
  align-items: start;
  display: grid;
  gap: clamp(55px, 10vw, 145px);
  grid-template-columns: minmax(260px, .74fr) minmax(0, 1fr);
}

.cv-about h2 {
  color: var(--cv-burgundy);
  font-family: var(--cv-serif);
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .83;
  margin: 0;
}

.cv-about h2 em {
  color: var(--cv-black);
  font-style: italic;
  font-weight: 400;
}

.cv-about__copy {
  border-left: 1px solid var(--cv-burgundy);
  max-width: 580px;
  padding-left: 27px;
}

.cv-about__copy p {
  color: #443b39;
  font-family: var(--cv-serif);
  font-size: 21px;
  line-height: 1.18;
  margin: 0;
  text-align: justify;
}

.cv-about__copy p + p {
  margin-top: 21px;
}

.cv-process__heading {
  align-items: end;
  border-top: 1px solid var(--cv-line);
  display: flex;
  justify-content: space-between;
  margin-top: 101px;
  padding-top: 31px;
}

.cv-process__heading .cv-kicker {
  margin-bottom: 19px;
}

.cv-process__heading h3 {
  color: var(--cv-black);
  font-family: var(--cv-serif);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -.04em;
  line-height: .85;
  margin: 0;
}

.cv-process__heading h3 em {
  color: var(--cv-burgundy);
  font-style: italic;
  font-weight: 400;
}

.cv-process__heading > p {
  color: var(--cv-muted);
  font-family: var(--cv-serif);
  font-size: 20px;
  line-height: 1.12;
  margin: 0 0 4px;
  max-width: 335px;
}

.cv-process-grid {
  display: grid;
  gap: 0 26px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}

.cv-process-grid li {
  border-top: 1px solid var(--cv-line);
  min-height: 147px;
  padding: 16px 0 19px;
}

.cv-process-grid li:nth-child(n + 4) {
  border-top: 0;
  border-bottom: 1px solid var(--cv-line);
  padding-bottom: 16px;
  padding-top: 19px;
}

.cv-process-grid li > span {
  color: var(--cv-burgundy);
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .17em;
  margin-bottom: 12px;
}

.cv-process-grid li strong {
  color: var(--cv-burgundy);
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cv-process-grid li p {
  color: #655a56;
  font-family: var(--cv-serif);
  font-size: 18px;
  line-height: 1.08;
  margin: 6px 0 0;
  max-width: 240px;
}

.cv-service--dark {
  background: var(--cv-burgundy);
  color: #fff;
}

.cv-service__grid {
  display: grid;
  gap: clamp(65px, 10vw, 150px);
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  padding-bottom: 120px;
  padding-top: 120px;
}

.cv-service h2,
.cv-social h2,
.cv-gallery h2 {
  font-size: clamp(62px, 7vw, 104px);
}

.cv-service h2 {
  color: #fff;
}

.cv-service h2 em {
  color: #e8cbc1;
}

.cv-service__intro > p:not(.cv-kicker) {
  color: #f0dcd5;
  font-family: var(--cv-serif);
  font-size: 21px;
  line-height: 1.23;
  margin: 38px 0 0;
  max-width: 370px;
  text-align: justify;
}

.cv-service-options {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  max-width: 450px;
}

.cv-service-option {
  align-items: start;
  color: #fff;
  cursor: default;
  display: grid;
  gap: 13px;
  text-decoration: none;
}

.cv-service-option--primary {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .42);
  grid-template-columns: 26px 1fr;
  min-height: 82px;
  padding: 12px 15px;
  transition: background 180ms ease, border-color 180ms ease;
}

.cv-service-option--primary:hover {
  background: rgba(255, 255, 255, .18);
  border-color: #fff;
  color: #fff;
}

.cv-service-option--primary > span:first-child {
  color: #e1bcb2;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .16em;
  padding-top: 4px;
}

.cv-service-option__body {
  display: grid;
  gap: 5px;
}

.cv-service-option__body strong {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.cv-service-option__body small {
  color: #f0dcd5;
  font-family: var(--cv-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.cv-service-options__secondary {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 1fr);
}

.cv-service-option--small {
  border: 1px solid rgba(255, 255, 255, .25);
  font-size: 9px;
  font-weight: 600;
  grid-template-columns: 1fr;
  letter-spacing: .1em;
  min-height: 118px;
  padding: 14px 12px;
  transition: background 180ms ease, border-color 180ms ease;
}

.cv-service-option--small:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  color: #fff;
}

.cv-service-option--small .cv-service-option__body strong {
  font-size: 12px;
  letter-spacing: .08em;
}

.cv-service__content {
  align-items: end;
  display: grid;
  gap: 49px;
  grid-template-columns: minmax(0, 1.15fr) minmax(190px, 0.75fr);
}

.cv-service__content--options {
  display: block;
}

.cv-service__content--options .cv-service-options {
  margin-top: 0;
  max-width: none;
}

.cv-social {
  background: var(--cv-paper);
}

.cv-social__grid {
  align-items: center;
  display: grid;
  gap: clamp(65px, 11vw, 165px);
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  padding-bottom: 135px;
  padding-top: 135px;
}

.cv-social__image-wrap {
  padding: 0 0 28px 28px;
  position: relative;
}

.cv-social__image-wrap::before {
  border: 1px solid var(--cv-burgundy);
  content: '';
  height: calc(100% - 28px);
  left: 0;
  position: absolute;
  top: 0;
  width: calc(100% - 28px);
}

.cv-social__image-wrap img {
  aspect-ratio: 0.86;
  filter: saturate(0.7);
  object-fit: cover;
  position: relative;
  width: 100%;
}

.cv-social__image-note {
  background: var(--cv-burgundy);
  bottom: 0;
  color: #fff;
  font-family: var(--cv-serif);
  font-size: 17px;
  line-height: 1;
  padding: 13px 17px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.cv-social__copy > p:not(.cv-kicker) {
  color: #443b39;
  font-family: var(--cv-serif);
  font-size: 22px;
  line-height: 1.2;
  margin: 38px 0 30px;
  max-width: 500px;
  text-align: justify;
}

.cv-social h2 em {
  color: var(--cv-burgundy);
}

.cv-social blockquote {
  border-left: 1px solid var(--cv-burgundy);
  color: var(--cv-burgundy);
  font-family: var(--cv-serif);
  font-size: 25px;
  line-height: 1.1;
  margin: 0 0 33px;
  max-width: 470px;
  padding: 3px 0 3px 21px;
}

.cv-social-options {
  display: grid;
  gap: 9px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 33px;
  max-width: 550px;
}

.cv-social-options article {
  border: 1px solid var(--cv-burgundy);
  color: var(--cv-burgundy);
  display: grid;
  font-size: 10px;
  font-weight: 600;
  gap: 12px;
  grid-template-columns: 1fr;
  align-items: center;
  cursor: default;
  letter-spacing: .1em;
  min-height: 88px;
  padding: 10px 13px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.cv-social-option__body {
  display: grid;
  gap: 5px;
  text-align: left;
}

.cv-social-option__body strong {
  color: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cv-social-option__body small {
  color: #655a56;
  font-family: var(--cv-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: none;
}

.cv-social-options article:hover {
  background: rgba(91, 43, 46, .09);
  color: var(--cv-burgundy);
}

.cv-social-options article.is-featured {
  background: var(--cv-burgundy);
  color: #fff;
  min-height: 111px;
  padding-left: 16px;
  padding-right: 16px;
}

.cv-social-options article.is-featured .cv-social-option__body small {
  color: #f0dcd5;
}

.cv-social-options article.is-featured:hover {
  background: var(--cv-black);
  border-color: var(--cv-black);
  color: #fff;
}

.cv-button--outline {
  background: transparent;
  color: var(--cv-burgundy);
}

.cv-button--outline:hover,
.cv-button--outline:focus-visible {
  background: var(--cv-burgundy);
  border-color: var(--cv-burgundy);
}

.cv-testimonials {
  background: var(--cv-ivory);
  border-top: 1px solid var(--cv-line);
  padding-bottom: 118px;
  padding-top: 116px;
}

.cv-testimonials__intro {
  align-items: end;
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.cv-testimonials h2 {
  color: var(--cv-burgundy);
  font-family: var(--cv-serif);
  font-size: clamp(62px, 7vw, 104px);
  font-weight: 500;
  letter-spacing: -.045em;
  line-height: .83;
  margin: 0;
}

.cv-testimonials h2 em {
  color: var(--cv-black);
  font-style: italic;
  font-weight: 400;
}

.cv-testimonials__intro > p {
  color: var(--cv-muted);
  font-family: var(--cv-serif);
  font-size: 21px;
  line-height: 1.18;
  margin: 0 0 4px;
  max-width: 320px;
}

.cv-testimonials__grid {
  border-top: 1px solid var(--cv-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 76px;
}

.cv-testimonial {
  margin: 0;
  min-width: 0;
  padding: 26px 28px 0 0;
}

.cv-testimonial + .cv-testimonial {
  border-left: 1px solid var(--cv-line);
  padding-left: 28px;
}

.cv-testimonial__mark {
  color: var(--cv-burgundy);
  font-family: var(--cv-serif);
  font-size: 67px;
  line-height: .57;
}

.cv-testimonial blockquote {
  color: var(--cv-black);
  font-family: var(--cv-serif);
  font-size: clamp(23px, 2.2vw, 30px);
  line-height: 1.03;
  margin: 22px 0 31px;
}

.cv-testimonial figcaption {
  align-items: center;
  border-top: 1px solid var(--cv-line);
  display: flex;
  gap: 12px;
  padding-top: 13px;
}

.cv-testimonial__avatar {
  align-items: center;
  background: var(--cv-burgundy);
  border-radius: 50%;
  color: #fff;
  display: inline-flex;
  flex: 0 0 38px;
  font-family: var(--cv-serif);
  font-size: 16px;
  height: 38px;
  justify-content: center;
  overflow: hidden;
  width: 38px;
}

.cv-testimonial__avatar img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.cv-testimonial__name {
  color: var(--cv-burgundy);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.cv-gallery {
  background: var(--cv-paper);
  color: var(--cv-black);
  padding-bottom: 126px;
  padding-top: 119px;
}

.cv-gallery__intro {
  align-items: end;
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: 81px;
}

.cv-gallery h2 em {
  color: var(--cv-black);
}

.cv-gallery h2 {
  color: var(--cv-burgundy);
}

.cv-gallery .cv-kicker--light {
  color: var(--cv-burgundy);
}

.cv-gallery__intro > p {
  color: var(--cv-muted);
  font-family: var(--cv-serif);
  font-size: 21px;
  line-height: 1.18;
  margin: 0 0 3px;
  max-width: 315px;
  text-align: justify;
}

.cv-carousel + .cv-carousel {
  border-top: 1px solid var(--cv-line);
  margin-top: 78px;
  padding-top: 57px;
}

.cv-carousel__header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}

.cv-carousel__header > div:first-child {
  align-items: baseline;
  display: flex;
  gap: 15px;
}

.cv-carousel__number {
  color: var(--cv-burgundy);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.cv-carousel h3 {
  color: var(--cv-burgundy);
  font-family: var(--cv-serif);
  font-size: 31px;
  font-weight: 500;
  line-height: 1;
  margin: 0;
}

.cv-carousel__controls {
  display: flex;
  gap: 8px;
}

.cv-carousel__button {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(91, 43, 46, 0.5);
  border-radius: 0;
  color: var(--cv-burgundy);
  cursor: pointer;
  display: inline-flex;
  font-size: 18px;
  height: 42px;
  justify-content: center;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
  width: 42px;
}

.cv-carousel__button:hover:not(:disabled),
.cv-carousel__button:focus-visible:not(:disabled) {
  background: var(--cv-burgundy);
  border-color: var(--cv-burgundy);
  color: #fff;
}

.cv-carousel__button:disabled {
  cursor: not-allowed;
  opacity: 0.33;
}

.cv-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 15px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--cv-burgundy) transparent;
  scrollbar-width: thin;
}

.cv-carousel__track::-webkit-scrollbar {
  height: 4px;
}

.cv-carousel__track::-webkit-scrollbar-thumb {
  background: var(--cv-burgundy);
}

.cv-slide {
  flex: 0 0 calc((100% - 18px) / 2);
  margin: 0;
  min-width: 0;
  scroll-snap-align: start;
}

.cv-slide img {
  aspect-ratio: 1.42;
  filter: saturate(0.72);
  object-fit: cover;
  transition: filter 300ms ease, transform 500ms ease;
  width: 100%;
}

.cv-slide:hover img {
  filter: saturate(0.95);
  transform: scale(1.015);
}

.cv-slide figcaption {
  display: grid;
  gap: 2px;
  padding-top: 15px;
}

.cv-slide figcaption span,
.cv-slide figcaption small {
  color: var(--cv-burgundy);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.cv-slide figcaption strong {
  color: var(--cv-black);
  font-family: var(--cv-serif);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.cv-footer {
  background: var(--cv-burgundy-deep);
  color: #fff;
}

.cv-footer__top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: 172px;
}

.cv-footer__brand {
  align-items: center;
  display: flex;
}

.cv-brand__logo--footer {
  max-height: 52px;
  width: 136px;
}

.cv-footer__contact {
  align-items: flex-end;
  display: grid;
  gap: 8px;
  justify-items: end;
}

.cv-footer__mail {
  align-items: center;
  display: inline-flex;
  font-family: var(--cv-serif);
  font-size: 22px;
  gap: 14px;
  padding-bottom: 0;
}

.cv-footer__contact > a:not(.cv-footer__mail) {
  color: #f3e0d9;
  font-size: 10px;
  letter-spacing: .08em;
  text-align: right;
}

.cv-footer__bottom {
  border-top: 1px solid var(--cv-line-light);
  color: #c9aaa0;
  display: flex;
  font-size: 8px;
  justify-content: space-between;
  letter-spacing: 0.16em;
  min-height: 53px;
  padding-bottom: 15px;
  padding-top: 15px;
  text-transform: uppercase;
}

.cv-footer__bottom a {
  color: #fff;
}

.cv-site :focus-visible {
  outline: 2px solid #dcbdb2;
  outline-offset: 4px;
}

@media (max-width: 960px) {
  .cv-header__inner {
    gap: 18px;
  }

  .cv-navigation {
    gap: 16px;
  }

  .cv-navigation a,
  .cv-button--header {
    font-size: 8px;
  }

  .cv-hero__grid {
    gap: 55px;
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  }

  .cv-hero h1 {
    font-size: clamp(70px, 10vw, 112px);
  }

  .cv-service__grid,
  .cv-social__grid {
    gap: 55px;
  }

  .cv-about__intro {
    gap: 55px;
  }

  .cv-process__heading {
    gap: 45px;
  }

  .cv-service__content {
    gap: 25px;
    grid-template-columns: 1fr;
  }

  .cv-service__content--options {
    display: block;
  }

}

@media (max-width: 700px) {
  .cv-container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cv-header__inner {
    min-height: 74px;
  }

  .cv-brand__mark-logo {
    max-height: 33px;
    width: 48px;
  }

  .cv-brand__wordmark {
    max-height: 39px;
    width: 130px;
  }

  .cv-menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .cv-navigation {
    align-items: stretch;
    background: var(--cv-ivory);
    border-bottom: 1px solid var(--cv-line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 13px 20px 19px;
    position: absolute;
    top: 100%;
    width: 100%;
  }

  .cv-navigation[data-open='true'] {
    display: flex;
  }

  .cv-navigation a {
    border-bottom: 1px solid var(--cv-line);
    font-size: 10px;
    padding: 13px 0;
  }

  .cv-button--header {
    font-size: 8px;
    min-height: 39px;
    padding: 8px 10px;
  }

  .cv-hero__grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
    min-height: auto;
    padding-bottom: 45px;
    padding-top: 73px;
  }

  .cv-hero__copy {
    width: 100%;
  }

  .cv-hero h1 {
    font-size: clamp(76px, 23vw, 120px);
  }

  .cv-hero__lead {
    font-size: 25px;
    max-width: 370px;
  }

  .cv-hero__signature {
    margin-top: 45px;
  }

  .cv-hero__visual {
    align-self: center;
    max-width: 410px;
  }

  .cv-hero__visual-stamp {
    bottom: 24px;
    height: 50px;
    left: -10px;
    width: 158px;
  }

  .cv-hero__visual-stamp-logo {
    max-height: 43px;
    width: 112px;
  }

  .cv-hero__visual-caption {
    display: none;
  }

  .cv-hero__footer-note {
    align-items: flex-start;
    flex-direction: column;
    gap: 13px;
    min-height: 88px;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  .cv-service__grid,
  .cv-social__grid {
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .cv-about {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .cv-about__intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .cv-about__copy {
    padding-left: 20px;
  }

  .cv-process__heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
    margin-top: 72px;
  }

  .cv-process__heading > p {
    font-size: 21px;
  }

  .cv-process-grid {
    gap: 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .cv-process-grid li,
  .cv-process-grid li:nth-child(n + 4) {
    border-bottom: 0;
    border-top: 1px solid var(--cv-line);
    min-height: 150px;
    padding-bottom: 16px;
    padding-top: 16px;
  }

  .cv-process-grid li p {
    font-size: 17px;
  }

  .cv-service__intro > p:not(.cv-kicker),
  .cv-social__copy > p:not(.cv-kicker) {
    font-size: 22px;
  }

  .cv-service__content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .cv-service__content--options {
    display: block;
  }

  .cv-service-options__secondary {
    grid-template-columns: 1fr;
  }

  .cv-social__image-wrap {
    align-self: center;
    max-width: 420px;
    width: 100%;
  }

  .cv-social__copy {
    width: 100%;
  }

  .cv-social-options {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .cv-social-options article.is-featured {
    min-height: 92px;
  }

  .cv-testimonials {
    padding-bottom: 80px;
    padding-top: 80px;
  }

  .cv-testimonials__intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 29px;
  }

  .cv-testimonials__intro > p {
    font-size: 21px;
  }

  .cv-testimonials__grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .cv-testimonial,
  .cv-testimonial + .cv-testimonial {
    border-left: 0;
    border-top: 1px solid var(--cv-line);
    padding: 25px 0 0;
  }

  .cv-testimonial:first-child {
    border-top: 0;
  }

  .cv-testimonial blockquote {
    font-size: 29px;
  }

  .cv-gallery {
    padding-bottom: 82px;
    padding-top: 80px;
  }

  .cv-gallery__intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 29px;
    margin-bottom: 60px;
  }

  .cv-gallery__intro > p {
    font-size: 21px;
  }

  .cv-carousel + .cv-carousel {
    margin-top: 63px;
    padding-top: 45px;
  }

  .cv-slide {
    flex-basis: 86%;
  }

  .cv-footer__top {
    align-items: flex-start;
    flex-direction: column;
    gap: 35px;
    min-height: auto;
    padding-bottom: 48px;
    padding-top: 48px;
  }

  .cv-footer__mail {
    font-size: 19px;
  }

  .cv-brand__logo--footer {
    max-height: 46px;
    width: 120px;
  }

  .cv-footer__contact {
    align-items: flex-start;
    justify-items: start;
  }

  .cv-footer__contact > a:not(.cv-footer__mail) {
    text-align: left;
  }

  .cv-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cv-site,
  .cv-site * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
