/* ==========================================================================
   54 FLORES DRIVE  |  Brand component layer
   Bhandari Associates  |  Hadapsar, Pune

   Layout, spacing, grids and responsive behaviour are handled with Tailwind
   utility classes in the markup. This file only carries the brand pieces
   Tailwind cannot express cleanly: the champagne CTA, slick overrides, the
   FAQ accordion, the modal and the hero crop.
   ========================================================================== */

/* ---------------------------------------------------------------
   1. DESIGN TOKENS
   --------------------------------------------------------------- */
:root {
  /* Palette derived from the 54 Flores Drive logo */
  --forest:      #2E3A30;   /* deep leaf green, primary dark */
  --sage:        #8CA387;   /* logo leaf */
  --sage-deep:   #6E8A6B;
  --sage-tint:   #EDF2EB;
  --rose:        #E98B96;   /* logo bloom */
  --ink:         #2B2B29;   /* logo wordmark charcoal */
  --body:        #5A5F58;
  --muted:       #8A8F87;
  --cream:       #FAF8F4;
  --cream-2:     #F3EFE8;
  --line:        #E5E1D8;

  /* Champagne metal used for every primary call to action.
     Built around #F2C891: a highlight above it and a soft depth below, so the
     button still reads metallic while that tone stays the dominant one. */
  --gold:       #F2C891;
  --gold-light: #FBEBD4;
  --gold-mid:   #E0AC6B;
  --gold-edge:  #D19B57;
  --gold-rgb:   209, 155, 87;   /* --gold-edge, for borders and shadows */

  --gold-grad: linear-gradient(135deg,
      var(--gold-light) 0%,
      var(--gold)       24%,
      var(--gold-mid)   52%,
      #F8DDB8           78%,
      var(--gold-edge)  100%);
  --gold-line: rgba(var(--gold-rgb), .45);

  --header-h:    78px;
  --header-h-sm: 64px;

  --font-sans:    'Gotham', 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-display: 'Gotham', 'Montserrat', system-ui, sans-serif;
}

/* ---------------------------------------------------------------
   1b. GOTHAM
   --------------------------------------------------------------- */
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Light.woff2') format('woff2'),
       url('../fonts/Gotham-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Book.woff2') format('woff2'),
       url('../fonts/Gotham-Book.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Medium.woff2') format('woff2'),
       url('../fonts/Gotham-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gotham';
  src: url('../fonts/Gotham-Bold.woff2') format('woff2'),
       url('../fonts/Gotham-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---------------------------------------------------------------
   2. BASE
   --------------------------------------------------------------- */
* { -webkit-tap-highlight-color: transparent; }

/* <iconsax-icon> renders its SVG into light DOM; size comes from the size
   attribute, colour is inherited through currentColor. */
iconsax-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  flex-shrink: 0;
}
iconsax-icon svg { display: block; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h-sm);
  overflow-x: hidden !important;
}
@media (min-width: 1280px) {
  html { scroll-padding-top: var(--header-h); }
}

body {
  font-family: var(--font-sans);
  color: var(--body);
  overflow-x: hidden !important;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sage); color: #fff; }

@media (min-width: 1024px) {
  ::-webkit-scrollbar { width: 9px; }
  ::-webkit-scrollbar-track { background: var(--cream-2); }
  ::-webkit-scrollbar-thumb { background: var(--sage-deep); border-radius: 99px; }
  ::-webkit-scrollbar-thumb:hover { background: var(--forest); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------------
   3. TYPE
   --------------------------------------------------------------- */
.font-display { font-family: var(--font-display); font-weight: 500; letter-spacing: .005em; }

.eyebrow {
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sage-deep);
  font-weight: 500;
  display: block;
}
.eyebrow-light { color: var(--sage); }

/* Fluid display sizes, so headings scale smoothly between breakpoints */
.t-hero    { font-size: clamp(13px, 2.1vw, 18px); }
.t-h1      { font-size: clamp(20px, 2.9vw, 28px); }
.t-h2      { font-size: clamp(22px, 3.4vw, 33px); }
.t-price   { font-size: clamp(23px, 3.8vw, 33px); }
.t-mark    { font-size: clamp(22px, 4vw, 35px); }

/* Small floral rule that echoes the logo bloom */
.rule { display: flex; align-items: center; gap: 10px; }
.rule::before,
.rule::after {
  content: '';
  height: 1px;
  flex: 1;
  max-width: 62px;
  background: linear-gradient(90deg, transparent, var(--line));
}
.rule::after { background: linear-gradient(270deg, transparent, var(--line)); }
.rule iconsax-icon { color: var(--rose); }
.rule-start::before { display: none; }
.rule-light::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,.34)); }
.rule-light::after  { background: linear-gradient(270deg, transparent, rgba(255,255,255,.34)); }

