
:root {
  --green-950: #0f2f29;
  --green-900: #143d35;
  --green-800: #1e5549;
  --green-700: #2f7361;
  --green-100: #e9f2ed;
  --cream: #f6f2e8;
  --sand: #e7dcc5;
  --gold: #d6ad5d;
  --ink: #15201d;
  --muted: #64706b;
  --line: #dfe7e2;
  --white: #ffffff;
  --shadow-lg: 0 30px 80px rgba(15, 47, 41, .16);
  --shadow-md: 0 18px 45px rgba(15, 47, 41, .10);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; }
svg { display: block; }
button, input, select, textarea { font: inherit; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 110px 0; }

.skip-link {
  position: absolute;
  left: -9999px;
}

.skip-link:focus {
  left: 20px;
  top: 20px;
  z-index: 999;
  background: var(--white);
  padding: 12px 16px;
  border-radius: 8px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(20,61,53,.08);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--green-900);
}

.brand-icon svg {
  width: 30px;
  fill: none;
  stroke: white;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
  letter-spacing: -.02em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .66rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  font-family: "Manrope", sans-serif;
  text-decoration: none;
  font-weight: 700;
  font-size: .9rem;
}

.site-nav > a:not(.nav-button):hover {
  color: var(--green-700);
}

.nav-button {
  color: white;
  background: var(--green-900);
  padding: 13px 19px;
  border-radius: 999px;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 108px 0 92px;
  background:
    radial-gradient(circle at 15% 15%, rgba(214,173,93,.17), transparent 28%),
    linear-gradient(135deg, #fbf8f1 0%, #edf5ef 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 76px;
  align-items: center;
}

.hero-kicker,
.eyebrow {
  font-family: "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: .76rem;
  font-weight: 800;
  color: var(--green-700);
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 7px rgba(214,173,93,.16);
}

.hero h1,
.section-intro h2,
.about-copy h2,
.process-intro h2,
.quote-banner h2,
.contact-info h2 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  letter-spacing: -.045em;
  line-height: 1.02;
}

.hero h1 {
  font-size: clamp(3.6rem, 6.8vw, 6.5rem);
}

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

.hero-copy > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.16rem;
  margin: 28px 0 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

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

.button-primary {
  color: white;
  background: var(--green-900);
  box-shadow: 0 14px 30px rgba(20,61,53,.24);
}

.button-ghost {
  color: var(--green-900);
  background: rgba(255,255,255,.8);
  border-color: rgba(20,61,53,.15);
}

.hero-meta {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  max-width: 590px;
  border-top: 1px solid rgba(20,61,53,.13);
  padding-top: 22px;
}

.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .68rem;
  color: var(--muted);
  font-weight: 800;
}

