/* ============================================================
   Biophilic Shaka Gardens - Design System
   ============================================================ */

:root {
  --green-950: #0b2212;
  --green-900: #112b18;
  --green-800: #173923;
  --green-700: #205038;
  --green-600: #2a6843;
  --green-500: #378454;
  --green-400: #5fa37c;
  --green-300: #93c5a8;
  --accent: #7db834;
  --accent-soft: #a5da5b;
  --accent-deep: #4a7a22;
  --cream: #f7f3ea;
  --sand: #efe7d5;
  --sand-deep: #e4d9c0;
  --ink: #1d2b22;
  --ink-soft: #55645b;
  --white: #fffdf8;
  --line: rgba(29, 43, 34, 0.14);

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow-soft: 0 18px 40px -18px rgba(17, 43, 24, 0.35);
  --shadow-card: 0 24px 60px -28px rgba(17, 43, 24, 0.45);
  --header-h: 82px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
  color: var(--green-900);
}
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.05rem; }
p { margin: 0 0 1em; }
em { font-family: var(--font-head); font-style: italic; color: var(--accent-deep); }
strong { color: var(--green-800); }
::selection { background: var(--accent-soft); color: var(--green-900); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- Eyebrow & helpers ---------- */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1rem;
}
.eyebrow-light { color: var(--accent-soft); }
.h2-soft { margin-top: 0.2rem; }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section-sand { background: var(--sand); }
.section-center { text-align: center; }
.section-center .container p { max-width: 560px; }

.section-head { margin-bottom: 3rem; }
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.section-head-row h2 { max-width: 640px; margin-bottom: 0; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--green-700);
  border-bottom: 2px solid transparent;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow span { transition: transform 0.25s var(--ease); }
.link-arrow:hover { color: var(--accent-deep); }
.link-arrow:hover span { transform: translateX(4px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-primary {
  background: var(--green-700);
  color: var(--white);
  box-shadow: 0 14px 30px -14px rgba(17, 43, 24, 0.6);
}
.btn-primary:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -16px rgba(17, 43, 24, 0.7);
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 253, 248, 0.65);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 253, 248, 0.14); transform: translateY(-2px); }
.btn-outline {
  border-color: var(--green-700);
  color: var(--green-700);
  background: transparent;
}
.btn-outline:hover { background: var(--green-700); color: var(--white); transform: translateY(-2px); }
.btn-outline-light {
  border-color: rgba(255, 253, 248, 0.7);
  color: var(--white);
}
.btn-outline-light:hover { background: rgba(255, 253, 248, 0.12); border-color: var(--white); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), height 0.3s var(--ease);
  height: var(--header-h);
}
.site-header.is-scrolled {
  background: rgba(247, 243, 234, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; height: var(--header-h); }
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark {
  display: grid; place-items: center;
  background: var(--green-800);
  width: 46px; height: 46px;
  border-radius: 14px;
  transition: transform 0.3s var(--ease);
  overflow: hidden;
}
.brand-mark-img { background: var(--white); width: 56px; height: 56px; padding: 3px; overflow: visible; }
.brand-mark img { width: 100%; height: 100%; object-fit: contain; display: block; }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.15; color: var(--cream); }
.is-scrolled .brand-text { color: var(--green-900); }
.brand-text strong { font-family: var(--font-head); font-weight: 600; font-size: 1.22rem; color: inherit; letter-spacing: 0.01em; }
.brand-text small { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-soft); }
.is-scrolled .brand-text small { color: var(--green-600); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav ul { display: flex; gap: 1.9rem; }
.main-nav a:not(.nav-cta) {
  position: relative;
  font-weight: 600;
  font-size: 0.95rem;
  color: rgba(255, 253, 248, 0.85);
  padding: 0.35rem 0;
  transition: color 0.25s var(--ease);
}
.main-nav a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--accent-soft);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}
.main-nav a:not(.nav-cta):hover, .main-nav a.is-active { color: var(--white); }
.main-nav a.is-active::after, .main-nav a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.is-scrolled .main-nav a:not(.nav-cta) { color: var(--ink-soft); }
.is-scrolled .main-nav a:not(.nav-cta):hover, .is-scrolled .main-nav a.is-active { color: var(--green-800); }
.nav-cta { padding: 0.7rem 1.45rem; font-size: 0.88rem; }
.nav-toggle { display: none; }

