:root {
  --green-900: #294b3a;
  --green-800: #365b47;
  --green-700: #53745d;
  --sage-500: #8fa38e;
  --sage-300: #c8d1c5;
  --sage-100: #eef2ec;
  --coral-500: #c8786d;
  --coral-300: #dfa39a;
  --cream: #fbf8f2;
  --white: #ffffff;
  --ink: #1f2923;
  --muted: #667068;
  --line: rgba(41, 75, 58, 0.14);
  --shadow: 0 24px 70px rgba(45, 66, 52, 0.13);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  max-width: 100%;
}

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

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--green-900);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(41, 75, 58, 0.08);
}

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

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

.brand-script {
  font-family: "Sacramento", cursive;
  font-size: 2.65rem;
  color: var(--green-900);
  margin-bottom: -5px;
}

.brand-subtitle {
  font-family: "Playfair Display", serif;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green-800);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  background: var(--coral-500);
  transition: right 180ms ease;
}

.site-nav a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  color: white;
  background: var(--green-900);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--sage-100);
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--green-900);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-items: center;
  padding: 76px 0 120px;
  background:
    radial-gradient(circle at 20% 10%, rgba(255,255,255,.95), transparent 38%),
    linear-gradient(135deg, #fdfbf7 0%, #f0f4ed 55%, #e6eee7 100%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-500);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-panel h2,
.about-copy h2,
.estimate-copy h2 {
  margin: 0;
  font-family: "Playfair Display", serif;
  color: var(--green-900);
  line-height: 1.06;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  letter-spacing: -0.045em;
}

.hero h1 em {
  display: block;
  font-family: "Sacramento", cursive;
  font-size: 1.08em;
  font-weight: 400;
  color: var(--coral-500);
  letter-spacing: 0;
}

.hero-lead {
  max-width: 610px;
  margin: 26px 0 0;
  color: #4c5850;
  font-size: 1.14rem;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 24px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--green-900);
  color: white;
  box-shadow: 0 12px 26px rgba(41, 75, 58, 0.22);
}

.button-primary:hover {
  background: var(--green-800);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-900);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-top: 28px;
  color: var(--green-700);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-row span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--coral-500);
}

.hero-visual {
  position: relative;
}

