:root {
  --ink: #172119;
  --forest: #2f6638;
  --forest-deep: #234d2b;
  --leaf: #9bc26b;
  --leaf-text: #527b35;
  --leaf-soft: #dcebc7;
  --cream: #f4f5ed;
  --paper: #ffffff;
  --muted: #59635b;
  --line: rgba(23, 33, 25, 0.13);
  --shadow: 0 24px 70px rgba(30, 58, 35, 0.13);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --ease: 280ms cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.72;
  overflow-x: hidden;
}

body.modal-open { padding-right: 0 !important; }

img { max-width: 100%; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease), background-color var(--ease), border-color var(--ease), transform var(--ease);
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-family: "Sora", sans-serif;
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

p:last-child { margin-bottom: 0; }

.section-pad { padding: 7rem 0; }
.section-pad-sm { padding: 5rem 0; }
.bg-cream { background: var(--cream); }
.bg-forest { background: var(--forest-deep); color: white; }
.text-leaf { color: var(--leaf-text) !important; }
.text-muted-custom { color: var(--muted); }
.text-muted { color: #5c665e !important; }
.mw-620 { max-width: 620px; }
.mw-720 { max-width: 720px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
  color: var(--forest);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  background: var(--leaf);
}

.bg-forest .eyebrow { color: #add27d; }

.bg-forest .text-leaf,
.stat-panel .text-leaf,
.page-hero .text-leaf,
.contact-aside .text-leaf,
.service-card.featured .text-leaf {
  color: #add27d !important;
}

.bg-forest .text-white-50,
.stat-panel .text-white-50,
.contact-aside .text-white-50,
.modal .bg-forest .text-white-50 {
  color: rgba(255, 255, 255, .78) !important;
}

.display-title {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  max-width: 880px;
}

.section-title {
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  margin-bottom: 1.3rem;
}

.lead-copy {
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.bg-forest .lead-copy { color: rgba(255, 255, 255, .72); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: .8rem 1.35rem;
  border-radius: 100px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .015em;
}

.btn-brand {
  border-color: var(--leaf);
  background: var(--leaf);
  color: var(--ink);
}

.btn-brand:hover,
.btn-brand:focus {
  border-color: #acd17a;
  background: #acd17a;
  color: var(--ink);
  transform: translateY(-2px);
}

.btn-dark-brand {
  border-color: var(--forest-deep);
  background: var(--forest-deep);
  color: #fff;
}

.btn-dark-brand:hover,
.btn-dark-brand:focus {
  border-color: var(--forest);
  background: var(--forest);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline-brand {
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  border-color: #fff;
  background: #fff;
  color: var(--forest-deep);
}

.btn-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--forest);
  font-size: .85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.btn-link-arrow i { transition: transform var(--ease); }
.btn-link-arrow:hover { color: var(--forest-deep); }
.btn-link-arrow:hover i { transform: translateX(5px); }

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1030;
  border-bottom: 1px solid transparent;
  background: rgba(255,255,255,.96);
  transition: box-shadow var(--ease), border-color var(--ease);
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 35px rgba(30, 50, 34, .08);
}

.navbar { min-height: 84px; padding: .65rem 0; }

.navbar-brand {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: .3rem .55rem;
  border: 1px solid rgba(35, 77, 43, .16);
  border-radius: .85rem;
  background: linear-gradient(90deg, #f8f9f3 0 46%, var(--forest-deep) 46% 100%);
  box-shadow: 0 8px 24px rgba(23, 33, 25, .09);
}

.navbar-brand img {
  display: block;
  width: 168px;
  height: 68px;
  object-fit: contain;
  object-position: left center;
}

.navbar-nav { gap: .2rem; }

.navbar .nav-link {
  position: relative;
  padding: .72rem .86rem !important;
  color: #465047;
  font-size: .82rem;
  font-weight: 750;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  right: .86rem;
  bottom: .35rem;
  left: .86rem;
  height: 2px;
  border: 0;
  background: var(--leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.navbar .nav-link.dropdown-toggle::after { margin: 0; vertical-align: initial; }
.navbar .nav-link:hover,
.navbar .nav-link.active { color: var(--forest); }
.navbar .nav-link:hover::after,
.navbar .nav-link.active::after { transform: scaleX(1); }

.dropdown-menu {
  min-width: 255px;
  padding: .65rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}

.dropdown-item {
  padding: .68rem .8rem;
  border-radius: .65rem;
  color: #3c463e;
  font-size: .82rem;
  font-weight: 700;
}

.dropdown-item:hover,
.dropdown-item:focus { background: var(--cream); color: var(--forest); }

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  padding-top: 84px;
  background: var(--forest-deep);
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 32, 19, .94) 0%, rgba(24, 49, 29, .78) 43%, rgba(16, 34, 20, .2) 74%, rgba(15, 32, 19, .16) 100%);
}

.hero-media {
  position: absolute;
  inset: 84px 0 0;
  width: 100%;
  height: calc(100% - 84px);
  object-fit: cover;
}

.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 735px; padding: 9rem 0 7rem; }

.hero-title {
  margin-bottom: 1.6rem;
  font-size: clamp(3rem, 6.8vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.06em;
}

.hero-title span { color: #add27d; }

.hero-copy {
  max-width: 620px;
  margin-bottom: 2rem;
  color: rgba(255,255,255,.8);
  font-size: clamp(1rem, 1.7vw, 1.23rem);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }

.hero-location {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-top: 2.2rem;
  color: rgba(255,255,255,.82);
  font-size: .84rem;
  font-weight: 700;
}

.hero-location i { color: var(--leaf); font-size: 1.15rem; }

.hero-badge {
  position: absolute;
  right: max(3vw, 24px);
  bottom: 3rem;
  z-index: 3;
  display: grid;
  width: 145px;
  height: 145px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(26, 53, 31, .62);
  backdrop-filter: blur(12px);
  text-align: center;
}

.hero-badge strong {
  display: block;
  color: var(--leaf);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
}

.hero-badge span { display: block; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }

/* Shared content */
.amenity-bar {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.amenity-bar .row > div { border-right: 1px solid var(--line); }
.amenity-bar .row > div:last-child { border-right: 0; }

.amenity-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  min-height: 86px;
  padding: 1rem .6rem;
  color: #3b463d;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.amenity-item i { color: var(--forest); font-size: 1.4rem; }

.arch-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 9rem var(--radius-lg);
  box-shadow: var(--shadow);
}

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

.image-label {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  max-width: 210px;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(0,0,0,.12);
  backdrop-filter: blur(10px);
  font-size: .78rem;
  font-weight: 750;
}

.image-label i { margin-right: .35rem; color: var(--forest); }

.feature-list { display: grid; gap: 1.1rem; margin: 2rem 0; }

.feature-line { display: flex; align-items: flex-start; gap: .9rem; }

.feature-line .icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf-soft);
  color: var(--forest-deep);
}

.feature-line strong { display: block; margin-bottom: .1rem; font-size: .93rem; }
.feature-line span { color: var(--muted); font-size: .87rem; }

/* Service cards */
.service-card {
  position: relative;
  height: 100%;
  min-height: 330px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--leaf-soft);
  transition: transform var(--ease);
}

