/* =============================================================
   FUTURE IS ONE — style.css
   Replicated from Adobe XD: FIO_Website_23 06 2026
   Scale system: 1rem = 10px at the 1920px design width
   (html font-size scales with viewport, so the whole layout
   scales proportionally, exactly like the artboard.)
   ============================================================= */

:root {
  --yellow: #ffc500;
  --orange: #ffa800;
  --black: #000;
  --ink: #171717;
  --ink-2: #232323;
  --dark: #333333;
  --gray-section: #bababa;
  --gray-page: #e3e3e3;
  --card-bg: #f2f4f7;
  --green-box: #233210;
  --green-accent: #6bb119;
  --village-green: #00a848;
  --price-green: #02a326;
  --forest-blue: #28aae1;
  --star: #fc9d00;
  --serif: 'Ivy Mode', 'IvyMode', 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --helv: 'Helvetica Now Display', 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { font-size: calc(100vw / 192); scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--sans); }

.serif { font-family: var(--serif); }

/* =============== NAV =============== */
.nav {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 97rem;
  height: 9.6rem;
  background: rgba(23, 23, 23, 0.81);
  border-radius: 0 0 3rem 3rem;
  display: flex;
  align-items: center;
  z-index: 100;
}
.nav--fixed-page { position: absolute; }
.nav__logo {
  margin-left: 4.3rem;
  width: 6.7rem;
  flex-shrink: 0;
}
.nav__logo img { width: 100%; height: auto; }
.nav__links {
  display: flex;
  align-items: center;
  margin-left: 9rem;
  gap: 4.6rem;
}
.nav__links a {
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color .2s;
  white-space: nowrap;
}
.nav__links a:hover { color: var(--yellow); }
.nav__phone {
  margin-left: auto;
  margin-right: 4.5rem;
  width: 2.9rem;
}
.nav__burger { display: none; }

