:root {
  --blue: #1737c4;
  --blue-dark: #0a277f;
  --blue-deep: #061c5d;
  --yellow: #ffd21c;
  --cream: #f7f6f0;
  --white: #ffffff;
  --ink: #0b1d48;
  --muted: #59647c;
  --line: #dfe3ef;
  --shadow: 0 24px 70px rgba(10, 39, 127, 0.14);
  --radius: 18px;
  --shell: 1180px;
  --font-display: "Roboto Slab", Georgia, serif;
  --font-body: "Karla", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--blue-dark);
  font-weight: 800;
  padding: 10px 16px;
}

.skip-link:focus {
  transform: none;
}

.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: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(10, 39, 127, 0.1);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: none;
}

.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--blue);
  color: var(--yellow);
  font: 700 16px/1 var(--font-body);
  letter-spacing: -0.02em;
}

.brand-name {
  color: var(--blue-dark);
  font: 700 17px/1.12 var(--font-body);
  letter-spacing: -0.02em;
}

.brand-name span {
  display: block;
  color: var(--muted);
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  color: #33405b;
  font-size: 15px;
  font-weight: 700;
}

.site-nav > a:not(.button) {
  position: relative;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--blue);
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after,
.site-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 9px;
  background: var(--blue);
  padding: 11px 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  border-radius: 4px;
  background: var(--yellow);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 13px 23px;
  font: 700 16px/1 var(--font-body);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 14px;
}

.button-yellow {
  background: var(--yellow);
  color: var(--blue-dark);
  box-shadow: 0 10px 28px rgba(255, 210, 28, 0.18);
}

.button-yellow:hover,
.button-yellow:focus-visible {
  background: #ffdd4f;
  box-shadow: 0 14px 34px rgba(6, 28, 93, 0.2);
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.button-outline:hover,
.button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: stretch;
  min-height: 620px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px 68px 80px 0;
}

.hero-copy::after {
  content: "";
  position: absolute;
  top: -110px;
  right: -55px;
  width: 230px;
  height: 230px;
  border: 48px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--yellow);
  font: 700 13px/1.2 var(--font-body);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.eyebrow-blue {
  color: var(--blue);
}

.hero h1,
.section-heading h2,
.reputation-grid h2,
.contact-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 {
  max-width: 700px;
  color: var(--white);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
}

.hero h1 span {
  color: var(--yellow);
}

.hero-intro {
  max-width: 630px;
  margin: 26px 0 33px;
  color: #dce4ff;
  font-size: 19px;
  line-height: 1.62;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-photo-wrap {
  position: relative;
  min-width: 0;
  margin-right: calc((100vw - min(100vw - 48px, var(--shell))) / -2);
  overflow: hidden;
  background: var(--blue-dark);
}

.hero-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(23, 55, 196, 0.38), transparent 42%), linear-gradient(0deg, rgba(6, 28, 93, 0.2), transparent 60%);
  pointer-events: none;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 57%;
}

.hero-note {
  position: absolute;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  max-width: 250px;
  border-left: 6px solid var(--yellow);
  border-radius: 10px;
  background: rgba(6, 28, 93, 0.9);
  color: var(--white);
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.hero-note strong,
.hero-note span {
  display: block;
}

.hero-note strong {
  color: var(--yellow);
  font: 700 16px var(--font-body);
}

.hero-note span {
  margin-top: 3px;
  color: #dce4ff;
  font-size: 14px;
}

.trust-strip {
  background: var(--yellow);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}

.trust-grid p {
  margin: 0;
  color: var(--blue-dark);
  font: 700 15px/1.35 var(--font-body);
  text-align: center;
}

.trust-grid span {
  display: inline-grid;
  width: 23px;
  height: 23px;
  place-items: center;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--yellow);
  font-size: 13px;
}

.section {
  padding: 94px 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 38px;
}

.section-heading h2,
.reputation-grid h2,
.contact-grid h2 {
  color: var(--blue-dark);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.03;
}

.section-heading-wide {
  max-width: none;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  gap: 60px;
}

.section-heading-wide > p {
  max-width: 550px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 18px;
}

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

.price-card {
  position: relative;
  overflow: hidden;
  min-height: 246px;
  border: 1px solid var(--line);
  border-top: 7px solid var(--blue);
  border-radius: 14px;
  background: var(--white);
  padding: 26px 24px 24px;
  box-shadow: 0 14px 34px rgba(10, 39, 127, 0.06);
}

.price-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #edf0ff;
}

.price-card-garden {
  border-top-color: var(--yellow);
}

.price-card-garden::after {
  background: #fff7cb;
}

.price-card p {
  position: relative;
  z-index: 1;
}

.price-type {
  margin: 0;
  color: var(--blue);
  font: 700 12px/1.2 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price {
  margin: 12px 0 6px;
  color: var(--blue-dark);
  font: 800 50px/1 var(--font-display);
  letter-spacing: -0.035em;
}

.price span {
  font-size: 28px;
  vertical-align: 14px;
}

.price-card > p:last-child {
  max-width: 185px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.price-note {
  margin: 20px 0 0;
  color: #7a8499;
  font-size: 15px;
}

.services-section {
  background: var(--blue-dark);
  color: var(--white);
}

.light-heading h2 {
  color: var(--white);
}

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

.service-card {
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.065);
  padding: 22px;
}

.service-card-featured {
  grid-column: span 2;
  min-height: 235px;
  background: var(--blue);
  padding: 28px 30px;
}

.service-number,
.service-icon {
  display: block;
  color: var(--yellow);
  font: 700 13px/1 var(--font-body);
  letter-spacing: 0.08em;
}

.service-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 210, 28, 0.12);
  font-size: 18px;
}