.service-card:hover {
  border-color: rgba(47,102,56,.25);
  box-shadow: var(--shadow);
  transform: translateY(-7px);
}

.service-card:hover::before { transform: scale(1.25); }

.service-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 2.5rem;
  place-items: center;
  border-radius: 1rem;
  background: var(--forest-deep);
  color: var(--leaf);
  font-size: 1.35rem;
}

.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); font-size: .91rem; }
.service-card .btn-link-arrow { position: absolute; bottom: 1.8rem; left: 2rem; }

.service-card.featured { border-color: var(--forest-deep); background: var(--forest-deep); color: white; }
.service-card.featured::before { background: rgba(155,194,107,.16); }
.service-card.featured .service-icon { background: var(--leaf); color: var(--forest-deep); }
.service-card.featured p { color: rgba(255,255,255,.8); }
.service-card.featured .btn-link-arrow { color: var(--leaf); }
.service-card.bg-forest h3 { color: #fff; }
.service-card.bg-forest p { color: rgba(255,255,255,.8) !important; }

/* Visual feature */
.visual-feature {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}

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

.visual-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,28,16,.08), rgba(12,28,16,.82));
}

.visual-feature .container { position: relative; z-index: 2; padding-bottom: 5rem; }

.glass-panel {
  max-width: 700px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  background: rgba(23,45,27,.54);
  backdrop-filter: blur(16px);
}