/* ---------- Mobile nav ---------- */
@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(360px, 86vw);
    background: var(--green-900);
    flex-direction: column;
    justify-content: center;
    gap: 2.4rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -30px 0 60px -30px rgba(0,0,0,.5);
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 1.4rem; width: 100%; }
  .main-nav a:not(.nav-cta) { font-size: 1.3rem; color: var(--cream); }
  .main-nav a:not(.nav-cta)::after { display: none; }
  .main-nav.is-open a:not(.nav-cta) { opacity: 0; animation: slideIn 0.4s var(--ease) forwards; }
  .main-nav ul li:nth-child(1) a { animation-delay: .05s; }
  .main-nav ul li:nth-child(2) a { animation-delay: .1s; }
  .main-nav ul li:nth-child(3) a { animation-delay: .15s; }
  .main-nav ul li:nth-child(4) a { animation-delay: .2s; }
  .main-nav ul li:nth-child(5) a { animation-delay: .25s; }
  .nav-cta { width: 100%; }
  @keyframes slideIn { to { opacity: 1; transform: translateY(0); } }
  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 46px; height: 46px;
    background: transparent;
    border: 0;
    cursor: pointer;
    z-index: 110;
    padding: 0 8px;
  }
  .nav-toggle span {
    height: 2.5px;
    background: var(--cream);
    border-radius: 3px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
  }
  .is-scrolled .nav-toggle span, .nav-toggle.is-open span { background: var(--green-800); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
  .nav-toggle.is-open span { background: var(--cream); }
}
@keyframes slideIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}
/* Slideshow */
.slideshow { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s var(--ease), visibility 1.2s;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 6.5s var(--ease);
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.hero-slide.is-active img { transform: scale(1); }

.hero-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 4;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 253, 248, 0.4);
  background: rgba(11, 31, 23, 0.35);
  backdrop-filter: blur(5px);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero-arrow:hover { background: var(--green-700); border-color: var(--green-700); }
.hero-arrow.is-prev { left: 26px; }
.hero-arrow.is-next { right: 26px; }
.hero-arrow.is-prev:hover { transform: translateY(-50%) translateX(-3px); }
.hero-arrow.is-next:hover { transform: translateY(-50%) translateX(3px); }

.hero-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 178px;
  z-index: 4;
  display: flex;
  gap: 0.55rem;
}
.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255, 253, 248, 0.45);
  cursor: pointer;
  transition: width 0.35s var(--ease), background 0.35s var(--ease);
}
.hero-dot:hover { background: rgba(255, 253, 248, 0.8); }
.hero-dot.is-active { width: 30px; background: var(--accent-soft); }

@media (max-width: 820px) {
  .hero-arrow { width: 44px; height: 44px; top: 40%; }
  .hero-arrow.is-prev { left: 14px; }
  .hero-arrow.is-next { right: 14px; }
  .hero-dots { bottom: 140px; }
}
.hero-shade {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(11, 31, 23, 0.35) 0%, rgba(11, 31, 23, 0.1) 45%, rgba(11, 31, 23, 0.72) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: calc(var(--header-h) + 6vh) 24px 8vh;
  max-width: var(--container);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.hero h1 { color: var(--white); margin-bottom: 0.4em; }
.hero h1 em { color: var(--accent-soft); }
.hero-lead { font-size: 1.2rem; max-width: 620px; color: rgba(255, 253, 248, 0.92); margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start; position: relative; z-index: 3; }
.hero-stats {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(17, 43, 24, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-bottom: 0;
  border-radius: 22px 22px 0 0;
  padding: 24px 20px;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent-soft);
  line-height: 1.1;
}
.stat span { font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,253,248,.8); }