/* =============== HERO (Home) =============== */
.hero {
  position: relative;
  height: 108rem;
  background: #171717;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero__slide.active { opacity: 1; }
.hero__slide img,
.hero__slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 23%;
}
.hero > *:not(.hero__slides) { z-index: 1; }
.hero__copy, .hero__scroll, .hero .enquiry { z-index: 2; }
/* YouTube hero slides: scale the 16:9 iframe so it covers the hero */
.hero__slide--yt { background: #171717; }
.hero__slide--yt iframe {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: max(100%, 178vh);
  height: max(100%, 56.25vw);
  border: 0;
  pointer-events: none;
}
.hero__copy {
  position: absolute;
  left: 10rem;
  top: 78rem;
}
.hero__tag {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: #fff;
  margin-left: 0.7rem;
  margin-bottom: 1.2rem;
}
.hero__title {
  font-family: var(--serif);
  font-size: 10rem;
  line-height: 0.95;
  font-weight: 400;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.hero__scroll {
  position: absolute;
  left: 96rem;
  top: 95.6rem;
  width: 2.7rem;
  height: 3.6rem;
  border: 2px solid #fff;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
}
.hero__scroll::after {
  content: '';
  width: 2px;
  height: 1rem;
  background: #fff;
  margin-top: 0.7rem;
  animation: scrollHint 1.6s infinite;
}
@keyframes scrollHint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(0.9rem); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* enquiry panel (hero) */
.enquiry {
  position: absolute;
  right: 12.2rem;
  top: 63.1rem;
  width: 64.3rem;
  padding: 3.4rem 3.6rem 3.6rem;
  background: rgba(23, 23, 23, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
}
.enquiry__title {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}
.enquiry__sub {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.6rem 1.6rem; }
.form-grid .full { grid-column: 1 / -1; }
.field {
  height: 4.4rem;
  border-radius: 0.9rem;
  border: 1px solid transparent;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  color: #333;
  padding: 0 1.4rem;
  width: 100%;
  transition: box-shadow .15s, border-color .15s;
}
.field:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 168, 0, 0.3);
}
.field::placeholder { color: #8a8a8a; }
select.field { color: #555; }
.consent {
  display: flex;
  gap: 1rem;
  margin-top: 1.7rem;
  align-items: flex-start;
}
.consent input[type="checkbox"] {
  appearance: none;
  width: 2.4rem;
  height: 2.3rem;
  min-width: 2.4rem;
  border-radius: 0.7rem;
  background: #fff;
  cursor: pointer;
  position: relative;
}
.consent input[type="checkbox"]:checked { background: #0078d4; }
.consent input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 0.75rem; top: 0.35rem;
  width: 0.7rem; height: 1.2rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.consent label {
  font-size: 1.7rem;
  font-weight: 500;
  color: #dedede;
  line-height: 1.5;
}
.btn-submit {
  margin-top: 2.4rem;
  width: 14.5rem;
  height: 4.4rem;
  border-radius: 0.9rem;
  background: var(--orange);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
  transition: filter .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(255, 168, 0, 0.35);
}
.btn-submit:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-submit:active { transform: translateY(0); }
.form-status { margin-top: 1.2rem; font-size: 1.6rem; color: #fff; display: none; }

/* =============== PROJECT CARDS SECTION =============== */
.projects {
  background: var(--black);
  padding: 2.2rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.projects--pair { padding: 2.3rem 2rem; }
.pcard {
  width: 61.1rem;
  height: 80rem;
  background: var(--card-bg);
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  display: block;
  transition: transform .3s ease;
}
.pcard:hover { transform: translateY(-0.6rem); }
.pcard__img {
  height: 55rem;
  overflow: hidden;
  position: relative;
}
.pcard__img img { width: 100%; height: 100%; object-fit: cover; }
.pcard__tags {
  position: absolute;
  top: 2.5rem; left: 2.5rem;
  display: flex;
  gap: 0.4rem;
  z-index: 2;
}
.tag {
  height: 2.9rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  background: #fff;
  color: var(--dark);
  white-space: nowrap;
}
.tag--dark { background: #000; color: #fff; }
.pcard__body { padding: 2.4rem 3.4rem 0; position: relative; height: 25rem; }
.pcard__loc {
  font-size: 2rem;
  color: #808080;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.pcard__loc img { width: 1.7rem; }
.pcard__name {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.6rem;
}
.pcard__name img { width: 1.9rem; }
.pcard__stats {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.4rem;
  font-size: 2rem;
  color: var(--dark);
}
.pcard__stats span { display: flex; align-items: center; gap: 0.8rem; }
.pcard__stats img { width: 2.4rem; opacity: 0.85; }
.pcard__stats .dim { color: #808080; }
.pcard__divider {
  border: none;
  border-top: 1px solid #bababa;
  margin-top: 2.1rem;
}
.pcard__foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 2.4rem;
}
.pcard__mark { width: 12.3rem; }
.pcard__price {
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--dark);
}

/* =============== ABOUT (yellow) =============== */
.about {
  background: var(--yellow);
  padding: 10rem 0 0;
  text-align: center;
}
.about__lotus { width: 6.4rem; margin: 0 auto 2.2rem; }
.about__quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1.35;
  color: var(--ink);
}
.about__stage {
  position: relative;
  width: 128rem;
  margin: 3.4rem auto 0;
  padding-bottom: 7rem;
}
.about__stage > img {
  width: 100%;
  height: 71.4rem;
  object-fit: cover;
  border-radius: 2rem;
  cursor: zoom-in;
}
.img-zoom { cursor: zoom-in; }
.about__boxes {
  position: absolute;
  left: 2.7rem;
  right: 2.7rem;
  bottom: 2.5rem;
  display: flex;
}
.about__box-green {
  width: 64.3rem;
  min-height: 29.5rem;
  background: var(--green-box);
  padding: 3.6rem 4.6rem;
  text-align: left;
}
.about__box-green p {
  font-family: var(--serif);
  font-size: 3.2rem;
  line-height: 1.25;
  color: #fff;
}
.about__box-white {
  width: 60.9rem;
  min-height: 29.5rem;
  background: #fff;
  padding: 4.2rem;
  text-align: left;
}
.about__box-white p {
  font-size: 2.1rem;
  line-height: 1.2;
  color: var(--ink);
}

/* =============== CIRCULAR FUTURE =============== */
.circular {
  position: relative;
  height: 107.6rem;
  background: url('../assets/img/circular-future.jpg') center / cover no-repeat;
}
.circular__title {
  position: absolute;
  top: 37.5rem;
  width: 100%;
  text-align: center;
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 0.95;
}
.ecobar {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 116.5rem;
  height: 13.4rem;
  background: var(--green-box);
  border-radius: 3rem 3rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 0 4rem;
}
.ecobar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}
.ecobar__item img { height: 4.6rem; width: auto; }

/* =============== AWARDS =============== */
.awards {
  background: var(--gray-section);
  height: 54.6rem;
  text-align: center;
  padding-top: 6.2rem;
}
.awards__title {
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 0.95;
  text-transform: uppercase;
}
.awards__row {
  display: flex;
  justify-content: center;
  gap: 6.8rem;
  margin-top: 6.5rem;
}
.awards__row img { width: 21.8rem; height: auto; }

/* =============== TESTIMONIALS =============== */
.testimonials {
  background: var(--dark);
  height: 95.9rem;
  position: relative;
}
.testimonials__title {
  position: absolute;
  left: 31.5rem;
  top: 13.5rem;
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 400;
  color: #fff;
  line-height: 0.95;
  text-transform: uppercase;
}
.testimonials__media {
  position: absolute;
  left: 26.4rem;
  top: 29.9rem;
  width: 78.7rem;
  height: 51rem;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2rem;
}
/* video slider inside the testimonials media box */
.vslider { position: relative; width: 100%; height: 100%; }
.vslider__frame { width: 100%; height: 100%; border: 0; display: block; }
.vslider__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 4.6rem; height: 4.6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 2;
}
.vslider__arrow:hover { background: rgba(0, 0, 0, 0.8); }
.vslider__arrow--prev { left: 1.6rem; }
.vslider__arrow--next { right: 1.6rem; }
.vslider__dots {
  position: absolute;
  bottom: 1.4rem;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 1rem;
  z-index: 2;
}
.vslider__dot {
  width: 1.2rem; height: 1.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background .2s;
}
.vslider__dot.active { background: #fff; }
.testimonials__media img { width: 100%; height: 100%; object-fit: cover; }
.testimonials__media .play {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-left: 6.4rem solid rgba(255,255,255,0.59);
  border-top: 3.9rem solid transparent;
  border-bottom: 3.9rem solid transparent;
}
.testimonials__panel {
  position: absolute;
  left: 100.4rem;
  top: 28rem;
  width: 64rem;
}
.trating {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #707070;
}
.trating__score {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 3.3rem;
  color: #fff;
}
.trating__google { width: 8.2rem; }
.trating__stars { width: 13rem; }
.testimonials__text {
  margin-top: 8.5rem;
  font-size: 2.1rem;
  line-height: 1.2;
  color: #fff;
  min-height: 15rem;
}
.testimonials__author {
  margin-top: 2.5rem;
  font-family: var(--serif);
  font-size: 2.1rem;
  color: #fff;
}
.tdots { display: flex; gap: 1.7rem; margin-top: 4rem; }
.tdots button {
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  border: 1px solid #4d4d4d;
  color: #4d4d4d;
  font-size: 1.4rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}
.tdots button.active { border-color: var(--gray-section); color: var(--gray-section); }

/* =============== FAQ =============== */
.faq {
  background: var(--gray-section);
  padding: 14rem 0 12rem;
  position: relative;
}
.faq__inner {
  width: 153rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 25rem 1fr;
  gap: 2rem;
}
.faq__title {
  grid-column: 2;
  font-family: var(--serif);
  font-size: 6.5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 6rem;
}
.faq__list { grid-column: 2; }
.faq__item { border-top: 1px solid #9a9a9a; padding: 3.2rem 0; }
.faq__item:last-child { border-bottom: 1px solid #9a9a9a; }
.faq__q {
  display: grid;
  grid-template-columns: 6rem 51rem 1fr;
  align-items: start;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.faq__num {
  width: 3.2rem; height: 3.2rem;
  border: 1px solid #4d4d4d;
  border-radius: 50%;
  color: #4d4d4d;
  font-size: 2.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq__question {
  font-family: var(--serif);
  font-size: 3.2rem;
  color: #4d4d4d;
  line-height: 1.25;
  padding-right: 4rem;
}
.faq__a {
  font-size: 2rem;
  line-height: 1.4;
  color: #4d4d4d;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq__item.open .faq__a { max-height: 30rem; }

/* =============== FOOTER =============== */
.footer { background: var(--black); }
.footer__main {
  width: 153rem;
  margin: 0 auto;
  padding: 14rem 0 6rem;
  display: grid;
  grid-template-columns: 54.4rem 18.3rem 21.3rem 1fr;
}
.footer__brand img { width: 13.3rem; }
.footer__contact { margin-top: 6.5rem; }
.footer__contact-row {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-bottom: 1rem;
  color: #d3d3d3;
  font-family: var(--helv);
  font-size: 1.7rem;
}
.footer__contact-row .at {
  color: var(--green-accent);
  font-size: 2.6rem;
  font-weight: 600;
  line-height: 1;
  width: 2.6rem;
  text-align: center;
}
.footer__contact-row img { width: 2.2rem; }
.footer__contact-row strong { font-weight: 700; }
.footer__copy {
  margin-top: 4.5rem;
  font-family: var(--helv);
  font-weight: 300;
  font-size: 2rem;
  line-height: 1.25;
  color: #d9d9d9;
}
.footer__privacy {
  margin-top: 2.6rem;
  font-family: var(--helv);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.1;
  color: #d9d9d9;
  max-width: 47rem;
}
.footer__col ul li { margin-bottom: 1.1rem; }
.footer__col ul a {
  font-family: var(--helv);
  font-size: 1.7rem;
  color: #777;
  transition: color .2s;
}
.footer__col ul a:hover { color: #fff; }
.footer__bar {
  background: var(--yellow);
  height: 9.1rem;
  display: flex;
  align-items: center;
}
.footer__bar-inner {
  width: 153rem;
  margin: 0 auto;
  display: flex;
  gap: 9rem;
}
.footer__bar-inner a, .footer__bar-inner span {
  font-family: var(--helv);
  font-weight: 300;
  font-size: 1.5rem;
  color: #000;
}

/* =============== PROJECT PAGE (listing) =============== */
.ppage { background: var(--gray-page); padding-bottom: 6rem; }
.ppage__logo {
  padding-top: 14.9rem;
  display: flex;
  justify-content: center;
}
.ppage__logo img { width: 25rem; height: auto; }
.ppage__logo--svg img { width: 24.9rem; }
.ppage__intro {
  width: 74rem;
  margin: 4rem auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1.25;
  text-align: center;
  color: var(--ink);
}
.listings {
  width: 110.4rem;
  margin: 6.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem 4.3rem;
}
.listing { display: block; transition: transform .3s ease; }
.listing:hover { transform: translateY(-0.5rem); }
.listing__photo {
  height: 45.4rem;
  border-radius: 3rem 3rem 0 0;
  overflow: hidden;
  background: #fff;
}
.listing__photo img { width: 100%; height: 100%; object-fit: cover; }
.listing__info {
  background: #fff;
  border-radius: 0 0 3rem 3rem;
  padding: 2rem 1.3rem 2rem 1.3rem;
  min-height: 14.2rem;
}
.listing__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.listing__name { font-size: 2.4rem; font-weight: 600; color: var(--village-green); }
.listing__price { font-size: 2.4rem; font-weight: 600; color: var(--price-green); }
.listing--blue .listing__name, .listing--blue .listing__price { color: var(--forest-blue); }
.listing__loc { font-size: 1.8rem; color: #bababa; margin-top: 0.6rem; }
.listing__stats {
  display: flex;
  gap: 3rem;
  margin-top: 1.6rem;
  font-size: 2rem;
  color: var(--ink);
}
.listing__stats span { display: flex; align-items: center; gap: 0.9rem; }
.listing__stats img { width: 2.5rem; opacity: 0.8; }

/* =============== UNIT DETAIL PAGE =============== */
.unit { background: var(--gray-page); padding-bottom: 8rem; }
.unit__gallery { width: 143.2rem; margin: 5rem auto 0; }
.unit__main {
  width: 100%;
  height: 95.5rem;
  object-fit: cover;
  border-radius: 2rem;
  cursor: zoom-in;
}
.unit__thumbs {
  display: flex;
  gap: 2.4rem;
  margin-top: 2.4rem;
}
.unit__thumbs img {
  width: 32%;
  height: 32rem;
  object-fit: cover;
  flex: 1;
  border-radius: 2rem;
}
.unit__cols {
  width: 143.2rem;
  margin: 6rem auto 0;
  display: grid;
  grid-template-columns: 65.6rem 1fr;
  gap: 7.5rem;
}
.unit__loc { font-size: 1.8rem; color: #4d4d4d; }
.unit__band {
  background: #d1d1d1;
  padding: 1.4rem 1.7rem;
  margin-top: 1.2rem;
}
.unit__band h1 { font-size: 2.4rem; font-weight: 600; color: var(--ink); }
.unit__pricelabel { font-size: 1.8rem; color: #4d4d4d; margin-top: 2.2rem; }
.unit__price { font-size: 2.4rem; font-weight: 600; color: var(--ink); margin-top: 0.4rem; }
.unit__table {
  background: #d1d1d1;
  padding: 1.2rem 1.7rem 1.6rem;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 16rem 10rem 10rem 1fr;
  row-gap: 0.8rem;
  font-size: 1.8rem;
  color: var(--ink);
}
.unit__table .val { font-size: 2rem; }
.unit__desc {
  margin-top: 3.6rem;
  font-size: 1.8rem;
  line-height: 1.45;
  color: #4d4d4d;
}
.unit__desc strong { display: block; margin-bottom: 0.6rem; font-weight: 600; }
.unit__formcol .unit__formintro {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.4rem;
  line-height: 1.25;
  color: var(--ink);
  width: 56rem;
}
.unit__form {
  margin-top: 3.5rem;
  width: 64.3rem;
  background: #707070;
  padding: 3.5rem;
}
.unit__form .flabel {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0.8rem;
}
.unit__form .flabel.req { color: #ff0303; }
.unit__form .fpair { display: grid; grid-template-columns: 1fr 1fr; gap: 2.4rem; margin-bottom: 2.4rem; }
.unit__form .fphone { display: flex; gap: 1rem; align-items: center; }
.unit__form .fphone .field { flex: 1; }
.btn-verify {
  height: 3.3rem;
  padding: 0 2rem;
  border-radius: 0.5rem;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.7rem;
  font-weight: 500;
  background: transparent;
}
.unit__form .consent label { font-size: 1.7rem; }
.unit__form .fsubmit { display: flex; justify-content: flex-end; }

/* =============== SECTION HEADINGS (unit page) =============== */
.usec { padding: 9rem 0 10rem; }
.usec--dark { background: var(--dark); }
.usec--gray { background: var(--gray-page); }
.usec__title {
  font-family: var(--serif);
  font-size: 5rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.usec--dark .usec__title { color: #fff; }
.usec__sub {
  text-align: center;
  font-size: 1.9rem;
  color: #808080;
  margin-top: 1.6rem;
}
.usec--dark .usec__sub { color: #bababa; }

/* =============== GALLERY TICKER =============== */
.ticker {
  margin-top: 5rem;
  overflow: hidden;
  position: relative;
}
.ticker__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}
.ticker__track.dragging { cursor: grabbing; }
.ticker__track img { -webkit-user-drag: none; user-drag: none; }
.tcard {
  width: 46rem;
  flex-shrink: 0;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
}
.usec--dark .tcard { background: #3d3d3d; }
.tcard img {
  width: 100%;
  height: 30rem;
  object-fit: cover;
}
.tcard__meta { padding: 1.8rem 2.4rem 2.2rem; }
.tcard__name {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark);
}
.usec--dark .tcard__name { color: #fff; }
.tcard__size {
  font-size: 1.7rem;
  color: #808080;
  margin-top: 0.4rem;
}
.usec--dark .tcard__size { color: #bababa; }

/* =============== 360 TOUR =============== */
.tour { background: var(--green-box); padding: 9rem 0 10rem; }
.tour__title {
  font-family: var(--serif);
  font-size: 5rem;
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
}
.tour__sub { text-align: center; font-size: 1.9rem; color: #cdd6c2; margin-top: 1.6rem; }
.tour__frame {
  width: 128rem;
  max-width: 92%;
  margin: 4.5rem auto 0;
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  background: #000;
}
.tour__frame iframe {
  display: block;
  width: 100%;
  height: 66rem;
  border: 0;
}
.tour__cta {
  display: flex;
  justify-content: center;
  margin-top: 3.2rem;
}
.btn-tour {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--orange);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 1.5rem 3.4rem;
  border-radius: 0.6rem;
  transition: filter .2s;
}
.btn-tour:hover { filter: brightness(1.08); }

/* =============== FLOOR PLANS (gated) =============== */
.plans-grid {
  width: 143.2rem;
  max-width: 94%;
  margin: 5rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.plan-card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .25s ease;
}
.plan-card:hover { transform: translateY(-0.4rem); }
.plan-card__img {
  height: 32rem;
  overflow: hidden;
  position: relative;
  background: #f5f5f5;
}
.plan-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: filter .3s;
}
.plan-card.locked .plan-card__img img { filter: blur(9px); transform: scale(1.05); }
.plan-card__lock {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  background: rgba(23, 23, 23, 0.35);
  color: #fff;
  font-size: 1.7rem;
  font-weight: 600;
}
.plan-card.locked .plan-card__lock { display: flex; }
.plan-card__lock svg { width: 4.2rem; height: 4.2rem; }
.plan-card__title {
  padding: 1.8rem 2.2rem 2rem;
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.35;
}
.plans-group { margin-top: 7rem; }
.plans-group:first-of-type { margin-top: 0; }
.plans-group__title {
  font-family: var(--serif);
  font-size: 3.4rem;
  color: var(--ink);
  text-align: center;
}

/* =============== CONTENT PAGES (events/news/blogs/awards/careers) =============== */
.cpage { background: var(--gray-page); padding: 16rem 0 10rem; min-height: 70vh; }
.cpage__head { text-align: center; }
.post-grid {
  width: 143.2rem;
  max-width: 94%;
  margin: 6rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
.post-card {
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease;
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-0.4rem); }
.post-card__img { height: 26rem; background: #e9e9e9; }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 2.4rem 2.6rem 2.8rem; }
.post-card__date {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}
.post-card__title {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--ink);
  line-height: 1.15;
  margin-top: 0.8rem;
}
.post-card__sub { font-size: 1.7rem; color: #707070; margin-top: 0.6rem; }
.post-card__excerpt {
  font-size: 1.6rem;
  color: #555;
  line-height: 1.5;
  margin-top: 1.2rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cpage__empty { text-align: center; font-size: 1.9rem; color: #808080; padding: 8rem 3rem; }

/* post detail overlay */
.post-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  z-index: 1000;
  padding: 6rem 2rem;
}
.post-modal.open { display: flex; }
.post-modal__box {
  width: 86rem; max-width: 100%;
  background: #fff;
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
}
.post-modal__close {
  position: absolute; top: 1.6rem; right: 2rem;
  font-size: 3rem; color: #fff; z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
}
.post-modal__img { max-height: 42rem; overflow: hidden; }
.post-modal__img img { width: 100%; object-fit: cover; }
.post-modal__body { padding: 3.6rem 4.2rem 4.4rem; }
.post-modal__body h2 { font-family: var(--serif); font-size: 3.4rem; color: var(--ink); line-height: 1.1; }
.post-modal__meta { font-size: 1.5rem; color: #9a9a9a; margin-top: 0.8rem; text-transform: uppercase; letter-spacing: .1em; }
.post-modal__text { font-size: 1.8rem; color: #444; line-height: 1.6; margin-top: 2rem; white-space: pre-line; }

/* =============== CALCULATORS =============== */
.calc {
  width: 100rem; max-width: 94%;
  margin: 6rem auto 0;
  background: #fff;
  border-radius: 2rem;
  padding: 4.6rem 5rem 5rem;
}
.calc__row { margin-bottom: 3rem; }
.calc__label {
  display: flex; justify-content: space-between;
  font-size: 1.8rem; font-weight: 500; color: var(--dark);
  margin-bottom: 1rem;
}
.calc__label output { font-weight: 700; }
.calc input[type="range"] { width: 100%; accent-color: var(--orange); height: 0.5rem; }
.calc__results {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  margin-top: 4rem;
}
.calc__stat { background: var(--gray-page); border-radius: 1.4rem; padding: 2.4rem; text-align: center; }
.calc__stat .k { font-size: 1.5rem; color: #707070; text-transform: uppercase; letter-spacing: .08em; }
.calc__stat .v { font-size: 2.8rem; font-weight: 700; color: var(--ink); margin-top: 0.8rem; }
.calc__stat.hi { background: var(--green-box); }
.calc__stat.hi .k { color: #cdd6c2; }
.calc__stat.hi .v { color: #fff; }
.calc__note { font-size: 1.4rem; color: #9a9a9a; margin-top: 2.6rem; line-height: 1.5; }

/* =============== CHANNEL PARTNER / GENERIC FORM CARD =============== */
.formcard {
  width: 86rem; max-width: 94%;
  margin: 5rem auto 0;
  background: #fff;
  border-radius: 2rem;
  padding: 4.6rem 5rem 5rem;
}
.formcard .field { background: #f0f0f0; height: 4.6rem; width: 100%; margin-bottom: 2rem; }
.formcard textarea.field { height: 12rem; padding: 1.2rem; resize: vertical; }
.formcard .fpair { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.formcard .flabel { display: block; font-size: 1.6rem; font-weight: 600; color: var(--dark); margin-bottom: 0.7rem; }
.formcard .checks { display: flex; flex-wrap: wrap; gap: 1.4rem 2.6rem; margin-bottom: 2.4rem; }
.formcard .checks label { display: flex; align-items: center; gap: 0.8rem; font-size: 1.7rem; color: var(--dark); }
.cpage__blurb {
  width: 86rem; max-width: 94%;
  margin: 3rem auto 0;
  font-size: 1.9rem; line-height: 1.6; color: #555;
  text-align: center;
}

/* =============== STATIC TEXT PAGES (ESG / CSR) =============== */
.tpage { width: 96rem; max-width: 94%; margin: 5rem auto 0; }
.tpage h2 { font-family: var(--serif); font-size: 3.2rem; color: var(--ink); margin: 4.2rem 0 1.4rem; }
.tpage p { font-size: 1.8rem; line-height: 1.7; color: #4a4a4a; margin-bottom: 1.6rem; }
.tpage ul { margin: 0 0 1.6rem 2.4rem; list-style: disc; }
.tpage ul li { font-size: 1.8rem; line-height: 1.7; color: #4a4a4a; margin-bottom: 0.6rem; }
.tpage img { border-radius: 2rem; margin: 2rem 0; }

/* =============== FILTER BAR (floor plans page) =============== */
.fbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  margin-top: 4.5rem;
}
.fbar__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.fbar__label {
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9a9a9a;
  margin-bottom: 0.2rem;
}
.fpill {
  height: 3.6rem;
  padding: 0 2.4rem;
  border-radius: 1.8rem;
  border: 1px solid #bdbdbd;
  background: #fff;
  color: var(--dark);
  font-size: 1.7rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all .18s;
}
.fpill:hover { border-color: #000; }
.fpill.active { background: #000; border-color: #000; color: #fff; }
.fp-empty {
  text-align: center;
  font-size: 1.9rem;
  color: #808080;
  padding: 8rem 3rem;
}

/* =============== LEAD GATE MODAL =============== */
.gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.gate.open { display: flex; }
.gate__box {
  width: 56rem;
  max-width: 100%;
  background: #fff;
  border-radius: 2rem;
  padding: 4.2rem 4.4rem 4rem;
  position: relative;
}
.gate__close {
  position: absolute;
  top: 2rem; right: 2.4rem;
  font-size: 2.8rem;
  line-height: 1;
  color: #808080;
}
.gate__title {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--ink);
  line-height: 1.1;
}
.gate__sub {
  font-size: 1.7rem;
  color: #707070;
  margin: 1.2rem 0 2.6rem;
  line-height: 1.4;
}
.gate__box .field {
  background: #f0f0f0;
  height: 4.6rem;
  margin-bottom: 1.6rem;
  font-size: 1.7rem;
  width: 100%;
}
.gate__phone { display: flex; gap: 1rem; }
.gate__phone select.field { width: 12rem; flex-shrink: 0; }
.gate__err {
  display: none;
  color: #d40000;
  font-size: 1.5rem;
  margin: -0.6rem 0 1.2rem;
}
.gate__box .btn-submit { width: 100%; margin-top: 0.6rem; height: 4.8rem; }
.gate__note { font-size: 1.3rem; color: #9a9a9a; margin-top: 1.6rem; line-height: 1.4; }

/* =============== LIGHTBOX =============== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 3rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 96%;
  max-height: 92vh;
  object-fit: contain;
  background: #fff;
  border-radius: 0.8rem;
}
.lightbox__close {
  position: absolute;
  top: 2.4rem; right: 3.2rem;
  color: #fff;
  font-size: 4rem;
  line-height: 1;
}
.lightbox__caption {
  position: absolute;
  bottom: 2.6rem;
  left: 0; right: 0;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
}

/* section: black band with two project cards */
.other-projects {
  background: var(--black);
  padding: 2.3rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* card rows converted into tickers on mobile */
.as-ticker { display: block !important; overflow: hidden !important; }
.as-ticker .ticker__track { display: flex; gap: 2rem; width: max-content; }
.as-ticker .pcard { flex-shrink: 0; }

/* =============== STICKY MOBILE ACTION BAR (unit pages) =============== */
.sticky-actions {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 600;
  display: none;
  background: rgba(23, 23, 23, 0.97);
  border-radius: 1.8rem 1.8rem 0 0;
  padding: 1.1rem 0.4rem calc(1.1rem + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.35);
}
.sticky-actions a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.sticky-actions svg {
  width: 2.4rem;
  height: 2.4rem;
  stroke: var(--yellow);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sticky-actions .wa svg { stroke: #25d366; }

/* =============== MOBILE =============== */
.mobile-only { display: none !important; }

@media (max-width: 820px) {
  html { font-size: calc(100vw / 43); }
  .mobile-only { display: flex !important; }
  .desktop-only { display: none !important; }

  /* nav */
  .nav {
    width: 100%;
    height: 9.5rem;
    border-radius: 0 0 3rem 3rem;
    background: #2c2824;
  }
  .nav__logo { margin-left: 3rem; width: 6.2rem; }
  .nav__links {
    display: none;
    position: absolute;
    top: 9.5rem;
    left: 0;
    right: 0;
    background: #2c2824;
    flex-direction: column;
    padding: 2rem 3rem 3rem;
    gap: 2.4rem;
    border-radius: 0 0 3rem 3rem;
    margin-left: 0;
    align-items: flex-start;
  }
  .nav__links.open { display: flex; }
  .nav__phone { margin-right: 8.5rem; }
  .nav__burger {
    display: block;
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 2.2rem;
  }
  .nav__burger span {
    display: block;
    height: 2px;
    background: #fff;
    margin-bottom: 0.7rem;
  }

  /* hero: image block on top, enquiry form flows below (per iPhone artboard) */
  .hero {
    height: auto;
    background: #171717;
  }
  .hero::before {
    content: '';
    display: block;
    height: 63.3rem;
  }
  .hero__slides { height: 63.3rem; inset: auto; top: 0; left: 0; right: 0; }
  .hero__slide img, .hero__slide video { object-position: 62% top; }
  .hero__copy { left: 3rem; top: 41rem; }
  .hero__tag { font-size: 2rem; margin-left: 0.3rem; }
  .hero__title { font-size: 5.8rem; line-height: 0.82; }
  .hero__scroll { display: none; }

  /* enquiry becomes its own dark block under hero */
  .enquiry {
    position: static;
    width: 100%;
    background: #2c2c2c;
    backdrop-filter: none;
    padding: 3.6rem 3rem 4.2rem;
    border-radius: 0;
    border: none;
    box-shadow: none;
  }
  .enquiry__title { font-size: 2.4rem; }
  .form-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .field { height: 4.8rem; background: #fff; font-size: 1.7rem; }
  .btn-submit { width: 100%; height: 5rem; font-size: 1.8rem; }
  .consent label { font-size: 1.5rem; color: #cfcfcf; }

  /* sticky action bar shows on phones */
  .sticky-actions { display: flex; }
  body.has-sticky { padding-bottom: 9rem; }

  /* projects: horizontal scroll cards */
  .projects, .other-projects {
    padding: 2.8rem 2.2rem;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
  }
  .pcard { min-width: 38.7rem; width: 38.7rem; height: auto; padding-bottom: 0.6rem; }
  .pcard__img { height: 43rem; }
  .pcard__body { padding: 2rem 3.4rem 2.4rem; height: auto; }
  .pcard__stats { gap: 1rem 1.6rem; font-size: 1.7rem; flex-wrap: wrap; }
  .pcard__stats span { white-space: nowrap; }
  .pcard__stats img { width: 2rem; }
  .pcard__foot { margin-top: 2rem; }
  .pcard__mark { width: 11rem; }

  /* about */
  .about { padding-top: 8rem; }
  .about__quote { font-size: 2.4rem; padding: 0 2rem; }
  .about__stage { width: 100%; margin-top: 3rem; padding-bottom: 0; }
  .about__stage > img { height: 48rem; }
  .about__boxes { position: static; flex-direction: column; }
  .about__box-green { width: 100%; padding: 3.1rem 2.3rem; min-height: 0; }
  .about__box-green p { font-size: 2rem; line-height: 1.2; }
  .about__box-white { width: 100%; padding: 3rem 2.3rem; min-height: 0; }
  .about__box-white p { font-size: 1.7rem; line-height: 1.3; }

  /* circular */
  .circular { height: auto; background: none; }
  .circular__img-m { width: 100%; height: 49.8rem; object-fit: cover; display: block; cursor: zoom-in; }
  .vslider__arrow { width: 3.8rem; height: 3.8rem; font-size: 1.7rem; }
  .circular__title {
    position: absolute;
    top: 14.8rem;
    left: 3rem;
    width: 37rem;
    text-align: left;
    font-size: 4.3rem;
  }
  .ecobar {
    position: static;
    transform: none;
    width: 100%;
    height: auto;
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.4rem 2rem;
    padding: 4.6rem 5rem 5.4rem;
  }

  /* awards */
  .awards { height: auto; padding: 5rem 3rem 6rem; }
  .awards__title { font-size: 4.3rem; }
  .awards__title br { display: none; }
  .awards__row { flex-wrap: wrap; gap: 3rem; margin-top: 4rem; }
  .awards__row img { width: 16rem; }

  /* testimonials */
  .testimonials { height: auto; padding: 6rem 3rem 6rem; }
  .testimonials__title { position: static; font-size: 4.3rem; margin-bottom: 4rem; }
  .testimonials__media { position: relative; left: auto; top: auto; width: 100%; height: 24rem; margin-top: 3rem; }
  .testimonials__media .play {
    border-left-width: 4.2rem;
    border-top-width: 2.6rem;
    border-bottom-width: 2.6rem;
  }
  .testimonials__panel { position: static; width: 100%; margin-top: 3rem; }
  .testimonials__text { margin-top: 3rem; min-height: 0; font-size: 1.9rem; }

  /* faq */
  .faq { padding: 6rem 0; }
  .faq__inner { width: 100%; padding: 0 3rem; display: block; }
  .faq__title { font-size: 4.3rem; margin-bottom: 3rem; }
  .faq__q { grid-template-columns: 4.8rem 1fr; }
  .faq__question { font-size: 2.4rem; padding-right: 0; grid-column: 2; }
  .faq__a { grid-column: 2; }
  .faq__item { padding: 2.4rem 0; }

  /* footer */
  .footer__main {
    width: 100%;
    padding: 5rem 3rem 4rem;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .footer__brand { grid-column: 1 / -1; }
  .footer__contact { margin-top: 3.4rem; }
  .footer__copy { font-size: 1.7rem; }
  .footer__bar { height: 9.1rem; }
  .footer__bar-inner { width: 100%; padding: 0 4rem; justify-content: space-between; gap: 0; }

  /* project pages */
  .ppage__logo { padding-top: 13rem; }
  .ppage__intro { width: 100%; padding: 0 3rem; }
  .listings { width: 100%; padding: 0 3rem; grid-template-columns: 1fr; margin-top: 4rem; }
  .listing__photo { height: 36rem; }

  /* content pages */
  .cpage { padding: 13rem 0 7rem; }
  .post-grid { grid-template-columns: 1fr; max-width: 100%; padding: 0 3rem; margin-top: 4rem; }
  .post-modal { padding: 2rem 1.4rem; }
  .post-modal__body { padding: 2.6rem 2.4rem 3rem; }
  .calc { padding: 3rem 2.6rem; }
  .calc__results { grid-template-columns: 1fr; }
  .formcard { padding: 3rem 2.6rem; }
  .formcard .fpair { grid-template-columns: 1fr; gap: 0; }

  /* new sections */
  .usec { padding: 6rem 0 7rem; }
  .usec__title { font-size: 3.4rem; padding: 0 3rem; }
  .tcard { width: 32rem; }
  .tcard img { height: 22rem; }
  .tour { padding: 6rem 0 7rem; }
  .tour__title { font-size: 3.4rem; padding: 0 3rem; }
  .tour__frame iframe { height: 34rem; }
  .plans-grid { grid-template-columns: 1fr; max-width: 100%; padding: 0 3rem; }
  .plan-card__img { height: 26rem; }
  .plans-group__title { font-size: 2.6rem; padding: 0 3rem; }
  .gate__box { padding: 3.2rem 2.8rem; }
  .nav__links { gap: 2.2rem; }

  /* unit pages */
  .unit__gallery { width: 100%; padding: 0 2.4rem; }
  .unit__main { height: 34rem; }
  .unit__thumbs { gap: 1.2rem; margin-top: 1.2rem; }
  .unit__thumbs img { height: 12rem; }
  .unit__cols { width: 100%; padding: 0 2.4rem; grid-template-columns: 1fr; gap: 4rem; }
  .unit__formcol .unit__formintro { width: 100%; }
  .unit__form { width: 100%; padding: 2.6rem; }
  .unit__form .fpair { grid-template-columns: 1fr; gap: 1.8rem; margin-bottom: 1.8rem; }
  .unit__table { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
}