/* ---------------------------------------------------------------
   4. DARK BAND TEXTURE
   --------------------------------------------------------------- */
.band-forest { background: var(--forest); position: relative; overflow: hidden; }
.band-forest::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(140, 163, 135, .20), transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(233, 139, 150, .12), transparent 46%);
  pointer-events: none;
}
.band-forest > * { position: relative; z-index: 1; }

/* ---------------------------------------------------------------
   5. BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 30px;
  border-radius: 10px;
  line-height: 1;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn iconsax-icon, .btn svg { margin-top: -1px; }

.btn-gold {
  background: var(--gold-grad);
  color: var(--ink);
  border: 1px solid var(--gold-line);
  box-shadow: 0 10px 26px rgba(var(--gold-rgb), .30), inset 0 2px 2px rgba(255, 255, 255, .55);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(var(--gold-rgb), .42), inset 0 2px 2px rgba(255, 255, 255, .65);
}

.btn-outline { background: transparent; color: var(--forest); border: 1px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: #fff; transform: translateY(-2px); }

.btn-outline-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.55); }
.btn-outline-light:hover { background: #fff; color: var(--forest); transform: translateY(-2px); }

.btn-nudge { animation: nudge 3.4s ease-in-out infinite; }
@keyframes nudge {
  0%, 88%, 100% { transform: translateY(0); }
  91%           { transform: translateY(-4px); }
  94%           { transform: translateY(0); }
  97%           { transform: translateY(-2px); }
}
@media (prefers-reduced-motion: reduce) { .btn-nudge { animation: none; } }

/* ---------------------------------------------------------------
   6. HEADER
   --------------------------------------------------------------- */
.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s ease;
}
.site-header.is-stuck { box-shadow: 0 6px 26px rgba(46,58,48,.10); }

.nav-link { position: relative; font-weight: 500; transition: color .25s ease; }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: var(--sage-deep);
  transition: width .3s ease;
}
.nav-link:hover { color: var(--sage-deep); }
.nav-link:hover::after { width: 100%; }

.burger span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--forest);
  border-radius: 99px;
  transition: transform .3s ease, opacity .25s ease;
}
.burger.is-open span:nth-child(1) { transform: translateY(6.6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6.6px) rotate(-45deg); }

.nav-mobile { display: none; }
.nav-mobile.is-open { display: block; }
@media (min-width: 1280px) { .nav-mobile.is-open { display: none; } }

/* ---------------------------------------------------------------
   7. HERO  (banner artwork only, no overlaid copy)
   --------------------------------------------------------------- */
.hero { margin-top: var(--header-h-sm); }
@media (min-width: 1280px) { .hero { margin-top: var(--header-h); } }

/* No crop on phones any more: a dedicated 9:16 banner is served through
   <picture>, so it should show at its own aspect ratio. */
.hero picture { display: block; }

/* ---------------------------------------------------------------
   7b. OVERVIEW
   --------------------------------------------------------------- */

/* Split layout, used by the overview and about sections.

   Phone: one column, so the source order (heading, image, copy) is exactly the
   reading order. Desktop: the same three blocks are placed into two columns
   with the media spanning both rows, on whichever side the modifier picks.
   Nothing is duplicated for the two breakpoints. */