.home-scene {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 42px 42px 160px 42px;
  background:
    linear-gradient(rgba(255,255,255,.18), rgba(255,255,255,.18)),
    linear-gradient(145deg, #f6f1e9 0 46%, #dce5da 46% 100%);
  box-shadow: var(--shadow);
}

.window {
  position: absolute;
  top: 50px;
  right: 38px;
  width: 240px;
  height: 210px;
  border: 14px solid rgba(255,255,255,.8);
  background: linear-gradient(145deg, #dae5df, #f5f8f5);
  box-shadow: inset 0 0 0 1px rgba(41,75,58,.08);
}

.window-line {
  position: absolute;
  background: rgba(255,255,255,.9);
}

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

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

.basket {
  position: absolute;
  right: 44px;
  bottom: 56px;
  width: 290px;
  height: 190px;
  border-radius: 24px 24px 46px 46px;
  background:
    repeating-linear-gradient(25deg, #9c6c3d 0 7px, #bc8951 7px 13px);
  border: 7px solid #91633b;
  box-shadow: 0 20px 36px rgba(41,75,58,.15);
}

.basket::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: -72px;
  height: 105px;
  border: 12px solid #91633b;
  border-bottom: 0;
  border-radius: 90px 90px 0 0;
}

.bottle {
  position: absolute;
  bottom: 148px;
  border-radius: 18px 18px 8px 8px;
  background: #fff;
  box-shadow: inset 0 -12px 18px rgba(41,75,58,.06);
}

.bottle::before {
  content: "";
  position: absolute;
  left: 25%;
  top: -31px;
  width: 50%;
  height: 36px;
  border-radius: 8px 8px 2px 2px;
  background: inherit;
}

.bottle-a {
  left: 54px;
  width: 62px;
  height: 135px;
}

.bottle-b {
  left: 135px;
  width: 76px;
  height: 155px;
  background: #f9fbf9;
}

.towel {
  position: absolute;
  left: -82px;
  width: 180px;
  height: 58px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(41,75,58,.14);
}

.towel-a {
  bottom: 52px;
  background: repeating-linear-gradient(0deg, #aab8a6 0 7px, #94a58f 7px 10px);
  transform: rotate(-4deg);
}

.towel-b {
  bottom: 102px;
  background: repeating-linear-gradient(90deg, #f1efe7 0 18px, #c6d0c2 18px 30px);
  transform: rotate(2deg);
}

.plant {
  position: absolute;
  top: 90px;
  left: 58px;
  width: 150px;
  height: 210px;
}

.stem {
  position: absolute;
  left: 72px;
  bottom: 0;
  width: 8px;
  height: 170px;
  border-radius: 999px;
  background: var(--green-700);
  transform: rotate(8deg);
}

.leaf {
  position: absolute;
  width: 70px;
  height: 34px;
  border-radius: 100% 0 100% 0;
  background: linear-gradient(135deg, #5d7f5f, #8ca483);
  transform-origin: 100% 100%;
}

.leaf-1 { left: 8px; top: 52px; transform: rotate(15deg); }
.leaf-2 { left: 74px; top: 78px; transform: scaleX(-1) rotate(6deg); }
.leaf-3 { left: 1px; top: 107px; transform: rotate(-8deg) scale(.86); }
.leaf-4 { left: 69px; top: 128px; transform: scaleX(-1) rotate(-8deg) scale(.82); }
.leaf-5 { left: 18px; top: 148px; transform: rotate(-18deg) scale(.72); }

.sparkle {
  position: absolute;
  color: white;
  text-shadow: 0 2px 12px rgba(41,75,58,.18);
}

.sparkle-a { left: 36px; bottom: 74px; font-size: 2.4rem; }
.sparkle-b { left: 160px; bottom: 32px; font-size: 1.8rem; }
.sparkle-c { right: 18px; top: 18px; font-size: 1.6rem; }

.estimate-seal {
  position: absolute;
  right: -26px;
  bottom: 42px;
  width: 175px;
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--green-700);
  border-radius: 50%;
  background: rgba(251, 248, 242, 0.96);
  color: var(--green-900);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .1em;
  box-shadow: 0 14px 34px rgba(41,75,58,.16);
}

.estimate-seal::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid var(--sage-300);
  border-radius: 50%;
}

.estimate-seal strong {
  font-size: 1.35rem;
}

.estimate-seal small {
  font-size: 1.4rem;
  color: var(--coral-500);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(5px);
  pointer-events: none;
}

.hero-glow-one {
  width: 420px;
  height: 420px;
  left: -160px;
  bottom: -160px;
  background: rgba(200, 120, 109, .10);
}

.hero-glow-two {
  width: 500px;
  height: 500px;
  right: -230px;
  top: -190px;
  background: rgba(83, 116, 93, .10);
}

.hero-wave {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -90px;
  height: 150px;
  border-radius: 50%;
  background: var(--cream);
}

.intro-strip {
  position: relative;
  z-index: 3;
  background: var(--green-900);
  color: white;
}

.intro-strip-grid {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.intro-strip p {
  margin: 0;
  max-width: 800px;
}

.intro-strip a {
  flex: 0 0 auto;
  color: #f1c2bb;
  font-weight: 700;
}

.section {
  padding: 110px 0;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}

.section-heading h2,
.feature-panel h2,
.about-copy h2,
.estimate-copy h2 {
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  letter-spacing: -0.035em;
}

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

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

.service-card {
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.64);
  box-shadow: 0 10px 34px rgba(41,75,58,.05);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(41,75,58,.10);
}

.service-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #ead0cb;
  color: var(--green-900);
  font-size: 1.35rem;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-size: 1.18rem;
}

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

.service-card-accent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--green-900);
  color: white;
}