.glass-panel h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }
.glass-panel p { color: rgba(255,255,255,.78); }

/* Benefits */
.benefit {
  display: flex;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.benefit:last-child { border-bottom: 0; }
.benefit-number { color: var(--leaf-text); font-family: "Sora", sans-serif; font-weight: 700; }
.benefit h3 { margin-bottom: .45rem; font-size: 1.1rem; }
.benefit p { color: var(--muted); font-size: .9rem; }

.stat-panel {
  position: relative;
  min-height: 520px;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: #fff;
  overflow: hidden;
}

.stat-panel::before,
.stat-panel::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(155,194,107,.4);
  border-radius: 50%;
}

.stat-panel::before { width: 430px; height: 430px; right: -230px; top: -170px; }
.stat-panel::after { width: 270px; height: 270px; right: -100px; top: -90px; }

.stat-panel .big-mark {
  color: var(--leaf);
  font-family: "Sora", sans-serif;
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -.08em;
}

.stat-panel blockquote { max-width: 450px; margin: 2rem 0 0; font-size: 1.45rem; line-height: 1.45; }

/* Location */
.location-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 530px;
  border-radius: var(--radius-lg);
  background: var(--forest-deep);
  color: #fff;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.location-content { display: flex; flex-direction: column; justify-content: center; padding: clamp(2rem, 5vw, 4rem); }
.location-content h2 { font-size: clamp(2.2rem, 4vw, 3.7rem); }
.location-content p { color: rgba(255,255,255,.8); }
.location-image { position: relative; min-height: 400px; }
.location-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.address-line { display: flex; gap: .8rem; margin: 1.2rem 0 1.8rem; font-weight: 700; }
.address-line i { color: var(--leaf); font-size: 1.25rem; }

/* Inner pages */
.page-hero {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  padding: 160px 0 75px;
  background: var(--forest-deep);
  color: #fff;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -210px;
  right: -150px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(155,194,107,.38);
  border-radius: 50%;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: -280px;
  width: 460px;
  height: 460px;
  border: 90px solid rgba(155,194,107,.09);
  border-radius: 50%;
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.84); font-size: 1.08rem; }

.page-hero.has-image::before,
.page-hero.has-image::after { z-index: 1; }

.page-hero-media { position: absolute; inset: 84px 0 0 50%; width: 50%; height: calc(100% - 84px); object-fit: cover; }
.page-hero.has-image .hero-fade { position: absolute; z-index: 1; inset: 84px 0 0; background: linear-gradient(90deg, var(--forest-deep) 0%, rgba(35,77,43,.98) 43%, rgba(35,77,43,.3) 72%, rgba(35,77,43,.08)); }

.breadline { display: flex; gap: .6rem; margin-bottom: 1.2rem; color: rgba(255,255,255,.78); font-size: .77rem; font-weight: 750; text-transform: uppercase; letter-spacing: .08em; }
.breadline a:hover { color: var(--leaf); }