.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .split {
    display: grid;
    column-gap: 64px;
    row-gap: 20px;
    align-items: center;
  }
  .split--media-right {
    grid-template-columns: 1fr 46%;
    grid-template-areas:
      "head media"
      "body media";
  }
  .split--media-left {
    grid-template-columns: 46% 1fr;
    grid-template-areas:
      "media head"
      "media body";
  }

  /* Held against the middle so the pair stays together when the media column
     is the taller of the two. */
  .split-head  { grid-area: head; align-self: end; }
  .split-body  { grid-area: body; align-self: start; }
  .split-media { grid-area: media; }
}

/* Configuration pills under the intro copy */
.chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--forest);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  line-height: 1.3;
  transition: border-color .3s ease, background .3s ease;
}
.chip:hover { border-color: var(--sage); background: var(--sage-tint); }

/* Centred wrapping left the four pills ragged across three rows on a phone.
   A 2x2 grid of equal, full width pills reads as one block instead. */
@media (max-width: 639px) {
  .chip {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    letter-spacing: .06em;
    padding: 10px 10px;
    line-height: 1.35;
  }
}

/* A champagne hairline above the price, in place of a plain rule */
.price-block { position: relative; }
.price-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 1px;
  background: var(--line);
}
.price-block::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 62px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}
@media (max-width: 1023px) {
  .price-block::after { left: 50%; transform: translateX(-50%); }
}

/* Frosted caption sitting on the night photograph */
.glass-chip {
  position: absolute;
  left: 14px;
  bottom: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 15px;
  border-radius: 12px;
  font-size: 12px;
  letter-spacing: .05em;
  color: #fff;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .26);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  backdrop-filter: blur(14px) saturate(150%);
  box-shadow: 0 8px 24px rgba(10, 16, 11, .28), inset 0 1px 0 rgba(255, 255, 255, .24);
}
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass-chip { background: rgba(30, 38, 31, .82); }
}
@media (max-width: 480px) {
  .glass-chip { font-size: 11px; padding: 9px 12px; gap: 7px; }
}

/* Quick facts cells */
.fact-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--sage-tint);
  color: var(--sage-deep);
  transition: background .3s ease, color .3s ease;
}
.fact-ico:hover { background: var(--sage-deep); color: #fff; }

/* ---------------------------------------------------------------
   8. CARDS
   --------------------------------------------------------------- */
.card-lift { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, background .35s ease; }
.card-lift:hover { transform: translateY(-5px); }

.usp-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.14); }
.usp-card:hover { background: rgba(255,255,255,.09); border-color: rgba(140,163,135,.6); }

.icon-round {
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(140,163,135,.18);
  border: 1px solid rgba(140,163,135,.45);
  color: var(--sage);
}

/* Floor plan cards carry a champagne edge that matches the CTAs. Painting the
   gradient into border-box and the white fill into padding-box keeps a real
   gradient on the rounded corners, which a plain border colour cannot do. */
.plan-card {
  border: 1.5px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gold-grad) border-box;
  box-shadow: 0 6px 20px rgba(46, 58, 48, .07);
  transition: box-shadow .35s ease, transform .35s ease;
}
.plan-card:hover {
  box-shadow:
    0 18px 42px rgba(var(--gold-rgb), .28),
    0 6px 20px rgba(46, 58, 48, .10);
}

/* A hairline of the same champagne separates the plan title from the artwork */
.plan-card h3 { position: relative; padding-top: 16px; }
.plan-card h3::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 46px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold-grad);
}

/* Blurred floor-plate teaser */
.plan-media img { filter: blur(4px); transform: scale(1.06); }

/* Bullet that echoes the logo bloom */
.bullet-rose { position: relative; padding-left: 20px; }
.bullet-rose::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--rose);
}

/* Image tile with caption */
.shot img { transition: transform .7s ease; }
.shot:hover img { transform: scale(1.05); }
.shot figcaption { background: linear-gradient(to top, rgba(30,38,31,.86), transparent); }

/* ---------------------------------------------------------------
   8b. PARALLAX BAND + GLASSMORPHISM
   --------------------------------------------------------------- */

/* background-attachment:fixed gives the parallax with no JS and no scroll
   handler. iOS Safari ignores it and Android repaints badly, so below the
   desktop breakpoint the image simply sits still. */
