:root {
  --bg: #faf6ec;
  --bg-soft: #f0ebda;
  --green: #2f4a39;
  --green-dk: #243a2c;
  --green-mid: #5a7060;
  --orange: #e6821e;
  --orange-dk: #d4730f;
  --text: #3a4a40;
  --muted: #6d7a70;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.site {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.wrap {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- TOP BAR (transparent – no glass bar) ---------- */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 0;
  position: relative;
}

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

.logo {
  height: 50px;
  width: auto;
  display: block;
}

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

/* ---------- PHONE BUTTON (glass) ---------- */
.phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(23, 64, 54, 0.20);
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--green-dk);
  text-decoration: none;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 24px rgba(23, 64, 54, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease;
}

.phone:hover {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(239, 126, 20, 0.42);
  transform: translateY(-1px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 12px 30px rgba(23, 64, 54, 0.09),
    0 0 0 6px rgba(239, 126, 20, 0.055);
}

.phone:active {
  transform: scale(0.975);
  transition-duration: 0.12s;
}

.phone svg {
  color: var(--orange);
}

/* ---------- FACEBOOK BUTTON (glass circle) ---------- */
.fb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(23, 64, 54, 0.18);
  color: var(--green-dk);
  text-decoration: none;
  flex: 0 0 44px;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 8px 24px rgba(23, 64, 54, 0.07);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    color 0.35s ease;
}

.fb-btn:hover {
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(24, 119, 242, 0.40);
  color: #1877f2;
  transform: translateY(-1px) scale(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 12px 30px rgba(23, 64, 54, 0.09),
    0 0 0 6px rgba(24, 119, 242, 0.06);
}

.fb-btn:active {
  transform: scale(0.96);
  transition-duration: 0.12s;
}

/* ---------- HERO ---------- */
.hero {
  padding: 6px 0 48px;
}

.hero__content {
  max-width: 540px;
}

/* ---------- BADGE (glass capsule) ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(239, 126, 20, 0.13);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 10px 26px rgba(23, 64, 54, 0.045);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .8px;
  color: var(--green-dk);
  text-transform: uppercase;
  margin-bottom: 18px;
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(239, 126, 20, 0.10);
  flex-shrink: 0;
}

.hero h1 {
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: clamp(26px, 3.2vw, 44px);
  line-height: 1.08;
  color: var(--green-dk);
  letter-spacing: -.3px;
  margin-bottom: 16px;
}

.hero__lead {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text);
  max-width: 440px;
  margin-bottom: 24px;
}

/* ---------- TRUST ITEMS (glass cards) ---------- */
.features {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;
  flex-wrap: wrap;
}

.feature {
  display: flex;
  gap: 14px;
  max-width: 230px;
  position: relative;
  padding: 16px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(23, 64, 54, 0.07);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 10px 28px rgba(23, 64, 54, 0.035);
  transition:
    transform 0.42s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.42s cubic-bezier(.22, 1, .36, 1),
    border-color 0.42s cubic-bezier(.22, 1, .36, 1),
    background 0.42s cubic-bezier(.22, 1, .36, 1);
}

.feature:hover {
  transform: translateY(-2px) scale(1.018);
  background: rgba(255, 255, 255, 0.34);
  border-color: rgba(239, 126, 20, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 18px 42px rgba(23, 64, 54, 0.07),
    0 0 0 7px rgba(239, 126, 20, 0.045);
}

.feature:active {
  transform: scale(0.975);
  transition-duration: 0.12s;
}

/* ---------- ICON CIRCLE ---------- */
.feature__icon {
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(232, 228, 207, 0.72);
  display: grid;
  place-items: center;
  color: var(--green);
  position: relative;
  z-index: 1;
}

.feature__icon::before,
.feature__icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
  transition:
    transform 0.5s cubic-bezier(.22, 1, .36, 1),
    opacity 0.5s cubic-bezier(.22, 1, .36, 1);
}

.feature__icon::before {
  inset: -9px;
  background: rgba(232, 228, 207, 0.32);
}

.feature__icon::after {
  inset: -17px;
  border: 1px solid rgba(23, 64, 54, 0.065);
  opacity: 0.75;
}

.feature:hover .feature__icon::before {
  transform: scale(1.12);
  opacity: 0.55;
}

.feature:hover .feature__icon::after {
  transform: scale(1.18);
  opacity: 0.95;
}

.feature__icon svg {
  width: 20px;
  height: 20px;
}

.feature__title {
  font-weight: 700;
  font-size: 14px;
  color: var(--green-dk);
  margin-bottom: 3px;
}

.feature__text {
  font-size: 13px;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #f28a18 0%, #ef7a10 55%, #e96908 100%);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .4px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 14px 30px rgba(239, 126, 20, 0.22);
  transition:
    transform 0.42s cubic-bezier(.22, 1, .36, 1),
    box-shadow 0.42s cubic-bezier(.22, 1, .36, 1),
    filter 0.42s cubic-bezier(.22, 1, .36, 1);
}

.cta:hover {
  transform: translateY(-2px) scale(1.018);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 20px 42px rgba(239, 126, 20, 0.30),
    0 0 0 7px rgba(239, 126, 20, 0.075);
  filter: saturate(1.04);
}

.cta:active {
  transform: scale(0.965);
  transition-duration: 0.12s;
}

.cta svg {
  width: 17px;
  height: 17px;
  transition: transform .2s;
}

.cta:hover svg {
  transform: translateX(4px);
}

/* ---------- NOTE ---------- */
.note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--muted);
}

.note svg {
  color: var(--green-mid);
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

/* ---------- PHOTO ---------- */
.photo {
  position: absolute;
  top: -205px;
  right: 0;
  bottom: 0;
  width: 56%;
  background-color: #e7e0cf;
  background-position: 50.0% 61.0%;
  background-size: 150%;
  background-repeat: no-repeat;
  z-index: 0;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.06) 10%,
      rgba(0, 0, 0, 0.32) 22%,
      rgba(0, 0, 0, 0.76) 38%,
      #000 58%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      rgba(0, 0, 0, 0.06) 10%,
      rgba(0, 0, 0, 0.32) 22%,
      rgba(0, 0, 0, 0.76) 38%,
      #000 58%);
}

/* ---------- MOBILE ≤1080px ---------- */
@media (max-width: 1080px) {
  .wrap {
    padding: 0 24px;
  }

  .phone span {
    display: none;
  }

  .photo {
    top: 72px;
    right: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    height: 230px;
    background-position: 79.0% 75.5%;
    background-size: 142%;
    -webkit-mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 55%, transparent 100%);
  }

  .hero {
    padding: 188px 0 48px;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero__lead {
    max-width: 100%;
  }

  .features {
    gap: 16px;
  }

  .feature {
    max-width: 100%;
  }

  .cta {
    width: 100%;
    justify-content: center;
  }
}

/* ---------- TABLET 600–1080px ---------- */
@media (min-width: 600px) and (max-width: 1080px) {
  .photo {
    height: 419px;
    background-position: 84.5% 59.0%;
    background-size: 126%;
  }

  .hero {
    padding-top: 367px;
  }

  .phone span {
    display: inline;
  }
}

/* ---------- SMALL MOBILE ≤560px ---------- */
@media (max-width: 600px) {
  .feature {
    max-width: 100%;
  }

  .photo {
    height: 319px;
    background-position: 95% -25px;
    background-size: 100%;
  }

}