/* ==========================================================================
   Samaya Excello's Group — Retirement Community Avenue
   Palette: logo navy + maroon, green-led theme
   ========================================================================== */

:root {
  --green: #1f7a4d;
  --green-deep: #135c39;
  --green-soft: #eaf5ef;
  --green-mid: #2e9c66;
  --navy: #1f3864;
  --navy-deep: #16294a;
  --maroon: #8c1d2c;
  --maroon-light: #ad2b3c;
  --gold: #c9a227;
  --ink: #1d2430;
  --body: #55606f;
  --line: #e2e8ec;
  --white: #ffffff;
  --bg-soft: #f6f9f7;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 4px 14px rgba(22, 41, 74, .07);
  --shadow: 0 14px 40px rgba(22, 41, 74, .12);
  --shadow-lg: 0 24px 60px rgba(22, 41, 74, .16);
  --ease: .35s cubic-bezier(.4, 0, .2, 1);

  --container: 1200px;
  --header-h: 92px;
}

/* -------------------------------------------------- reset */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Jost", "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--body);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--green); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--maroon); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

h1, h2, h3, h4, h5 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--navy);
  margin: 0 0 .6em;
  line-height: 1.22;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); }
h4 { font-size: 1.1rem; }
p { margin: 0 0 1.1rem; }

::selection { background: var(--green); color: #fff; }

/* -------------------------------------------------- layout helpers */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--soft { background: var(--bg-soft); }
.section--green { background: var(--green-soft); }

.grid { display: grid; gap: 30px; }
.g-2 { grid-template-columns: repeat(2, 1fr); }
.g-3 { grid-template-columns: repeat(3, 1fr); }
.g-4 { grid-template-columns: repeat(4, 1fr); }

.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.narrow { max-width: 760px; }

/* -------------------------------------------------- section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--maroon);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}
.text-center .eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--green);
  display: inline-block;
}

.sec-head { max-width: 720px; margin-bottom: 48px; }
.sec-head.text-center { margin-inline: auto; }
.sec-head p { margin-bottom: 0; }

/* -------------------------------------------------- buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  background: var(--green);
  color: #fff;
  border: 2px solid var(--green);
  transition: all var(--ease);
  text-align: center;
}
.btn:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(31, 122, 77, .3);
}
.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover { background: var(--navy); border-color: var(--navy); box-shadow: 0 12px 26px rgba(31, 56, 100, .28); }
.btn--light { background: #fff; color: var(--green-deep); border-color: #fff; }
.btn--light:hover { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .7); }
.btn--ghost:hover { background: #fff; color: var(--green-deep); border-color: #fff; }
.btn--maroon { background: var(--maroon); border-color: var(--maroon); }
.btn--maroon:hover { background: var(--navy); border-color: var(--navy); box-shadow: 0 12px 26px rgba(31, 56, 100, .28); }
.btn--sm { padding: 10px 22px; font-size: .85rem; }

/* -------------------------------------------------- top bar */
.topbar {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .82);
  font-size: .85rem;
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 44px;
  flex-wrap: wrap;
}
.topbar a { color: rgba(255, 255, 255, .85); }
.topbar a:hover { color: var(--gold); }
.topbar__list { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar__list li { display: flex; align-items: center; gap: 8px; }
.topbar__list svg { width: 15px; height: 15px; fill: var(--green-mid); flex: none; }
.topbar__social { display: flex; gap: 12px; }
.topbar__social a {
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
}
.topbar__social a:hover { background: var(--green); }
.topbar__social svg { width: 13px; height: 13px; fill: #fff; }

/* -------------------------------------------------- header / nav */
.header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  box-shadow: 0 2px 20px rgba(22, 41, 74, .08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
}
.logo img { height: 56px; width: auto; }

.nav__close { display: none; }

.nav__list { display: flex; align-items: center; gap: 6px; }
.nav__list > li > a {
  display: block;
  padding: 12px 16px;
  font-weight: 600;
  font-size: .97rem;
  color: var(--navy);
  position: relative;
}
.nav__list > li > a::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 6px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav__list > li > a:hover,
.nav__list > li > a.active { color: var(--green); }
.nav__list > li > a:hover::after,
.nav__list > li > a.active::after { transform: scaleX(1); }

.header__cta { display: flex; align-items: center; gap: 14px; }
.header__phone {
  display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--navy);
}
.header__phone .ic {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid; place-items: center;
}
.header__phone .ic svg { width: 18px; height: 18px; fill: var(--green); }
.header__phone small { display: block; font-size: .72rem; color: var(--body); font-weight: 500; line-height: 1; }

.burger {
  display: none;
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--green-soft);
  place-items: center;
}
.burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  position: relative;
  transition: all var(--ease);
}
.burger span::before,
.burger span::after {
  content: ""; position: absolute; left: 0;
  width: 22px; height: 2px; background: var(--navy);
  transition: all var(--ease);
}
.burger span::before { top: -7px; }
.burger span::after { top: 7px; }
.burger.is-open span { background: transparent; }
.burger.is-open span::before { top: 0; transform: rotate(45deg); }
.burger.is-open span::after { top: 0; transform: rotate(-45deg); }

