:root {
  --emerald: #0a4939;
  --emerald-2: #24735a;
  --cream: #fbf3dc;
  --cream-2: #fffaf0;
  --clay: #b98262;
  --sage: #b9c9a8;
  --ink: #203a31;
  --muted: #5d6b64;
  --line: rgba(251, 243, 220, .28);
  --soft-shadow: 0 18px 45px rgba(24, 48, 39, .12);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream-2);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream-2);
  padding-bottom: 0;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: var(--emerald);
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 64px);
  position: sticky;
  top: 0;
  z-index: 10;
}

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

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.8vw, 1.22rem);
  line-height: 1;
}

.brand small {
  color: rgba(251, 243, 220, .82);
  font-size: .72rem;
  margin-top: 4px;
  text-transform: uppercase;
}

.lotus {
  border: 1px solid var(--line);
  display: grid;
  flex: 0 0 auto;
  height: 48px;
  place-items: center;
  width: 48px;
}

.lotus img {
  height: 38px;
  width: 38px;
}

.nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
}

.nav a {
  color: rgba(251, 243, 220, .82);
  font-weight: 600;
  text-decoration: none;
}

.nav a[aria-current="page"],
.nav a:hover {
  color: var(--cream);
}

.hero {
  color: var(--cream);
  min-height: min(720px, calc(100vh - 76px));
  overflow: hidden;
  position: relative;
}

.hero::after {
  background: url("logo-lotus.svg") center / contain no-repeat;
  bottom: 26px;
  content: "";
  height: 120px;
  opacity: .08;
  position: absolute;
  right: clamp(18px, 7vw, 96px);
  width: 120px;
}

.hero img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(10, 73, 57, .86) 0%, rgba(10, 73, 57, .66) 42%, rgba(10, 73, 57, .08) 76%);
  inset: 0;
  position: absolute;
}

.hero-content {
  animation: calmRise .72s ease-out both;
  max-width: 660px;
  padding: clamp(74px, 12vh, 126px) clamp(22px, 5vw, 78px);
  position: relative;
}

.eyebrow {
  color: var(--sage);
  font-size: .74rem;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: none;
}

.eyebrow.dark {
  color: var(--emerald-2);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.55rem, 5.8vw, 5.1rem);
  line-height: 1.02;
  margin-bottom: 20px;
  max-width: 650px;
}

h2 {
  font-size: clamp(1.75rem, 3.1vw, 3.15rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}

p {
  line-height: 1.7;
}

.hero-content p:not(.eyebrow) {
  color: rgba(251, 243, 220, .86);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  max-width: 530px;
}

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

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-weight: 700;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.button.primary {
  background: var(--cream);
  color: var(--emerald);
}

.button.secondary {
  border-color: var(--line);
  color: var(--cream);
}

.button:active {
  transform: translateY(1px);
}

.button:disabled {
  cursor: wait;
  opacity: .62;
}

.section {
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  padding: clamp(56px, 8vw, 104px) clamp(22px, 5vw, 78px);
}

.section > p {
  color: var(--muted);
  font-size: 1.03rem;
}

.service-band {
  background: #edf1df;
  color: var(--ink);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.service-band article {
  border-right: 1px solid #dbe0c9;
  min-height: 220px;
  padding: 32px clamp(20px, 3vw, 34px);
  transition: background-color .24s ease;
}

.service-band article:hover {
  background: rgba(255, 250, 240, .42);
}

.service-band span {
  color: var(--clay);
  display: block;
  font-weight: 700;
  margin-bottom: 34px;
}

.service-band p {
  color: var(--muted);
}

.footer p {
  color: rgba(251, 243, 220, .72);
}

.local {
  background: #eef0dd;
}

.page-hero {
  background: var(--emerald);
  color: var(--cream);
  padding: clamp(32px, 5vw, 58px) clamp(22px, 5vw, 78px) clamp(28px, 4vw, 44px);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  background: url("logo-lotus.svg") center / contain no-repeat;
  content: "";
  height: 110px;
  opacity: .07;
  position: absolute;
  right: clamp(18px, 6vw, 78px);
  top: 50%;
  transform: translateY(-50%);
  width: 110px;
}

.page-hero h1 {
  animation: calmRise .64s ease-out both;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  line-height: 1.1;
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  animation: calmRise .72s .05s ease-out both;
  color: rgba(251, 243, 220, .82);
  font-size: 1rem;
  max-width: 620px;
}

.split-section,
.contact-layout {
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, .92fr) minmax(320px, 1.08fr);
  padding: clamp(56px, 8vw, 104px) clamp(22px, 5vw, 78px);
}

.panel {
  border-left: 3px solid var(--clay);
  padding-left: clamp(22px, 3vw, 36px);
}

.values {
  display: grid;
  gap: 18px;
}

.values article,
.contact-card,
.direct-contact {
  background: rgba(255, 255, 255, .72);
  border: 1px solid #e1dac7;
  box-shadow: var(--soft-shadow);
  padding: clamp(24px, 4vw, 42px);
}

.values p,
.direct-contact p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 18px;
}

