@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&family=Inter:wght@400;500;600&display=swap");

:root {
  --ivory: #faf5e8;
  --paper: #fffdf8;
  --brown: #5b3b26;
  --brown-deep: #30231b;
  --gold: #e9bb1d;
  --gold-soft: #c59a43;
  --ink: #252522;
  --muted: #6f6a62;
  --line: rgba(91, 59, 38, 0.2);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
}

* {
  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;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(
    rgba(91, 59, 38, 0.055) 0.55px,
    transparent 0.55px
  );
  background-size: 6px 6px;
  content: "";
  pointer-events: none;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: minmax(190px, 255px) 1fr auto;
  align-items: center;
  min-height: 92px;
  padding: 13px clamp(24px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.96);
  backdrop-filter: blur(14px);
}

.brand {
  width: min(100%, 230px);
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2vw, 34px);
  padding: 0 clamp(20px, 2.5vw, 42px);
}

.site-nav a {
  position: relative;
  color: var(--brown-deep);
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

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

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

.header-cta,
.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid var(--brown);
  background: var(--brown);
  color: white;
  font-weight: 600;
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.header-cta {
  min-height: 54px;
  padding-inline: 24px;
  font-size: 0.92rem;
}

.header-cta:hover,
.button--primary:hover {
  background: var(--brown-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  min-height: calc(100vh - 92px);
  background: var(--ivory);
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(72px, 8vw, 126px) clamp(34px, 5vw, 84px);
  animation: hero-up 500ms ease both;
}

.eyebrow {
  margin: 0 0 32px;
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow span {
  margin-inline: 8px;
  color: var(--gold-soft);
}

.home-hero h1,
.section-heading h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.home-hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 5.6vw, 6.15rem);
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: #4d4a45;
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(26px, 4vw, 60px);
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 8px;
  border-bottom: 2px solid var(--gold-soft);
  font-weight: 500;
}

.text-link span {
  color: var(--gold-soft);
  font-size: 1.5em;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(197, 154, 67, 0.65);
  color: #4c4943;
  font-size: 0.88rem;
}

.trust-line i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.home-hero__image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%, 0 9%);
  background: #d9d0c2;
}

.home-hero__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-image 700ms ease both;
}

.image-note {
  position: absolute;
  right: 32px;
  bottom: 32px;
  display: flex;
  min-width: 245px;
  flex-direction: column;
  padding: 18px 22px;
  border-left: 4px solid var(--gold);
  background: rgba(48, 35, 27, 0.9);
  color: white;
  backdrop-filter: blur(8px);
}