/* ---------- Intro ---------- */
.intro-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; }
.frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.frame::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(22, 54, 42, 0.14);
}
.frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.frame:hover img { transform: scale(1.04); }
.intro-visual { position: relative; padding-bottom: 90px; }
.story-media-stack { position: relative; padding-bottom: 90px; }
.frame-small { position: absolute; width: 52%; right: -6%; bottom: 0; aspect-ratio: 4 / 3; }

/* ---------- Property cards ---------- */
.property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) { .property-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .property-grid { grid-template-columns: 1fr; } }

.property-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.property-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}
.property-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.property-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.property-card:hover .property-media img { transform: scale(1.06); }
.property-body { padding: 1.5rem 1.6rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.property-type { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-600); font-weight: 600; margin-bottom: 0.5rem; }
.property-body h3 { margin-bottom: 0.5rem; }
.property-body h3 a { color: var(--green-900); transition: color 0.25s var(--ease); }
.property-body h3 a:hover { color: var(--accent-deep); }
.property-excerpt { font-size: 0.94rem; color: var(--ink-soft); flex: 1; }
.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  margin: 1.1rem 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.property-meta strong { color: var(--green-800); }
.property-foot { display: flex; align-items: center; justify-content: space-between; }
.property-price { font-family: var(--font-head); font-weight: 700; font-size: 1.35rem; color: var(--green-700); }

.status-tag {
  position: absolute;
  top: 14px; left: 14px;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--green-700);
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.4);
}
.status-for-sale { background: #2a644a; }
.status-coming-soon { background: var(--accent-deep); }

/* ---------- Pillars ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
@media (max-width: 1024px) { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.pillar-icon {
  display: grid; place-items: center;
  width: 62px; height: 62px;
  border-radius: 18px;
  background: rgba(42, 100, 74, 0.12);
  color: var(--green-700);
  margin-bottom: 1.2rem;
}
.pillar h3 { margin-bottom: 0.5rem; }
.pillar p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }

/* ---------- Amenities ---------- */
.amenities { background: var(--green-900); color: var(--cream); }
.amenities-grid { display: grid; grid-template-columns: 1fr 0.9fr; gap: 4rem; align-items: center; padding: clamp(4rem, 9vw, 7rem) 24px; }
.amenities h2 { color: var(--white); }
.amenities p { color: rgba(255, 253, 248, 0.85); }
.amenity-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 1.5rem;
  margin-top: 1.6rem;
}
.amenity-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
}
.amenity-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.amenities-visual { position: relative; padding-bottom: 110px; }
.frame-tall { aspect-ratio: 4 / 5; }
.story-cta { margin-top: 1.7rem; }
.story-cta .btn { margin-top: 0; }
.amenities-visual .frame-small {
  right: auto; left: -8%;
  bottom: 30px;
  width: 55%;
}
.amenities .frame:hover img { transform: none; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 1024px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem 1.8rem;
  box-shadow: var(--shadow-soft);
  margin: 0;
  display: flex;
  flex-direction: column;
}
.quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent-soft);
  position: absolute;
  top: 1.1rem; left: 1.5rem;
  opacity: 0.9;
}
.testimonial blockquote {
  margin: 0 0 1.4rem;
  padding-top: 2.2rem;
  font-size: 1.02rem;
  color: var(--ink);
  flex: 1;
}
.testimonial figcaption { display: flex; flex-direction: column; }
.testimonial figcaption strong { font-size: 0.98rem; }
.testimonial figcaption span { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--green-700) url('assets/images/gallery-play.jpg') center/cover fixed;
  color: var(--white);
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(17, 43, 24, 0.78);
}
.cta-band { position: relative; }
.cta-inner { position: relative; padding: clamp(4rem, 9vw, 6rem) 24px; text-align: center; }
.cta-inner h2 { color: var(--white); }
.cta-inner p { max-width: 620px; margin: 0 auto 2rem; color: rgba(255,253,248,.9); }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band-quiet {
  background: none;
  box-shadow: inset 0 1px 0 var(--line);
}
.cta-band-quiet::before { display: none; }
.cta-band-quiet .cta-inner { background: var(--sand); border-radius: var(--radius); box-shadow: var(--shadow-soft); }
.cta-band-quiet .cta-inner h2 { color: var(--green-900); }
.cta-band-quiet .cta-inner p { color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--green-950); color: rgba(255,253,248,0.72); padding: 4.5rem 0 0; font-size: 0.95rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 0.8fr 1.1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
}
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px)  { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }
.footer-brand p { margin: 1.1rem 0 1.4rem; max-width: 36ch; }
.footer-brand .brand-text { color: var(--cream); }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255,253,248,0.16);
  color: rgba(255,253,248,.8);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer-social a:hover { background: var(--accent-soft); color: var(--green-900); transform: translateY(-3px); }
