:root {
  --cream: #f6f0e2;
  --green: #173322;
  --green-deep: #082217;
  --green-soft: #516555;
  --white: #ffffff;
  --ink: #11150f;
  --muted: #343a33;
  --gold: #cfa86b;
  --gold-light: #dfc296;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Poppins", Arial, sans-serif;
  --shadow: 0 18px 40px rgba(9, 32, 20, 0.18);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.shell {
  width: min(100%, 1010px);
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 24px;
  width: min(100%, 1200px);
  margin: 0 auto;
  gap: 16px;
  transition: height 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.header.scrolled {
  background: rgba(246, 240, 226, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(9, 32, 20, 0.08);
  --header-height: 75px;
  border-bottom: 1px solid rgba(23, 51, 34, 0.06);
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  width: 180px;
  height: auto;
  transition: transform 0.3s ease;
}

.brand:hover img {
  transform: scale(1.02);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link.active {
  color: var(--gold);
}

.nav-link.active::after {
  width: 100%;
}

.header.scrolled .nav-link {
  color: var(--green-deep);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 18px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.contact-divider {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-size: 14px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--gold);
}

.contact-link .icon {
  width: 14px;
  height: 14px;
  stroke-width: 2.5px;
  color: var(--gold);
}

.header.scrolled .contact-links {
  background: rgba(23, 51, 34, 0.05);
  border-color: rgba(23, 51, 34, 0.15);
}

.header.scrolled .contact-link {
  color: var(--green-deep);
}

.header.scrolled .contact-divider {
  color: rgba(23, 51, 34, 0.2);
}

.header.scrolled .contact-link:hover {
  color: var(--gold);
}

.btn-primary-header {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
}

.btn-primary-header:hover {
  background: var(--white);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 255, 255, 0.15);
}

.header.scrolled .btn-primary-header {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  box-shadow: 0 4px 10px rgba(23, 51, 34, 0.15);
}

.header.scrolled .btn-primary-header:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(207, 168, 107, 0.3);
}

/* Mobile Menu Button */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1010;
}

.nav-toggle:focus {
  outline: none;
}

.hamburger-bar {
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.header.scrolled .hamburger-bar {
  background: var(--green);
}

/* Open states for hamburger icon */
.nav-toggle.open .hamburger-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.open .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open .hamburger-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: var(--green-deep);
  color: var(--cream);
  z-index: 1050;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.25);
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 34, 23, 0.4);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mobile-drawer-header .brand img {
  width: 150px;
}

.nav-close {
  background: transparent;
  border: none;
  color: var(--cream);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.nav-close:hover {
  color: var(--gold);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}

.mobile-nav-link {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(246, 240, 226, 0.05);
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--gold);
  padding-left: 8px;
  border-bottom-color: var(--gold);
}

.mobile-drawer-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(246, 240, 226, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-contact-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
}

.mobile-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-contact-item:hover {
  color: var(--gold);
}

.mobile-contact-item .icon {
  width: 16px;
  height: 16px;
  color: var(--gold);
}

.mobile-drawer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--green-deep);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 168, 107, 0.2);
}

.mobile-drawer-btn:hover {
  background: var(--white);
  color: var(--green-deep);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .nav-desktop,
  .contact-links,
  .btn-primary-header {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  color: var(--white);
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
}

.hero .shell {
  width: min(100%, 1280px);
  padding-left: 48px;
  padding-right: 48px;
}

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

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 34, 23, 0.93) 0%,
    rgba(8, 34, 23, 0.82) 32%,
    rgba(8, 34, 23, 0.55) 52%,
    rgba(8, 34, 23, 0.22) 68%,
    rgba(8, 34, 23, 0.05) 82%,
    transparent 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 420px);
  align-items: center;
  gap: 48px;
  padding: 48px 0 56px;
}

.eyebrow {
  display: inline-flex;
  padding: 7px 22px;
  margin: 0 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.95);
}

h1,
h2 {
  margin: 0;
  color: var(--green);
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
}

