/* ============================================================
   COOPERHAVEN — LUXURY VACATION RENTAL
   Design system: warm cream base, deep navy, antique gold
   Fonts: Cormorant Garamond (serif) + Inter (sans-serif)
   ============================================================

   Color palette:
     #F8F5F0  — warm ivory (page background)
     #FFFFFF  — white (card surfaces)
     #1C2B3A  — deep navy (headings, primary text, buttons)
     #B8972E  — antique gold (accent, dividers, hover)
     #C9A84C  — warm gold (lighter, hero use)
     #4A6741  — sage green (amenity pills)
     #8C8578  — warm stone (muted/secondary text)
     #E5DFD5  — parchment (borders)
     #111820  — near-black (footer)

   ============================================================ */


/* ── BASE ──────────────────────────────────────────────────── */

body
{
  background: #F8F5F0;
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #2C2C2C;
}

h1, h2, h3, h4, h5, h6
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #1C2B3A;
  font-weight: 600;
}

a
{
  color: #1C2B3A;
  text-decoration: none;
}

a:hover
{
  color: #B8972E;
}

.container
{
  max-width: 1100px;
}


/* ── BUTTONS ───────────────────────────────────────────────── */

.ch_btn_primary
{
  background: #1C2B3A;
  color: #F8F5F0;
  border: none;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 14px 34px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.ch_btn_primary:hover
{
  background: #B8972E;
  color: #FFFFFF;
  text-decoration: none;
}

.ch_btn_outline
{
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 14px 34px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
  line-height: 1.4;
}

.ch_btn_outline:hover
{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  color: #FFFFFF;
  text-decoration: none;
}

.ch_btn_outline_dark
{
  background: transparent;
  color: #8C8578;
  border: 1px solid #E5DFD5;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 26px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
  text-decoration: none;
}

.ch_btn_outline_dark:hover
{
  border-color: #1C2B3A;
  color: #1C2B3A;
  text-decoration: none;
}


/* ── NAV ───────────────────────────────────────────────────── */

.ch_nav
{
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E5DFD5;
}

.ch_nav_inner
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ch_nav_logo
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6em;
  font-weight: 600;
  color: #1C2B3A;
  letter-spacing: 0.3px;
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ch_nav_logo_text span
{
  color: #B8972E;
}

.ch_nav_logo:hover
{
  text-decoration: none;
  color: #1C2B3A;
}

.ch_nav_logo_mark
{
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
}

.ch_nav_logo_mark svg
{
  width: 40px;
  height: 40px;
  display: block;
  overflow: visible;
}

.ch_logo_mark_frame,
.ch_logo_mark_opening,
.ch_logo_mark_threshold,
.ch_logo_mark_roof
{
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ch_logo_mark_roof
{
  stroke: #B8972E;
  stroke-width: 2.6;
}

.ch_logo_mark_frame
{
  fill: none;
  stroke: #1C2B3A;
  stroke-width: 2.6;
}

.ch_logo_mark_opening
{
  stroke: #4A6741;
  stroke-width: 2.35;
}

.ch_logo_mark_threshold
{
  stroke: #C9A84C;
  stroke-width: 2.4;
}

.ch_nav_links
{
  display: flex;
  align-items: center;
  gap: 36px;
}

.ch_nav_links a
{
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #5A5650;
  text-decoration: none;
  transition: color 0.2s;
}

.ch_nav_links a:hover
{
  color: #B8972E;
  text-decoration: none;
}

.ch_nav_btn
{
  background: #1C2B3A !important;
  color: #F8F5F0 !important;
  border-radius: 3px !important;
  padding: 9px 22px !important;
  letter-spacing: 1.5px !important;
  transition: background 0.2s !important;
}

.ch_nav_btn:hover
{
  background: #B8972E !important;
  color: #FFFFFF !important;
}

.ch_mobile_menu_btn
{
  display: none;
  background: transparent;
  border: 1px solid #E5DFD5;
  border-radius: 3px;
  padding: 6px 10px;
  color: #1C2B3A;
  font-size: 1.3em;
  cursor: pointer;
  line-height: 1;
}

.ch_mobile_nav
{
  border-top: 1px solid #E5DFD5;
  background: #FFFFFF;
}

.ch_mobile_nav_links
{
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ch_mobile_nav_links a
{
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #5A5650;
  text-decoration: none;
}

.ch_mobile_nav_links a:hover
{
  color: #B8972E;
}


/* ── HERO ──────────────────────────────────────────────────── */

.ch_hero
{
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ch_hero_bg
{
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #111820 0%, #1C2B3A 30%, #2D4A3E 65%, #1B3320 100%);
  z-index: 0;
}

.ch_hero_pattern
{
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M40 40v-8h-2v8h-8v2h8v8h2v-8h8v-2h-8zM40 0v-8h-2v8h-8v2h8v8h2V2h8V0h-8zM0 40v-8h-2v8h-8v2h8v8h2v-8h8v-2H0zM0 0v-8h-2v8h-8v2h8v8h2V2h8V0H0z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.ch_hero_content
{
  position: relative;
  z-index: 2;
  padding: 80px 24px;
  width: 100%;
}

.ch_hero_eyebrow
{
  display: inline-block;
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 28px;
}

.ch_hero h1
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4.8em;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.08;
  margin-bottom: 26px;
  letter-spacing: -0.5px;
}

.ch_hero h1 .gold_word
{
  color: #C9A84C;
  font-style: italic;
}

.ch_hero_subtext
{
  font-size: 1.08em;
  color: rgba(255,255,255,0.58);
  max-width: 480px;
  margin-bottom: 44px;
  line-height: 1.75;
}

.ch_hero_cta_row
{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.ch_hero_property_links
{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.ch_property_anchor
{
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 3px;
  padding: 12px 20px;
  color: rgba(255,255,255,0.72);
  font-size: 0.82em;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.ch_property_anchor:hover
{
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.45);
  color: #C9A84C;
  text-decoration: none;
}

.ch_property_anchor_dot
{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C9A84C;
  flex-shrink: 0;
}


/* ── SECTION HEADER ELEMENTS ───────────────────────────────── */

.ch_section_label
{
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 12px;
  display: block;
}

.ch_section_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.8em;
  font-weight: 600;
  color: #1C2B3A;
  line-height: 1.15;
  margin-bottom: 14px;
}

.ch_section_subtitle
{
  font-size: 1em;
  color: #8C8578;
  line-height: 1.75;
}

.ch_section_divider
{
  width: 44px;
  height: 2px;
  background: #B8972E;
}


/* ── PROPERTIES SECTION ────────────────────────────────────── */

.ch_properties_section
{
  padding: 110px 0;
  background: #F8F5F0;
}


/* ── PROPERTY CARD ─────────────────────────────────────────── */

.property_card
{
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 5px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.property_card:hover
{
  transform: translateY(-7px);
  box-shadow: 0 24px 64px rgba(28, 43, 58, 0.11);
}

.property_card_image
{
  height: 290px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.garden_oasis_bg
{
  background-image: url('../images/garden_oasis/go_01.jpg');
  background-size: cover;
  background-position: center;
}

.black_ash_bg
{
  background-image: url('../images/ba_kitchen.png');
  background-size: cover;
  background-position: center;
}

.property_card_image_inner
{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 18px;
}

.property_img_badge
{
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.32);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 3px;
  padding: 5px 13px;
}

.property_card_body
{
  padding: 34px;
}

.property_card_meta
{
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C8578;
  margin-bottom: 10px;
}

.meta_dot
{
  margin: 0 7px;
  color: #C9A84C;
}

.property_card_name
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1em;
  font-weight: 600;
  color: #1C2B3A;
  margin-bottom: 6px;
  line-height: 1.15;
}

.property_card_tagline
{
  font-size: 0.88em;
  color: #8C8578;
  font-style: italic;
  margin-bottom: 0;
}

.property_card_gold_line
{
  width: 34px;
  height: 2px;
  background: #B8972E;
  margin: 18px 0;
}

.property_card_desc
{
  font-size: 0.92em;
  color: #5A5650;
  line-height: 1.78;
  margin-bottom: 26px;
}

.property_amenities
{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.amenity_pill
{
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #4A6741;
  background: rgba(74, 103, 65, 0.07);
  border: 1px solid rgba(74, 103, 65, 0.2);
  border-radius: 50px;
  padding: 4px 14px;
}


/* ── DIVIDER SECTION ───────────────────────────────────────── */

.ch_quote_section
{
  padding: 80px 24px;
  background: #1C2B3A;
  text-align: center;
}

.ch_quote_mark
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 5em;
  color: rgba(201,168,76,0.3);
  line-height: 0.5;
  margin-bottom: 20px;
  display: block;
}

.ch_quote_text
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9em;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.5;
}

.ch_quote_attribution
{
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-top: 24px;
}


/* ── IDEAL FOR SECTION ─────────────────────────────────────── */

.ch_idealfor_section
{
  padding: 100px 0;
  background: #FFFFFF;
  border-top: 1px solid #E5DFD5;
  border-bottom: 1px solid #E5DFD5;
}

.ch_idealfor_card
{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 16px;
  border-radius: 4px;
  transition: background 0.2s;
}

.ch_idealfor_card:hover
{
  background: #F8F5F0;
}

.ch_idealfor_icon
{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184,151,46,0.09);
  border: 1px solid rgba(184,151,46,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8972E;
  font-size: 1.1em;
  flex-shrink: 0;
}

.ch_idealfor_label
{
  font-size: 0.92em;
  font-weight: 500;
  color: #1C2B3A;
  margin-bottom: 4px;
  line-height: 1.3;
}

.ch_idealfor_sublabel
{
  font-size: 0.8em;
  color: #8C8578;
  line-height: 1.55;
}


/* ── BOOKING MODAL ─────────────────────────────────────────── */

.ch_modal_content
{
  border: none;
  border-radius: 5px;
  background: #FAFAF8;
  box-shadow: 0 32px 80px rgba(28, 43, 58, 0.22);
}

.ch_modal_header
{
  border-bottom: 1px solid #E5DFD5;
  padding: 24px 32px;
  background: #FFFFFF;
  border-radius: 5px 5px 0 0;
}

.ch_modal_header .modal-title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55em;
  font-weight: 600;
  color: #1C2B3A;
  margin-bottom: 2px;
}

.ch_modal_subtitle
{
  font-size: 0.78em;
  color: #8C8578;
  letter-spacing: 0.3px;
}

.ch_modal_property_name
{
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E5DFD5;
}

.ch_modal_body
{
  padding: 28px 32px;
}

.ch_modal_footer
{
  border-top: 1px solid #E5DFD5;
  padding: 20px 32px;
  background: #FFFFFF;
  border-radius: 0 0 5px 5px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.ch_form_label
{
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #8C8578;
  margin-bottom: 7px;
  display: block;
}

.ch_form_input
{
  width: 100%;
  border: 1px solid #E5DFD5;
  border-radius: 3px;
  padding: 10px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93em;
  color: #2C2C2C;
  background: #FFFFFF;
  outline: none;
  transition: border-color 0.2s;
  display: block;
}

.ch_form_input:focus
{
  border-color: #B8972E;
  box-shadow: 0 0 0 3px rgba(184,151,46,0.08);
}

textarea.ch_form_input
{
  resize: vertical;
  min-height: 90px;
}

.booking_success_check
{
  font-size: 2.2em;
  color: #4A6741;
  margin-bottom: 14px;
}

.booking_success_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6em;
  color: #1C2B3A;
  margin-bottom: 10px;
}

.booking_success_text
{
  font-size: 0.9em;
  color: #8C8578;
  line-height: 1.7;
}


/* ── CONTACT PAGE ──────────────────────────────────────────── */

.ch_contact_page
{
  padding: 80px 0 100px;
}

.ch_contact_header
{
  text-align: center;
  margin-bottom: 60px;
}

.ch_contact_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6em;
  font-weight: 600;
  color: #1C2B3A;
  margin: 10px 0 0;
}

.ch_contact_row
{
  align-items: flex-start;
}

.ch_contact_info_block
{
  background: #1C2B3A;
  border-radius: 4px;
  padding: 40px 32px;
  color: rgba(255,255,255,0.85);
}

.ch_contact_intro
{
  font-size: 0.95em;
  line-height: 1.75;
  color: rgba(255,255,255,0.7);
  margin: 0 0 32px;
}

.ch_contact_detail
{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.ch_contact_detail:last-child
{
  margin-bottom: 0;
}

.ch_contact_detail_icon
{
  width: 36px;
  height: 36px;
  background: rgba(184,151,46,0.18);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B8972E;
  font-size: 1em;
  flex-shrink: 0;
  margin-top: 2px;
}

.ch_contact_detail_label
{
  font-size: 0.72em;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 3px;
}

.ch_contact_detail_value
{
  font-size: 0.93em;
  color: rgba(255,255,255,0.85);
}

.ch_contact_detail_value a
{
  color: rgba(255,255,255,0.85);
}

.ch_contact_detail_value a:hover
{
  color: #B8972E;
}

.ch_contact_form_card
{
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 4px;
  padding: 44px 48px;
}

.ch_contact_form_footer
{
  margin-top: 28px;
  display: flex;
  justify-content: flex-end;
}

.ch_contact_success
{
  text-align: center;
  padding: 40px 0 20px;
}

.ch_contact_success_icon
{
  font-size: 3em;
  color: #4A6741;
  margin-bottom: 16px;
}

.ch_contact_success_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8em;
  font-weight: 600;
  color: #1C2B3A;
  margin-bottom: 10px;
}

.ch_contact_success_text
{
  color: #8C8578;
  font-size: 0.95em;
  margin-bottom: 28px;
}


/* ── FOOTER ────────────────────────────────────────────────── */

.ch_footer
{
  background: #111820;
  padding: 60px 24px 36px;
  color: rgba(255,255,255,0.42);
}

.ch_footer_logo
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.55em;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  letter-spacing: 0.3px;
  line-height: 1;
  display: inline-block;
  margin-bottom: 6px;
}

.ch_footer_logo span
{
  color: #C9A84C;
}

.ch_footer_logo:hover
{
  text-decoration: none;
  color: rgba(255,255,255,0.82);
}

.ch_footer_tagline
{
  font-size: 0.72em;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 22px;
}

.ch_footer_email
{
  color: #C9A84C;
  text-decoration: none;
}

.ch_footer_email:hover
{
  color: #D4B870;
  text-decoration: none;
}

.ch_footer_right
{
  text-align: right;
}

.ch_footer_nav_label
{
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 14px;
}

.ch_footer_prop_links
{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.ch_footer_prop_link
{
  color: rgba(255,255,255,0.45);
  font-size: 0.88em;
  text-decoration: none;
  transition: color 0.2s;
}

.ch_footer_prop_link:hover
{
  color: #C9A84C;
  text-decoration: none;
}

.ch_footer_divider
{
  border-color: rgba(255,255,255,0.07);
  margin: 32px 0 24px;
}

.ch_footer_copy
{
  font-size: 0.8em;
  color: rgba(255,255,255,0.25);
}


/* ── LEGAL PAGES ───────────────────────────────────────────── */

.legal_page
{
  padding: 78px 24px 86px;
  background: #F8F5F0;
}

.legal_back_link
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: #8C8578;
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.legal_back_link:hover
{
  color: #1C2B3A;
  text-decoration: none;
}

.legal_document
{
  max-width: 800px;
  margin: 0 auto;
  color: #3A3834;
}

.legal_document h1
{
  font-size: 3em;
  margin-bottom: 18px;
}

.legal_document h2
{
  font-family: 'Inter', Helvetica, sans-serif;
  font-size: 0.92em;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  margin: 42px 0 12px;
}

.legal_document p,
.legal_document li
{
  color: #5A5650;
  line-height: 1.85;
}

.legal_document ul,
.legal_document ol
{
  padding-left: 22px;
  margin: 14px 0 22px;
}

.legal_document code
{
  color: #1C2B3A;
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 3px;
  padding: 2px 6px;
}


/* ── TOAST NOTIFICATIONS ───────────────────────────────────── */

#toast_container
{
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast_message
{
  background: #1C2B3A;
  color: rgba(255,255,255,0.9);
  padding: 13px 20px;
  border-radius: 4px;
  font-size: 0.88em;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  opacity: 0;
  transform: translateX(16px);
  transition: opacity 0.3s, transform 0.3s;
  max-width: 320px;
}

.toast_message.show
{
  opacity: 1;
  transform: translateX(0);
}

.toast_message.toast_success
{
  background: #2D5A3D;
}

.toast_message.toast_warning
{
  background: #7A5A1A;
}

.toast_message.toast_info
{
  background: #1A3A5A;
}


/* ── PROPERTY CARD CTA ROW (home.php) ──────────────────────── */

.prop_card_cta_row
{
  display: flex;
  gap: 10px;
  align-items: center;
}

.prop_card_cta_row .ch_btn_primary
{
  flex: 1;
  text-align: center;
}

.prop_card_cta_row .ch_btn_outline_dark
{
  flex-shrink: 0;
  white-space: nowrap;
}


/* ── PROPERTY PAGE — HEADER (title + share/save) ──────────── */

.prop_header_section
{
  background: #F8F5F0;
  padding: 28px 0 20px;
}

.prop_header_top_row
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.prop_back_link
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74em;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(28,43,58,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.prop_back_link:hover
{
  color: #B8972E;
  text-decoration: none;
}

.prop_header_actions
{
  display: flex;
  gap: 2px;
}

.prop_action_btn
{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88em;
  font-weight: 500;
  color: #1C2B3A;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background 0.18s, color 0.18s;
  line-height: 1;
}

.prop_action_btn:hover
{
  background: rgba(28,43,58,0.07);
  color: #B8972E;
}

.prop_action_btn.saved i,
.prop_action_btn.saved span
{
  color: #B8972E;
}

.prop_header_badge
{
  display: inline-block;
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8972E;
  border: 1px solid rgba(184,151,46,0.35);
  border-radius: 3px;
  padding: 4px 14px;
  margin-bottom: 14px;
}

.prop_header_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.2em;
  font-weight: 600;
  color: #1C2B3A;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.5px;
  flex: 1;
  min-width: 0;
}

@media (max-width: 768px)
{
  .prop_header_title { font-size: 2em; }
}

/* ── PROPERTY PAGE — HERO ──────────────────────────────────── */

.prop_hero
{
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.prop_hero_bg
{
  position: absolute;
  inset: 0;
  z-index: 0;
}

.prop_hero_bg_garden_oasis
{
  background-image: url('../images/garden_oasis/go_01.jpg');
  background-size: cover;
  background-position: center;
}

.prop_hero_bg_black_ash
{
  background-image: url('../images/ba_living_room.png');
  background-size: cover;
  background-position: center;
}

.prop_hero_overlay
{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.22) 55%, transparent 100%);
  z-index: 1;
}

.prop_hero_content
{
  position: relative;
  z-index: 2;
  padding: 52px 24px 64px;
  width: 100%;
}

.back_link
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74em;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}

.back_link:hover
{
  color: #C9A84C;
  text-decoration: none;
}

.prop_hero_badge
{
  display: inline-block;
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A84C;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 3px;
  padding: 4px 14px;
  margin-bottom: 18px;
}

.prop_hero_name
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 4em;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.prop_hero_tagline
{
  font-size: 1.05em;
  color: rgba(255,255,255,0.62);
  margin-bottom: 28px;
  max-width: 520px;
  line-height: 1.65;
}

.prop_hero_meta
{
  font-size: 0.82em;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  margin-bottom: 36px;
}

.prop_hero_dot
{
  margin: 0 10px;
  color: #C9A84C;
}

.prop_hero_cta_row
{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}


/* ── PROPERTY PAGE — OVERVIEW BAR ─────────────────────────── */

.prop_overview_bar
{
  background: #1C2B3A;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.prop_overview_item
{
  padding: 26px 28px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.prop_overview_item_last
{
  border-right: none;
}

.prop_overview_label
{
  font-size: 0.66em;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 6px;
}

.prop_overview_value
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.18em;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.2;
}


/* ── PROPERTY PAGE — GALLERY ───────────────────────────────── */

.prop_gallery_section
{
  padding: 16px 0 0;
  background: #F8F5F0;
}

.prop_gallery_grid
{
  display: grid;
  grid-template-columns: 1.65fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 6px;
  border-radius: 5px;
  overflow: hidden;
}

.prop_gallery_grid .gallery_photo:nth-child(1)
{
  grid-row: 1 / 3;
}

.gallery_photo
{
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: filter 0.25s;
}

.gallery_photo:hover
{
  filter: brightness(0.88);
}

/* Garden Oasis gallery photos */
.go_photo_1  { background-image: url('../images/garden_oasis/go_01.jpg');  background-size: cover; background-position: center; }
.go_photo_2  { background-image: url('../images/garden_oasis/go_02.jpg');  background-size: cover; background-position: center; }
.go_photo_3  { background-image: url('../images/garden_oasis/go_03.jpg');  background-size: cover; background-position: center; }
.go_photo_4  { background-image: url('../images/garden_oasis/go_04.jpg');  background-size: cover; background-position: center; }
.go_photo_5  { background-image: url('../images/garden_oasis/go_05.jpg');  background-size: cover; background-position: center; }
.go_photo_6  { background-image: url('../images/garden_oasis/go_06.jpg');  background-size: cover; background-position: center; }
.go_photo_7  { background-image: url('../images/garden_oasis/go_07.jpg');  background-size: cover; background-position: center; }
.go_photo_8  { background-image: url('../images/garden_oasis/go_08.jpg');  background-size: cover; background-position: center; }
.go_photo_9  { background-image: url('../images/garden_oasis/go_09.jpg');  background-size: cover; background-position: center; }
.go_photo_10 { background-image: url('../images/garden_oasis/go_10.jpg');  background-size: cover; background-position: center; }
.go_photo_11 { background-image: url('../images/garden_oasis/go_11.jpg');  background-size: cover; background-position: center; }
.go_photo_12 { background-image: url('../images/garden_oasis/go_12.jpg');  background-size: cover; background-position: center; }
.go_photo_13 { background-image: url('../images/garden_oasis/go_13.jpg');  background-size: cover; background-position: center; }
.go_photo_14 { background-image: url('../images/garden_oasis/go_14.jpg');  background-size: cover; background-position: center; }
.go_photo_15 { background-image: url('../images/garden_oasis/go_15.jpg');  background-size: cover; background-position: center; }
.go_photo_16 { background-image: url('../images/garden_oasis/go_16.jpg');  background-size: cover; background-position: center; }
.go_photo_17 { background-image: url('../images/garden_oasis/go_17.jpg');  background-size: cover; background-position: center; }
.go_photo_18 { background-image: url('../images/garden_oasis/go_18.jpg');  background-size: cover; background-position: center; }
.go_photo_19 { background-image: url('../images/garden_oasis/go_19.jpg');  background-size: cover; background-position: center; }

/* Black Ash gallery photos */
.ba_photo_1 { background-image: url('../images/ba_living_room.png'); background-size: cover; background-position: center; }
.ba_photo_2 { background-image: url('../images/ba_kitchen.png'); background-size: cover; background-position: center; }
.ba_photo_3 { background-image: url('../images/ba_master_bedroom.png'); background-size: cover; background-position: center; }
.ba_photo_4 { background-image: url('../images/ba_patio.png'); background-size: cover; background-position: center; }
.ba_photo_5 { background-image: url('../images/ba_master_bath.png'); background-size: cover; background-position: center; }
.ba_photo_6 { background-image: url('../images/ba_dining.png'); background-size: cover; background-position: center; }
.ba_photo_7 { background-image: url('../images/ba_kitchen_island.png'); background-size: cover; background-position: center; }
.ba_photo_8 { background-image: url('../images/ba_bedroom_2.jpg'); background-size: cover; background-position: center; }
.ba_photo_9 { background-image: url('../images/ba_bedroom_3.jpg'); background-size: cover; background-position: center; }
.ba_photo_10 { background-image: url('../images/ba_foyer.png'); background-size: cover; background-position: center; }
.ba_photo_11 { background-image: url('../images/ba_loft.png'); background-size: cover; background-position: center; }
.ba_photo_12 { background-image: url('../images/ba_laundry.png'); background-size: cover; background-position: center; }

.gallery_view_all
{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 14px;
  background: linear-gradient(to top left, rgba(0,0,0,0.35) 0%, transparent 60%);
}

.gallery_view_all_btn
{
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.88);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 6px 14px;
  cursor: pointer;
  user-select: none;
}

.gallery_view_all_btn:hover
{
  background: rgba(0,0,0,0.55);
  color: #FFFFFF;
}


/* ── GALLERY LIGHTBOX ──────────────────────────────────────── */

.gallery_lightbox
{
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(12,16,20,0.97);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.gallery_lightbox_open
{
  display: flex;
}

.gallery_lightbox_header
{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.gallery_lightbox_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25em;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 0.3px;
}

.gallery_lightbox_close
{
  color: rgba(255,255,255,0.5);
  font-size: 1.1em;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 3px;
  line-height: 1;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}

.gallery_lightbox_close:hover
{
  color: #FFFFFF;
  background: rgba(255,255,255,0.1);
}

.gallery_lb_grid
{
  flex: 1;
  overflow-y: auto;
  padding: 28px 36px;
  display: block;
}

.gallery_lb_section
{
  margin-bottom: 40px;
}

.gallery_lb_section:last-child
{
  margin-bottom: 8px;
}

.gallery_lb_section_header
{
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.gallery_lb_section_photos
{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery_lb_thumb
{
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  background-size: cover;
  background-position: center;
}

.gallery_lb_thumb:hover
{
  transform: scale(1.025);
  box-shadow: 0 10px 32px rgba(0,0,0,0.55);
}

.gallery_lb_single
{
  flex: 1;
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery_lb_single_open
{
  display: flex;
}

.gallery_lb_photo_wrap
{
  flex: 1;
  height: 100%;
  max-width: 1040px;
  padding: 36px 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery_lb_photo
{
  width: 100%;
  min-height: 380px;
  max-height: 70vh;
  border-radius: 5px;
  background-size: cover;
  background-position: center;
  background-color: #1a1e22;
}

.gallery_lb_prev,
.gallery_lb_next
{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.42);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  flex-shrink: 0;
}

.gallery_lb_prev
{
  left: 20px;
}

.gallery_lb_next
{
  right: 20px;
}

.gallery_lb_prev:hover,
.gallery_lb_next:hover
{
  background: rgba(184,151,46,0.22);
  border-color: rgba(184,151,46,0.5);
  color: #C9A84C;
}

.gallery_lb_counter
{
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}

.gallery_lb_back_btn
{
  position: absolute;
  top: 14px;
  left: 20px;
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}

.gallery_lb_back_btn:hover
{
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}

@media (max-width: 768px)
{
  .gallery_lb_grid
  {
    padding: 18px 20px;
  }

  .gallery_lb_section_photos
  {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery_lb_photo_wrap
  {
    padding: 24px 68px;
  }
}

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

  .gallery_lb_photo_wrap
  {
    padding: 20px 56px;
  }

  .gallery_lb_prev
  {
    left: 10px;
  }

  .gallery_lb_next
  {
    right: 10px;
  }

  .gallery_lb_prev,
  .gallery_lb_next
  {
    width: 40px;
    height: 40px;
    font-size: 1em;
  }
}


/* ── PROPERTY PAGE — CONTENT SECTION ──────────────────────── */

.prop_content_section
{
  padding: 72px 0 100px;
  background: #F8F5F0;
}

.prop_section
{
  padding-bottom: 52px;
  margin-bottom: 52px;
  border-bottom: 1px solid #E5DFD5;
}

.prop_section:last-child
{
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.prop_section_label
{
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 10px;
  display: block;
}

.prop_section_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9em;
  font-weight: 600;
  color: #1C2B3A;
  margin-bottom: 20px;
  line-height: 1.2;
}

.prop_long_desc
{
  font-size: 0.95em;
  color: #4A4A42;
  line-height: 1.82;
  margin-bottom: 28px;
}

.prop_highlights_list
{
  list-style: none;
  padding: 0;
  margin: 0;
}

.prop_highlights_list li
{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #E5DFD5;
  font-size: 0.92em;
  color: #3A3A34;
  line-height: 1.5;
}

.prop_highlights_list li:last-child
{
  border-bottom: none;
}

.prop_highlights_list li i
{
  color: #B8972E;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.05em;
}


/* ── AMENITIES ─────────────────────────────────────────────── */

.prop_amenity_category
{
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 4px;
  padding: 20px 22px;
  height: 100%;
}

.prop_amenity_cat_header
{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E5DFD5;
}

.prop_amenity_cat_header i
{
  color: #B8972E;
  font-size: 1.1em;
}

.prop_amenity_cat_title
{
  font-size: 0.76em;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1C2B3A;
}

.prop_amenity_item
{
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.88em;
  color: #4A4A42;
  padding: 5px 0;
  line-height: 1.4;
}

.prop_amenity_item i
{
  color: #C9A84C;
  font-size: 1.3em;
  flex-shrink: 0;
  line-height: 1.2;
}


/* ── DETAILS GRID ──────────────────────────────────────────── */

.prop_details_grid
{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.prop_detail_item
{
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 4px;
  padding: 18px 22px;
}

.prop_detail_label
{
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #8C8578;
  margin-bottom: 7px;
}

.prop_detail_value
{
  font-size: 0.92em;
  font-weight: 500;
  color: #1C2B3A;
  line-height: 1.4;
}

.prop_location_note
{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82em;
  color: #8C8578;
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 3px;
  padding: 10px 16px;
}

.prop_location_note i
{
  color: #B8972E;
}


/* ── SIDEBAR ───────────────────────────────────────────────── */

.prop_sidebar_card
{
  background: #FFFFFF;
  border: 1px solid #E5DFD5;
  border-radius: 5px;
  padding: 28px;
  position: sticky;
  top: 88px;
}

.prop_sidebar_badge
{
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 8px;
}

.prop_sidebar_name
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5em;
  font-weight: 600;
  color: #1C2B3A;
  margin-bottom: 8px;
  line-height: 1.15;
}

.prop_sidebar_meta
{
  font-size: 0.8em;
  color: #8C8578;
  margin-bottom: 20px;
}

.prop_sidebar_amenities
{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.prop_sidebar_amenity_item
{
  font-size: 0.84em;
  color: #3A3A34;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prop_sidebar_amenity_item i
{
  color: #B8972E;
  font-size: 1em;
}

.prop_sidebar_divider
{
  border-color: #E5DFD5;
  margin: 18px 0;
}

.prop_sidebar_min_stay_row
{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
}

.prop_sidebar_detail_label
{
  font-size: 0.76em;
  color: #8C8578;
  letter-spacing: 0.3px;
}

.prop_sidebar_detail_value
{
  font-size: 0.84em;
  font-weight: 500;
  color: #1C2B3A;
}

.prop_sidebar_email_line
{
  margin-top: 14px;
  text-align: center;
  font-size: 0.78em;
  color: #8C8578;
}

.prop_sidebar_email_link
{
  color: #B8972E;
  text-decoration: none;
}

.prop_sidebar_email_link:hover
{
  color: #1C2B3A;
  text-decoration: none;
}


/* ── PROPERTY PAGE — NEIGHBORHOOD ─────────────────────────── */

.prop_neighborhood_section
{
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid #E5DFD5;
}

.prop_neighborhood_group
{
  margin-bottom: 34px;
}

.prop_neighborhood_group:last-child
{
  margin-bottom: 0;
}

.prop_neighborhood_group_label
{
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prop_neighborhood_group_label i
{
  font-size: 1.1em;
}

.prop_neighborhood_group_sub
{
  font-size: 0.95em;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: none;
  color: #8C8578;
}

.prop_neighborhood_item_plain
{
  font-size: 0.93em;
  color: #4A4A42;
  line-height: 1.82;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.prop_neighborhood_level_tag
{
  font-size: 0.78em;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #8C8578;
  min-width: 72px;
  flex-shrink: 0;
}

.prop_neighborhood_distance_row
{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.93em;
  color: #4A4A42;
  padding: 8px 0;
  border-bottom: 1px solid #F0EBE3;
  gap: 14px;
}

.prop_neighborhood_distance_row:first-child
{
  border-top: 1px solid #F0EBE3;
}

.prop_neighborhood_distance_time
{
  color: #8C8578;
  font-size: 0.88em;
  white-space: nowrap;
  flex-shrink: 0;
}

.prop_neighborhood_freeway_note
{
  font-size: 0.82em;
  color: #8C8578;
  margin-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 7px;
  line-height: 1.55;
}

.prop_neighborhood_freeway_note i
{
  color: #B8972E;
  flex-shrink: 0;
  margin-top: 1px;
}

.prop_neighborhood_dining
{
  font-size: 0.93em;
  color: #4A4A42;
  line-height: 1.82;
}


/* ── PROPERTY PAGE — MAP ───────────────────────────────────── */

.prop_map_wrap
{
  margin-top: 32px;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #E5DFD5;
  height: 400px;
}

.prop_map_caption
{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78em;
  color: #8C8578;
  margin-top: 10px;
}

.prop_map_caption i
{
  color: #B8972E;
  flex-shrink: 0;
}


/* ── PROPERTY PAGE — NEIGHBORHOOD INLINE ITEMS ────────────── */

.prop_nb_item
{
  display: flex;
  align-items: flex-start;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid #E5DFD5;
}

.prop_nb_item:last-child
{
  border-bottom: none;
  padding-bottom: 0;
}

.prop_nb_item_img
{
  width: 140px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}

.prop_nb_item_body
{
  flex: 1;
  min-width: 0;
}

.prop_nb_item_tag
{
  font-size: 0.65em;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 4px;
}

.prop_nb_item_name
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.12em;
  font-weight: 600;
  color: #1C2B3A;
  margin-bottom: 6px;
  line-height: 1.25;
}

.prop_nb_item_desc
{
  font-size: 0.86em;
  color: #5A5650;
  line-height: 1.72;
  margin: 0;
}

.prop_nb_item_badge
{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.67em;
  font-weight: 500;
  color: #4A6741;
  background: rgba(74,103,65,0.07);
  border: 1px solid rgba(74,103,65,0.22);
  border-radius: 50px;
  padding: 2px 10px;
  margin-top: 8px;
  width: fit-content;
}


/* ── PROPERTY PAGE — NEIGHBORHOOD CARDS ───────────────────── */

.prop_nb_section
{
  padding: 90px 0;
  background: #FFFFFF;
  border-top: 1px solid #E5DFD5;
}

.prop_nb_category
{
  margin-bottom: 72px;
}

.prop_nb_category:last-child
{
  margin-bottom: 0;
}

.prop_nb_category_header
{
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 30px;
  padding-bottom: 16px;
  border-bottom: 2px solid #E5DFD5;
}

.prop_nb_category_label
{
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #B8972E;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prop_nb_category_label i
{
  font-size: 1.15em;
}

.prop_nb_category_sub
{
  font-size: 0.78em;
  color: #8C8578;
  letter-spacing: 0.2px;
}

.prop_nb_card
{
  background: #F8F5F0;
  border-radius: 5px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.25s, transform 0.25s;
}

.prop_nb_card:hover
{
  box-shadow: 0 10px 36px rgba(28,43,58,0.10);
  transform: translateY(-3px);
}

.prop_nb_card_img
{
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.prop_nb_card_body
{
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prop_nb_card_tag
{
  font-size: 0.64em;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #B8972E;
  margin-bottom: 6px;
}

.prop_nb_card_name
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15em;
  font-weight: 600;
  color: #1C2B3A;
  margin-bottom: 8px;
  line-height: 1.25;
}

.prop_nb_card_desc
{
  font-size: 0.82em;
  color: #5A5650;
  line-height: 1.72;
  flex: 1;
}

.prop_nb_card_badge
{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.67em;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #4A6741;
  background: rgba(74,103,65,0.07);
  border: 1px solid rgba(74,103,65,0.22);
  border-radius: 50px;
  padding: 3px 12px;
  margin-top: 12px;
  width: fit-content;
}

.prop_nb_freeway_note
{
  margin-top: 18px;
  font-size: 0.82em;
  color: #8C8578;
  display: flex;
  align-items: center;
  gap: 7px;
}

.prop_nb_freeway_note i
{
  color: #B8972E;
}


/* ── PROPERTY PAGE — INLINE CONTACT FORM ──────────────────── */

.prop_inline_contact_section
{
  background: #1C2B3A;
  padding: 90px 0;
}

.prop_ic_eyebrow
{
  font-size: 0.7em;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A84C;
  display: block;
  margin-bottom: 14px;
}

.prop_ic_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.6em;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.12;
  margin-bottom: 10px;
}

.prop_ic_subtitle
{
  font-size: 0.92em;
  color: rgba(255,255,255,0.48);
  line-height: 1.72;
  max-width: 420px;
}

.prop_ic_label
{
  font-size: 0.68em;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 7px;
  display: block;
}

.prop_ic_input
{
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 3px;
  padding: 11px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93em;
  color: #FFFFFF;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  display: block;
}

.prop_ic_input::placeholder
{
  color: rgba(255,255,255,0.25);
}

.prop_ic_input:focus
{
  border-color: rgba(184,151,46,0.55);
  background: rgba(255,255,255,0.10);
}

textarea.prop_ic_input
{
  resize: vertical;
  min-height: 110px;
}

.prop_ic_success
{
  text-align: center;
  padding: 48px 20px;
}

.prop_ic_success_icon
{
  font-size: 2.4em;
  color: #C9A84C;
  margin-bottom: 18px;
}

.prop_ic_success_title
{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.9em;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.prop_ic_success_text
{
  font-size: 0.9em;
  color: rgba(255,255,255,0.48);
  line-height: 1.7;
}


/* ── RESPONSIVE ────────────────────────────────────────────── */

@media (max-width: 991px)
{
  .ch_hero h1
  {
    font-size: 3.6em;
  }

  .ch_section_title
  {
    font-size: 2.3em;
  }

  .ch_footer_right
  {
    text-align: left;
    margin-top: 8px;
  }

  .ch_footer_prop_links
  {
    align-items: flex-start;
  }
}

@media (max-width: 575px)
{
  .prop_map_wrap
  {
    height: 280px;
  }
}

@media (max-width: 767px)
{
  .ch_nav_logo
  {
    font-size: 1.45em;
    gap: 8px;
  }

  .ch_nav_logo_mark
  {
    width: 35px;
    height: 35px;
    flex-basis: 35px;
  }

  .ch_nav_logo_mark svg
  {
    width: 35px;
    height: 35px;
  }

  .ch_nav_links
  {
    display: none;
  }

  .ch_mobile_menu_btn
  {
    display: block;
  }

  .ch_contact_info_block
  {
    margin-bottom: 40px;
  }

  .ch_hero
  {
    min-height: 70vh;
  }

  .ch_hero h1
  {
    font-size: 2.8em;
  }

  .ch_hero_subtext
  {
    font-size: 0.98em;
  }

  .ch_hero_cta_row
  {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .ch_properties_section
  {
    padding: 70px 0;
  }

  .property_card_body
  {
    padding: 24px;
  }

  .ch_modal_body,
  .ch_modal_header,
  .ch_modal_footer
  {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ch_quote_text
  {
    font-size: 1.5em;
  }

  .ch_contact_page
  {
    padding: 60px 0 80px;
  }

  .ch_contact_title
  {
    font-size: 2em;
  }

  .ch_contact_row
  {
    margin-top: 40px;
  }
}
