:root {
  --orange: #f36f21;
  --orange-dark: #c85013;
  --green: #0f6b35;
  --green-soft: #168347;
  --navy: #061f3f;
  --navy-soft: #0b315f;
  --charcoal: #17202a;
  --sand: #f3eadc;
  --sand-soft: #fffaf2;
  --metal: #8f9aa3;
  --white: #ffffff;
  --ink: #081f3a;
  --muted: #65727d;
  --line: rgba(6, 31, 63, 0.14);
  --shadow: 0 24px 70px rgba(6, 31, 63, 0.14);
  --radius: 18px;
  --radius-lg: 30px;
  --max: 1180px;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Manrope", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--sand-soft);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--navy-soft);
  text-underline-offset: 3px;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--display);
  color: var(--navy);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

p {
  margin: 0;
}

.wrap {
  width: min(100% - 2rem, var(--max));
  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;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.93rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

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

.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  box-shadow: 0 12px 30px rgba(244, 123, 32, 0.28);
}

.btn--primary:hover {
  color: var(--white);
  box-shadow: 0 16px 38px rgba(244, 123, 32, 0.34);
}

.btn--light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn--outline {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.6);
  border-color: var(--line);
}

.btn--large {
  min-height: 52px;
  padding-inline: 1.55rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: var(--orange-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

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

.eyebrow--light {
  color: rgba(255, 255, 255, 0.82);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 118px;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
  min-width: 0;
  flex: 0 0 auto;
}

.brand__logo {
  width: auto;
  height: clamp(96px, 10vw, 124px);
  flex: 0 0 auto;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-nav li {
  position: relative;
}

.primary-nav a {
  display: inline-flex;
  padding: 0.55rem 0.62rem;
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  color: var(--navy);
  background: rgba(243, 111, 33, 0.12);
}

.primary-nav .menu-item-has-children > a::after {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.45rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.primary-nav .sub-menu {
  display: grid;
  gap: 0.25rem;
  min-width: 280px;
  padding: 0.75rem;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.primary-nav .sub-menu a {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  font-size: 0.88rem;
  white-space: normal;
}

.submenu-icon {
  flex: 0 0 1.1rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.08rem;
  color: var(--orange-dark);
}

.submenu-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.submenu-text {
  flex: 1;
  min-width: 0;
}

.primary-nav .sub-menu a:hover,
.primary-nav .sub-menu .current-menu-item > a {
  color: var(--navy);
  background: rgba(243, 111, 33, 0.1);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.65rem;
  flex: 0 0 auto;
}

.header-actions__phone {
  color: var(--navy);
  font-weight: 900;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--navy);
  border-radius: 2px;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  content: "";
  position: relative;
}

.nav-toggle__bar::before {
  top: -6px;
}

.nav-toggle__bar::after {
  top: 4px;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 0%, rgba(243, 111, 33, 0.22), transparent 26rem),
    radial-gradient(circle at 10% 18%, rgba(15, 107, 53, 0.13), transparent 28rem),
    linear-gradient(180deg, var(--sand-soft), var(--sand));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -18rem auto;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  background: rgba(243, 111, 33, 0.1);
  pointer-events: none;
}

.hero__grid,
.page-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(3.25rem, 7vw, 5.75rem) 0;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(460px, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }
}

.hero__copy {
  max-width: 680px;
}

.hero h1,
.page-hero h1 {
  max-width: 720px;
  font-size: clamp(2.55rem, 5.15vw, 4.45rem);
}

.page-hero h1 {
  max-width: 780px;
  font-size: clamp(2.25rem, 5.4vw, 4.4rem);
}

.hero p,
.page-hero p {
  max-width: 62ch;
  margin-top: 1.15rem;
  color: var(--charcoal);
  font-size: clamp(1.02rem, 1.7vw, 1.18rem);
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.5rem;
}

.trust-badges span {
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-card,
.content-card,
.service-card,
.project-card,
.area-card,
.process-card,
.review-card,
.review-score-card,
.contact-panel,
.estimate-form {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.hero-card {
  overflow: hidden;
  justify-self: stretch;
  align-self: center;
}

.hero-card--image {
  background: var(--white);
  padding: 0;
}

.hero-card__image {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (min-width: 900px) {
  .hero-card__image {
    min-height: 420px;
    object-fit: cover;
  }
}

.hero-card__caption {
  padding: 1.25rem;
}

.hero-card__caption strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
}

.hero-card__caption p {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.image-placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 1rem;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(243, 111, 33, 0.28), transparent 10rem),
    linear-gradient(135deg, rgba(6, 31, 63, 0.94), rgba(15, 107, 53, 0.72)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.055) 0 2px, transparent 2px 18px),
    var(--metal);
}

.image-placeholder span {
  max-width: 18rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.image-placeholder--hero {
  min-height: clamp(300px, 38vw, 430px);
}

.image-placeholder--page {
  min-height: 320px;
  border-radius: var(--radius-lg);
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--sand {
  background: var(--sand);
  border-block: 1px solid var(--line);
}

.section--green {
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 92% 18%, rgba(243, 111, 33, 0.24), transparent 22rem),
    linear-gradient(145deg, var(--navy), #06172c 58%, #062814);
}

.section--green h2,
.section--green p {
  color: var(--white);
}

.section-head {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.section-head p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head--row {
  display: grid;
  gap: 1rem;
  align-items: end;
  max-width: none;
}

.service-grid,
.project-grid,
.content-grid,
.process-grid,
.area-grid {
  display: grid;
  gap: 1rem;
}

.service-card {
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.content-card,
.service-card,
.project-card,
.area-card,
.process-card,
.review-card,
.review-score-card,
.feature-list div {
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.content-card:hover,
.service-card:hover,
.project-card:hover,
.area-card:hover,
.process-card:hover,
.review-card:hover,
.feature-list div:hover {
  transform: translateY(-5px);
  border-color: rgba(243, 111, 33, 0.28);
  box-shadow: 0 28px 76px rgba(6, 31, 63, 0.18);
}

.service-card__image,
.project-card__image,
.page-hero__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.page-hero__image {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.service-card h2,
.service-card h3,
.content-card h2,
.area-card h2,
.process-card h3 {
  padding: 1.2rem 1.25rem 0;
  font-family: var(--font);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.service-card p,
.content-card p,
.area-card p,
.process-card p {
  padding: 0.45rem 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card .text-link {
  display: inline-flex;
  margin: 0 1.25rem 1.3rem;
  color: var(--orange-dark);
  font-weight: 900;
}

.split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.split h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.split p {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.feature-list {
  display: grid;
  gap: 0.85rem;
}

.feature-list div {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
}

.feature-list strong {
  color: var(--navy);
}

.feature-list span {
  color: var(--muted);
  font-size: 0.94rem;
}

.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 0%, rgba(243, 111, 33, 0.13), transparent 24rem),
    linear-gradient(180deg, var(--sand-soft), #ffffff);
  border-block: 1px solid var(--line);
}

.reviews-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 31, 63, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 31, 63, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}

.reviews-section .wrap {
  position: relative;
  z-index: 1;
}

.review-score-card {
  padding: 1.25rem;
  background: linear-gradient(135deg, var(--navy), #082d21);
  color: rgba(255, 255, 255, 0.78);
}

.review-score-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.review-score-card span {
  display: block;
  margin-top: 0.65rem;
  font-size: 0.92rem;
}

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

.review-card {
  position: relative;
  padding: 1.35rem;
  background: rgba(255, 255, 255, 0.88);
}

.review-card::before {
  content: "“";
  position: absolute;
  right: 1.1rem;
  top: 0.4rem;
  color: rgba(243, 111, 33, 0.16);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 1;
}

.review-stars {
  color: var(--orange-dark);
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  font-weight: 900;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  color: var(--charcoal);
  font-size: 0.98rem;
}

.review-card strong {
  display: block;
  margin-top: 1rem;
  color: var(--navy);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-card {
  overflow: hidden;
}

.project-card--large .image-placeholder {
  min-height: 280px;
}

.area-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-cloud span {
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.process-card {
  padding: 1.25rem;
}

.process-card span {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 2.3rem;
  font-weight: 800;
}

.process-card h3,
.process-card p {
  padding-inline: 0;
}

.final-cta {
  padding: clamp(3rem, 7vw, 5rem) 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 12% 20%, rgba(243, 111, 33, 0.28), transparent 24rem),
    linear-gradient(135deg, var(--navy), #06172c 58%, #062814);
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.final-cta p {
  margin-top: 0.8rem;
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.78);
}

.final-cta__inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.contact-layout {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.contact-panel,
.estimate-form {
  padding: clamp(1.25rem, 4vw, 2rem);
}

.contact-panel h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.contact-panel p,
.contact-details {
  margin-top: 0.85rem;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 0.3rem;
  font-weight: 800;
}

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

.estimate-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

.estimate-form textarea {
  min-height: 140px;
  resize: vertical;
}

.estimate-form button {
  width: 100%;
  margin-top: 1rem;
}

.notice {
  padding: 0.85rem 1rem;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.notice--success {
  background: rgba(18, 61, 45, 0.1);
  color: var(--green);
}

.site-footer {
  padding: 3rem 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: #071811;
}

.site-footer__grid {
  display: grid;
  gap: 2rem;
}

.site-footer h2,
.site-footer h3 {
  color: var(--white);
  font-family: var(--font);
  letter-spacing: -0.02em;
}

.site-footer h2 {
  font-size: 1.25rem;
}

.site-footer h3 {
  margin-bottom: 0.75rem;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.site-footer p {
  margin-top: 0.65rem;
}

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

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.network-line {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 2.5rem;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 45;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 0.5rem;
  padding: 0.65rem;
  background: rgba(255, 255, 255, 0.95);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.mobile-cta a {
  display: grid;
  place-items: center;
  min-height: 46px;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-weight: 900;
  text-decoration: none;
}

.mobile-cta a:last-child {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

body {
  padding-bottom: 74px;
}

@media (max-width: 1199px) {
  .site-header__inner {
    position: relative;
    justify-content: center;
  }

  .brand {
    margin-inline: auto;
  }

  .nav-toggle {
    position: absolute;
    right: 0;
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    inset: 118px 0 auto;
    display: none;
    padding: 1rem;
    background: rgba(251, 247, 240, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    display: grid;
    gap: 0.25rem;
  }

  .primary-nav a {
    display: flex;
    padding: 0.85rem 1rem;
  }

  .primary-nav .sub-menu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 0.35rem 0 0.35rem 0.85rem;
    margin: 0.15rem 0 0.4rem;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .primary-nav .sub-menu a {
    padding: 0.65rem 0.85rem;
    background: rgba(255, 255, 255, 0.62);
  }
}

@media (min-width: 720px) {
  .service-grid,
  .project-grid,
  .content-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-head--row {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }

  .header-actions {
    display: flex;
  }

  .mobile-cta {
    display: none;
  }

  .hero__grid,
  .split,
  .contact-layout {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .page-hero__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(520px, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
  }

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

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

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

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

  .final-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

@media (min-width: 1200px) {
  .primary-nav {
    display: block;
  }

  .primary-nav .menu-item-has-children > .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 0.45rem);
    z-index: 80;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .primary-nav .menu-item-has-children:hover > .sub-menu,
  .primary-nav .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .primary-nav .menu-item-has-children::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.55rem;
  }

  .nav-toggle {
    display: none;
  }
}

@media (max-width: 420px) {
  .wrap {
    width: min(100% - 1.25rem, var(--max));
  }

  .hero__actions .btn,
  .page-hero__actions .btn {
    width: 100%;
  }
}