.hero-copy h1 {
  color: var(--white);
  font-size: clamp(48px, 5.8vw, 72px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}

.hero-lede {
  max-width: 560px;
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin-bottom: 32px;
}

.stats-row article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 86px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.stats-row span {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 6px;
  font-weight: 500;
}

.stats-row strong {
  display: block;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.check-list,
.arrow-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
}

.check-list li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #3d9a4a;
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.white-btn,
.green-btn,
.lead-card button,
.price-grid a,
.plan-image a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 32px;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.white-btn {
  background: var(--white);
  color: var(--green-deep);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hero .white-btn {
  text-transform: none;
  letter-spacing: 0;
  font-size: 16px;
  font-weight: 600;
  min-height: 52px;
  padding: 0 38px;
}

.white-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(207, 168, 107, 0.35);
}

.green-btn,
.lead-card button,
.price-grid a,
.plan-image a {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(23, 51, 34, 0.15);
}

.lead-card {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  padding: 36px 38px 30px;
  background: rgb(255 255 255 / 57%);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: var(--green-deep);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.lead-card h2 {
  margin-bottom: 28px;
  color: var(--green-deep);
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
  text-align: center;
  font-weight: 400;
}

.lead-card input,
.lead-card textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(8, 34, 23, 0.35);
  border-radius: 0;
  background: transparent;
  color: var(--green-deep);
  padding: 14px 0 10px;
  font-size: 15px;
  outline: 0;
  transition: border-color 0.3s ease;
}

.lead-card input::placeholder,
.lead-card textarea::placeholder {
  color: rgba(8, 34, 23, 0.55);
  font-weight: 400;
}

.lead-card input:focus,
.lead-card textarea:focus {
  border-bottom-color: var(--gold);
}

.lead-card textarea {
  min-height: 60px;
  resize: vertical;
}

.phone-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(8, 34, 23, 0.35);
  transition: border-color 0.3s ease;
}

.phone-field:focus-within {
  border-bottom-color: var(--gold);
}

.phone-field input {
  flex: 1;
  border-bottom: 0;
  padding: 12px 0 8px;
}

.phone-field span {
  font-weight: 500;
  font-size: 14px;
  color: var(--green-soft);
  user-select: none;
}

.lead-card button {
  width: 100%;
  margin-top: 26px;
  min-height: 52px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: var(--green-deep);
  box-shadow: 0 4px 16px rgba(8, 34, 23, 0.35);
}

.lead-card button:hover {
  background: #0c2e1f;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(8, 34, 23, 0.4);
}

.lead-card p {
  margin: 18px 0 0;
  font-size: 10px;
  line-height: 1.45;
  font-weight: 400;
  color: rgba(8, 34, 23, 0.65);
  text-align: center;
}

.offer-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 688;
  min-height: 200px;
  background-color: #032619;
  background-image: url("images/3.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.offer-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 38, 25, 0.92) 0%,
    rgba(3, 38, 25, 0.55) 42%,
    transparent 62%
  );
  pointer-events: none;
}

.offer-banner__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  padding: 32px 48px;
}

.offer-banner__copy {
  max-width: 52%;
}

.offer-banner h2 {
  margin: 0 0 12px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 45px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.offer-banner h2 sup {
  font-size: 0.42em;
  top: -0.55em;
  font-weight: 400;
}

.offer-banner__line {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(15px, 1.7vw, 21px);
  font-weight: 400;
  line-height: 1.45;
}

.offer-banner__tnc {
  margin: 20px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

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

.dark {
  background: var(--green);
  color: var(--white);
}

.intro-section {
  background: #fbf7f0;
  padding: 56px 0 64px;
}

.intro-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
}

.intro-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 48px;
}

.intro-section__media {
  margin: 0;
}

.intro-section__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(27, 46, 32, 0.14);
}

.intro-section__copy h2 {
  margin: 0 0 18px;
  color: #1b2e20;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.intro-section__copy h3 {
  margin: 0 0 22px;
  color: #1b2e20;
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.intro-section__copy p {
  margin: 0 0 20px;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.65;
}

.intro-section__copy p:last-of-type {
  margin-bottom: 28px;
}

.intro-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  background: #1b2e20;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(27, 46, 32, 0.2);
}

.intro-section__btn:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(27, 46, 32, 0.25);
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
}

.rounded-media,
.map-img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(35, 35, 25, 0.1);
}

.content-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 5vw, 68px);
}

.content-copy h3 {
  margin: 0 0 13px;
  font-size: 22px;
  line-height: 1.25;
}

.content-copy p {
  margin: 0 0 23px;
  color: #121212;
  font-size: 16px;
}

.highlights-section {
  background: #fbf7f0;
  padding: 48px 0 72px;
}

.highlights-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
}

.highlights-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 48px;
}

.highlights-section__copy h2 {
  margin: 0 0 16px;
  color: #233326;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.highlights-section__copy h3 {
  margin: 0 0 20px;
  color: #233326;
  font-family: var(--sans);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}