.service-card h3 {
  margin: 40px 0 0;
  font: 700 20px/1.3 var(--font-display);
  letter-spacing: -0.02em;
}

.service-card-featured h3 {
  margin-top: 48px;
  color: var(--yellow);
  font-size: 29px;
}

.service-card p {
  max-width: 440px;
  margin: 10px 0 0;
  color: #d7e0ff;
  font-size: 16px;
}

.work-section {
  background: var(--white);
}

.section-heading-row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--blue);
  font-weight: 800;
}

.text-link span {
  transition: transform 160ms ease;
}

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

.gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 250px 250px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #dfe4ed;
}

.gallery-item-large {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.gallery-item-large img {
  object-position: 50% 60%;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(6, 28, 93, 0.75));
  pointer-events: none;
}

.gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 2;
  color: var(--white);
  font: 700 15px/1.25 var(--font-body);
}

.reputation-section {
  background: #eef1ff;
}

.reputation-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: start;
}

.reputation-intro {
  max-width: 500px;
  margin: 23px 0;
  color: var(--muted);
  font-size: 18px;
}

.review-points {
  display: grid;
  gap: 12px;
}

.review-points article {
  display: grid;
  grid-template-columns: 118px 155px 1fr;
  gap: 20px;
  align-items: start;
  border: 1px solid rgba(23, 55, 196, 0.12);
  border-radius: 13px;
  background: var(--white);
  padding: 22px;
}

.stars {
  color: #c49b00;
  font-size: 15px;
  letter-spacing: 0.06em;
}

.review-points h3,
.review-points p {
  margin: 0;
}

.review-points h3 {
  font: 700 16px/1.35 var(--font-display);
}

.review-points p {
  color: var(--muted);
  font-size: 15px;
}

.contact-section {
  background: var(--blue);
  color: var(--white);
  padding: 96px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 76px;
  align-items: center;
}

.contact-grid h2 {
  max-width: 650px;
  color: var(--yellow);
}

.contact-grid > div > p:not(.eyebrow) {
  max-width: 590px;
  margin: 22px 0 30px;
  color: #dce4ff;
  font-size: 18px;
}

.contact-card {
  margin: 0;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  padding: 6px 30px;
  box-shadow: var(--shadow);
}

.contact-card > div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card > div:last-child {
  border-bottom: 0;
}

.contact-card dt {
  color: #7a8499;
  font: 700 11px/1.5 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card dd {
  min-width: 0;
  margin: 0;
  color: var(--blue-dark);
  font-weight: 700;
}

.contact-card dd a:hover,
.contact-card dd a:focus-visible {
  text-decoration: underline;
}

.email-link {
  overflow-wrap: anywhere;
}

.site-footer {
  background: var(--blue-deep);
  color: #9dafe9;
}

.footer-inner {
  min-height: 132px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 40px;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}

.brand-footer {
  grid-row: span 2;
}

.brand-footer .brand-mark {
  background: var(--yellow);
  color: var(--blue-dark);
}

.brand-footer .brand-name {
  color: var(--white);
}

.brand-footer .brand-name span {
  color: #9dafe9;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
  text-align: right;
}

.mobile-call {
  display: none;
}

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

@media (max-width: 960px) {
  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 78px 0 auto;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    padding: 12px 24px 24px;
    box-shadow: 0 20px 40px rgba(6, 28, 93, 0.16);
  }

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

  .site-nav > a:not(.button) {
    border-bottom: 1px solid var(--line);
    padding: 15px 4px;
  }

  .site-nav .button {
    margin-top: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.85fr;
    min-height: 570px;
  }

  .hero-copy {
    padding-right: 42px;
  }

  .hero h1 {
    font-size: clamp(47px, 7vw, 66px);
  }

  .section-heading-wide,
  .reputation-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .review-points article {
    grid-template-columns: 105px 150px 1fr;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
    padding-bottom: 68px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 70px;
  }

  .site-nav {
    inset: 70px 0 auto;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero-grid {
    display: flex;
    min-height: 0;
    flex-direction: column;
  }

  .hero-copy {
    padding: 60px 0 48px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-intro {
    font-size: 17px;
  }

  .hero-actions .button,
  .contact-actions .button {
    width: 100%;
  }

  .hero-photo-wrap {
    height: 440px;
    margin: 0 -16px;
  }

  .hero-note {
    right: 22px;
    bottom: 22px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 11px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .trust-grid p {
    text-align: left;
  }

  .section,
  .contact-section {
    padding: 72px 0;
  }

  .section-heading-wide,
  .section-heading-row {
    display: block;
  }

  .section-heading-wide > p {
    margin-top: 22px;
  }

  .section-heading-row .text-link {
    margin-top: 20px;
  }

  .price-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    min-height: 218px;
  }

  .service-card-featured {
    grid-column: auto;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 380px 190px 190px;
    gap: 10px;
  }

  .gallery-item-large {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .review-points article {
    display: block;
  }

  .review-points h3 {
    margin: 9px 0 6px;
  }

  .contact-card {
    padding: 5px 20px;
  }

  .contact-card > div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .brand-footer {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .footer-inner p {
    text-align: left;
  }

  .mobile-call {
    position: fixed;
    right: 12px;
    bottom: 10px;
    left: 12px;
    z-index: 99;
    display: flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blue-dark);
    border-radius: 10px;
    background: var(--yellow);
    color: var(--blue-dark);
    font: 700 15px/1 var(--font-body);
    box-shadow: 0 10px 35px rgba(6, 28, 93, 0.35);
  }
}

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