.image-note span {
  color: #e8dfd4;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.image-note strong {
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.section {
  padding: clamp(84px, 10vw, 150px) clamp(24px, 6vw, 96px);
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(520px, 1.35fr);
  gap: clamp(60px, 10vw, 170px);
  background: var(--paper);
}

.section-heading {
  align-self: start;
  position: sticky;
  top: 140px;
}

.section-heading h2 {
  max-width: 520px;
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
}

.section-heading > p:last-child {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-list__item {
  display: grid;
  grid-template-columns: 46px 1fr 42px;
  gap: 20px;
  align-items: start;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  transition:
    background 180ms ease,
    padding 180ms ease;
}

.service-list__item:hover {
  padding-inline: 18px;
  background: rgba(233, 187, 29, 0.08);
}

.service-number {
  padding-top: 8px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.service-list h3 {
  margin: 0;
  color: var(--brown-deep);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.1;
}

.service-list p {
  max-width: 620px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.service-arrow {
  color: var(--brown);
  font-size: 1.5rem;
}

.site-footer {
  padding: 70px clamp(24px, 6vw, 96px) 28px;
  background: var(--brown-deep);
  color: #f7efe5;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1.5fr;
  gap: clamp(30px, 5vw, 80px);
}

.footer-brand img {
  width: min(100%, 250px);
  padding: 12px;
  background: var(--ivory);
}

.footer-brand p {
  max-width: 360px;
  margin-top: 22px;
  color: #cfc3b7;
}

.footer-label {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer__top > div:not(.footer-brand) > a {
  display: block;
  margin: 11px 0;
  color: #dcd3ca;
  font-size: 0.9rem;
}

.site-footer__top .footer-address {
  margin-top: 20px;
  color: #cfc3b7;
  line-height: 1.55;
}

.site-footer h2 {
  max-width: 430px;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.text-link--light {
  display: inline-flex !important;
  margin-top: 22px !important;
  color: white !important;
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 70px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #b8ada4;
  font-size: 0.78rem;
}

@keyframes hero-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image {
  from {
    opacity: 0;
    transform: scale(1.025);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 1240px) {
  .site-header {
    grid-template-columns: 190px 1fr auto;
  }

  .site-nav {
    gap: 18px;
    padding-inline: 24px;
  }

  .site-nav a {
    font-size: 0.82rem;
  }

  .header-cta {
    padding-inline: 17px;
    font-size: 0.82rem;
  }

  .home-hero h1 {
    font-size: clamp(3.5rem, 5.9vw, 5.2rem);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    padding-block: 10px;
  }

  .brand {
    width: 190px;
  }

  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--line);
    background: transparent;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--brown);
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .site-nav--open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
    font-size: 0.96rem;
  }

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

  .header-cta {
    display: none;
  }

  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .home-hero__content {
    min-height: 660px;
  }

  .home-hero__image {
    min-height: 660px;
    clip-path: none;
  }

  .services-intro {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .section-heading {
    position: static;
  }

  .site-footer__top {
    grid-template-columns: 1.4fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 18px;
  }

  .brand {
    width: 165px;
  }

  .home-hero__content {
    min-height: auto;
    padding: 70px 24px 58px;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 0.68rem;
  }

  .home-hero h1 {
    font-size: clamp(3.1rem, 15vw, 4.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
  }

  .button {
    width: 100%;
  }

  .text-link {
    align-self: flex-start;
  }

  .trust-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .trust-line i {
    display: none;
  }

  .home-hero__image {
    min-height: 520px;
  }

  .image-note {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-width: 0;
  }

  .section {
    padding-inline: 24px;
  }

  .service-list__item {
    grid-template-columns: 32px 1fr 26px;
    gap: 10px;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Interior pages */
.page-hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 720px;
  background: var(--ivory);
}
.page-hero__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(72px, 8vw, 126px) clamp(32px, 5.5vw, 88px);
}
.page-hero h1,
.service-overview h2,
.process-section h2,
.faq-section h2,
.wide-cta h2,
.contact-hero h1,
.blog-hero h1,
.contact-expectations h2,
.article-guides h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
}
.page-hero h1 {
  font-size: clamp(4rem, 5.6vw, 6.2rem);
}
.page-hero__copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px 0 36px;
  color: #555047;
  font-size: 1.08rem;
}
.page-hero__image {
  min-height: 720px;
  overflow: hidden;
}
.page-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-overview,
.process-section,
.faq-section,
.contact-expectations {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(520px, 1.2fr);
  gap: clamp(60px, 10vw, 170px);
}
.service-overview h2,
.process-section h2,
.faq-section h2,
.contact-expectations h2 {
  font-size: clamp(3rem, 4.6vw, 4.8rem);
}
.service-overview__body .lead {
  margin: 0 0 54px;
  color: #4d4942;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.3vw, 2.45rem);
  line-height: 1.28;
}
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.highlight-grid article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.highlight-grid article > span,
.process-list > li > span,
.expectation-grid span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
}
.highlight-grid h3,
.process-list h3,
.expectation-grid h3,
.article-card h2,
.article-columns h3 {
  margin: 30px 0 10px;
  color: var(--brown-deep);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
}
.highlight-grid p,
.process-list p,
.expectation-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.process-section {
  background: var(--brown-deep);
  color: #fff;
}
.process-heading {
  align-self: start;
  position: sticky;
  top: 140px;
}
.process-section .eyebrow {
  color: var(--gold);
}
.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.process-list h3 {
  margin-top: 0;
  color: #fff;
}
.process-list p {
  color: #cec4ba;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 27px 0;
  color: var(--brown-deep);
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--gold-soft);
  font-family: var(--sans);
  font-weight: 400;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  margin: -8px 0 28px;
  color: var(--muted);
}
.wide-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 72px clamp(24px, 6vw, 96px);
  background: var(--brown);
  color: #fff;
}
.wide-cta .eyebrow {
  margin-bottom: 14px;
  color: var(--gold);
}
.wide-cta h2 {
  font-size: clamp(2.7rem, 4.4vw, 4.7rem);
}
.button--gold {
  flex: 0 0 auto;
  border-color: var(--gold);
  background: var(--gold);
  color: var(--brown-deep);
}

/* Contact */
.contact-hero {
  display: grid;
  grid-template-columns: 46% 54%;
  min-height: 760px;
  background: var(--ivory);
}
.contact-hero__intro {
  padding: clamp(78px, 9vw, 140px) clamp(32px, 6vw, 96px);
  background: var(--brown-deep);
  color: #fff;
}
.contact-hero__intro .eyebrow {
  color: var(--gold);
}
.contact-hero h1 {
  font-size: clamp(4rem, 5.7vw, 6.2rem);
}
.contact-hero__intro > p:not(.eyebrow) {
  margin: 32px 0;
  color: #d3c9bf;
  font-size: 1.06rem;
}
.contact-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.contact-details > div {
  display: flex;
  flex-direction: column;
}
.contact-details span {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.contact-details a,
.contact-details strong {
  color: #fff;
  font-size: 0.94rem;
}
.contact-hero__form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 105px) clamp(28px, 6vw, 96px);
}
.form-title {
  margin: 0 0 30px;
  color: var(--brown-deep);
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
}
.contact-form,
.contact-form label {
  display: flex;
  flex-direction: column;
}
.contact-form {
  gap: 22px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.contact-form label {
  gap: 8px;
  color: var(--brown-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.contact-form label span {
  color: var(--gold-soft);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(91, 59, 38, 0.38);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  text-transform: none;
}
.contact-form input,
.contact-form select {
  height: 48px;
}
.contact-form textarea {
  padding: 12px;
  border: 1px solid rgba(91, 59, 38, 0.38);
  resize: vertical;
}
.contact-form .button {
  align-self: flex-start;
}
.form-note,
.form-status {
  margin: -10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}
.contact-form .form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status--success {
  color: #2f6b3d;
  font-weight: 700;
}
.form-status--error {
  color: #9b2f24;
  font-weight: 700;
}
.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.expectation-grid article {
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Blog */
.blog-hero {
  padding: clamp(96px, 12vw, 180px) clamp(24px, 9vw, 145px);
  background: var(--ivory);
}
.blog-hero h1 {
  max-width: 1080px;
  font-size: clamp(4.2rem, 7vw, 7.5rem);
}
.blog-hero > p:last-child {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 46px);
}
.article-card__image {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #ded5c7;
}
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card > p:not(.article-card__excerpt) {
  margin: 24px 0 0;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.article-card h2 {
  margin-top: 14px;
  font-size: clamp(1.8rem, 2.5vw, 2.7rem);
}
.article-card__excerpt {
  min-height: 76px;
  margin: 16px 0 22px;
  color: var(--muted);
}
.article-guides {
  display: flex;
  flex-direction: column;
  gap: 100px;
  background: var(--brown-deep);
  color: #fff;
}
.article-guides article {
  scroll-margin-top: 120px;
}
.article-guides .eyebrow {
  color: var(--gold);
}
.article-guides h2 {
  font-size: clamp(3rem, 5.4vw, 5.8rem);
}
.article-lead {
  max-width: 850px;
  margin: 28px 0 52px;
  color: #d2c7be;
  font-size: 1.08rem;
}
.article-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.article-columns > div {
  padding: 30px;
  background: var(--brown-deep);
}
.article-columns h3 {
  margin-top: 0;
  color: #fff;
}
.article-columns p,
.article-note {
  color: #c7bbb1;
}
.article-note {
  color: #ddc96f;
}

@media (max-width: 980px) {
  .page-hero,
  .contact-hero {
    grid-template-columns: 1fr;
  }
  .page-hero__copy {
    min-height: 600px;
  }
  .page-hero__image {
    min-height: 560px;
  }
  .service-overview,
  .process-section,
  .faq-section,
  .contact-expectations {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .process-heading {
    position: static;
  }
  .wide-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .article-card {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) 1fr;
    column-gap: 32px;
  }
  .article-card__image {
    grid-row: 1 / span 5;
  }
  .article-card > p:not(.article-card__excerpt) {
    margin-top: 0;
  }
}
@media (max-width: 620px) {
  .page-hero__copy,
  .contact-hero__intro,
  .contact-hero__form {
    min-height: auto;
    padding: 72px 24px;
  }
  .page-hero h1,
  .contact-hero h1,
  .blog-hero h1 {
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }
  .page-hero__image {
    min-height: 420px;
  }
  .highlight-grid,
  .form-grid,
  .contact-details,
  .expectation-grid,
  .article-columns {
    grid-template-columns: 1fr;
  }
  .wide-cta {
    padding-block: 60px;
  }
  .contact-form .button {
    width: 100%;
  }
  .article-card {
    display: block;
  }
  .article-card > p:not(.article-card__excerpt) {
    margin-top: 20px;
  }
  .blog-hero {
    padding-inline: 24px;
  }
}
