:root {
  --bg: #f7faf6;
  --surface: #eef4ec;
  --surface-2: #e2ebe0;
  --text: #26302a;
  --muted: #66746a;
  --accent: #5b9a6e;
  --accent-dark: #46805a;
  --accent-soft: #cfe2d5;
  --line: rgba(38, 48, 42, 0.12);
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(47, 80, 60, 0.14);

  --container: 1180px;
  --radius: 28px;
  --radius-sm: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

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

button {
  cursor: pointer;
}

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

.section {
  padding: 112px 0;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.header.scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 28px rgba(38, 48, 42, 0.06);
}

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

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

.brand-mark {
  width: 44px;
  height: 44px;
  border: 1px solid var(--accent-soft);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--accent-dark);
  background: var(--white);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links > a:not(.button) {
  transition: color 0.2s ease;
}

.nav-links > a:not(.button):hover {
  color: var(--accent);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--accent-dark);
  background: var(--accent-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #46805a;
  box-shadow: 0 10px 30px rgba(70, 128, 90, 0.18);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
}

.button-outline {
  background: transparent;
  color: var(--accent-dark);
}

.button-outline:hover {
  color: var(--white);
}

.button-light {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
}

.button-light:hover {
  background: #f0f6ee;
}

.button-full {
  width: 100%;
}

.hero {
  overflow: hidden;
  padding-top: 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.feature-intro h2,
.contact-copy h2,
.cta-box h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.06;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(48px, 6vw, 78px);
}

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

.hero-copy {
  max-width: 620px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  font-weight: 700;
  font-size: 14px;
  border-bottom: 1px solid var(--accent-soft);
  padding-bottom: 4px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.hero-highlights div {
  display: flex;
  flex-direction: column;
}

.hero-highlights strong {
  font-family: "Playfair Display", serif;
  font-size: 17px;
}

.hero-highlights span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.hero-image-wrap {
  position: relative;
  min-height: 620px;
}

.hero-image-bg {
  position: absolute;
  inset: 0 0 24px 42px;
  background: linear-gradient(145deg, #e2ebe0, #eef4ec);
  border-radius: 46% 46% 24px 24px;
}

.hero-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 44% 44% 24px 24px;
  box-shadow: var(--shadow);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  left: -28px;
  bottom: 54px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(38, 48, 42, 0.12);
  display: flex;
  flex-direction: column;
}

.hero-badge span {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-badge strong {
  font-family: "Playfair Display", serif;
  font-size: 20px;
}

.trust-strip {
  background: var(--accent-dark);
  color: rgba(255,255,255,0.86);
}

.trust-grid {
  min-height: 76px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.trust-grid span + span {
  border-left: 1px solid rgba(255,255,255,0.18);
}

.about-grid,
.contact-grid,
.features-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 90px;
  align-items: start;
}

.section-heading h2,
.feature-intro h2,
.contact-copy h2 {
  font-size: clamp(38px, 5vw, 58px);
}

.section-heading.centered {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.centered p {
  max-width: 650px;
  margin: 22px auto 0;
  color: var(--muted);
}

.about-copy {
  max-width: 700px;
}

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

.about-copy p + p {
  margin-top: 20px;
}

.signature-card {
  margin-top: 36px;
  display: inline-flex;
  flex-direction: column;
  border-left: 2px solid var(--accent-soft);
  padding-left: 20px;
}

.signature {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 25px;
}

.signature-card small {
  color: var(--muted);
  margin-top: 3px;
}

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

.service-card {
  position: relative;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.service-number {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--surface);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.service-card h3 {
  margin-top: 28px;
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
}

.service-card p {
  margin-top: 14px;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 26px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 700;
}

.features-grid {
  align-items: center;
}

.feature-intro p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 17px;
}

.feature-intro .button {
  margin-top: 30px;
}

.feature-list {
  border-top: 1px solid var(--line);
}

.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.feature-item > span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-item h3 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
}

.feature-item p {
  margin-top: 7px;
  color: var(--muted);
}

.cta-section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.cta-box {
  padding: 60px;
  border-radius: var(--radius);
  background: var(--accent-dark);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.eyebrow-light {
  color: #cfe2d5;
}

.cta-box h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 50px);
}

.contact-grid {
  align-items: center;
}

.contact-copy > p {
  max-width: 560px;
  margin-top: 24px;
  color: var(--muted);
}

.contact-info {
  display: grid;
  gap: 18px;
  margin-top: 36px;
}

.contact-info div {
  display: flex;
  flex-direction: column;
}

.contact-label {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-info strong {
  margin-top: 2px;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(47, 80, 60, 0.08);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}

.form-row label {
  font-size: 13px;
  font-weight: 700;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfdf9;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(91, 154, 110, 0.14);
}

.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 6px 0 22px;
  color: var(--muted);
  font-size: 12px;
}

.checkbox input {
  margin-top: 3px;
}

.form-message {
  min-height: 24px;
  margin-top: 12px;
  color: var(--accent-dark);
  font-size: 13px;
  text-align: center;
}

.form-message.error {
  color: #a85656;
}

.footer {
  padding: 34px 0;
  background: #222b24;
  color: rgba(255,255,255,0.76);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

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

.footer .brand-mark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.footer p {
  font-size: 12px;
  text-align: center;
}

.back-to-top {
  justify-self: end;
  font-size: 12px;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 960px) {
  .section {
    padding: 84px 0;
  }

  .hero-grid,
  .about-grid,
  .features-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero-content {
    order: 1;
  }

  .hero-image-wrap {
    order: 2;
    min-height: 560px;
  }

  .hero-image {
    height: 560px;
  }

  .hero-image-bg {
    left: 24px;
  }

  .hero-badge {
    left: 18px;
  }

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

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .trust-grid span {
    padding: 18px 10px;
  }

  .trust-grid span + span {
    border-left: 0;
  }

  .trust-grid span:nth-child(even) {
    border-left: 1px solid rgba(255,255,255,0.18);
  }

  .trust-grid span:nth-child(n+3) {
    border-top: 1px solid rgba(255,255,255,0.18);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-brand,
  .back-to-top {
    justify-self: center;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav {
    min-height: 72px;
  }

  .menu-button {
    display: flex;
  }

  .menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-links .button {
    margin-top: 4px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 9px;
  }

  .hero {
    padding-top: 42px;
  }

  .hero h1 {
    font-size: clamp(42px, 12vw, 60px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .text-link {
    align-self: flex-start;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-image-wrap,
  .hero-image {
    height: 490px;
    min-height: 490px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-badge {
    bottom: 22px;
    left: 14px;
  }

  .section {
    padding: 70px 0;
  }

  .section-heading h2,
  .feature-intro h2,
  .contact-copy h2 {
    font-size: clamp(36px, 10vw, 48px);
  }

  .service-card,
  .contact-form {
    padding: 28px;
  }

  .cta-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .cta-box {
    padding: 34px 28px;
  }

  .button {
    width: 100%;
  }

  .feature-intro .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

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

.wa-icon{width:18px;height:18px;flex:0 0 auto}.button .wa-icon{margin-right:8px}
.wa-float{position:fixed;right:20px;bottom:20px;z-index:70;width:60px;height:60px;border-radius:50%;background:#25d366;color:#fff;display:grid;place-items:center;box-shadow:0 12px 32px rgba(37,211,102,.38);transition:transform .2s ease,box-shadow .2s ease}
.wa-float:hover{transform:translateY(-3px);box-shadow:0 16px 38px rgba(37,211,102,.5)}
.wa-float .wa-icon{width:32px;height:32px}
.wa-float-tip{position:absolute;right:calc(100% + 12px);top:50%;transform:translateY(-50%);background:#222b24;color:#fff;font-size:12px;font-weight:600;padding:7px 12px;border-radius:9px;white-space:nowrap;opacity:0;pointer-events:none;transition:opacity .2s ease}
.wa-float-tip::after{content:"";position:absolute;left:100%;top:50%;transform:translateY(-50%);border:6px solid transparent;border-left-color:#222b24}
.wa-float:hover .wa-float-tip{opacity:1}
.contact-info a{display:inline-flex;align-items:center;gap:8px;font-weight:700}
.contact-info .wa-icon{width:16px;height:16px;color:var(--accent)}
@media(max-width:620px){.wa-float{width:54px;height:54px;right:14px;bottom:14px}.wa-float .wa-icon{width:28px;height:28px}.wa-float-tip{display:none}}