.hero-meta strong {
  font-size: .96rem;
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  overflow: hidden;
  min-height: 590px;
  background: var(--green-900);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.visual-card-top,
.visual-card-bottom {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.visual-card-top {
  padding: 24px 26px;
  color: white;
  font-weight: 700;
}

.status-pill {
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.visual-art {
  position: absolute;
  inset: 78px 0 108px;
  overflow: hidden;
  background: linear-gradient(180deg, #daeae1 0%, #edf4ef 68%, #d8c4a2 68%, #d8c4a2 100%);
}

.art-window {
  position: absolute;
  width: 235px;
  height: 190px;
  top: 42px;
  right: 42px;
  border: 12px solid #f8fbf9;
  background: linear-gradient(180deg, #b9d8d2, #dcebe5);
  box-shadow: 0 14px 30px rgba(20,61,53,.09);
}

.window-frame {
  position: absolute;
  background: #f8fbf9;
}

.window-frame.vertical {
  width: 10px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.window-frame.horizontal {
  width: 100%;
  height: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.art-sofa {
  position: absolute;
  width: 320px;
  height: 125px;
  left: 54px;
  bottom: 52px;
  border-radius: 34px 34px 20px 20px;
  background: #6b8f80;
  box-shadow: inset 0 -18px 0 rgba(0,0,0,.05);
}

.art-sofa::before,
.art-sofa::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 92px;
  top: 19px;
  border-radius: 20px;
  background: #547767;
}

.art-sofa::before { left: -14px; }
.art-sofa::after { right: -14px; }

.art-pillow {
  position: absolute;
  width: 74px;
  height: 70px;
  bottom: 122px;
  border-radius: 18px;
  transform: rotate(-7deg);
}

.pillow-one {
  left: 94px;
  background: #d8b36d;
}

.pillow-two {
  left: 184px;
  background: #f2eadb;
  transform: rotate(7deg);
}

.art-table {
  position: absolute;
  width: 105px;
  height: 17px;
  right: 47px;
  bottom: 98px;
  background: #7a5b47;
  border-radius: 8px;
}

.art-table::before,
.art-table::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 76px;
  top: 12px;
  background: #7a5b47;
}

.art-table::before { left: 15px; }
.art-table::after { right: 15px; }

.art-plant {
  position: absolute;
  width: 105px;
  height: 175px;
  right: 55px;
  bottom: 115px;
}

.leaf {
  position: absolute;
  width: 48px;
  height: 78px;
  border-radius: 50% 50% 48% 52%;
  background: #4c8069;
  transform-origin: bottom center;
}

.leaf-1 { left: 28px; top: 0; transform: rotate(-8deg); }
.leaf-2 { left: 7px; top: 30px; transform: rotate(-40deg); }
.leaf-3 { right: 4px; top: 32px; transform: rotate(35deg); }
.leaf-4 { left: 35px; top: 54px; transform: rotate(8deg); }

.pot {
  position: absolute;
  left: 26px;
  bottom: 0;
  width: 58px;
  height: 54px;
  background: #bc7b57;
  clip-path: polygon(10% 0, 90% 0, 78% 100%, 22% 100%);
}

.visual-card-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 108px;
  padding: 22px 27px;
  background: var(--green-950);
  color: white;
}

.visual-card-bottom div {
  display: flex;
  flex-direction: column;
}

.visual-card-bottom small {
  color: #a9c7ba;
}

.visual-card-bottom strong {
  margin-top: 4px;
  font-size: 1.08rem;
}

.visual-card-bottom a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: var(--green-950);
  text-decoration: none;
  font-size: 1.25rem;
}

.floating-review {
  position: absolute;
  left: -54px;
  bottom: 42px;
  width: 235px;
  padding: 20px;
  border-radius: 18px;
  background: white;
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--gold);
  letter-spacing: .08em;
}

.floating-review p {
  margin: 8px 0 5px;
  font-weight: 700;
  line-height: 1.4;
}

.floating-review span {
  color: var(--muted);
  font-size: .78rem;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.orb-one {
  width: 350px;
  height: 350px;
  left: -180px;
  bottom: -200px;
  background: rgba(214,173,93,.22);
}

.orb-two {
  width: 300px;
  height: 300px;
  right: -160px;
  top: -120px;
  background: rgba(47,115,97,.12);
}

.trust-strip {
  background: var(--green-950);
  color: white;
}

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

.trust-grid > div {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  border-right: 1px solid rgba(255,255,255,.11);
}

.trust-grid > div:last-child {
  border-right: 0;
}

.trust-grid span {
  color: var(--gold);
  font-size: .73rem;
  font-weight: 800;
}

.trust-grid strong {
  font-size: .9rem;
}

.section-intro {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: end;
  margin-bottom: 54px;
}

.section-intro > div {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 18px;
}

.section-intro h2,
.about-copy h2,
.process-intro h2,
.quote-banner h2,
.contact-info h2 {
  font-size: clamp(2.7rem, 5vw, 4.6rem);
}

.section-summary {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
}

.section-services {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  grid-column: span 6;
  min-height: 315px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: white;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card-large {
  grid-column: span 12;
  min-height: 350px;
  background: var(--cream);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--green-100);
}

.service-icon svg {
  width: 28px;
  fill: var(--green-900);
}

.service-index {
  position: absolute;
  right: 28px;
  top: 28px;
  color: #a0afa8;
  font-size: .76rem;
  font-weight: 800;
}

.service-card h3 {
  font-family: "Manrope", sans-serif;
  margin: 0 0 10px;
  font-size: 1.42rem;
}

.service-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
}

.service-card a {
  margin-top: 28px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--green-900);
  font-weight: 800;
  text-decoration: none;
}

.service-card a span {
  transition: transform .2s ease;
}

.service-card a:hover span {
  transform: translateX(5px);
}

.about-section {
  background: var(--cream);
}

.about-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 90px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-photo-shape {
  min-height: 585px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--green-900);
  box-shadow: var(--shadow-lg);
}