.specs-parallax {
  position: relative;
  isolation: isolate;
  background-image: url('../images/gallery/g1.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #1A211B;
}
@media (max-width: 1023px) {
  .specs-parallax {
    background-attachment: scroll;
    background-position: 60% center;
  }
}
@media (prefers-reduced-motion: reduce) {
  .specs-parallax { background-attachment: scroll; }
}

/* Darkens the photograph so the frosted cards and white type stay readable */
.specs-veil {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(23, 30, 24, .90) 0%,
      rgba(23, 30, 24, .78) 42%,
      rgba(23, 30, 24, .92) 100%),
    radial-gradient(circle at 15% 12%, rgba(140, 163, 135, .22), transparent 45%),
    radial-gradient(circle at 85% 88%, rgba(233, 139, 150, .14), transparent 48%);
}

/* Frosted panel. The blur samples the photograph behind it. */
.glass {
  background: rgba(255, 255, 255, .09);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255, 255, 255, .20);
  box-shadow:
    0 10px 34px rgba(10, 16, 11, .32),
    inset 0 1px 0 rgba(255, 255, 255, .22);
}
.glass:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(140, 163, 135, .65);
  box-shadow:
    0 18px 46px rgba(10, 16, 11, .40),
    inset 0 1px 0 rgba(255, 255, 255, .30);
}

/* Browsers without backdrop-filter get a solid tint instead of a see through
   panel, which would otherwise read as unstyled. */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .glass { background: rgba(46, 58, 48, .72); }
  .glass:hover { background: rgba(46, 58, 48, .84); }
}

.glass-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3);
  transition: background .35s ease, border-color .35s ease, color .35s ease;
}
.glass:hover .glass-icon {
  background: rgba(140, 163, 135, .30);
  border-color: rgba(140, 163, 135, .7);
}

/* ---------------------------------------------------------------
   9. SLICK SLIDER
   --------------------------------------------------------------- */
.slick-prev, .slick-next {
  width: 42px; height: 42px;
  background: var(--forest);
  border-radius: 50%;
  z-index: 12;
  transition: background .25s ease, transform .25s ease;
}
.slick-prev:hover, .slick-next:hover { background: var(--sage-deep); transform: scale(1.06); }
.slick-prev:focus, .slick-next:focus { background: var(--forest); }
.slick-prev::before, .slick-next::before { font-size: 16px; color: #fff; opacity: 1; }
.slick-prev { left: -6px; }
.slick-next { right: -6px; }
@media (max-width: 767px) {
  .slick-prev, .slick-next { width: 34px; height: 34px; }
  .slick-prev { left: 2px; }
  .slick-next { right: 2px; }
  .slick-prev::before, .slick-next::before { font-size: 13px; }
}

/* The sliders carry their own bottom padding (pb-11), so the dots sit
   inside that padding instead of hanging below the element where they
   would collide with whatever follows. */
.slick-dots { bottom: 4px; }
.slick-dots li { margin: 0 4px; width: 10px; height: 10px; }
.slick-dots li button { width: 10px; height: 10px; padding: 0; }
.slick-dots li button::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  opacity: 1;
}
.slick-dots li.slick-active button::before { background: var(--sage-deep); }

/* Equal-height slides */
.slick-track { display: flex !important; align-items: stretch; }
.slick-slide { height: auto !important; }
.slick-slide > div { height: 100%; }

/* ---------------------------------------------------------------
   9b. LOCATION TABS
   --------------------------------------------------------------- */
/* Location layout.
   Phone: one column in source order, so the map lands between the heading and
   the intro copy. Desktop: the heading and intro stay full width and centred,
   with the tab list and the map side by side underneath, exactly as before. */
.loc-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
@media (min-width: 1024px) {
  .loc-wrap {
    display: grid;
    grid-template-columns: 1fr 36%;
    grid-template-areas:
      "head  head"
      "intro intro"
      "main  map";
    column-gap: 56px;
    row-gap: 0;
    align-items: start;
  }
  .loc-head  { grid-area: head; }
  .loc-intro { grid-area: intro; margin-bottom: 48px; }
  .loc-main  { grid-area: main; }
  .loc-map   { grid-area: map; }
}