label {
  color: var(--ink);
  display: grid;
  font-weight: 700;
  gap: 8px;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  color: var(--ink);
  font-weight: 700;
  margin-bottom: 10px;
}

.choice-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.choice {
  align-items: center;
  background: var(--cream-2);
  border: 1px solid #d6ccb5;
  display: flex;
  gap: 9px;
  min-height: 46px;
  padding: 10px 12px;
}

.choice input {
  accent-color: var(--emerald-2);
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.choice span {
  font-weight: 650;
  line-height: 1.25;
}

input,
textarea {
  background: var(--cream-2);
  border: 1px solid #d6ccb5;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
  width: 100%;
}

input:focus,
textarea:focus {
  border-color: rgba(36, 115, 90, .62);
  box-shadow: 0 0 0 4px rgba(36, 115, 90, .12);
  outline: 0;
}

textarea {
  resize: vertical;
}

.hidden-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-status {
  color: var(--emerald-2);
  font-weight: 700;
  margin-bottom: 0;
  min-height: 24px;
}

.form-status.error {
  color: #8a3d2b;
}

.form-status.success {
  color: var(--emerald-2);
}

.pow-check {
  align-items: center;
  background: #eef0dd;
  border: 1px solid #d6ccb5;
  color: var(--ink);
  display: flex;
  font-weight: 700;
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
}

.pow-check::before {
  border: 2px solid rgba(36, 115, 90, .22);
  border-top-color: var(--emerald-2);
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 18px;
  width: 18px;
}

.pow-check[data-state="working"]::before {
  animation: spinCheck .8s linear infinite;
}

.pow-check[data-state="ready"]::before {
  animation: none;
  background: var(--emerald-2);
  border-color: var(--emerald-2);
  box-shadow: inset 0 0 0 4px #eef0dd;
}

.pow-check[data-state="error"] {
  background: #fff3ea;
  border-color: #e2b9a5;
  color: #8a3d2b;
}

.direct-contact {
  align-self: start;
}

.footer {
  align-items: center;
  background: #073328;
  color: var(--cream);
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 30px clamp(22px, 5vw, 78px);
  text-align: center;
}

.footer a,
.footer span {
  color: var(--cream);
  display: block;
  margin: 6px 0;
}

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

@keyframes calmRise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spinCheck {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {
  .site-header,
  .footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .section,
  .split-section,
  .contact-layout,
  .service-band {
    grid-template-columns: 1fr;
  }

  .service-band article {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: auto;
  }

  .hero {
    min-height: 610px;
  }

  .site-header {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 92px;
  }

  .site-header {
    gap: 14px;
    padding: 12px 18px 14px;
    position: relative;
  }

  .brand {
    width: 100%;
  }

  .brand strong {
    font-size: 1rem;
  }

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

  .lotus {
    height: 44px;
    width: 44px;
  }

  .lotus img {
    height: 35px;
    width: 35px;
  }

  .nav {
    background: rgba(251, 243, 220, .08);
    border: 1px solid rgba(251, 243, 220, .14);
    display: grid;
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    min-height: 44px;
    overflow: hidden;
    width: 100%;
  }

  .nav a {
    align-items: center;
    display: flex;
    font-size: .92rem;
    justify-content: center;
  }

  .nav a[aria-current="page"] {
    background: rgba(251, 243, 220, .14);
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(10, 73, 57, .76), rgba(10, 73, 57, .9));
  }

  .hero {
    min-height: 530px;
  }

  .hero::after {
    bottom: 92px;
    height: 88px;
    opacity: .1;
    right: 18px;
    width: 88px;
  }

  .hero-content {
    padding: 52px 20px 110px;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 1rem;
    max-width: 26rem;
  }

  .actions {
    gap: 10px;
    margin-top: 24px;
  }

  .actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.18rem, 10vw, 3rem);
    max-width: 10ch;
  }

  .page-hero {
    padding: 24px 20px 22px;
  }

  .page-hero::after {
    height: 72px;
    opacity: .08;
    right: 16px;
    width: 72px;
  }

  .page-hero h1 {
    font-size: clamp(1.72rem, 7.2vw, 2.16rem);
    margin-bottom: 12px;
    max-width: 12ch;
  }

  .page-hero p:not(.eyebrow) {
    font-size: .96rem;
  }

  h2 {
    font-size: clamp(1.48rem, 6.8vw, 2.05rem);
  }

  .section,
  .split-section,
  .contact-layout {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    gap: 16px;
    padding-bottom: 50px;
    padding-top: 50px;
  }

  .split-section,
  .contact-layout {
    gap: 18px;
    padding-bottom: 50px;
    padding-top: 42px;
  }

  .panel {
    border-left-width: 2px;
    padding-left: 18px;
  }

  .values {
    gap: 12px;
  }

  .values article,
  .contact-card,
  .direct-contact {
    padding: 22px;
  }

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

  .choice {
    min-height: 48px;
  }

  .service-band article {
    padding: 22px 20px;
  }

  .service-band span {
    margin-bottom: 14px;
  }

  .footer {
    padding-bottom: 28px;
    padding-top: 28px;
  }

  .mobile-action-bar {
    background: rgba(255, 250, 240, .93);
    border: 1px solid rgba(10, 73, 57, .14);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(7, 51, 40, .24);
    backdrop-filter: blur(14px);
    color: var(--emerald);
    column-gap: 6px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    left: 12px;
    padding: 8px;
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 20;
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    align-items: center;
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--emerald);
    display: flex;
    flex-direction: column;
    font: inherit;
    font-weight: 700;
    gap: 4px;
    justify-content: center;
    min-height: 58px;
    padding: 0;
    text-decoration: none;
    transition: background-color .18s ease, color .18s ease, transform .18s ease;
  }

  .mobile-action-bar a:active,
  .mobile-action-bar button:active {
    background: rgba(10, 73, 57, .08);
    border-radius: 6px;
    transform: translateY(1px);
  }

  .bar-icon {
    display: block;
    height: 18px;
    position: relative;
    width: 18px;
  }

  .phone-icon::before,
  .text-icon::before,
  .mail-icon::before,
  .mail-icon::after {
    border: 2px solid currentColor;
    content: "";
    position: absolute;
  }

  .phone-icon::before {
    border-bottom-width: 4px;
    border-radius: 8px 8px 5px 5px;
    height: 14px;
    left: 5px;
    top: 1px;
    transform: rotate(-28deg);
    width: 8px;
  }

  .text-icon::before {
    border-radius: 5px;
    height: 12px;
    left: 1px;
    top: 2px;
    width: 16px;
  }

  .text-icon::after {
    border-bottom: 2px solid currentColor;
    border-right: 2px solid currentColor;
    bottom: 1px;
    content: "";
    height: 5px;
    left: 5px;
    position: absolute;
    transform: rotate(45deg);
    width: 5px;
  }

  .mail-icon::before {
    border-radius: 4px;
    height: 12px;
    left: 1px;
    top: 3px;
    width: 16px;
  }

  .mail-icon::after {
    border-left: 0;
    border-top: 0;
    height: 7px;
    left: 5px;
    top: 4px;
    transform: rotate(45deg);
    width: 7px;
  }
}

@media (max-width: 380px) {
  .brand strong {
    font-size: .94rem;
  }

  .hero-content {
    padding-top: 42px;
  }

  h1 {
    font-size: 2rem;
  }
}

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