.footer-col h4 {
  color: var(--cream);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--accent-soft); }
.footer-contact p { margin-bottom: 0.6rem; }
.footer-contact a { color: var(--accent-soft); }
.footer-contact a:hover { text-decoration: underline; }
.footer-hours { font-size: 0.85rem; color: rgba(255,253,248,.5); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.6rem 24px;
  border-top: 1px solid rgba(255,253,248,0.1);
  font-size: 0.85rem;
  color: rgba(255,253,248,.5);
}
.footer-bottom p { margin: 0; }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative;
  background: var(--green-800);
  color: var(--white);
  padding: calc(var(--header-h) + clamp(4rem, 9vw, 7rem)) 0 clamp(3.4rem, 7vw, 5.5rem);
}
.page-hero-small { background: linear-gradient(120deg, var(--green-900), var(--green-700)); }
.page-hero h1 { color: var(--white); }
.page-hero h1 em { color: var(--accent-soft); }
.page-hero-lead { max-width: 620px; font-size: 1.13rem; color: rgba(255,253,248,0.88); }
.page-hero::after {
  content: '';
  position: absolute; inset: 0 0 auto 0;
  height: 90px;
  background: linear-gradient(180deg, rgba(17, 43, 24,0.3), transparent);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-img .container::before {
  content: '';
  position: absolute;
  inset: calc(var(--header-h) * -1) -50% 0 -50%;
  background: var(--hero-img) center/cover no-repeat;
  opacity: 0.35;
  z-index: -1;
}

/* ---------- Filters ---------- */
.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 2.6rem;
}
.filter-chip {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.filter-chip:hover { border-color: var(--green-500); color: var(--green-700); }
.filter-chip.is-on {
  background: var(--green-700);
  border-color: var(--green-700);
  color: var(--white);
}
.filter-count { margin-left: auto; font-size: 0.88rem; color: var(--ink-soft); }
.no-results { text-align: center; color: var(--ink-soft); padding: 3rem 0; }

/* ---------- Property detail ---------- */
.property-hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11,31,23,0.5), rgba(11,31,23,0.78)),
    var(--hero-img) center/cover no-repeat;
  color: var(--white);
  padding: calc(var(--header-h) + clamp(3rem, 7vw, 5rem)) 0 clamp(3rem, 6vw, 4.5rem);
}
.breadcrumb { display: flex; gap: 0.5rem; font-size: 0.88rem; color: rgba(255,253,248,0.7); margin-bottom: 2.2rem; }
.breadcrumb a { color: rgba(255,253,248,0.85); }
.breadcrumb a:hover { color: var(--accent-soft); }
.property-hero-title h1 { color: var(--white); max-width: 700px; }
.property-hero-foot { display: flex; align-items: center; gap: 1.2rem; margin-top: 1.4rem; }
.property-hero-foot .status-tag { position: static; }
.property-price-large { font-size: 2rem; color: var(--accent-soft); }

.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 0.85fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 1024px) { .detail-grid { grid-template-columns: 1fr; } }
.detail-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.detail-media img { width: 100%; }
.detail-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 2rem 0;
}
.detail-specs > div { background: var(--white); padding: 1.3rem 1.2rem; }
.detail-specs strong { display: block; font-family: var(--font-head); font-size: 1.45rem; color: var(--green-700); }
.detail-specs span { font-size: 0.8rem; color: var(--ink-soft); }