.highlights-section__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.highlights-section__list li {
  position: relative;
  padding-left: 22px;
  color: #2a2a2a;
  font-size: 15px;
  line-height: 1.55;
}

.highlights-section__list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: #233326;
  font-weight: 600;
}

.highlights-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  background: #233326;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(35, 51, 38, 0.2);
}

.highlights-section__btn:hover {
  background: #1b2e20;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(35, 51, 38, 0.25);
}

.highlights-section__media {
  margin: 0;
}

.highlights-section__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(27, 46, 32, 0.14);
}

.arrow-list {
  display: grid;
  gap: 15px;
  margin: 21px 0 31px;
  font-size: 17px;
}

.arrow-list li::before {
  content: "→";
  margin-right: 7px;
}

.center {
  text-align: center;
}

.pricing-section {
  background: #1d2b1d;
  padding: 72px 0 80px;
}

.pricing-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}

.pricing-section__header h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.pricing-section__subtitle {
  margin: 0 0 40px;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.pricing-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 268px;
  padding: 40px 24px 32px;
  border-radius: 15px;
  background: var(--white);
  color: #111;
}

.pricing-card__title {
  margin: 0 0 14px;
  font-family: var(--sans);
  font-size: 24px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.pricing-card__details {
  margin: 0 0 12px;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
}

.pricing-card__eoi {
  margin: 0 0 28px;
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.pricing-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  min-height: 48px;
  padding: 0 32px;
  border: 0;
  border-radius: 999px;
  background: #1d2b1d;
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(29, 43, 29, 0.25);
}

.pricing-card__btn:hover {
  background: #233326;
  transform: translateY(-2px);
}

.section-subtitle {
  margin: 8px 0 36px;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}

.dark-text {
  color: #0a0a0a;
}


.amenities-section {
  background: #faf9f6;
  padding: 64px 0 72px;
}

.amenities-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}

.amenities-section__header h2 {
  margin: 0 0 10px;
  color: #233326;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.amenities-section__subtitle {
  margin: 0 0 48px;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.amenities-section__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 36px 48px;
  text-align: left;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.amenity-item__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
}

.amenity-item__icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.amenity-item__label {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 500;
  color: #111;
  line-height: 1.35;
}


.floorplans-section {
  background: #1a2a1a;
  padding: 64px 0 72px;
}

.floorplans-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}

.floorplans-section__header h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.floorplans-section__subtitle {
  margin: 0 0 40px;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.2;
}

.floorplans-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.floorplan-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--white);
}

.floorplan-card__image img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: contain;
  display: block;
}

.floorplan-card__btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: 6px;
  background: #1a2a1a;
  color: var(--white);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.floorplan-card__btn:hover {
  background: #233326;
  transform: translate(-50%, -52%);
}

.floorplan-card__title {
  margin: 18px 0 6px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.floorplan-card__meta {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

.gallery-section {
  background: #fdfbf0;
  padding: 56px 0 64px;
}

.gallery-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
  text-align: center;
}

.gallery-section__header h2 {
  margin: 0 0 10px;
  color: #233326;
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.gallery-section__subtitle {
  margin: 0 0 40px;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  line-height: 1.3;
}

.gallery-section__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 1.21 / 1;
  object-fit: cover;
  display: block;
}

.gallery-card__label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: 88%;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #111;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
}

.location-section {
  background: #fdf8ee;
  padding: 48px 0 64px;
}

.location-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
}

.location-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: start;
  gap: 48px;
}

.location-section__map {
  margin: 0;
}

.location-section__map img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(27, 46, 32, 0.1);
}

.location-section__copy h2 {
  margin: 0 0 16px;
  color: #1b3022;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 400;
  line-height: 1.12;
}

.location-section__copy h3 {
  margin: 0 0 10px;
  color: #111;
  font-family: var(--sans);
  font-size: clamp(18px, 1.9vw, 24px);
  font-weight: 700;
  line-height: 1.35;
}

.location-section__project {
  margin: 0 0 20px;
  color: #111;
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.location-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.location-section__list li {
  position: relative;
  padding-left: 22px;
  color: #111;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.55;
}

.location-section__list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
  font-weight: 600;
}

.about-section {
  background: #fdf8ee;
  padding: 48px 0 72px;
}

.about-section__shell {
  width: min(100%, 1200px);
  padding-left: 40px;
  padding-right: 40px;
}