.workspace-scene {
  position: relative;
  width: 100%;
  height: 585px;
  background: linear-gradient(180deg, #dce8df 0%, #eff4ef 70%, #d7c2a5 70%, #d7c2a5 100%);
}

.scene-shelf {
  position: absolute;
  width: 290px;
  height: 16px;
  top: 120px;
  left: 60px;
  background: #7c6049;
}

.scene-shelf::before,
.scene-shelf::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 110px;
  top: 16px;
  background: #7c6049;
}

.scene-shelf::before { left: 10px; }
.scene-shelf::after { right: 10px; }

.scene-box {
  position: absolute;
  top: 66px;
  height: 54px;
  border-radius: 5px;
}

.box-one {
  width: 82px;
  left: 82px;
  background: #c98764;
}

.box-two {
  width: 108px;
  left: 177px;
  background: #6f9887;
}

.scene-desk {
  position: absolute;
  width: 310px;
  height: 22px;
  left: 58px;
  bottom: 130px;
  background: #7c6049;
  border-radius: 8px;
}

.scene-desk::before,
.scene-desk::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 110px;
  top: 18px;
  background: #7c6049;
}

.scene-desk::before { left: 20px; }
.scene-desk::after { right: 20px; }

.scene-chair {
  position: absolute;
  width: 112px;
  height: 112px;
  right: 55px;
  bottom: 68px;
  border-radius: 24px 24px 18px 18px;
  background: #557c6b;
}

.scene-chair::before {
  content: "";
  position: absolute;
  width: 92px;
  height: 42px;
  left: 10px;
  bottom: -30px;
  border-radius: 12px;
  background: #456957;
}

.scene-lamp {
  position: absolute;
  width: 74px;
  height: 74px;
  left: 280px;
  bottom: 180px;
  border-radius: 50% 50% 10% 10%;
  background: #d4aa5a;
}

.scene-lamp::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 95px;
  left: 33px;
  top: 62px;
  background: #7c6049;
}

.about-badge {
  position: absolute;
  right: -28px;
  bottom: 38px;
  width: 175px;
  min-height: 160px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow-md);
}

.about-badge strong {
  font-family: "Manrope", sans-serif;
  font-size: 3.1rem;
  line-height: 1;
  color: var(--green-900);
}

.about-badge span {
  margin-top: 8px;
  color: var(--muted);
  font-size: .82rem;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.values-list {
  margin-top: 30px;
  display: grid;
  gap: 16px;
}

.values-list > div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.values-list > div > span {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-900);
  color: white;
  font-weight: 800;
}

.values-list p {
  margin: 0;
  color: var(--muted);
}

.values-list strong {
  color: var(--ink);
}

.process-section {
  background: var(--green-900);
  color: white;
}

.eyebrow-light {
  color: #b7d4c7;
}

.process-intro {
  max-width: 790px;
  margin-bottom: 55px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 290px;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.06);
}