/* Legal pages */
.page-hero.legal-hero { min-height: 470px; }
.legal-updated { display: inline-flex; align-items: center; gap: .55rem; margin-top: 1rem; color: #c7dda7; font-size: .86rem; font-weight: 700; }
.legal-sidebar {
  position: sticky;
  top: 112px;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
}
.legal-sidebar h2 { margin-bottom: 1rem; font-size: 1rem; }
.legal-sidebar nav { display: grid; gap: .25rem; }
.legal-sidebar a { padding: .55rem .7rem; border-radius: .6rem; color: var(--muted); font-size: .86rem; font-weight: 700; }
.legal-sidebar a:hover { background: var(--leaf-soft); color: var(--forest-deep); }
.legal-content { max-width: 860px; }
.legal-intro { margin-bottom: 2.5rem; padding: 1.5rem; border-left: 4px solid var(--leaf); border-radius: 0 .9rem .9rem 0; background: var(--cream); }
.legal-intro p { margin: 0; color: var(--ink); }
.legal-section { scroll-margin-top: 120px; margin-bottom: 2.2rem; padding-bottom: 2.2rem; border-bottom: 1px solid var(--line); }
.legal-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: 0; }
.legal-section h2 { margin-bottom: 1rem; font-size: clamp(1.35rem, 2.4vw, 1.8rem); letter-spacing: -.025em; }
.legal-section h3 { margin: 1.3rem 0 .55rem; font-size: 1.05rem; }
.legal-section p,
.legal-section li { color: var(--muted); }
.legal-section ul { display: grid; gap: .55rem; padding-left: 1.2rem; }
.legal-section a { color: var(--forest); font-weight: 700; }
.legal-section a:hover { color: var(--leaf-text); }
.legal-note { padding: 1.2rem 1.3rem; border: 1px solid rgba(47,102,56,.2); border-radius: .9rem; background: #f7faf3; }

.service-detail {
  scroll-margin-top: 110px;
  padding: 3.2rem 0;
  border-bottom: 1px solid var(--line);
}

.service-detail:last-child { border-bottom: 0; }
.service-detail h2 { font-size: clamp(1.8rem, 3vw, 2.75rem); }
.service-detail p { color: var(--muted); }
.service-detail .service-icon { margin-bottom: 1.4rem; }

.detail-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem 1.2rem; margin: 1.5rem 0 0; padding: 0; list-style: none; }
.detail-list li { display: flex; gap: .55rem; color: #3c463e; font-size: .88rem; font-weight: 700; }
.detail-list i { color: var(--forest); }

.amenities-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.amenity-box { min-height: 180px; padding: 1.7rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.amenity-box i { display: block; margin-bottom: 1.3rem; color: var(--forest); font-size: 1.55rem; }
.amenity-box h3 { margin-bottom: .35rem; font-size: 1rem; }
.amenity-box p { color: var(--muted); font-size: .83rem; line-height: 1.55; }

/* Plans and pricing */
.package-section { position: relative; scroll-margin-top: 96px; }
.anchor-alias { position: absolute; top: -96px; }

.quick-link {
  display: flex;
  height: 100%;
  min-height: 112px;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: .55rem;
  border: 1px solid transparent;
  border-radius: 1rem;
  background: #fff;
  color: var(--forest-deep);
  font-size: .82rem;
  font-weight: 800;
}

.quick-link i { color: var(--forest); font-size: 1.5rem; }
.quick-link:hover { border-color: rgba(47,102,56,.24); box-shadow: 0 14px 34px rgba(30,58,35,.09); transform: translateY(-3px); }

.plan-card {
  position: relative;
  display: flex;
  height: 100%;
  min-height: 610px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 15px 45px rgba(30,50,34,.07);
  flex-direction: column;
  overflow: hidden;
}

.plan-top { padding-bottom: 1.35rem; border-bottom: 1px solid var(--line); }
.plan-kicker { display: block; margin-bottom: .65rem; color: var(--leaf-text); font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.plan-card h3 { margin-bottom: .65rem; font-size: 1.4rem; }
.plan-audience { min-height: 52px; color: var(--muted); font-size: .9rem; }
.price { color: var(--forest-deep); font-family: "Sora", sans-serif; font-size: clamp(1.45rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -.04em; }
.price span { display: block; margin-top: .2rem; color: var(--muted); font-family: "Manrope", sans-serif; font-size: .75rem; font-weight: 700; letter-spacing: 0; }

.plan-list { display: grid; gap: .7rem; margin: 1.5rem 0 2rem; padding: 0; list-style: none; }
.plan-list li { display: flex; gap: .65rem; color: #3c463e; font-size: .88rem; font-weight: 700; }
.plan-list li::before { content: "\2713"; color: var(--forest); font-weight: 900; }

.featured-plan { border-color: var(--forest-deep); background: var(--forest-deep); color: #fff; box-shadow: 0 25px 65px rgba(23,48,28,.2); }
.featured-plan .plan-top { border-color: rgba(255,255,255,.17); }
.featured-plan .plan-kicker { color: #b9dc8c; }
.featured-plan .plan-audience,
.featured-plan .price span { color: rgba(255,255,255,.75); }
.featured-plan .price,
.featured-plan .plan-list li { color: #fff; }
.featured-plan .plan-list li::before { color: var(--leaf); }
.plan-badge { position: absolute; top: 1.35rem; right: 1.35rem; padding: .35rem .65rem; border-radius: 100px; background: var(--leaf); color: var(--forest-deep); font-size: .65rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.plan-image { min-height: 390px; }

.compact-plan {
  display: flex;
  height: 100%;
  min-height: 340px;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  background: #fff;
  flex-direction: column;
}

.capacity { display: inline-flex; margin-bottom: 2.2rem; align-items: center; gap: .45rem; color: var(--forest); font-size: .75rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.compact-plan h3 { font-size: 1.2rem; }
.compact-price { margin: .45rem 0 1rem; color: var(--forest-deep); font-family: "Sora", sans-serif; font-size: 1.14rem; font-weight: 700; }
.compact-plan p { color: var(--muted); font-size: .85rem; }
.compact-plan > a { margin-top: auto; color: var(--forest); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; }
.featured-compact { border-color: var(--forest-deep); background: var(--forest-deep); color: #fff; }
.featured-compact .capacity,
.featured-compact > a { color: var(--leaf); }
.featured-compact .compact-price { color: #fff; }
.featured-compact p { color: rgba(255,255,255,.76); }
.pricing-note { display: flex; gap: .6rem; color: var(--muted); font-size: .85rem; }
.pricing-note i { color: var(--forest); }

.room-pricing { border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; overflow: hidden; box-shadow: 0 20px 55px rgba(30,50,34,.08); }
.room-row { display: flex; min-height: 106px; padding: 1.25rem 1.6rem; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.room-row:last-child { border-bottom: 0; }
.room-row > div { display: flex; align-items: center; gap: 1rem; }
.room-icon { display: grid; width: 50px; height: 50px; place-items: center; border-radius: .9rem; background: var(--leaf-soft); color: var(--forest-deep); font-size: 1.2rem; }
.room-row h3 { margin: 0 0 .15rem; font-size: 1.05rem; }
.room-row p { margin: 0; color: var(--muted); font-size: .82rem; }
.room-row > strong { color: var(--forest-deep); font-family: "Sora", sans-serif; font-size: 1.05rem; text-align: right; }
.room-row > strong span { display: block; color: var(--muted); font-family: "Manrope", sans-serif; font-size: .7rem; }

.event-tags { display: flex; margin-top: 2rem; flex-wrap: wrap; gap: .55rem; }
.event-tags span { padding: .5rem .8rem; border: 1px solid rgba(255,255,255,.25); border-radius: 100px; color: rgba(255,255,255,.9); font-size: .75rem; font-weight: 700; }
.event-pricing-card { padding: clamp(1.6rem, 4vw, 2.6rem); border-radius: var(--radius-md); background: #fff; color: var(--ink); box-shadow: 0 30px 75px rgba(12,27,16,.25); }
.event-pricing-card h3 { margin-bottom: 1.5rem; font-size: 1.35rem; }
.event-price { display: flex; padding: .85rem 0; align-items: center; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--line); }
.event-price span { color: var(--muted); font-weight: 700; }
.event-price strong { color: var(--forest-deep); font-family: "Sora", sans-serif; font-size: 1rem; text-align: right; }
.event-package { margin: 1.5rem 0; padding: 1.2rem; border-radius: .9rem; background: var(--cream); }
.event-package p { margin: 0; color: #3c463e; font-size: .9rem; font-weight: 700; }

.service-chip-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
.service-chip-grid span { display: flex; min-height: 68px; padding: .9rem 1rem; align-items: center; gap: .65rem; border: 1px solid var(--line); border-radius: .8rem; background: #fff; color: #3c463e; font-size: .82rem; font-weight: 750; }
.service-chip-grid i { color: var(--forest); font-size: 1.05rem; }

.additional-card { display: flex; height: 100%; min-height: 245px; padding: 2rem; align-items: flex-start; gap: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.additional-card .service-icon { flex: 0 0 54px; margin: 0; }
.additional-card h3 { font-size: 1.3rem; }
.additional-card p { color: var(--muted); font-size: .9rem; }

.values-card { height: 100%; padding: 2rem; border-top: 4px solid var(--leaf); background: #fff; box-shadow: 0 14px 45px rgba(30,50,34,.07); }
.values-card .number { margin-bottom: 2.7rem; color: var(--leaf-text); font-family: "Sora", sans-serif; font-size: 2.2rem; font-weight: 700; }
.values-card h3 { font-size: 1.15rem; }
.values-card p { color: var(--muted); font-size: .9rem; }

/* Contact */
.contact-shell {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-aside { padding: clamp(2rem, 5vw, 4rem); background: var(--forest-deep); color: #fff; }
.contact-aside p { color: rgba(255,255,255,.8); }
.contact-form-wrap { padding: clamp(2rem, 5vw, 4rem); background: #fff; }

.contact-point { display: flex; gap: .9rem; margin-top: 1.4rem; }
.contact-point .icon { display: grid; flex: 0 0 42px; width: 42px; height: 42px; place-items: center; border-radius: 50%; background: rgba(155,194,107,.15); color: var(--leaf); }
.contact-point strong { display: block; font-size: .85rem; }
.contact-point span { color: rgba(255,255,255,.78); font-size: .84rem; }

.form-label { color: #3c463e; font-size: .78rem; font-weight: 800; }
.form-control,
.form-select {
  min-height: 52px;
  border-color: var(--line);
  border-radius: .7rem;
  background-color: #fafbf7;
  font-size: .9rem;
}

textarea.form-control { min-height: 130px; }
.form-control:focus,
.form-select:focus { border-color: var(--leaf); box-shadow: 0 0 0 .22rem rgba(155,194,107,.18); }
.form-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.contact-aside a { color: #fff; }
.contact-aside a:hover { color: var(--leaf); }
.contact-aside .social-links a { border-color: rgba(255,255,255,.34); color: #fff; }
.contact-aside .social-links a:hover { border-color: var(--leaf); background: var(--leaf); color: var(--forest-deep); }

.application-aside {
  position: sticky;
  top: 110px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.google-form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.form-card-heading { padding: clamp(1.6rem, 4vw, 2.5rem); border-bottom: 1px solid var(--line); }
.form-card-heading h2 { margin-bottom: .7rem; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.form-card-heading p { color: var(--muted); }

.google-form-frame {
  width: 100%;
  min-height: 1660px;
  background: #f3f4ed;
}

.google-form-frame iframe {
  display: block;
  width: 100%;
  height: 1660px;
  border: 0;
}

.form-fallback {
  display: flex;
  padding: 1rem 1.4rem;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  border-top: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: .82rem;
  text-align: center;
}

.form-fallback a { color: var(--forest); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }

.payment-qr-card {
  margin-top: 2rem;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--cream);
  box-shadow: 0 18px 50px rgba(30,50,34,.08);
}

.payment-qr-heading { display: flex; align-items: flex-start; gap: 1.2rem; margin-bottom: 1.5rem; }
.payment-qr-heading .service-icon { flex: 0 0 54px; margin: 0; }
.payment-qr-heading .eyebrow { margin-bottom: .55rem; }
.payment-qr-heading h2 { margin-bottom: .5rem; font-size: clamp(1.65rem, 3vw, 2.25rem); }
.payment-qr-heading p { color: var(--muted); }
.payment-qr-card > img { display: block; width: min(100%, 650px); height: auto; margin: 0 auto; border: 1px solid rgba(35,77,43,.14); border-radius: 1rem; background: #fff; }

.map-frame { width: 100%; min-height: 520px; border: 0; filter: saturate(.65) contrast(1.05); }

.accordion-item { margin-bottom: .75rem; border: 1px solid var(--line) !important; border-radius: .9rem !important; overflow: hidden; }
.accordion-button { padding: 1.15rem 1.3rem; font-family: "Sora", sans-serif; font-size: .92rem; font-weight: 600; }
.accordion-button:not(.collapsed) { background: var(--leaf-soft); color: var(--forest-deep); box-shadow: none; }
.accordion-button:focus { box-shadow: 0 0 0 .2rem rgba(155,194,107,.17); }
.accordion-body { color: var(--muted); font-size: .9rem; }

/* CTA / footer */
.cta-band {
  position: relative;
  padding: 5rem 0;
  background: var(--leaf);
  overflow: hidden;
}

.cta-band::before {
  content: "C";
  position: absolute;
  right: 3%;
  bottom: -42%;
  color: rgba(255,255,255,.3);
  font-family: "Sora", sans-serif;
  font-size: 20rem;
  font-weight: 700;
  line-height: 1;
}

.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { max-width: 680px; margin-bottom: .8rem; font-size: clamp(2.2rem, 4.5vw, 4.2rem); }
.cta-band p { max-width: 620px; color: rgba(23,33,25,.84); }

.site-footer { padding: 5rem 0 1.5rem; background: var(--cream); }
.footer-logo {
  display: block;
  width: 180px;
  height: auto;
  margin-bottom: 1.4rem;
  padding: .5rem .7rem;
  border: 1px solid rgba(35, 77, 43, .16);
  border-radius: .9rem;
  background: linear-gradient(90deg, #f8f9f3 0 46%, var(--forest-deep) 46% 100%);
  box-shadow: 0 10px 28px rgba(23, 33, 25, .1);
}
.footer-blurb { max-width: 370px; color: var(--muted); font-size: .9rem; }
.footer-title { margin-bottom: 1.2rem; font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .11em; }
.footer-links { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: var(--muted); font-size: .88rem; }
.footer-links a:hover { color: var(--forest); transform: translateX(3px); }
.footer-bottom { margin-top: 3.5rem; padding-top: 1.3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }
.footer-meta-links { display: flex; flex-wrap: wrap; gap: .6rem 1.2rem; }
.footer-meta-links a:hover { color: var(--forest); }
.social-links { display: flex; gap: .5rem; }
.social-links a { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--forest); }
.social-links a:hover { border-color: var(--forest); background: var(--forest); color: #fff; }
.footer-email { display: inline-flex; align-items: center; gap: .5rem; margin-top: .8rem; color: var(--forest); font-size: .88rem; font-weight: 700; }
.footer-email:hover { color: var(--leaf-text); }
.footer-whatsapp { display: flex; width: fit-content; align-items: center; gap: .5rem; margin-top: .55rem; color: var(--forest); font-size: .88rem; font-weight: 700; }
.footer-whatsapp:hover { color: #168b46; }

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 1045;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(18,88,49,.32);
  font-size: 2rem;
}

.whatsapp-float:hover,
.whatsapp-float:focus { background: #1dbb59; color: #fff; transform: translateY(-3px); }

.form-status-card { max-width: 720px; margin: 0 auto; padding: clamp(2.2rem, 6vw, 4.5rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow); text-align: center; }
.form-status-icon { display: grid; width: 72px; height: 72px; margin: 0 auto 1.5rem; place-items: center; border-radius: 50%; background: var(--leaf-soft); color: var(--forest); font-size: 2rem; }

.toast-container { z-index: 1080; }
.toast { border: 0; border-radius: 1rem; box-shadow: var(--shadow); }

/* Motion */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

@media (min-width: 992px) {
  .navbar .dropdown:hover > .dropdown-menu { display: block; margin-top: 0; }
}

@media (max-width: 1199.98px) {
  .hero-content { padding: 7rem 0 6rem; }
  .amenities-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991.98px) {
  .section-pad { padding: 5.5rem 0; }
  .navbar { min-height: 76px; }
  .navbar-brand img { width: 145px; height: 58px; }
  .navbar-collapse { margin-top: .6rem; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: #fff; box-shadow: var(--shadow); }
  .navbar .nav-link { padding: .75rem .6rem !important; }
  .navbar .nav-link::after { display: none; }
  .navbar .btn { width: 100%; margin-top: .5rem; }
  .hero { min-height: 740px; padding-top: 76px; }
  .hero-media { inset: 76px 0 0; height: calc(100% - 76px); }
  .hero-content { padding: 6rem 0; }
  .hero::after { background: linear-gradient(90deg, rgba(15,32,19,.92), rgba(15,32,19,.65)); }
  .hero-badge { display: none; }
  .amenity-bar .row > div:nth-child(3) { border-right: 0; }
  .amenity-bar .row > div:nth-child(-n+3) { border-bottom: 1px solid var(--line); }
  .arch-image { min-height: 480px; }
  .location-card,
  .contact-shell { grid-template-columns: 1fr; }
  .location-image { min-height: 420px; }
  .page-hero-media { inset: 76px 0 0 38%; width: 62%; height: calc(100% - 76px); opacity: .52; }
  .page-hero.has-image .hero-fade { inset: 76px 0 0; background: linear-gradient(90deg, var(--forest-deep) 0%, rgba(35,77,43,.91) 60%, rgba(35,77,43,.56)); }
  .legal-sidebar { position: static; }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card { min-height: auto; }
  .application-aside { position: static; }
}

@media (max-width: 767.98px) {
  .section-pad { padding: 4.4rem 0; }
  .section-pad-sm { padding: 3.8rem 0; }
  .hero { min-height: 690px; }
  .hero-content { padding: 5.5rem 0 4.5rem; }
  .hero-title { font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .hero-actions .btn { width: 100%; }
  .amenity-bar .row > div { border-right: 1px solid var(--line); }
  .amenity-bar .row > div:nth-child(2n) { border-right: 0; }
  .amenity-bar .row > div:nth-child(-n+4) { border-bottom: 1px solid var(--line); }
  .amenity-item { min-height: 74px; font-size: .67rem; }
  .arch-image { min-height: 410px; border-radius: 1.5rem 1.5rem 6rem 1.5rem; }
  .visual-feature { min-height: 600px; }
  .visual-feature .container { padding-bottom: 2rem; }
  .glass-panel { padding: 1.4rem; }
  .stat-panel { min-height: 430px; padding: 2rem; }
  .page-hero { min-height: 510px; padding-top: 135px; }
  .page-hero-media { left: 0; width: 100%; }
  .page-hero.has-image .hero-fade { background: rgba(25,55,32,.78); }
  .detail-list { grid-template-columns: 1fr; }
  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .amenity-box { min-height: 160px; padding: 1.3rem; }
  .service-chip-grid { grid-template-columns: 1fr; }
  .additional-card { min-height: auto; }
  .room-row { align-items: flex-start; }
  .cta-band::before { right: -30%; }
  .footer-bottom .d-flex { align-items: flex-start !important; flex-direction: column; gap: .6rem; }
  .google-form-frame,
  .google-form-frame iframe { min-height: 1780px; height: 1780px; }
  .payment-qr-heading { flex-direction: column; }
.whatsapp-float { left: 15px; bottom: 15px; width: 66px; height: 66px; font-size: 1.8rem; }
}

@media (max-width: 479.98px) {
  .amenities-grid { grid-template-columns: 1fr; }
  .amenity-box { min-height: auto; }
  .room-row { flex-direction: column; }
  .room-row > strong { padding-left: 66px; text-align: left; }
  .additional-card { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
