/*
 * River & Sky Woodstock — restoration stylesheet.
 *
 * The site's original theme CSS and Beaver Builder / PowerPack generated
 * layout CSS were never captured by any archive (confirmed against the
 * Wayback Machine CDX index: this domain has exactly one crawl ever, the
 * root HTML document — no CSS, JS or image sub-resource was ever archived).
 * This file reconstructs the intended look from the page's markup/classes
 * and the one signal the archived HTML does confirm: the page only ever
 * loaded the "Assistant" Google Font (no serif was ever loaded, so headings
 * use the same family as body text below). Base grid behavior comes from
 * the real open-source Beaver Builder Lite plugin (assets/css/bb-core.css);
 * everything PowerPack-specific below (pp-*) is a best-effort recreation
 * kept close to that plugin's plain, unadorned defaults, not the original
 * file.
 */

:root {
  --navy: #122d38;
  --teal: #1f4959;
  --teal-light: #3a6e80;
  --river: #5e96a3;
  --river-light: #8cbec8;
  --gold: #c89b5c;
  --sand: #f4ede4;
  --cream: #faf6ef;
  --ink: #23343b;
  --muted: #5c6f76;
  --border: #e3dccf;
  --radius: 4px;
  --container: 1200px;
  --font-body: "Assistant", Calibri, "Segoe UI", Arial, sans-serif;
  --font-head: "Assistant", Calibri, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--navy); }

.fl-row-fixed-width, .fl-row-content { max-width: var(--container); }

/* ---------------------------------------------------------------- */
/* Header                                                            */
/* ---------------------------------------------------------------- */

.fl-builder-content-23 { background: var(--cream); border-bottom: 1px solid var(--border); }
.fl-builder-content-23 .fl-row { background: var(--cream); padding: 14px 0; }

.pp-menu-nav .menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}
.pp-advanced-menu-accordion-collapse .menu-item > a {
  color: var(--navy);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  padding: 6px 2px;
  transition: color .15s ease;
}
.pp-advanced-menu-accordion-collapse .menu-item > a:hover { color: var(--teal); }
.pp-menu-align-right .menu { justify-content: flex-end; }
.pp-menu-align-left .menu { justify-content: flex-start; flex-direction: column; align-items: flex-start; gap: 14px; }

.menu-item.register > a {
  background: var(--gold);
  color: var(--cream) !important;
  padding: 9px 20px;
  border-radius: var(--radius);
}
.menu-item.register > a:hover { background: var(--teal); }

.pp-advanced-menu-mobile { display: none; }
.pp-hamburger-box { position: relative; display: inline-block; width: 26px; height: 18px; }
.pp-hamburger-inner,
.pp-hamburger-inner::before,
.pp-hamburger-inner::after {
  position: absolute; left: 0; width: 26px; height: 2px; background: var(--navy);
}
.pp-hamburger-inner { top: 8px; }
.pp-hamburger-inner::before { content: ""; top: -8px; }
.pp-hamburger-inner::after { content: ""; top: 8px; }
.pp-advanced-menu-mobile-toggle {
  background: none; border: none; cursor: pointer; padding: 6px;
}

.pp-offcanvas-toggle-wrap { display: none; }
.pp-offcanvas-toggle { display: flex; align-items: center; justify-content: center; cursor: pointer; }

.pp-offcanvas-content-wrap { position: relative; }
.pp-offcanvas-content {
  position: fixed;
  top: 0; bottom: 0; left: 0;
  width: min(320px, 84vw);
  background: var(--navy);
  transform: translateX(-105%);
  transition: transform .25s ease;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: 8px 0 24px rgba(0,0,0,.2);
}
body.pp-offcanvas-open .pp-offcanvas-content { transform: translateX(0); }
body.pp-offcanvas-open { overflow: hidden; }
.pp-offcanvas-header { display: flex; justify-content: flex-end; padding: 16px; }
.pp-offcanvas-close { color: var(--cream); cursor: pointer; font-size: 20px; }
.pp-offcanvas-body { padding: 0 26px 26px; }
.pp-offcanvas-content .pp-menu-nav .menu { flex-direction: column; align-items: flex-start; gap: 20px; }
.pp-offcanvas-content .menu-item > a { color: var(--cream); font-size: 17px; }
.pp-offcanvas-content .menu-item.register > a { color: var(--navy) !important; }