.check-list { display: grid; gap: 0.75rem; margin-top: 1.2rem; }
.check-list li { display: flex; align-items: center; gap: 0.75rem; }
.check-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(42, 100, 74, 0.14) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232a644a' stroke-width='3'%3E%3Cpath d='M5 13l4 4 10-11' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- Inquiry card & forms ---------- */
.inquiry-card, .contact-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 2rem;
}
.inquiry-card { position: sticky; top: calc(var(--header-h) + 24px); }
.inquiry-card h3, .contact-form > h3 { margin-bottom: 0.4rem; }
.inquiry-card > p:first-of-type { color: var(--ink-soft); font-size: 0.94rem; }
.inquiry-alternate {
  margin: 0.6rem 0 0;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--line);
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.inquiry-alternate a { color: var(--green-700); font-weight: 600; white-space: nowrap; }
.inquiry-alternate a:hover { color: var(--accent-deep); }
.inquiry-form { margin-top: 1.4rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 620px) { .field-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 1rem; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--ink); }
.field .optional { font-weight: 400; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(42, 100, 74, 0.12);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--ink-soft); margin: 0.9rem 0 0; text-align: center; }
.form-success {
  background: rgba(42, 100, 74, 0.1);
  border: 1.5px solid rgba(42, 100, 74, 0.35);
  border-radius: var(--radius-sm);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
}
.form-success h3 { color: var(--green-700); margin-bottom: 0.3rem; }
.form-success p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Story & values ---------- */
.story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 4rem; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.value {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border-top: 4px solid var(--accent-soft);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.value-num { font-family: var(--font-head); font-size: 2rem; color: var(--green-300); font-weight: 700; }
.value h3 { margin: 0.6rem 0 0.4rem; }
.value p { font-size: 0.93rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 1024px) {
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .intro-grid, .amenities-grid, .contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.8rem; }
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.4rem;
  box-shadow: var(--shadow-soft);
}
.team-avatar {
  width: 108px; height: 108px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  border: 4px solid var(--sand-deep);
  background-size: cover;
  background-position: center 20%;
}
.av-1 { background: radial-gradient(circle at 50% 42%, #caa76c 0 26%, transparent 27%), radial-gradient(circle at 50% 46%, #e7c58b 0 30%, transparent 31%), linear-gradient(160deg, #2a644a, #16362a); }
.av-2 { background: radial-gradient(circle at 50% 42%, #8a6a48 0 26%, transparent 27%), radial-gradient(circle at 50% 46%, #b3916a 0 30%, transparent 31%), linear-gradient(160deg, #5a6a52, #26332c); }
.av-3 { background: radial-gradient(circle at 50% 42%, #7d5336 0 26%, transparent 27%), radial-gradient(circle at 50% 46%, #a87a54 0 30%, transparent 31%), linear-gradient(160deg, #3a7d5c, #1e4a38); }
.av-4 { background: radial-gradient(circle at 50% 42%, #4a3a2c 0 26%, transparent 27%), radial-gradient(circle at 50% 46%, #6b5640 0 30%, transparent 31%), linear-gradient(160deg, #c9a227, #8a6a2c); }
.team-card h3 { margin-bottom: 0.25rem; }
.team-card p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 1.3rem;
}
@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; } }
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}
.gallery-item:nth-child(1), .gallery-item:nth-child(6) { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2rem 1.2rem 1.1rem;
  background: linear-gradient(transparent, rgba(11,31,23,0.85));
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover figcaption { opacity: 1; transform: translateY(0); }
.gallery-item figcaption span::after { content: ' \2197'; color: var(--accent-soft); }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 31, 23, 0.94);
  display: grid;
  place-items: center;
  padding: 3rem 1.5rem;
  animation: fadeIn 0.3s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox-inner { margin: 0; max-width: 1100px; width: 100%; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; border-radius: var(--radius); }
.lightbox figcaption { text-align: center; color: var(--cream); margin-top: 1rem; font-family: var(--font-head); font-size: 1.15rem; }
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,253,248,0.4);
  background: transparent;
  color: var(--white);
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.lightbox-close:hover { background: rgba(255,253,248,0.15); transform: rotate(90deg); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: start; }
.contact-lines p { margin-bottom: 0.9rem; }
.contact-lines a { color: var(--green-700); font-weight: 600; }
.contact-lines a:hover { color: var(--accent-deep); text-decoration: underline; }
.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.6rem; }
.contact-cards > div {
  background: var(--sand);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.2rem;
  font-size: 0.9rem;
}
.contact-cards strong { display: block; margin-bottom: 0.3rem; }
.contact-cards p { margin: 0; color: var(--ink-soft); }

.map {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
  background:
    radial-gradient(circle at 78% 30%, #5e9fae 0 12%, transparent 12.5%),
    linear-gradient(160deg, #cbe0cf, #e8e2cf);
  box-shadow: var(--shadow-card);
}
.map-card {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  background: var(--green-700);
  color: var(--white);
  font-weight: 600;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  box-shadow: 0 14px 30px -12px rgba(17, 43, 24,.6);
  z-index: 3;
}
.map-card::after {
  content: '';
  position: absolute;
  left: 50%; bottom: -14px;
  transform: translateX(-50%);
  border: 14px solid transparent;
  border-top-color: var(--green-700);
}
.map-road {
  position: absolute;
  background: rgba(255,253,248,0.75);
  transform-origin: left center;
}
.map-r1 { width: 145%; height: 26px; left: -25%; top: 62%; transform: rotate(-8deg); }
.map-r2 { width: 120%; height: 18px; left: -10%; top: 30%; transform: rotate(14deg); }
.map-label { position: absolute; font-size: 0.85rem; font-weight: 700; color: var(--green-800); }
.map-l1 { left: 6%; top: 58%; }
.map-l2 { right: 5%; top: 18%; }
.map-l3 { right: 5%; top: 42%; color: #2e7186; }
.map-pin { position: absolute; background: var(--white); border-radius: 8px; padding: 0.25rem 0.75rem; font-size: 0.72rem; font-weight: 600; color: var(--green-800); box-shadow: var(--shadow-soft); }
.map-p1 { left: 34%; top: 22%; }
.map-p2 { left: 58%; bottom: 16%; }
.map-p3 { right: 8%; bottom: 22%; }

/* ---------- WhatsApp floating button ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: #25d366;
  color: #ffffff;
  padding: 0.9rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px -8px rgba(18, 128, 60, 0.65);
  text-decoration: none;
  transition: transform 0.25s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.04); color: #ffffff; }
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #25d366;
  z-index: -1;
  animation: waPing 2.6s ease-out infinite;
}
.wa-float-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.9rem;
  font-weight: 600;
  transition: max-width 0.3s var(--ease), opacity 0.3s var(--ease);
}
.wa-float:hover .wa-float-label { max-width: 140px; opacity: 1; }
@keyframes waPing {
  0%   { transform: scale(1);   opacity: 0.55; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ---------- Reveal animations ---------- */
.reveal-up { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal-up.in-view { opacity: 1; transform: translateY(0); }
.js .reveal-up { opacity: 0; }
.no-js .reveal-up, .js .reveal-up.in-view { opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal-up { opacity: 1 !important; transform: none !important; }
}

/* ---------- Housing types showcase ---------- */
.housing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
@media (max-width: 1024px) { .housing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .housing-grid { grid-template-columns: 1fr; } }
.housing-tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-soft);
}
.housing-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.housing-tile:hover img { transform: scale(1.06); }
.housing-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(transparent, rgba(17, 43, 24, 0.85));
  color: var(--white);
}
.housing-overlay > span:first-child { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; line-height: 1.2; }
.housing-overlay em { font-style: normal; font-size: 0.86rem; color: var(--accent-soft); white-space: nowrap; }

/* ---------- Wellness benefits ---------- */
.wellness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
@media (max-width: 1024px) { .wellness-grid { grid-template-columns: 1fr; } }
.wellness-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.9rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.wellness-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card); }
.wellness-card h3 { margin: 0.9rem 0 0.5rem; }
.wellness-card > p { color: var(--ink-soft); font-size: 0.95rem; }
.benefit-list { display: grid; gap: 0.6rem; margin-top: 1.1rem; }
.benefit-list li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.95rem; }
.benefit-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-soft);
  margin-top: 0.5em;
}
.benefit-list-inline { grid-template-columns: 1fr 1fr; margin-top: 1.2rem; }
@media (max-width: 620px) { .benefit-list-inline { grid-template-columns: 1fr; } }