.scrollbar-none { scrollbar-width: none; -ms-overflow-style: none; }
.scrollbar-none::-webkit-scrollbar { display: none; }

.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--forest);
  border-radius: 999px;
  padding: 10px 18px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .03em;
  cursor: pointer;
  transition: background .28s ease, color .28s ease, border-color .28s ease;
}
.loc-pill iconsax-icon { color: var(--sage-deep); transition: color .28s ease; }
.loc-pill:hover { background: var(--sage-tint); border-color: var(--sage); }
.loc-pill.is-active { background: var(--forest); border-color: var(--forest); color: #fff; }
.loc-pill.is-active iconsax-icon { color: var(--sage); }

/* JS animates this to the active list's height, so tabs resize smoothly */
.loc-panes { position: relative; overflow: hidden; transition: height .35s ease; }
@media (prefers-reduced-motion: reduce) { .loc-panes { transition: none; } }

.loc-pane { display: none; list-style: none; margin: 0; padding: 0; }
.loc-pane.is-active { display: block; animation: locFade .35s ease both; }
@keyframes locFade {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .loc-pane.is-active { animation: none; }
}

.loc-pane li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.loc-pane li:last-child { border-bottom: 0; }

.loc-pane .place {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--forest);
  font-size: 15px;
  line-height: 1.4;
}
.loc-pane .place iconsax-icon {
  color: var(--sage-deep);
  flex-shrink: 0;
}
.loc-pane .time {
  color: var(--body);
  font-size: 13.5px;
  white-space: nowrap;
  background: var(--sage-tint);
  border-radius: 999px;
  padding: 5px 13px;
  flex-shrink: 0;
}
@media (max-width: 420px) {
  .loc-pane .place { font-size: 14px; gap: 10px; }
  .loc-pane .time  { font-size: 12px; padding: 4px 10px; }
  .loc-pill { font-size: 12px; padding: 9px 13px; }
}

/* The map stays in view while the tab lists change beside it */
@media (min-width: 1024px) {
  .loc-map { position: sticky; top: calc(var(--header-h) + 24px); }
}

/* ---------------------------------------------------------------
   10. FAQ ACCORDION
   --------------------------------------------------------------- */
.faq-item { transition: border-color .3s ease, box-shadow .3s ease; }
.faq-item.is-open { border-color: var(--sage); box-shadow: 0 4px 16px rgba(46,58,48,.07); }
.faq-q iconsax-icon { transition: transform .3s ease; }
.faq-item.is-open .faq-q iconsax-icon { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }

/* ---------------------------------------------------------------
   11. FORMS
   --------------------------------------------------------------- */
.field-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  padding: 10px 2px;
  font-family: var(--font-sans);
  font-size: 15.5px;
  color: var(--ink);
  outline: none;
  border-radius: 0;
  transition: border-color .25s ease;
}
.field-input:focus { border-bottom-color: var(--sage-deep); }
.field-input::placeholder { color: #B9BCB5; }

.phone-field { display: flex; align-items: center; border-bottom: 1px solid var(--line); }
.phone-field:focus-within { border-bottom-color: var(--sage-deep); }
.phone-field .field-input { border-bottom: 0; }

/* ---------------------------------------------------------------
   12. CLOSING BAND
   --------------------------------------------------------------- */
.closing {
  background:
    linear-gradient(rgba(30, 38, 31, .82), rgba(30, 38, 31, .88)),
    url('../images/vtour/tour1.webp') center / cover no-repeat;
}

/* ---------------------------------------------------------------
   13. FLOATING ACTIONS
   --------------------------------------------------------------- */
.float-btn { transition: transform .25s ease, background .25s ease; }
.float-btn:hover { transform: scale(1.07); }

.bar-visit { background: var(--gold-grad); color: var(--ink); }

@media (max-width: 767px) { body { padding-bottom: 52px; } }

/* ---------------------------------------------------------------
   14. MODAL
   --------------------------------------------------------------- */
.modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-box { transform: translateY(14px) scale(.98); transition: transform .35s ease; }
.modal.is-open .modal-box { transform: translateY(0) scale(1); }

/* ---------------------------------------------------------------
   15. SCROLL REVEAL
   --------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