/* -------------------------------------------------- hero slider */
.hero { position: relative; overflow: hidden; }
.hero__slides { position: relative; height: clamp(460px, 78vh, 760px); }
.hero__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  display: grid;
  align-items: center;
}
.hero__slide.is-active { opacity: 1; z-index: 2; }
.hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s linear;
}
.hero__slide.is-active .hero__bg { transform: scale(1); }
.hero__slide::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(19, 44, 33, .88) 0%, rgba(22, 41, 74, .72) 45%, rgba(22, 41, 74, .3) 100%);
  z-index: 1;
}
.hero__content { position: relative; z-index: 2; max-width: 680px; color: #fff; }
.hero__content .eyebrow { color: #fff; }
.hero__content .eyebrow::before { background: var(--gold); }
.hero__content h1 { color: #fff; margin-bottom: .45em; }
.hero__content h1 span { color: var(--gold); }
.hero__content p { font-size: 1.1rem; color: rgba(255, 255, 255, .9); margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__dots {
  position: absolute;
  left: 50%; bottom: 28px;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 5;
}
.hero__dots button {
  width: 34px; height: 4px; border-radius: 4px;
  background: rgba(255, 255, 255, .4);
  transition: background var(--ease);
}
.hero__dots button.is-active { background: var(--gold); }

.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5;
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .35);
  transition: all var(--ease);
}
.hero__arrow:hover { background: var(--green); border-color: var(--green); }
.hero__arrow svg { width: 18px; height: 18px; fill: #fff; }
.hero__arrow--prev { left: 22px; }
.hero__arrow--next { right: 22px; }

/* -------------------------------------------------- full-width image banner */
.hero--img { background: var(--navy-deep); }
.hero--img .hero__slides {
  display: grid;
  height: auto;
}
.hero--img .hero__slide {
  position: relative;
  grid-area: 1 / 1;
  display: block;
}
.hero--img .hero__slide::before { display: none; }
.hero--img .hero__slide img { width: 100%; height: auto; }
.hero--img .hero__dots button { background: rgba(255, 255, 255, .55); box-shadow: 0 1px 4px rgba(0, 0, 0, .35); }
.hero--img .hero__dots button.is-active { background: var(--green); }

/* -------------------------------------------------- page banner */
.page-banner {
  position: relative;
  padding: clamp(80px, 12vw, 150px) 0;
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #fff;
}
.page-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(19, 44, 33, .82), rgba(22, 41, 74, .88));
}
.page-banner > .container { position: relative; z-index: 2; }
.page-banner h1 { color: #fff; margin-bottom: 12px; }
.breadcrumb {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; font-size: .92rem; color: rgba(255, 255, 255, .8);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 10px; opacity: .6; }

/* -------------------------------------------------- feature strip */
.feature-strip { padding-top: clamp(40px, 6vw, 72px); }
.feature-strip .grid { gap: 0; }
.feature-strip__inner {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.feature-strip__item {
  padding: 34px 30px;
  display: flex; gap: 18px; align-items: flex-start;
  border-right: 1px solid var(--line);
  transition: background var(--ease);
}
.feature-strip__item:last-child { border-right: 0; }
.feature-strip__item:hover { background: var(--green-soft); }
.feature-strip__item .ic {
  flex: none;
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--green); display: grid; place-items: center;
}
.feature-strip__item .ic svg { width: 24px; height: 24px; fill: #fff; }
.feature-strip__item h4 { margin-bottom: 4px; }
.feature-strip__item p { margin: 0; font-size: .93rem; }

/* -------------------------------------------------- about split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.split--reverse .split__media { order: 2; }

.about-media { position: relative; }
.about-media__main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-media__main img { width: 100%; height: clamp(340px, 46vw, 500px); object-fit: cover; }
.about-media__sub {
  position: absolute;
  right: -24px; bottom: -34px;
  width: 46%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}
.about-media__sub img { height: 210px; width: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  left: -20px; top: 28px;
  background: var(--maroon);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about-badge strong { display: block; font-size: 2rem; font-family: "Playfair Display", serif; line-height: 1; }
.about-badge span { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }

.check-list { display: grid; gap: 12px; margin: 0 0 28px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list li::before {
  content: "";
  flex: none;
  width: 22px; height: 22px; margin-top: 4px;
  border-radius: 50%;
  background: var(--green-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231f7a4d'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat;
}

.price-tag {
  display: flex; align-items: center; gap: 18px;
  padding: 20px 24px;
  border-left: 4px solid var(--green);
  background: var(--green-soft);
  border-radius: var(--radius-sm);
  margin-bottom: 28px;
}
.price-tag strong { font-size: 1.5rem; color: var(--maroon); font-family: "Playfair Display", serif; }
.price-tag span { font-size: .92rem; }

/* -------------------------------------------------- stats */
.stats {
  background: linear-gradient(115deg, var(--green-deep), var(--navy-deep));
  position: relative;
  overflow: hidden;
}
.stats::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Cpath d='M0 59h60M59 0v60' stroke='%23ffffff' stroke-opacity='.06'/%3E%3C/svg%3E");
}
.stats .container { position: relative; z-index: 2; }
.stat { text-align: center; color: #fff; padding: 10px; }
.stat__ring {
  width: 116px; height: 116px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: grid; place-items: center;
  position: relative;
  background: conic-gradient(var(--gold) calc(var(--v) * 1%), rgba(255, 255, 255, .16) 0);
}
.stat__ring::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: #14311f;
}
.stat__num {
  position: relative;
  font-family: "Playfair Display", serif;
  font-size: 1.75rem;
  font-weight: 700;
}
.stat p { margin: 0; color: rgba(255, 255, 255, .85); font-weight: 600; letter-spacing: .05em; }

/* -------------------------------------------------- service cards */
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--ease);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card__img { position: relative; overflow: hidden; height: 220px; }
.svc-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.svc-card:hover .svc-card__img img { transform: scale(1.08); }
.svc-card__tag {
  position: absolute; left: 16px; top: 16px;
  background: var(--maroon); color: #fff;
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 30px; font-weight: 600;
}
.svc-card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.svc-card__body h3 { margin-bottom: 10px; }
.svc-card__body p { font-size: .95rem; }
.svc-card__link {
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: .9rem; color: var(--maroon);
  letter-spacing: .05em; text-transform: uppercase;
}
.svc-card__link svg { width: 14px; height: 14px; fill: currentColor; transition: transform var(--ease); }
.svc-card__link:hover svg { transform: translateX(5px); }

/* -------------------------------------------------- amenity tiles */
.amenity {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 22px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all var(--ease);
  height: 100%;
}
.amenity:hover { background: var(--green); border-color: var(--green); transform: translateY(-6px); box-shadow: var(--shadow); }
.amenity .ic {
  width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green-soft);
  display: grid; place-items: center;
  transition: background var(--ease);
}
.amenity:hover .ic { background: rgba(255, 255, 255, .2); }
.amenity .ic svg { width: 28px; height: 28px; fill: var(--green); transition: fill var(--ease); }
.amenity:hover .ic svg { fill: #fff; }
.amenity h4 { margin: 0; font-size: 1rem; transition: color var(--ease); }
.amenity:hover h4 { color: #fff; }

/* -------------------------------------------------- feature list (services detail) */
.detail-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; margin-bottom: 72px; }
.detail-block:last-child { margin-bottom: 0; }
.detail-block:nth-child(even) .detail-block__media { order: 2; }
.detail-block__media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; height: clamp(300px, 38vw, 420px); object-fit: cover; }