.about-section__card {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 64px 52px;
  border-radius: 18px;
  background: #ffffff;
  text-align: center;
  box-shadow: 0 8px 28px rgba(27, 46, 32, 0.06);
}

.about-section__card h2 {
  margin: 0 0 24px;
  color: #1d2c1d;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 45px);
  font-weight: 400;
  line-height: 1.15;
}

.about-section__card p {
  margin: 0 auto 20px;
  max-width: 820px;
  color: #111;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65;
}

.about-section__card p:last-of-type {
  margin-bottom: 28px;
}

.about-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 36px;
  border: 0;
  border-radius: 999px;
  background: #1d2c1d;
  color: var(--white);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(29, 44, 29, 0.2);
}

.about-section__btn:hover {
  background: #233326;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(29, 44, 29, 0.25);
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: min(92vh, 920px);
  display: flex;
  align-items: center;
  color: var(--white);
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url("images/31.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.final-cta__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(8, 34, 23, 0.88) 0%,
    rgba(8, 34, 23, 0.72) 35%,
    rgba(8, 34, 23, 0.4) 55%,
    rgba(8, 34, 23, 0.15) 72%,
    transparent 100%
  );
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 420px);
  align-items: center;
  gap: 48px;
}

.final-cta__copy h2 {
  margin: 0 0 20px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 45px);
  font-weight: 400;
  line-height: 1.1;
}

.final-cta__copy p {
  max-width: 580px;
  margin: 0 0 36px;
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 38px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--green-deep);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease, transform 0.3s ease;
}

.final-cta__btn:hover {
  background: var(--gold);
  color: var(--green-deep);
  transform: translateY(-2px);
}

.final-cta__form {
  width: 100%;
  max-width: 420px;
  margin-left: auto;
  padding: 36px 38px 30px;
  border-radius: 14px;
  background-image: url("images/33.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.final-cta__form h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 30px);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

.final-cta__form input,
.final-cta__form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  padding: 14px 0 10px;
  font-size: 15px;
  outline: 0;
}

.final-cta__form input::placeholder,
.final-cta__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.75);
}

.final-cta__form input:focus,
.final-cta__form textarea:focus {
  border-bottom-color: var(--white);
}

.final-cta__form textarea {
  min-height: 60px;
  resize: vertical;
}

.final-cta__phone {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.final-cta__phone input {
  flex: 1;
  border-bottom: 0;
  padding: 14px 0 10px;
}

.final-cta__phone span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.final-cta__form button {
  width: 100%;
  margin-top: 26px;
  min-height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: 8px;
  background: var(--green-deep);
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.final-cta__form button:hover {
  background: #0c2e1f;
  transform: translateY(-1px);
}

.final-cta__form > p {
  margin: 18px 0 0;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

/* ==========================================================================
   Responsive Breakpoints & Media Queries (Header & Hero Refinements)
   ========================================================================== */

/* --- 1440px Breakpoint --- */
@media (max-width: 1440px) {
  .shell {
    width: min(100%, 1280px);
  }
}

/* --- 1200px Breakpoint --- */
@media (max-width: 1200px) {
  .header-inner {
    width: 100%;
    padding: 0 24px;
    gap: 12px;
  }
  
  .brand img {
    width: 150px;
  }
  
  .nav-desktop {
    gap: 18px;
  }
  
  .nav-link {
    font-size: 12px;
  }
  
  .contact-links {
    padding: 6px 12px;
    gap: 8px;
  }
  
  .contact-link {
    font-size: 11px;
  }
  
  .btn-primary-header {
    padding: 8px 16px;
    font-size: 11px;
  }
  
  .hero-grid {
    gap: 40px;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }
  
  .hero-copy h1 {
    font-size: 52px;
  }
  
  .hero-lede {
    font-size: 17px;
    margin-bottom: 25px;
  }
  
  .stats-row {
    margin-bottom: 30px;
  }
  
  .stats-row article {
    padding: 12px 14px;
    min-height: 80px;
  }
  
  .stats-row strong {
    font-size: 18px;
  }
  
  .check-list {
    margin-bottom: 30px;
    gap: 10px;
  }
  
  .check-list li {
    font-size: 14px;
  }
  
  .lead-card {
    padding: 30px;
    border-radius: 14px;
  }
  
  .lead-card h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

}

/* --- 992px Breakpoint (Tablet Landscape) --- */
@media (max-width: 992px) {
  .nav-desktop,
  .contact-links,
  .btn-primary-header {
    display: none;
  }
  
  .nav-toggle {
    display: flex;
  }
  
  .hero {
    padding-top: calc(var(--header-height) + 20px);
    min-height: auto;
  }

  .hero .shell {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    padding-top: 20px;
    padding-bottom: 60px;
  }
  
  .hero-copy {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
  }
  
  .eyebrow {
    margin: 0 auto 20px;
  }
  
  .hero-copy h1 {
    font-size: clamp(38px, 6vw, 56px);
  }
  
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }
  
  .stats-row {
    margin-left: auto;
    margin-right: auto;
    max-width: 550px;
  }
  
  .check-list {
    align-items: center;
    max-width: 500px;
    margin: 0 auto 30px;
  }
  
  .lead-card {
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
  }

  .final-cta {
    min-height: auto;
  }

  .final-cta__inner {
    grid-template-columns: 1fr;
    padding: 48px 24px 56px;
    gap: 40px;
  }

  .final-cta__copy {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
  }

  .final-cta__copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .final-cta__form {
    margin: 0 auto;
    max-width: 480px;
  }

  .offer-banner {
    min-height: 180px;
  }

  .offer-banner__inner {
    padding: 28px 24px;
  }

  .offer-banner__copy {
    max-width: 100%;
    text-align: center;
  }

  .intro-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .highlights-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .highlights-section__media {
    order: -1;
  }

  .pricing-section__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    gap: 20px;
  }

  .amenities-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }

  .floorplans-section__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
    gap: 32px;
  }

  .gallery-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .location-section__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