/* ---------------------------------------------------------------- */
/* Visibility helpers (bb-theme responsive rows)                     */
/* ---------------------------------------------------------------- */

.fl-visible-mobile { display: none; }
.fl-visible-medium { display: none; }
.fl-visible-desktop, .fl-visible-large { display: block; }

@media (max-width: 992px) {
  .fl-visible-desktop, .fl-visible-large { display: none; }
  .fl-visible-medium { display: block; }
  .pp-menu-align-right .menu { display: none; }
  .pp-offcanvas-toggle-wrap { display: block; }
}
@media (max-width: 767px) {
  .fl-visible-medium { display: none; }
  .fl-visible-mobile { display: block; }
}
@media (min-width: 993px) {
  .pp-offcanvas-toggle-wrap { display: none; }
}

/* ---------------------------------------------------------------- */
/* Headings                                                           */
/* ---------------------------------------------------------------- */

.pp-heading-prefix {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.heading-title { margin: 0; font-family: var(--font-head); font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: -.01em; }
.pp-heading h1.heading-title { font-size: clamp(32px, 5vw, 54px); }
.pp-heading h2.heading-title { font-size: clamp(24px, 3.2vw, 34px); }
.pp-heading h4.heading-title { font-size: 20px; }
.pp-heading.pp-center { text-align: center; }
.pp-heading.pp-center + .pp-sub-heading { text-align: center; }
.pp-sub-heading { color: var(--muted); margin-top: 12px; font-size: 16px; max-width: 640px; }
.pp-heading.pp-center ~ .pp-sub-heading { margin-left: auto; margin-right: auto; }

/* ---------------------------------------------------------------- */
/* Buttons                                                            */
/* ---------------------------------------------------------------- */

.pp-button-wrap { margin-top: 22px; }
.pp-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--cream);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .02em;
  transition: background .15s ease, transform .15s ease;
}
.pp-button:hover { background: var(--navy); color: var(--cream); transform: translateY(-1px); }
.pp-button-icon { font-size: 13px; }

/* ---------------------------------------------------------------- */
/* Icon lists                                                        */
/* ---------------------------------------------------------------- */

.pp-icon-list-items { list-style: none; margin: 16px 0 0; padding: 0; }
.pp-icon-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
}
.pp-icon-list-item:last-child { border-bottom: none; }
.pp-list-item-icon { color: var(--teal); font-size: 17px; margin-top: 2px; flex: none; }
.pp-list-item-text { color: var(--ink); font-size: 16px; }

/* ---------------------------------------------------------------- */
/* FAQ accordion                                                     */
/* ---------------------------------------------------------------- */

.pp-faq { margin-top: 10px; border-top: 1px solid var(--border); }
.pp-faq-item { border-bottom: 1px solid var(--border); }
.pp-faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 4px;
  cursor: pointer;
}
.pp-faq-button-label { margin: 0; font-family: var(--font-head); font-size: 16px; color: var(--navy); font-weight: 600; }
.pp-faq-button-icon { color: var(--teal); flex: none; }
.pp-faq-button .pp-faq-close { display: none; }
.pp-faq-item.pp-faq-item-open .pp-faq-open { display: none; }
.pp-faq-item.pp-faq-item-open .pp-faq-close { display: inline; }
.pp-faq-content { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.pp-faq-item.pp-faq-item-open .pp-faq-content { max-height: 400px; }
.pp-faq-content-text { padding: 0 4px 20px; color: var(--muted); font-size: 15px; }
.pp-faq-content-text p { margin: 0 0 8px; }

/* ---------------------------------------------------------------- */
/* Photo / image modules                                             */
/* ---------------------------------------------------------------- */

.pp-photo-container { position: relative; }
.pp-photo-content-inner { position: relative; overflow: hidden; border-radius: var(--radius); }
.pp-overlay-bg { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,45,56,0) 55%, rgba(18,45,56,.35) 100%); pointer-events: none; }

/* ---------------------------------------------------------------- */
/* Gallery                                                            */
/* ---------------------------------------------------------------- */