/* ---------- Science & timeline ---------- */
.science-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }
@media (max-width: 860px) { .science-grid { grid-template-columns: 1fr; } }
.science-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--accent-soft);
}
.science-date {
  display: block;
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--green-300);
  margin-bottom: 0.6rem;
}
.science-card h3 { font-size: 1.08rem; margin-bottom: 0.4rem; }
.science-card p { color: var(--ink-soft); font-size: 0.94rem; margin: 0; }

.timeline { position: relative; max-width: 900px; margin: 0 auto; padding-left: 2.4rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0.4rem; bottom: 0.4rem;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--accent-soft), var(--green-500));
}
.timeline-item { position: relative; padding: 0 0 2rem; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 15px; height: 15px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--accent);
  transform: translateX(-50%);
}
.timeline-item:last-child { padding-bottom: 0.4rem; }
.timeline-year {
  display: block;
  font-family: var(--font-head);
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--accent-deep);
}
.timeline-body h3 { font-size: 1.05rem; margin: 0.15rem 0 0.3rem; }
.timeline-body p { color: var(--ink-soft); margin: 0; }
.science-close { max-width: 860px; margin: 2.6rem auto 0; text-align: center; color: var(--ink-soft); font-size: 1.02rem; }
.science-close p { margin-bottom: 0.8rem; }
.science-motto { font-family: var(--font-head); font-size: clamp(1.2rem, 2.4vw, 1.5rem); color: var(--green-800) !important; }