/* -------------------------------------------------- why choose */
.why { position: relative; }
.why__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  display: flex; gap: 18px;
  border: 1px solid var(--line);
  transition: all var(--ease);
  height: 100%;
}
.why__card:hover { box-shadow: var(--shadow); transform: translateY(-6px); }
.why__card .num {
  flex: none;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  display: grid; place-items: center;
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  transition: background var(--ease);
}
.why__card:hover .num { background: var(--maroon); }
.why__card h4 { margin-bottom: 6px; }
.why__card p { margin: 0; font-size: .94rem; }

/* -------------------------------------------------- cta band */
.cta-band {
  position: relative;
  background: url("../images/samaya04.jpg") center/cover fixed;
  color: #fff;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(19, 92, 57, .93), rgba(22, 41, 74, .93));
}
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .88); max-width: 680px; margin-inline: auto; }
.cta-band .hero__actions { justify-content: center; margin-top: 26px; }

/* -------------------------------------------------- testimonials */
.quote-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  border: 1px solid var(--line);
  height: 100%;
  position: relative;
}
.quote-card::before {
  content: "\201C";
  position: absolute; right: 26px; top: 6px;
  font-family: "Playfair Display", serif;
  font-size: 5rem; color: var(--green-soft); line-height: 1;
}
.quote-card p { font-style: italic; position: relative; z-index: 1; }
.quote-card__by { display: flex; align-items: center; gap: 14px; margin-top: 18px; }
.quote-card__by .av {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--green); color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-family: "Playfair Display", serif;
}
.quote-card__by strong { display: block; color: var(--navy); }
.quote-card__by span { font-size: .85rem; }
.stars { color: var(--gold); letter-spacing: 2px; font-size: .9rem; margin-bottom: 10px; }