.pp-photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.pp-photo-gallery-item { border-radius: var(--radius); overflow: hidden; position: relative; }
.pp-photo-gallery-content { position: relative; display: block; }
.pp-gallery-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.pp-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(18,45,56,.45);
  opacity: 0; transition: opacity .2s ease;
}
.pp-photo-gallery-content:hover .pp-gallery-overlay { opacity: 1; }
.pp-photo-gallery-content:hover .pp-gallery-img { transform: scale(1.06); }

/* ---------------------------------------------------------------- */
/* Rows / backgrounds                                                 */
/* ---------------------------------------------------------------- */

.fl-row-bg-color { background: var(--cream); }
.fl-row:nth-of-type(even).fl-row-bg-color { background: var(--sand); }

.fl-row-bg-photo {
  background-image: url("../images/new-development-woodstock.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 90px 0;
}
.fl-row-bg-photo .fl-row-content-wrap { position: relative; z-index: 2; }
.fl-row-bg-overlay .fl-row-content-wrap::before {
  content: "";
  position: absolute; inset: -90px 0;
  background: rgba(18,45,56,.72);
  z-index: -1;
}
.fl-row-bg-overlay .pp-heading .heading-title,
.fl-row-bg-overlay .pp-heading-prefix,
.fl-row-bg-overlay .pp-sub-heading { color: var(--cream); }
.fl-row-bg-overlay .pp-sub-heading { color: #dfe9ec; }

.fl-row-bg-parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.fl-row-content-wrap { padding: 46px 24px; }
.fl-row-full-width > .fl-row-content-wrap { padding-left: 0; padding-right: 0; }
.fl-row-content { margin: 0 auto; padding: 0 24px; }

.fl-col-group { display: flex; flex-wrap: wrap; gap: 36px; align-items: flex-start; }
.fl-col-group-align-center { align-items: center; }
.fl-col { flex: 1 1 320px; min-width: 0; }
.fl-col-small { flex: 1 1 260px; }

/* ---------------------------------------------------------------- */
/* Registration / Gravity Forms                                      */
/* ---------------------------------------------------------------- */

.pp-gf-content { margin-top: 20px; }
.gform_heading { margin-bottom: 14px; font-size: 13px; color: var(--muted); }
.gform_fields { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; list-style: none; padding: 0; margin: 0; }
.gfield { display: flex; flex-direction: column; gap: 6px; }
.gfield--width-full { grid-column: 1 / -1; }
.gfield_label, .gform-field-label { font-size: 13px; font-weight: 700; color: var(--navy); }
.gfield_required_asterisk { color: var(--gold); }
.ginput_container input,
.ginput_container select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--cream);
  color: var(--ink);
}
.ginput_container input:focus, .ginput_container select:focus {
  outline: 2px solid var(--river-light);
  outline-offset: 1px;
}
.gf_list_inline .ginput_container_radio { display: flex; gap: 20px; }
.gchoice { display: flex; align-items: center; gap: 6px; }
.gfield--type-honeypot { position: absolute; left: -9999px; }
.gform_footer { margin-top: 22px; }
.gform_button {
  background: var(--gold);
  color: var(--cream);
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s ease;
}
.gform_button:hover { background: var(--teal); }

@media (max-width: 600px) {
  .gform_fields { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------------- */
/* Footer                                                             */
/* ---------------------------------------------------------------- */

footer.fl-builder-content { background: var(--navy); color: #cfe0e5; }
footer .fl-row-bg-color { background: var(--navy); }
footer .heading-title { color: var(--cream); }
footer .pp-sub-heading, footer .fl-rich-text, footer .fl-rich-text p { color: #b9cbd0; font-size: 14px; }
footer a { color: var(--river-light); }
footer a:hover { color: var(--cream); }
footer .fl-rich-text a { color: var(--river-light); }
footer .fl-row-content-wrap { padding: 40px 24px; }
footer .fl-row:last-child { border-top: 1px solid rgba(255,255,255,.08); }
footer .fl-row:last-child .fl-rich-text p { margin: 0; font-size: 13px; color: #8ea3a9; }

/* ---------------------------------------------------------------- */
/* Map / html embed                                                   */
/* ---------------------------------------------------------------- */

.fl-html iframe { width: 100%; border-radius: var(--radius); }

/* ---------------------------------------------------------------- */
/* Misc                                                               */
/* ---------------------------------------------------------------- */

.fl-photo-img { border-radius: var(--radius); }
.fl-page-content { overflow-x: hidden; }