.service-card-accent h3 {
  margin: 2px 0 8px;
  color: white;
  font-family: "Playfair Display", serif;
  font-size: 2.3rem;
}

.service-card-accent p {
  color: rgba(255,255,255,.75);
}

.service-card-accent a {
  margin-top: 18px;
  color: #f1c2bb;
  font-weight: 700;
}

.small-label {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.soft-section {
  background: var(--sage-100);
}

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

.script-heading {
  margin: 0;
  color: var(--coral-500);
  font-family: "Sacramento", cursive;
  font-size: 3rem;
  line-height: 1;
}

.feature-panel > p:not(.script-heading) {
  max-width: 600px;
  color: var(--muted);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px 22px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 33px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-size: .75rem;
}

.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.promise-card {
  min-height: 205px;
  padding: 25px;
  border: 1px solid rgba(41,75,58,.09);
  border-radius: 24px;
  background: rgba(255,255,255,.72);
}

.promise-icon {
  display: block;
  color: var(--coral-500);
  font-size: 2rem;
}

.promise-card h3 {
  margin: 10px 0 8px;
  color: var(--green-900);
}

.promise-card p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: center;
}

.about-art {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 40px 120px 40px 40px;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,255,255,.9), transparent 26%),
    linear-gradient(145deg, #e0e8de, #f3ece2);
  box-shadow: var(--shadow);
}

.linen-stack {
  position: absolute;
  left: 90px;
  bottom: 76px;
  width: 220px;
}

.linen-stack span {
  display: block;
  height: 62px;
  margin-top: -10px;
  border-radius: 12px;
  box-shadow: 0 10px 18px rgba(41,75,58,.12);
}

.linen-stack span:nth-child(1) {
  margin-left: 14px;
  background: repeating-linear-gradient(0deg, #99aa96 0 8px, #879c85 8px 12px);
}

.linen-stack span:nth-child(2) {
  background: repeating-linear-gradient(90deg, #f6f1e7 0 22px, #c7d0c3 22px 36px);
}

.linen-stack span:nth-child(3) {
  margin-left: 20px;
  background: #fffaf2;
}

.vase {
  position: absolute;
  left: 55px;
  bottom: 75px;
  width: 92px;
  height: 150px;
  border-radius: 42% 42% 28% 28%;
  background: #f8f6ef;
  box-shadow: 0 16px 28px rgba(41,75,58,.14);
}

.vase-stem {
  position: absolute;
  left: 44px;
  bottom: 130px;
  width: 5px;
  height: 145px;
  border-radius: 999px;
  background: var(--green-700);
  transform-origin: bottom;
}

.vase-stem::before,
.vase-stem::after {
  content: "";
  position: absolute;
  width: 58px;
  height: 28px;
  border-radius: 100% 0 100% 0;
  background: #6d896a;
}

.vase-stem::before { left: -48px; top: 35px; transform: rotate(12deg); }
.vase-stem::after { left: -3px; top: 70px; transform: scaleX(-1) rotate(8deg); }

.stem-one { transform: rotate(-22deg); }
.stem-two { transform: rotate(4deg); height: 175px; }
.stem-three { transform: rotate(23deg); height: 155px; }

.about-heart {
  position: absolute;
  right: 42px;
  top: 40px;
  color: var(--coral-500);
  font-size: 4rem;
  transform: rotate(8deg);
}

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

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-900);
  font-weight: 700;
  border-bottom: 2px solid var(--coral-300);
}

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

.estimate-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.eyebrow.light {
  color: #f1c2bb;
}

.estimate-copy h2 {
  color: white;
}