/* --- 768px Breakpoint (Tablet Portrait) --- */
@media (max-width: 768px) {
  .hero-grid {
    gap: 40px;
  }
  
  .stats-row {
    gap: 12px;
  }
  
  .stats-row article {
    padding: 10px 12px;
  }
  
  .stats-row span {
    font-size: 10px;
  }
  
  .stats-row strong {
    font-size: 16px;
  }
  
  .lead-card {
    padding: 24px;
    border-radius: 14px;
  }

}

/* --- 576px Breakpoint --- */
@media (max-width: 576px) {
  .hero-copy h1 {
    font-size: 34px;
  }
  
  .hero-lede {
    font-size: 15px;
    line-height: 1.45;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
  }
  
  .stats-row article {
    min-height: auto;
    padding: 12px 16px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .stats-row span {
    margin-bottom: 0;
  }
  
  .stats-row strong {
    font-size: 16px;
  }
  
  .check-list li {
    font-size: 13px;
    gap: 10px;
  }
  
  .check-list li::before {
    width: 18px;
    height: 18px;
    background-size: 10px;
  }
  
  .lead-card {
    padding: 20px;
  }
  
  .lead-card h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }

  .offer-banner h2 {
    font-size: 28px;
  }

  .offer-banner__line {
    font-size: 14px;
  }

  .offer-banner__inner {
    padding: 24px 20px;
  }

  .intro-section {
    padding: 40px 0 48px;
  }

  .intro-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .intro-section__media img {
    border-radius: 20px;
  }

  .intro-section__copy h2 {
    font-size: 30px;
  }

  .intro-section__copy h3 {
    font-size: 17px;
    margin-bottom: 18px;
  }

  .intro-section__copy p {
    font-size: 14px;
    text-align: left;
  }

  .intro-section__copy {
    text-align: left;
  }

  .highlights-section {
    padding: 40px 0 56px;
  }

  .highlights-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .highlights-section__copy h2 {
    font-size: 30px;
  }

  .highlights-section__copy h3 {
    font-size: 17px;
    margin-bottom: 16px;
  }

  .highlights-section__list li {
    font-size: 14px;
  }

  .highlights-section__media img {
    border-radius: 20px;
  }

  .pricing-section {
    padding: 56px 0 64px;
  }

  .pricing-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .pricing-section__header h2 {
    font-size: 32px;
  }

  .pricing-section__subtitle {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .pricing-section__grid {
    max-width: 100%;
  }

  .pricing-card {
    min-height: auto;
    padding: 32px 20px 28px;
  }

  .amenities-section {
    padding: 48px 0 56px;
  }

  .amenities-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .amenities-section__header h2 {
    font-size: 32px;
  }

  .amenities-section__subtitle {
    font-size: 22px;
    margin-bottom: 36px;
  }

  .amenities-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .amenity-item__label {
    font-size: 16px;
  }

  .floorplans-section {
    padding: 48px 0 56px;
  }

  .floorplans-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .floorplans-section__header h2 {
    font-size: 32px;
  }

  .floorplans-section__subtitle {
    font-size: 22px;
    margin-bottom: 32px;
  }

  .floorplan-card__image {
    min-height: 220px;
  }

  .floorplan-card__image img {
    min-height: 220px;
  }

  .floorplan-card__title {
    font-size: 20px;
  }

  .floorplan-card__meta {
    font-size: 16px;
  }

  .gallery-section {
    padding: 44px 0 52px;
  }

  .gallery-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .gallery-section__header h2 {
    font-size: 32px;
  }

  .gallery-section__subtitle {
    font-size: 20px;
    margin-bottom: 32px;
  }

  .gallery-section__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .gallery-card__label {
    font-size: 14px;
    padding: 6px 12px;
  }

  .location-section {
    padding: 40px 0 52px;
  }

  .location-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .location-section__copy h2 {
    font-size: 30px;
  }

  .location-section__copy h3 {
    font-size: 18px;
  }

  .location-section__list li {
    font-size: 14px;
  }

  .location-section__map img {
    border-radius: 16px;
  }

  .about-section {
    padding: 40px 0 56px;
  }

  .about-section__shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-section__card {
    padding: 36px 28px 40px;
    border-radius: 16px;
  }

  .about-section__card h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .about-section__card p {
    font-size: 14px;
  }

  .final-cta__copy h2 {
    font-size: 32px;
  }

  .final-cta__copy p {
    font-size: 16px;
    margin-bottom: 28px;
  }

  .final-cta__form {
    padding: 28px 24px 24px;
  }

  .final-cta__form h2 {
    font-size: 22px;
  }
}

/* --- 480px Breakpoint (Mobile) --- */
@media (max-width: 480px) {
  .brand img {
    width: 130px;
  }
  
  .hero-copy h1 {
    font-size: 30px;
  }
  
  .eyebrow {
    font-size: 10px;
    padding: 6px 16px;
  }
  
  .lead-card {
    border-radius: 14px;
  }
  
  .lead-card button {
    margin-top: 20px;
    min-height: 44px;
    font-size: 12px;
  }
}

/* ==========================================================================
   Modal Enquiry Popup Styles
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 34, 23, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--white);
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--green-deep);
  cursor: pointer;
  z-index: 10;
  transition: color 0.3s ease;
  padding: 5px;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-content {
  padding: 45px 40px;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--green-deep);
  margin-bottom: 10px;
}

.modal-header p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.modal-form .form-group {
  margin-bottom: 18px;
}

.modal-form input,
.modal-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(8, 34, 23, 0.15);
  border-radius: 10px;
  background: #f9f9f9;
  font-size: 15px;
  color: var(--green-deep);
  transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 51, 34, 0.05);
}

.modal-phone-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  border: 1px solid rgba(8, 34, 23, 0.15);
  border-radius: 10px;
  background: #f9f9f9;
  transition: all 0.3s ease;
}

.modal-phone-field:focus-within {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 51, 34, 0.05);
}

.modal-phone-field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--green-soft);
  white-space: nowrap;
}

.modal-phone-field input {
  padding: 14px 0;
  border: none;
  background: transparent;
}

.modal-phone-field input:focus {
  box-shadow: none;
}

.modal-form textarea {
  min-height: 100px;
  resize: none;
}

.modal-submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.modal-submit-btn:hover {
  background: var(--green);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(8, 34, 23, 0.2);
}

.form-disclaimer {
  margin-top: 20px;
  font-size: 11px;
  line-height: 1.4;
  color: var(--muted);
  text-align: center;
  opacity: 0.8;
}

/* Success Message Styles */
.modal-success-msg {
  text-align: center;
  padding: 20px 0;
}

.success-icon {
  width: 70px;
  height: 70px;
  background: #3d9a4a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.success-icon svg {
  width: 35px;
  height: 35px;
}

.modal-success-msg h3 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--green-deep);
  margin-bottom: 15px;
}

.modal-success-msg p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.modal-close-btn {
  padding: 12px 40px;
  background: var(--green-deep);
  color: var(--white);
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close-btn:hover {
  background: var(--gold);
  color: var(--green-deep);
}

/* Prevent Body Scroll */
body.modal-open {
  overflow: hidden;
}

@media (max-width: 576px) {
  .modal-content {
    padding: 40px 25px;
  }
  .modal-header h2 {
    font-size: 30px;
  }
}