/* -------------------------------------------------- gallery */
.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.gal-item:hover img { transform: scale(1.1); }
.gal-item__ov {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(19, 92, 57, .92), rgba(22, 41, 74, .35));
  opacity: 0;
  transition: opacity var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 24px; color: #fff;
}
.gal-item:hover .gal-item__ov { opacity: 1; }
.gal-item__ov h4 { color: #fff; margin: 0 0 2px; }
.gal-item__ov span { font-size: .84rem; opacity: .85; }
.gal-item.is-hidden { display: none; }

.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(10, 20, 15, .94);
  display: none;
  align-items: center; justify-content: center;
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 84vh; border-radius: 10px; }
.lightbox__close {
  position: absolute; top: 24px; right: 30px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); color: #fff;
  font-size: 1.5rem; display: grid; place-items: center;
}
.lightbox__close:hover { background: var(--maroon); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255, 255, 255, .14); color: #fff;
  display: grid; place-items: center; font-size: 1.6rem;
}
.lightbox__nav:hover { background: var(--green); }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* -------------------------------------------------- accordion */
.acc { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.acc__item + .acc__item { border-top: 1px solid var(--line); }
.acc__btn {
  width: 100%; text-align: left;
  padding: 20px 56px 20px 24px;
  font-weight: 600; color: var(--navy);
  position: relative; font-size: 1.02rem;
}
.acc__btn::after {
  content: "+";
  position: absolute; right: 22px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green-soft); color: var(--green);
  display: grid; place-items: center;
  font-size: 1.2rem; line-height: 1;
  transition: all var(--ease);
}
.acc__item.is-open .acc__btn { color: var(--green); }
.acc__item.is-open .acc__btn::after { content: "\2013"; background: var(--green); color: #fff; }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height var(--ease); }
.acc__panel p { padding: 0 24px 22px; margin: 0; font-size: .95rem; }

/* -------------------------------------------------- contact */
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  height: 100%;
  transition: all var(--ease);
}
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.contact-card .ic {
  width: 62px; height: 62px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
}
.contact-card .ic svg { width: 26px; height: 26px; fill: #fff; }
.contact-card h4 { margin-bottom: 8px; }
.contact-card p { margin: 0; font-size: .95rem; }

.form-box {
  background: #fff;
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow);
}
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg-soft);
  transition: all var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(31, 122, 77, .12);
}
.form-note { font-size: .85rem; margin: 14px 0 0; }
.form-msg {
  display: none;
  margin-top: 16px;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  background: var(--green-soft);
  color: var(--green-deep);
  font-weight: 600;
  font-size: .92rem;
}
.form-msg.is-shown { display: block; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* -------------------------------------------------- footer */
.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .72);
  padding-top: 76px;
  font-size: .95rem;
}
.footer h4 {
  color: #fff;
  font-size: 1.1rem;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 40px; height: 2px; background: var(--green-mid);
}
.footer a { color: rgba(255, 255, 255, .72); }
.footer a:hover { color: var(--gold); padding-left: 4px; }
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 56px;
}
.footer__logo {
  background: #fff;
  border-radius: 10px;
  padding: 12px 16px;
  display: inline-block;
  margin-bottom: 20px;
}
.footer__logo img { height: 48px; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { display: inline-block; transition: all var(--ease); }
.footer__contact li { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; fill: var(--green-mid); flex: none; margin-top: 5px; }
.footer__social { display: flex; gap: 10px; margin-top: 22px; }
.footer__social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: grid; place-items: center;
  transition: all var(--ease);
}
.footer__social a:hover { background: var(--green); padding-left: 0; }
.footer__social svg { width: 15px; height: 15px; fill: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .88rem;
}
.footer__bottom p { margin: 0; }
.footer__bottom a { color: var(--gold); }
.footer__bottom a:hover { color: #fff; padding-left: 0; }

/* -------------------------------------------------- floating actions */
.float-actions {
  position: fixed; right: 20px; bottom: 22px; z-index: 950;
  display: grid; gap: 12px;
}
.float-actions a,
.float-actions button {
  width: 50px; height: 50px; border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: var(--shadow);
  transition: transform var(--ease);
}
.float-actions a:hover,
.float-actions button:hover { transform: translateY(-4px); }
.float-actions svg { width: 24px; height: 24px; fill: #fff; }
.fa-wa { background: #25d366; }
.fa-call { background: var(--maroon); }
.fa-top { background: var(--navy); opacity: 0; pointer-events: none; }
.fa-top.is-shown { opacity: 1; pointer-events: auto; }
.fa-top svg { width: 18px; height: 18px; }

/* -------------------------------------------------- reveal animation */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------------------------------------- responsive */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .header__phone { display: none; }
}

@media (max-width: 992px) {
  :root { --header-h: 76px; }
  .burger { display: grid; }
  .nav {
    position: fixed;
    top: 0; right: -320px;
    width: 300px; height: 100vh;
    background: #fff;
    box-shadow: -8px 0 40px rgba(22, 41, 74, .18);
    padding: 26px 20px;
    overflow-y: auto;
    transition: right var(--ease);
    z-index: 1200;
  }
  .nav.is-open { right: 0; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list > li { border-bottom: 1px solid var(--line); }
  .nav__list > li > a { padding: 14px 6px; }
  .nav__list > li > a::after { display: none; }
  .nav__close { display: block; text-align: right; font-size: 1.6rem; color: var(--navy); margin-bottom: 10px; }
  .nav-backdrop {
    position: fixed; inset: 0; background: rgba(15, 25, 20, .5);
    opacity: 0; pointer-events: none; transition: opacity var(--ease); z-index: 1100;
  }
  .nav-backdrop.is-open { opacity: 1; pointer-events: auto; }

  .g-3, .g-4 { grid-template-columns: repeat(2, 1fr); }
  .split, .detail-block { grid-template-columns: 1fr; }
  .feature-strip__inner { grid-template-columns: 1fr; }
  .feature-strip__item { border-right: 0; border-bottom: 1px solid var(--line); }
  .split--reverse .split__media,
  .detail-block:nth-child(even) .detail-block__media { order: 0; }
  .about-media__sub { position: static; width: 100%; margin-top: 18px; border: 0; }
  .about-media__sub img { height: 200px; }
  .about-badge { left: 14px; top: 14px; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band { background-attachment: scroll; }
  .topbar__list li.hide-sm { display: none; }
}

@media (max-width: 680px) {
  body { font-size: 16px; }
  .g-2, .g-3, .g-4, .gal-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__arrow { display: none; }
  .hero:not(.hero--img) .hero__slides { height: auto; min-height: 520px; padding: 90px 0 70px; }
  .hero:not(.hero--img) .hero__slide { position: relative; display: none; }
  .hero:not(.hero--img) .hero__slide.is-active { display: grid; }
  .hero__actions .btn { flex: 1 1 auto; }
  .logo img { height: 42px; }
  .header__cta .btn--sm { display: none; }
  .topbar__inner { justify-content: center; }
  .topbar__social { display: none; }
  .footer__bottom { justify-content: center; text-align: center; }
  .price-tag { flex-direction: column; align-items: flex-start; gap: 6px; }
}