/* ---------- Investment section ---------- */
.invest {
  position: relative;
  background: var(--green-900) url('assets/images/gallery-pool.jpg') center/cover fixed;
  color: var(--cream);
}
.invest::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(17, 43, 24, 0.94), rgba(17, 43, 24, 0.75));
}
.invest-inner { position: relative; z-index: 1; padding: clamp(4rem, 9vw, 7rem) 24px; }
.invest-head { max-width: 840px; }
.invest-head h2 { color: var(--white); }
.invest-head p { color: rgba(255, 253, 248, 0.9); font-size: 1.04rem; }
.invest-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2rem; margin-top: 2.6rem; }
@media (max-width: 960px) { .invest-grid { grid-template-columns: 1fr; } }
.invest-col {
  background: rgba(255, 253, 248, 0.06);
  border: 1px solid rgba(255, 253, 248, 0.14);
  border-radius: var(--radius);
  padding: 1.9rem;
  backdrop-filter: blur(6px);
}
.invest-col h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.1rem; }
.loc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem 1.2rem; }
@media (max-width: 620px) { .loc-list { grid-template-columns: 1fr; } }
.loc-list li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.93rem; color: rgba(255, 253, 248, 0.92); }
.loc-list li::before {
  content: '';
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent-soft);
  margin-top: 0.55em;
}
.loc-list-check li::before { background: var(--green-400); }
.invest-cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.7rem; }
.invest-col .btn-primary:hover { background: var(--green-500); }
.invest-plot { color: var(--accent-soft); font-weight: 600; margin-top: 0.9rem; }
.invest-close { margin-top: 2.4rem; text-align: center; }
.invest-close h3 { color: var(--white); font-size: 1.35rem; margin: 1.7rem 0 0.4rem; }
.invest-close p { color: rgba(255, 253, 248, 0.9); max-width: 760px; margin-left: auto; margin-right: auto; }
.invest-address { font-weight: 600; line-height: 1.55; margin-top: 1.4rem; }
.invest-footnote {
  margin-top: 2.6rem;
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--accent-soft);
}