.estimate-copy > p:not(.eyebrow):not(.contact-note) {
  max-width: 560px;
  color: rgba(255,255,255,.74);
  font-size: 1.05rem;
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button-light {
  background: white;
  color: var(--green-900);
}

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

.contact-note {
  margin-top: 25px;
  color: #f1c2bb;
  font-size: .9rem;
}

.estimate-form {
  padding: 32px;
  border-radius: 28px;
  background: white;
  color: var(--ink);
  box-shadow: 0 25px 65px rgba(0,0,0,.16);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.estimate-form label {
  display: block;
  margin-bottom: 17px;
  color: var(--green-900);
  font-weight: 700;
  font-size: .92rem;
}

.estimate-form input,
.estimate-form select,
.estimate-form textarea {
  width: 100%;
  margin-top: 7px;
  border: 1px solid rgba(41,75,58,.17);
  border-radius: 12px;
  background: #fbfcfa;
  padding: 13px 14px;
  color: var(--ink);
  outline: none;
}

.estimate-form input:focus,
.estimate-form select:focus,
.estimate-form textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(83,116,93,.12);
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-help {
  margin: 12px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .82rem;
}

.site-footer {
  padding: 68px 0 26px;
  background: #203d2f;
  color: rgba(255,255,255,.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 42px;
}

.footer-brand .brand-script,
.footer-brand .brand-subtitle {
  color: white;
}

.site-footer h3 {
  margin-top: 0;
  color: white;
  font-size: .95rem;
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 7px 0;
}

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

.mobile-contact-bar {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .button,
  .service-card {
    transition: none;
  }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
    padding-top: 64px;
  }

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

  .hero-grid {
    gap: 46px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin-inline: auto;
  }

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

  .split-layout,
  .about-grid,
  .estimate-grid {
    gap: 48px;
  }

  .about-art {
    min-height: 380px;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 66px;
  }

  .container {
    width: min(100% - 28px, 1120px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-script {
    font-size: 2.2rem;
  }

  .brand-subtitle {
    font-size: .68rem;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 111;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 26px;
    border-bottom: 1px solid var(--line);
    background: rgba(251,248,242,.98);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 8px;
    padding: 12px 16px !important;
    text-align: center;
  }

  .hero {
    padding: 54px 0 100px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 16vw, 5.1rem);
  }

  .hero-lead {
    font-size: 1.02rem;
  }

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

  .trust-row {
    display: grid;
    gap: 9px;
  }

  .home-scene {
    min-height: 420px;
    border-radius: 28px 28px 100px 28px;
  }

  .window {
    top: 38px;
    right: 22px;
    width: 190px;
    height: 165px;
  }

  .plant {
    left: 18px;
    top: 68px;
    transform: scale(.8);
    transform-origin: top left;
  }

  .basket {
    right: 22px;
    bottom: 42px;
    transform: scale(.8);
    transform-origin: bottom right;
  }

  .estimate-seal {
    right: -8px;
    bottom: 22px;
    width: 130px;
    height: 130px;
    font-size: .74rem;
  }

  .estimate-seal strong {
    font-size: 1rem;
  }

  .intro-strip-grid {
    min-height: auto;
    padding: 24px 0;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section {
    padding: 78px 0;
  }

  .services-grid,
  .promise-grid,
  .check-list,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .about-art {
    min-height: 330px;
  }

  .linen-stack {
    left: 78px;
    bottom: 54px;
    transform: scale(.78);
    transform-origin: bottom left;
  }

  .vase {
    left: 34px;
    bottom: 54px;
    transform: scale(.82);
    transform-origin: bottom left;
  }

  .estimate-form {
    padding: 24px 20px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 66px;
    background: var(--green-900);
    box-shadow: 0 -10px 30px rgba(0,0,0,.13);
  }

  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    color: white;
    font-weight: 800;
  }

  .mobile-contact-bar a + a {
    border-left: 1px solid rgba(255,255,255,.18);
    background: var(--coral-500);
  }
}