.process-grid span {
  color: var(--gold);
  font-size: .76rem;
  font-weight: 800;
}

.process-grid h3 {
  margin: 62px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.34rem;
}

.process-grid p {
  margin: 0;
  color: #c9dcd3;
}

.quote-banner {
  padding-top: 76px;
  padding-bottom: 76px;
  background: var(--white);
}

.quote-banner-inner {
  padding: 50px 54px;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, #f2ead8, #e5efe8);
}

.quote-banner h2 {
  max-width: 760px;
  font-size: clamp(2.3rem, 4vw, 3.8rem);
}

.contact-section {
  background: #f7f9f7;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.contact-info > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-list {
  margin-top: 36px;
  display: grid;
  gap: 14px;
}

.contact-list > a,
.contact-list > div {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}

.contact-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--green-100);
  color: var(--green-900);
  font-weight: 800;
}

.contact-list small,
.contact-list strong {
  display: block;
}

.contact-list small {
  color: var(--muted);
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}

.contact-list strong {
  margin-top: 3px;
  font-size: .94rem;
  overflow-wrap: anywhere;
}

.quote-form {
  padding: 36px;
  display: grid;
  gap: 18px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
}

.form-heading span {
  color: var(--green-700);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  font-weight: 800;
}

.form-heading h3 {
  margin: 5px 0 6px;
  font-family: "Manrope", sans-serif;
  font-size: 1.7rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 16px;
}

.quote-form label {
  color: var(--green-900);
  font-size: .79rem;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px;
  border: 1px solid #dce5df;
  border-radius: 11px;
  background: #fbfcfb;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(47,115,97,.14);
  border-color: var(--green-700);
}

.button-full {
  width: 100%;
  border-radius: 12px;
}

.form-note {
  margin: -5px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: .76rem;
}

.site-footer {
  padding: 76px 0 28px;
  background: #0b2722;
  color: white;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr .8fr 1.4fr;
  gap: 45px;
}

.brand-footer .brand-icon {
  background: white;
}

.brand-footer .brand-icon svg {
  stroke: var(--green-950);
}

.brand-footer .brand-copy small {
  color: #9ab4a8;
}

.footer-brand-block p,
.site-footer span,
.site-footer a {
  color: #c9dad2;
  text-decoration: none;
  font-size: .88rem;
}

.site-footer h3 {
  margin: 0 0 17px;
  color: white;
  font-family: "Manrope", sans-serif;
  font-size: .86rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.site-footer > .container > div:not(.footer-brand-block) {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-bottom {
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

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

  .site-nav {
    position: absolute;
    top: 72px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    border-radius: 18px;
    background: white;
    box-shadow: var(--shadow-md);
  }

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

  .site-nav a {
    padding: 8px 3px;
  }

  .nav-button { text-align: center; }

  .hero-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 80px;
  }

  .hero-visual {
    max-width: 680px;
  }

  .floating-review {
    left: 20px;
  }

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

  .trust-grid > div:nth-child(2) {
    border-right: 0;
  }

  .trust-grid > div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255,255,255,.11);
  }

  .section-intro {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .service-card,
  .service-card-large {
    grid-column: span 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .quote-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-layout {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 650px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    padding: 62px 0 66px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.6rem);
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-meta {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .visual-card {
    min-height: 480px;
  }

  .visual-art {
    inset: 72px 0 105px;
  }

  .art-window {
    width: 190px;
    height: 150px;
    right: 24px;
  }

  .art-sofa {
    width: 250px;
    left: 30px;
  }

  .floating-review {
    position: relative;
    width: calc(100% - 30px);
    left: 15px;
    bottom: auto;
    margin-top: -30px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid > div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.11);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-photo-shape,
  .workspace-scene {
    min-height: 460px;
    height: 460px;
  }

  .about-badge {
    right: 14px;
    bottom: 18px;
  }

  .quote-banner-inner {
    padding: 34px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 26px 20px;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
