/*
Theme Name: Gulph Creek Promenade
Theme URI: https://gulphcreekpromenade.com
Author: Gulph Creek Hotels
Author URI: https://gulphcreekhotels.com
Description: Official theme for Gulph Creek Promenade — King of Prussia, PA. v2.0 with refined design, smarter interactions, and accessibility improvements.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: gulph-creek-promenade
Tags: custom-logo, custom-menu, featured-images, theme-options, hotel, hospitality, mixed-use
*/

/* ═══════════════════════════════════════════════════════════
   CSS CUSTOM PROPERTIES
   ═══════════════════════════════════════════════════════════ */
:root {
  --white:        #FFFFFF;
  --off-white:    #F7F5F1;
  --sand:         #EDE8DF;
  --parchment:    #E4DDD1;
  --ink:          #1A1814;
  --slate:        #3D3A35;
  --muted:        #7A756C;
  --accent:       #2C5F4A;
  --accent-light: #4A8C6F;
  --accent-pale:  #EAF2EE;
  --warm:         #B8875A;
  --border:       rgba(26,24,20,0.10);
  --border-med:   rgba(26,24,20,0.18);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-serif:   'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --section-pad:  8rem 4rem;
  --max-w:        1200px;
  --nav-height:   72px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--accent); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════════ */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 200;
  width: 0%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--warm));
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(255,255,255,0);
  transition: background 0.5s var(--ease-out-expo), padding 0.5s var(--ease-out-expo),
              border-color 0.5s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  padding: 0.85rem 3rem;
  border-color: var(--border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.2rem; letter-spacing: 0.04em;
  color: var(--white); transition: color 0.4s;
  display: flex; align-items: center; gap: 0.4rem;
}
.site-nav.scrolled .nav-logo { color: var(--ink); }
.nav-logo .logo-accent { color: rgba(255,255,255,0.6); transition: color 0.4s; }
.site-nav.scrolled .nav-logo .logo-accent { color: var(--accent); }

.nav-menu { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-menu a {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); position: relative; padding-bottom: 3px;
  transition: color 0.3s var(--ease-out-expo);
}
.site-nav.scrolled .nav-menu a { color: var(--slate); }
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--accent);
  transition: width 0.4s var(--ease-out-expo);
}
.nav-menu a:hover { color: var(--accent) !important; }
.nav-menu a:hover::after { width: 100%; }
.nav-menu a.nav-cta {
  padding: 0.6rem 1.6rem !important;
  border: 1px solid rgba(255,255,255,0.55);
  color: var(--white) !important;
  transition: all 0.35s var(--ease-out-expo) !important;
}
.site-nav.scrolled .nav-menu a.nav-cta { border-color: var(--accent); color: var(--accent) !important; }
.nav-menu a.nav-cta:hover { background: var(--accent) !important; border-color: var(--accent); color: var(--white) !important; }
.nav-menu a.nav-cta::after { display: none; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: var(--white);
  margin: 5px 0; transition: all 0.35s var(--ease-out-expo);
  transform-origin: center;
}
.site-nav.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #233020 0%, #1b2a30 50%, #302418 100%);
}
.hero-bg-img {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center; opacity: 0.5;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,14,10,0.5) 0%, rgba(8,14,10,0.15) 50%, rgba(8,14,10,0.7) 100%);
}
/* Grain overlay for texture */
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  opacity: 0.03; pointer-events: none; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
}
.hero-content { position: relative; z-index: 2; max-width: 860px; padding: 0 2rem; }
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.35em; text-transform: uppercase; color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.3s forwards;
}
.hero-eyebrow .line { width: 34px; height: 1px; background: rgba(255,255,255,0.35); }
.hero-title {
  font-family: var(--font-display); font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 600; line-height: 0.93; color: var(--white);
  margin-bottom: 2rem; opacity: 0; animation: fadeUp 1s var(--ease-out-expo) 0.5s forwards;
}
.hero-title em { font-style: italic; font-weight: 400; color: rgba(255,255,255,0.68); }
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.18rem); font-weight: 300;
  color: rgba(255,255,255,0.68); line-height: 1.78;
  max-width: 580px; margin: 0 auto 3rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.7s forwards;
}
.hero-actions {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

/* Time-based greeting */
.hero-greeting {
  position: absolute; top: 6.5rem; left: 3rem; z-index: 3;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 1.4s forwards;
}
.hero-greeting .greeting-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light);
  animation: pulse 2.5s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3); }
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out-expo) 1.2s forwards;
  cursor: pointer;
}
.hero-scroll:hover { color: rgba(255,255,255,0.7); }
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.45), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.9; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS — with wipe-fill hover animation
   ═══════════════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 2.5rem; background: var(--white); color: var(--ink);
  border: 1px solid transparent; cursor: pointer;
  position: relative; overflow: hidden;
  transition: color 0.4s var(--ease-out-expo), border-color 0.4s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo); z-index: 0;
}
.btn-primary:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-primary:hover { color: var(--white); border-color: var(--accent); }
.btn-primary span { position: relative; z-index: 1; }

.btn-secondary {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.95rem 2.5rem; background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.45); cursor: pointer;
  transition: all 0.4s var(--ease-out-expo);
}
.btn-secondary:hover { border-color: var(--white); transform: translateY(-2px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.85rem 2rem; background: var(--ink); color: var(--white);
  border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: color 0.4s var(--ease-out-expo);
}
.btn-dark::before {
  content: ''; position: absolute; inset: 0;
  background: var(--accent); transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-out-expo); z-index: 0;
}
.btn-dark:hover::before { transform: scaleX(1); transform-origin: left; }
.btn-dark span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.85rem 2rem; background: transparent; color: var(--ink);
  border: 1px solid var(--border-med); cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.btn-white {
  display: inline-flex; align-items: center;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.8rem 2rem; background: var(--white); color: var(--accent);
  border: none; cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
}
.btn-white:hover { background: var(--ink); color: var(--white); }

.arrow-icon {
  display: inline-block;
  transition: transform 0.3s var(--ease-out-expo);
}
.btn-dark:hover .arrow-icon,
.btn-outline:hover .arrow-icon { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   BOOKING BAR
   ═══════════════════════════════════════════════════════════ */
.booking-bar-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 10;
}
.booking-bar-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.4rem 3rem;
  display: flex; align-items: center; gap: 2rem;
}
.booking-bar-label {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); white-space: nowrap;
  display: flex; align-items: center; gap: 0.5rem;
  flex-shrink: 0;
}
.booking-bar-label svg { color: var(--accent); }
.booking-bar-fields {
  display: flex; align-items: flex-end; gap: 1rem; flex: 1; flex-wrap: wrap;
}
.booking-bar-section .booking-field { flex: 1; min-width: 120px; }
.booking-bar-section .booking-field label {
  display: block; font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.35rem;
}
.booking-bar-section .booking-field select,
.booking-bar-section .booking-field input[type="date"] {
  width: 100%; padding: 0.7rem 0.85rem;
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 400;
  color: var(--ink); background: var(--off-white);
  border: 1px solid var(--border-med); outline: none;
  transition: border-color 0.25s;
  -webkit-appearance: none; appearance: none;
}
.booking-bar-section .booking-field select {
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%237A756C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.85rem center;
  padding-right: 2.2rem;
}
.booking-bar-section .booking-field select:focus,
.booking-bar-section .booking-field input[type="date"]:focus { border-color: var(--accent); }
.booking-bar-section .booking-field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer; opacity: 0.4;
}

.booking-bar-buttons {
  display: flex; gap: 0.5rem; flex-shrink: 0;
}
.booking-btn {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.65rem 1.4rem;
  background: var(--accent); color: var(--white);
  border: 1px solid var(--accent);
  cursor: pointer; text-align: left;
  transition: all 0.35s var(--ease-out-expo);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.booking-btn:hover { background: var(--ink); border-color: var(--ink); }
.booking-btn-alt {
  background: var(--white); color: var(--ink);
  border-color: var(--border-med);
}
.booking-btn-alt:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.booking-btn-label { line-height: 1.2; }
.booking-btn-sub {
  font-size: 0.55rem; font-weight: 400; letter-spacing: 0.08em;
  opacity: 0.6;
}

/* Sticky on scroll */
.booking-bar-section.sticky {
  position: fixed; top: 0; left: 0; right: 0; z-index: 95;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  animation: slideDown 0.4s var(--ease-out-expo);
}
.booking-bar-section.sticky + .marquee { margin-top: 72px; }
@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1024px) {
  .booking-bar-inner { padding: 1.2rem 2rem; gap: 1rem; flex-wrap: wrap; }
  .booking-bar-label { width: 100%; }
}
@media (max-width: 768px) {
  .booking-bar-inner { padding: 1.2rem 1.5rem; flex-direction: column; align-items: stretch; }
  .booking-bar-fields { flex-direction: column; }
  .booking-bar-section .booking-field { min-width: auto; }
  .booking-bar-buttons { flex-direction: column; }
  .booking-btn { text-align: center; padding: 0.8rem 1.4rem; }
  .booking-bar-section.sticky { position: relative; box-shadow: none; animation: none; }
}

/* ═══════════════════════════════════════════════════════════
   MARQUEE TICKER
   ═══════════════════════════════════════════════════════════ */
.marquee {
  overflow: hidden; white-space: nowrap;
  padding: 1.1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}
.marquee-inner { display: inline-flex; animation: marquee 35s linear infinite; }
.marquee:hover .marquee-inner { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--muted); padding: 0 3rem;
  display: inline-flex; align-items: center; gap: 1rem;
  transition: color 0.3s;
}
.marquee:hover .marquee-item { color: var(--slate); }
.marquee-item .sep {
  width: 5px; height: 5px; background: var(--accent); border-radius: 50%; flex-shrink: 0;
  transition: transform 0.3s;
}
.marquee:hover .marquee-item .sep { transform: scale(1.4); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════════════════════
   SECTION COMMONS
   ═══════════════════════════════════════════════════════════ */
.gcp-section { padding: var(--section-pad); position: relative; }
.section-inner { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
  content: ''; width: 26px; height: 1px; background: var(--accent);
  transition: width 0.6s var(--ease-out-expo);
}
.reveal.visible .section-label::before { width: 42px; }
.section-title {
  font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 600; line-height: 1.06; margin-bottom: 1.4rem; color: var(--ink);
}
.section-title em { font-style: italic; font-weight: 400; color: var(--muted); }
.section-desc {
  font-size: 1.02rem; color: var(--muted); font-weight: 300; line-height: 1.78; max-width: 580px;
}

/* ═══════════════════════════════════════════════════════════
   PROPERTIES / HOTELS
   ═══════════════════════════════════════════════════════════ */
.properties { background: var(--off-white); }
.properties-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3.5rem; flex-wrap: wrap; gap: 2rem;
}
.properties-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5px; background: var(--border);
}
.property-card {
  position: relative; min-height: 520px;
  overflow: hidden; cursor: pointer; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(160deg, #233020 0%, #1b2a30 50%, #302418 100%);
}
.property-card-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
  filter: brightness(0.75) saturate(0.88);
}
.property-card:hover .property-card-bg { transform: scale(1.06); filter: brightness(0.52) saturate(0.95); }
.property-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,16,12,0.95) 0%, rgba(10,16,12,0.4) 45%, rgba(10,16,12,0.15) 70%, transparent 100%);
}
.property-card-content {
  position: relative; z-index: 2; padding: 2.5rem; margin-top: auto;
}
.property-badge {
  display: inline-block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.28rem 0.7rem; border: 1px solid rgba(255,255,255,0.38); color: rgba(255,255,255,0.75);
  margin-bottom: 0.8rem; backdrop-filter: blur(4px);
}
.property-name {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.3rem; line-height: 1.08;
}
.property-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); font-weight: 300;
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo), margin 0.5s var(--ease-out-expo);
}
.property-card:hover .property-tagline { max-height: 80px; margin-bottom: 0.8rem; }
.property-specs { display: flex; gap: 1.5rem; margin-bottom: 1.2rem; flex-wrap: wrap; }
.property-spec { font-family: var(--font-body); font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.property-spec strong { color: rgba(255,255,255,0.85); font-weight: 600; display: block; font-size: 0.78rem; }
.property-amenities { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.amenity-pill {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.6rem; border: 1px solid rgba(255,255,255,0.18); color: rgba(255,255,255,0.5);
  transition: all 0.3s var(--ease-out-expo);
}
.property-card:hover .amenity-pill { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.property-links {
  display: flex; gap: 0.7rem;
  opacity: 1; transform: none;
  transition: all 0.5s var(--ease-out-expo) 0.1s;
}
.property-card:hover .property-links { opacity: 1; transform: translateY(0); }
.property-links a {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 1.2rem;
  transition: all 0.3s var(--ease-out-expo);
}
.prop-btn-book { background: var(--white); color: var(--ink); }
.prop-btn-book:hover { background: var(--accent); color: var(--white); }
.prop-btn-learn { border: 1px solid rgba(255,255,255,0.38); color: var(--white); }
.prop-btn-learn:hover { border-color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   DINING / RETAIL
   ═══════════════════════════════════════════════════════════ */
.dining { background: var(--white); }
.dining-header { text-align: center; margin-bottom: 4.5rem; }
.dining-header .section-label { justify-content: center; }
.dining-header .section-label::before { display: none; }
.dining-header .section-desc { margin: 0 auto; }
.dining-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border); border: 1px solid var(--border);
}
.dining-item {
  position: relative; min-height: 420px;
  overflow: hidden; cursor: pointer;
  display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(160deg, #1c2a18, #22180e);
}
.dining-item-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: transform 1s var(--ease-out-expo), filter 0.8s var(--ease-out-expo);
  filter: brightness(0.48) saturate(0.75);
}
.dining-item:hover .dining-item-bg { transform: scale(1.09); filter: brightness(0.32) saturate(0.85); }
.dining-item-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2.5rem; margin-top: auto;
}
.dining-number {
  font-family: var(--font-display); font-size: 5.5rem; font-weight: 600;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.1);
  position: absolute; top: 1.5rem; left: 2.5rem; line-height: 1;
  transition: -webkit-text-stroke-color 0.5s;
}
.dining-item:hover .dining-number { -webkit-text-stroke-color: rgba(255,255,255,0.2); }
.dining-cat {
  font-family: var(--font-body); font-size: 0.63rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 0.55rem;
}
.dining-name {
  font-family: var(--font-display); font-size: 2rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.25rem; line-height: 1.08;
}
.dining-address { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 300; margin-bottom: 0.2rem; }
.dining-phone  { font-size: 0.78rem; color: rgba(255,255,255,0.45); font-weight: 300; }
.dining-desc {
  font-size: 0.875rem; color: rgba(255,255,255,0.52); font-weight: 300; line-height: 1.6;
  max-height: 0; overflow: hidden;
  transition: max-height 0.6s var(--ease-out-expo), margin 0.5s var(--ease-out-expo);
}
.dining-item:hover .dining-desc { max-height: 100px; margin-top: 0.5rem; }
.dining-actions {
  display: flex; gap: 0.6rem; margin-top: 1.5rem; flex-wrap: wrap;
  opacity: 0; transform: translateX(-8px);
  transition: all 0.5s var(--ease-out-expo) 0.1s;
}
.dining-item:hover .dining-actions { opacity: 1; transform: translateX(0); }
.dining-action-btn {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.45rem 1rem; border: 1px solid rgba(255,255,255,0.35); color: var(--white);
  transition: all 0.3s var(--ease-out-expo);
}
.dining-action-btn:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.dining-action-btn.primary { background: var(--white); color: var(--ink); border-color: var(--white); }
.dining-action-btn.primary:hover { background: var(--accent); color: var(--white); }

/* ═══════════════════════════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════════════════════════ */
.events-section { background: var(--off-white); }
.events-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  max-width: var(--max-w); margin: 0 auto;
}
.event-row { border-bottom: 1px solid var(--border); transition: border-color 0.3s var(--ease-out-expo); display: block; }
.event-row:first-child { border-top: 1px solid var(--border); }
.event-row:hover { border-color: var(--accent); }
.event-row-inner {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 2rem; align-items: center;
  padding: 1.6rem 0;
  transition: padding 0.3s var(--ease-out-expo), background 0.3s;
}
.event-row:hover .event-row-inner { padding-left: 1rem; background: rgba(44,95,74,0.03); }
.event-date { font-family: var(--font-display); font-size: 2.2rem; font-weight: 600; color: var(--ink); line-height: 1; }
.event-date small {
  display: block; font-family: var(--font-body); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 0.2rem;
}
.event-info h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; margin-bottom: 0.2rem; color: var(--ink); }
.event-info p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.55; }
.event-tag {
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 0.85rem; border: 1px solid; white-space: nowrap;
}
.event-tag.community { border-color: var(--accent); color: var(--accent); }
.event-tag.dining    { border-color: var(--warm); color: var(--warm); }
.event-tag.seasonal  { border-color: var(--muted); color: var(--muted); }
.events-side { display: flex; flex-direction: column; }
.events-side-img { overflow: hidden; }
.events-side-img img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  filter: brightness(0.9) saturate(0.9);
  transition: transform 0.8s var(--ease-out-expo);
}
.events-side-img:hover img { transform: scale(1.04); }
.events-side-cta { background: var(--accent); padding: 2.5rem; color: var(--white); }
.events-side-cta h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin-bottom: 0.75rem; line-height: 1.1; }
.events-side-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 300; margin-bottom: 1.5rem; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   GROUP RFP SECTION
   ═══════════════════════════════════════════════════════════ */
.rfp-section { background: var(--ink); color: var(--white); overflow: hidden; }
.rfp-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start;
  max-width: var(--max-w); margin: 0 auto;
}
.rfp-visual { position: relative; }
.rfp-img-wrap { overflow: hidden; aspect-ratio: 3/4; }
.rfp-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.85) saturate(0.9);
  transition: transform 0.8s var(--ease-out-expo);
}
.rfp-img-wrap:hover img { transform: scale(1.04); }
.rfp-stats {
  display: flex; gap: 0; margin-top: 1.5px;
}
.rfp-stat {
  flex: 1; padding: 1.2rem 1.5rem;
  background: rgba(255,255,255,0.05);
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.rfp-stat:last-child { border-right: none; }
.rfp-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.8rem;
  font-weight: 600; color: var(--accent-light); line-height: 1;
  margin-bottom: 0.3rem;
}
.rfp-stat span { font-size: 0.62rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

.rfp-section .section-label { color: var(--accent-light); }
.rfp-section .section-label::before { background: var(--accent-light); }
.rfp-section .section-title { color: var(--white); }
.rfp-section .section-title em { color: rgba(255,255,255,0.45); }
.rfp-section .section-desc { color: rgba(255,255,255,0.55); }

/* RFP Form */
.rfp-form { margin-top: 2rem; }
.rfp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.rfp-field { display: flex; flex-direction: column; }
.rfp-field-full { margin-bottom: 1rem; }
.rfp-field label {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 0.35rem;
}
.rfp-field input, .rfp-field select, .rfp-field textarea {
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  color: var(--white); background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15); padding: 0.75rem 1rem;
  outline: none; transition: border-color 0.25s;
  width: 100%;
}
.rfp-field input::placeholder, .rfp-field textarea::placeholder { color: rgba(255,255,255,0.25); }
.rfp-field input:focus, .rfp-field select:focus, .rfp-field textarea:focus { border-color: var(--accent-light); }
.rfp-field select {
  -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.rfp-field select option { background: var(--ink); color: var(--white); }
.rfp-field textarea { resize: vertical; min-height: 80px; }

.rfp-submit {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 0.9rem 2rem; background: var(--accent-light); color: var(--white);
  border: none; cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
}
.rfp-submit:hover { background: var(--white); color: var(--ink); }

.rfp-contact {
  margin-top: 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.8rem; color: rgba(255,255,255,0.35); font-weight: 300;
  display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;
}
.rfp-contact a { color: var(--accent-light); text-decoration: underline; text-underline-offset: 3px; }
.rfp-contact-sep { color: rgba(255,255,255,0.15); }

@media (max-width: 1024px) {
  .rfp-grid { grid-template-columns: 1fr; gap: 3rem; }
  .rfp-visual { max-width: 500px; }
}
@media (max-width: 768px) {
  .rfp-form-row { grid-template-columns: 1fr; }
  .rfp-stats { flex-direction: column; }
  .rfp-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ═══════════════════════════════════════════════════════════
   LOCATION
   ═══════════════════════════════════════════════════════════ */
.location-section { background: var(--white); }
.location-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  max-width: var(--max-w); margin: 0 auto;
}
.location-visual { position: relative; }
.location-img-wrap { aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--border); }
.location-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(0.9);
  transition: transform 0.8s var(--ease-out-expo);
}
.location-img-wrap:hover img { transform: scale(1.04); }
.location-float {
  position: absolute; bottom: -2rem; right: -2rem;
  background: var(--white); border: 1px solid var(--border);
  padding: 2rem 2.5rem; box-shadow: 0 12px 40px rgba(0,0,0,0.08); max-width: 260px;
}
.stat-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 600; color: var(--accent); line-height: 1; }
.stat-label { font-size: 0.83rem; color: var(--muted); font-weight: 300; margin-top: 0.3rem; line-height: 1.45; }
.highlights { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 2rem; }
.highlight-tag {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.45rem 0.95rem; border: 1px solid var(--border-med); color: var(--slate);
  transition: all 0.3s var(--ease-out-expo); cursor: default;
}
.highlight-tag:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-pale); transform: translateY(-2px); }
.location-address { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }
.address-line {
  font-size: 0.86rem; color: var(--muted); font-weight: 300;
  display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.55rem; line-height: 1.5;
}
.address-line svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.address-line a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s; }
.address-line a:hover { color: var(--accent-light); }

/* ═══════════════════════════════════════════════════════════
   INTERACTIVE MAP HOTSPOTS
   ═══════════════════════════════════════════════════════════ */
.location-map-wrap {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border: 1px solid var(--border);
}
.location-map-wrap .location-img-wrap {
  position: absolute; inset: 0; aspect-ratio: auto;
  border: none;
}
.location-map-wrap .location-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.92) saturate(0.9);
  transition: transform 0.8s var(--ease-out-expo);
}
.location-map-wrap:hover .location-img-wrap img { transform: scale(1.02); }

.map-hotspot {
  position: absolute; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}
.hotspot-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 2.5px solid var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  position: relative; z-index: 2;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}
.map-hotspot:hover .hotspot-dot {
  transform: scale(1.25);
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
}
.hotspot-dot.hotspot-accent       { background: var(--accent); }
.hotspot-dot.hotspot-warm         { background: var(--warm); }
.hotspot-dot.hotspot-accent-light { background: var(--accent-light); }

.hotspot-ping {
  position: absolute; inset: 0;
  border-radius: 50%;
  opacity: 0; z-index: 1;
  animation: hotspotPing 2.5s ease-out infinite;
}
.hotspot-ping.hotspot-accent       { background: var(--accent); }
.hotspot-ping.hotspot-warm         { background: var(--warm); }
.hotspot-ping.hotspot-accent-light { background: var(--accent-light); }

@keyframes hotspotPing {
  0%   { transform: scale(0.5); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Tooltip */
.hotspot-tooltip {
  position: absolute; bottom: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
  padding: 1rem 1.2rem;
  min-width: 200px; max-width: 240px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s var(--ease-out-expo), transform 0.3s var(--ease-out-expo);
  z-index: 10;
  text-align: left;
}
.hotspot-tooltip::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--white);
}
.map-hotspot:hover .hotspot-tooltip {
  opacity: 1; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.hotspot-tooltip strong {
  display: block;
  font-family: var(--font-display); font-size: 1.1rem;
  font-weight: 600; color: var(--ink);
  margin-bottom: 0.3rem; line-height: 1.15;
}
.hotspot-tooltip span {
  display: block;
  font-family: var(--font-body); font-size: 0.7rem;
  font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.4rem;
}
.hotspot-tooltip small {
  display: block;
  font-family: var(--font-body); font-size: 0.76rem;
  font-weight: 300; color: var(--muted); line-height: 1.4;
}

/* Edge collision — flip tooltip below if near top */
.map-hotspot[style*="top: 3"],
.map-hotspot[style*="top: 2"],
.map-hotspot[style*="top: 1"] {
  /* These have enough room above, keep default */
}

/* On mobile, shrink tooltips */
@media (max-width: 768px) {
  .hotspot-tooltip { min-width: 160px; max-width: 190px; padding: 0.8rem 1rem; }
  .hotspot-tooltip strong { font-size: 0.95rem; }
  .hotspot-dot { width: 12px; height: 12px; border-width: 2px; }
  .map-hotspot { width: 34px; height: 34px; }
}

/* ═══════════════════════════════════════════════════════════
   NEWSLETTER CTA BAND
   ═══════════════════════════════════════════════════════════ */
.cta-band { background: var(--ink); padding: 6rem 4rem; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ''; position: absolute; inset: 0; opacity: 0.4;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(44,95,74,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(184,135,90,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.cta-band > div { position: relative; z-index: 1; }
.cta-band .section-label { color: rgba(255,255,255,0.45); justify-content: center; }
.cta-band .section-label::before { background: rgba(255,255,255,0.3); }
.cta-band .section-title { color: var(--white); }
.cta-band-desc { color: rgba(255,255,255,0.55); font-weight: 300; font-size: 1rem; max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.75; }
.email-form { display: flex; max-width: 420px; margin: 0 auto; border: 1px solid rgba(255,255,255,0.2); transition: border-color 0.3s; }
.email-form:focus-within { border-color: var(--accent-light); }
.email-form input[type="email"] {
  flex: 1; padding: 1rem 1.4rem; background: rgba(255,255,255,0.06);
  border: none; outline: none; color: var(--white);
  font-family: var(--font-body); font-size: 0.9rem;
}
.email-form input[type="email"]::placeholder { color: rgba(255,255,255,0.35); }
.email-form input[type="submit"] {
  padding: 1rem 1.6rem; background: var(--accent); color: var(--white);
  border: none; cursor: pointer; font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  white-space: nowrap; transition: all 0.35s var(--ease-out-expo);
}
.email-form input[type="submit"]:hover { background: var(--accent-light); }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
   ═══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 90;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--border-med);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: all 0.4s var(--ease-out-expo);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--accent); color: var(--white); border-color: var(--accent); transform: translateY(-2px); }
.back-to-top svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════════
   ACCESSIBILITY WIDGET — bottom left
   ═══════════════════════════════════════════════════════════ */
.a11y-widget {
  position: fixed; bottom: 2rem; left: 2rem; z-index: 91;
}
.a11y-toggle {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: all 0.35s var(--ease-out-expo);
  position: relative; z-index: 2;
}
.a11y-toggle:hover {
  background: var(--ink); transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}
.a11y-toggle svg { pointer-events: none; }

/* Panel */
.a11y-panel {
  position: absolute; bottom: calc(100% + 12px); left: 0;
  width: 280px; background: var(--white);
  border: 1px solid var(--border-med);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  opacity: 0; transform: translateY(10px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
  z-index: 1;
}
.a11y-panel.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}
.a11y-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid var(--border);
}
.a11y-panel-title {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
}
.a11y-panel-close {
  background: none; border: none; cursor: pointer; color: var(--muted);
  padding: 4px; display: flex; align-items: center; justify-content: center;
  transition: color 0.2s;
}
.a11y-panel-close:hover { color: var(--ink); }
.a11y-panel-body { padding: 1rem 1.2rem 1.2rem; }

/* Individual options */
.a11y-option {
  margin-bottom: 1rem;
}
.a11y-option:last-of-type { margin-bottom: 1.2rem; }
.a11y-option-label {
  display: block; font-size: 0.68rem; font-weight: 500;
  color: var(--slate); margin-bottom: 0.45rem;
}
.a11y-btn-group {
  display: flex; gap: 0; border: 1px solid var(--border-med);
}
.a11y-btn {
  flex: 1; padding: 0.5rem 0.4rem;
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  color: var(--slate); background: var(--white);
  border: none; border-right: 1px solid var(--border-med);
  cursor: pointer;
  transition: all 0.2s var(--ease-out-expo);
}
.a11y-btn:last-child { border-right: none; }
.a11y-btn:hover { background: var(--off-white); }
.a11y-btn.active {
  background: var(--accent); color: var(--white);
}

.a11y-reset-all {
  width: 100%; padding: 0.6rem;
  font-family: var(--font-body); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); background: var(--off-white);
  border: 1px solid var(--border); cursor: pointer;
  transition: all 0.25s var(--ease-out-expo);
}
.a11y-reset-all:hover { color: var(--ink); border-color: var(--border-med); }

/* ─── Accessibility mode overrides ─── */
/* High contrast */
html.a11y-high-contrast {
  --off-white: #FFFFFF;
  --sand: #F0F0F0;
  --muted: #333333;
  --slate: #111111;
  --border: rgba(0,0,0,0.25);
  --border-med: rgba(0,0,0,0.4);
}
html.a11y-high-contrast body { background: #fff; color: #000; }
html.a11y-high-contrast .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.8) 100%);
}
html.a11y-high-contrast .property-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.3) 50%, transparent 75%);
}
html.a11y-high-contrast .section-title em { color: var(--ink); }
html.a11y-high-contrast .hero-title em { color: rgba(255,255,255,0.9); }
html.a11y-high-contrast .hero-sub { color: rgba(255,255,255,0.85); }
html.a11y-high-contrast .hero-eyebrow { color: rgba(255,255,255,0.8); }

/* Reduce motion */
html.a11y-reduce-motion *,
html.a11y-reduce-motion *::before,
html.a11y-reduce-motion *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
}
html.a11y-reduce-motion .reveal,
html.a11y-reduce-motion .reveal-left,
html.a11y-reduce-motion .reveal-scale { opacity: 1; transform: none; }
html.a11y-reduce-motion .hero-eyebrow,
html.a11y-reduce-motion .hero-title,
html.a11y-reduce-motion .hero-sub,
html.a11y-reduce-motion .hero-actions,
html.a11y-reduce-motion .hero-scroll,
html.a11y-reduce-motion .hero-greeting { opacity: 1; transform: none; animation: none; }
html.a11y-reduce-motion .marquee-inner { animation: none; }
html.a11y-reduce-motion .hotspot-ping { animation: none; opacity: 0; }
html.a11y-reduce-motion html { scroll-behavior: auto; }

/* Highlight links */
html.a11y-highlight-links a {
  outline: 2px solid var(--accent) !important;
  outline-offset: 2px !important;
}
html.a11y-highlight-links a:focus {
  outline-width: 3px !important;
  outline-color: var(--warm) !important;
}

/* Font scale */
html.a11y-font-lg { font-size: 118.75%; }
html.a11y-font-xl { font-size: 137.5%; }

/* Responsive */
@media (max-width: 768px) {
  .a11y-widget { bottom: 1.5rem; left: 1.5rem; }
  .a11y-toggle { width: 40px; height: 40px; }
  .a11y-panel { width: 260px; }
}

/* ═══════════════════════════════════════════════════════════
   AI CHATBOT WIDGET
   ═══════════════════════════════════════════════════════════ */
.chat-widget {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 92;
  font-family: var(--font-body);
}
.chat-bubble {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
}
.chat-bubble:hover { background: var(--accent); transform: scale(1.06); }
.chat-bubble-badge {
  position: absolute; top: -4px; right: -4px;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--warm); color: var(--white);
  font-size: 0.6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  animation: pulse 2s ease infinite;
}
.chat-bubble-badge.hidden { display: none; }

/* Panel */
.chat-panel {
  position: absolute; bottom: calc(100% + 14px); right: 0;
  width: 380px; height: 520px;
  background: var(--white);
  border: 1px solid var(--border-med);
  box-shadow: 0 16px 50px rgba(0,0,0,0.15);
  display: flex; flex-direction: column;
  opacity: 0; transform: translateY(12px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo), transform 0.4s var(--ease-out-expo);
}
.chat-panel.open {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  background: var(--ink); padding: 1rem 1.3rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.chat-header-title {
  font-family: var(--font-serif); font-size: 0.95rem; color: var(--white);
}
.chat-header-title span { color: var(--accent-light); }
.chat-header-status {
  font-size: 0.6rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-top: 0.15rem;
  display: flex; align-items: center; gap: 0.4rem;
}
.chat-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-light);
}
.chat-minimize {
  background: none; border: none; color: rgba(255,255,255,0.4);
  cursor: pointer; padding: 4px;
  transition: color 0.2s;
}
.chat-minimize:hover { color: var(--white); }

/* Messages */
.chat-messages {
  flex: 1; overflow-y: auto; padding: 1.2rem;
  display: flex; flex-direction: column; gap: 0.8rem;
  scroll-behavior: smooth;
}
.chat-msg { display: flex; gap: 0.6rem; max-width: 92%; }
.chat-msg-bot { align-self: flex-start; }
.chat-msg-user { align-self: flex-end; flex-direction: row-reverse; }
.chat-msg-content {
  padding: 0.85rem 1.1rem; font-size: 0.86rem; font-weight: 300;
  line-height: 1.6; color: var(--slate);
}
.chat-msg-bot .chat-msg-content {
  background: var(--off-white); border: 1px solid var(--border);
}
.chat-msg-user .chat-msg-content {
  background: var(--accent); color: var(--white); border: 1px solid var(--accent);
}
.chat-msg-content p { margin-bottom: 0.5rem; }
.chat-msg-content p:last-child { margin-bottom: 0; }
.chat-msg-content a {
  color: var(--accent); text-decoration: underline; text-underline-offset: 2px; font-weight: 500;
}
.chat-msg-user .chat-msg-content a { color: rgba(255,255,255,0.9); }

/* Quick action buttons */
.chat-quick-actions {
  display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.6rem;
}
.chat-quick-btn {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.4rem 0.8rem; background: var(--white);
  border: 1px solid var(--border-med); color: var(--accent);
  cursor: pointer; transition: all 0.25s var(--ease-out-expo);
}
.chat-quick-btn:hover { background: var(--accent-pale); border-color: var(--accent); }

/* Typing indicator */
.chat-typing { display: flex; gap: 4px; align-items: center; padding: 0.85rem 1.1rem; }
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%; background: var(--muted);
  animation: typingDot 1.2s ease infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingDot {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-3px); }
}

/* Booking link in chat */
.chat-booking-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.5rem 1rem; background: var(--accent); color: var(--white) !important;
  text-decoration: none !important; margin-top: 0.5rem;
  transition: background 0.25s;
}
.chat-booking-link:hover { background: var(--ink); }

/* Input */
.chat-input-wrap {
  display: flex; border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.chat-input {
  flex: 1; padding: 0.9rem 1.2rem;
  font-family: var(--font-body); font-size: 0.88rem; font-weight: 300;
  color: var(--ink); background: var(--white);
  border: none; outline: none;
}
.chat-input::placeholder { color: var(--muted); }
.chat-send {
  padding: 0.9rem 1.2rem; background: none; border: none;
  color: var(--accent); cursor: pointer;
  transition: color 0.2s;
}
.chat-send:hover { color: var(--ink); }

/* Adjust back-to-top to not overlap chatbot */
.back-to-top { right: 5.5rem; }

@media (max-width: 768px) {
  .chat-widget { bottom: 1rem; right: 1rem; }
  .chat-bubble { width: 48px; height: 48px; }
  .chat-panel { width: calc(100vw - 2rem); right: -0.5rem; height: 460px; }
  .back-to-top { right: 4.5rem; bottom: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer { background: #0f110e; color: var(--white); padding: 5rem 4rem 3rem; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.footer-brand { font-family: var(--font-serif); font-size: 1.35rem; color: var(--white); margin-bottom: 1rem; }
.footer-brand .logo-accent { color: var(--accent-light); }
.footer-brand-desc { font-size: 0.86rem; color: rgba(255,255,255,0.38); font-weight: 300; line-height: 1.75; max-width: 300px; }
.footer-tagline { margin-top: 1.5rem; font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-light); }
.footer-heading { font-family: var(--font-body); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 1.5rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
  font-size: 0.86rem; color: rgba(255,255,255,0.48); font-weight: 300;
  transition: color 0.3s var(--ease-out-expo), padding-left 0.3s var(--ease-out-expo);
}
.footer-links a:hover { color: var(--white); padding-left: 0.3rem; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.76rem; color: rgba(255,255,255,0.28);
}
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.38); transition: all 0.3s var(--ease-out-expo); font-size: 0.75rem; font-weight: 600;
}
.footer-social a:hover { border-color: var(--accent-light); color: var(--accent-light); transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════════════
   BLOG / INTERIOR PAGES
   ═══════════════════════════════════════════════════════════ */
.interior-hero {
  position: relative; min-height: 55vh; display: flex; align-items: flex-end;
  padding: 9rem 4rem 4rem;
  background: linear-gradient(135deg, #1c2a18, #1b2a30); background-size: cover; background-position: center;
}
.interior-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,10,0.45), rgba(8,14,10,0.82)); }
.interior-hero-inner { position: relative; z-index: 2; max-width: var(--max-w); width: 100%; margin: 0 auto; }
.interior-title { font-family: var(--font-display); font-size: clamp(2.7rem, 6vw, 5rem); line-height: 1; margin: 0 0 1rem; color: var(--white); }
.interior-subtitle { max-width: 700px; color: rgba(255,255,255,0.6); font-size: 1.1rem; font-weight: 300; }
.interior-page-wrap { max-width: var(--max-w); margin: 0 auto; padding: 4rem 4rem 6rem; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-card { background: var(--off-white); border: 1px solid var(--border); overflow: hidden; transition: all 0.4s var(--ease-out-expo); display: block; }
.blog-card:hover { border-color: rgba(44,95,74,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.blog-card-img { aspect-ratio: 16/9; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out-expo); }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-content { padding: 2rem; }
.blog-card-meta { font-family: var(--font-body); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.8rem; }
.blog-card-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; margin-bottom: 0.8rem; line-height: 1.3; color: var(--ink); }
.blog-card-excerpt { font-size: 0.9rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
.blog-card-link { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-top: 1.5rem; transition: gap 0.3s var(--ease-out-expo); }
.blog-card:hover .blog-card-link { gap: 0.8rem; }
.single-post-content { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
.single-post-content h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; margin-bottom: 1rem; color: var(--ink); }
.single-post-content .post-meta { font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 2rem; }
.single-post-content p { font-size: 1.05rem; color: var(--slate); font-weight: 300; line-height: 1.85; margin-bottom: 1.5rem; }
.single-post-content h2 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; margin: 2rem 0 1rem; color: var(--ink); }
.single-post-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.single-post-content img { margin: 2rem 0; border: 1px solid var(--border); }
.single-post-content blockquote { border-left: 3px solid var(--accent); padding: 1rem 2rem; margin: 2rem 0; font-style: italic; color: var(--slate); background: var(--accent-pale); }

/* ═══════════════════════════════════════════════════════════
   HOTEL DETAIL PAGE
   ═══════════════════════════════════════════════════════════ */
.hotel-stats-bar {
  display: flex; justify-content: center; gap: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
}
.hotel-stat {
  padding: 1.4rem 2.5rem; text-align: center;
  border-right: 1px solid var(--border);
}
.hotel-stat:last-child { border-right: none; }
.hotel-stat strong {
  display: block; font-family: var(--font-display); font-size: 1.15rem;
  font-weight: 600; color: var(--ink); margin-bottom: 0.2rem;
}
.hotel-stat span { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }

.room-types-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5px; background: var(--border); margin-top: 2rem;
}
.room-type-card {
  background: var(--off-white); padding: 2rem;
  transition: border-color 0.3s;
}
.room-type-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.6rem; }
.room-type-header h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; color: var(--ink); }
.room-sleeps {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--border-med); padding: 0.2rem 0.55rem;
}
.room-type-card p { font-size: 0.88rem; color: var(--muted); font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.room-book-link {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); transition: gap 0.3s var(--ease-out-expo);
  display: inline-flex; gap: 0.3rem;
}
.room-book-link:hover { gap: 0.6rem; }

.amenities-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5px; background: var(--border); margin-top: 2rem;
}
.amenity-card {
  background: var(--white); padding: 2rem;
  transition: all 0.3s var(--ease-out-expo);
}
.amenity-card:hover { background: var(--accent-pale); }
.amenity-card h4 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.4rem;
}
.amenity-card p { font-size: 0.85rem; color: var(--muted); font-weight: 300; line-height: 1.55; }

.nearby-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}
.nearby-card {
  display: flex; gap: 1.2rem; align-items: flex-start;
  padding: 1.5rem; background: var(--off-white); border: 1px solid var(--border);
  transition: border-color 0.3s;
}
.nearby-card:hover { border-color: var(--accent); }
.nearby-time {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 600;
  color: var(--accent); white-space: nowrap; min-width: 60px;
}
.nearby-card h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--ink); margin-bottom: 0.2rem; }
.nearby-card p { font-size: 0.82rem; color: var(--muted); font-weight: 300; }

@media (max-width: 768px) {
  .hotel-stats-bar { flex-wrap: wrap; }
  .hotel-stat { flex: 1 1 50%; border-bottom: 1px solid var(--border); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL — ENHANCED
   ═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.95); transition: opacity 0.85s var(--ease-out-expo), transform 0.85s var(--ease-out-expo); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .dining-grid { grid-template-columns: 1fr 1fr; }
  .events-layout { grid-template-columns: 1fr; gap: 3rem; }
  .events-side { display: none; }
  .location-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-float { right: 1rem; bottom: 1rem; max-width: 220px; padding: 1.4rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .interior-page-wrap { padding: 4rem 2rem 5rem; }
  .hero-greeting { display: none; }
}
@media (max-width: 768px) {
  :root { --section-pad: 5rem 1.5rem; }
  .site-nav { padding: 1rem 1.5rem; }
  .site-nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; padding: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
  }
  .nav-menu.active { display: flex; }
  .nav-menu li { border-bottom: 1px solid var(--border); }
  .nav-menu a { color: var(--slate) !important; display: block; padding: 1rem 1.5rem !important; }
  .nav-toggle { display: block; }
  .properties-grid { grid-template-columns: 1fr; }
  .dining-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .cta-band { padding: 4rem 1.5rem; }
  .email-form { flex-direction: column; }
  .event-row-inner { grid-template-columns: 70px 1fr; }
  .event-tag { display: none; }
  .back-to-top { bottom: 1.5rem; right: 1.5rem; width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-scale { opacity: 1; transform: none; }
  .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-scroll, .hero-greeting { opacity: 1; transform: none; animation: none; }
  .marquee-inner { animation: none; }
  html { scroll-behavior: auto; }
}

/* ═══════════════════════════════════════════════════════════
   WPFORMS — DARK BACKGROUND (newsletter CTA band)
   ═══════════════════════════════════════════════════════════ */
.gcp-metform-wrap .mf-form .mf-field input[type="text"],
.gcp-metform-wrap .mf-form .mf-field input[type="email"],
.gcp-metform-wrap .mf-form .mf-field input[type="tel"],
.gcp-metform-wrap .mf-form .mf-field textarea,
.gcp-metform-wrap .mf-form .mf-field select {
  background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 0 !important; color: var(--white) !important; font-family: var(--font-body) !important;
  font-size: 0.95rem !important; font-weight: 300 !important; padding: 0.95rem 1.2rem !important;
  box-shadow: none !important; transition: border-color 0.25s !important;
}
.gcp-metform-wrap .mf-form .mf-field input::placeholder,
.gcp-metform-wrap .mf-form .mf-field textarea::placeholder { color: rgba(255,255,255,0.35) !important; }
.gcp-metform-wrap .mf-form .mf-field input:focus,
.gcp-metform-wrap .mf-form .mf-field textarea:focus { border-color: var(--accent-light) !important; outline: none !important; }
.gcp-metform-wrap .mf-form label.mf-field-label {
  font-family: var(--font-body) !important; font-size: 0.68rem !important; font-weight: 600 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important; color: rgba(255,255,255,0.5) !important; margin-bottom: 0.4rem !important;
}
.gcp-metform-wrap .mf-form .mf-submit-container button[type="submit"],
.gcp-metform-wrap .mf-form input[type="submit"] {
  background: var(--accent) !important; border: none !important; border-radius: 0 !important; color: var(--white) !important;
  font-family: var(--font-body) !important; font-size: 0.75rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important; padding: 1rem 2.5rem !important;
  cursor: pointer !important; transition: background 0.3s !important; box-shadow: none !important;
}
.gcp-metform-wrap .mf-form .mf-submit-container button[type="submit"]:hover,
.gcp-metform-wrap .mf-form input[type="submit"]:hover { background: var(--accent-light) !important; }
.gcp-metform-wrap .mf-success-message {
  background: rgba(255,255,255,0.08) !important; border: 1px solid rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.8) !important; font-family: var(--font-body) !important;
  border-radius: 0 !important; padding: 1.5rem 2rem !important;
}
.gcp-metform-wrap .mf-form .mf-field-email { margin-bottom: 0 !important; }
.gcp-metform-wrap.newsletter-inline .mf-form {
  display: flex; gap: 0; align-items: flex-end; border: 1px solid rgba(255,255,255,0.2); max-width: 480px; margin: 0 auto;
}
.gcp-metform-wrap.newsletter-inline .mf-form .mf-field-container { flex: 1; }
.gcp-metform-wrap.newsletter-inline .mf-form .mf-field { margin: 0 !important; }
.gcp-metform-wrap.newsletter-inline .mf-form .mf-field input[type="email"] { border: none !important; height: 54px !important; }
.gcp-metform-wrap.newsletter-inline .mf-form .mf-submit-container { margin: 0 !important; }
.gcp-metform-wrap.newsletter-inline .mf-form button[type="submit"] { height: 54px !important; white-space: nowrap !important; }
.gcp-metform-wrap.newsletter-inline .mf-form label { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   WPFORMS — LIGHT BACKGROUND (contact page)
   ═══════════════════════════════════════════════════════════ */
.gcp-metform-light .mf-form .mf-field input[type="text"],
.gcp-metform-light .mf-form .mf-field input[type="email"],
.gcp-metform-light .mf-form .mf-field input[type="tel"],
.gcp-metform-light .mf-form .mf-field textarea,
.gcp-metform-light .mf-form .mf-field select {
  background: var(--off-white) !important; border: 1px solid var(--border-med) !important;
  border-radius: 0 !important; color: var(--ink) !important; font-family: var(--font-body) !important;
  font-size: 0.95rem !important; font-weight: 300 !important; padding: 0.95rem 1.2rem !important;
  box-shadow: none !important; transition: border-color 0.25s !important;
}
.gcp-metform-light .mf-form .mf-field input::placeholder,
.gcp-metform-light .mf-form .mf-field textarea::placeholder { color: var(--muted) !important; }
.gcp-metform-light .mf-form .mf-field input:focus,
.gcp-metform-light .mf-form .mf-field textarea:focus { border-color: var(--accent) !important; outline: none !important; }
.gcp-metform-light .mf-form label.mf-field-label {
  font-family: var(--font-body) !important; font-size: 0.68rem !important; font-weight: 600 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important; color: var(--slate) !important; margin-bottom: 0.4rem !important;
}
.gcp-metform-light .mf-form .mf-submit-container button[type="submit"],
.gcp-metform-light .mf-form input[type="submit"] {
  background: var(--ink) !important; border: none !important; border-radius: 0 !important; color: var(--white) !important;
  font-family: var(--font-body) !important; font-size: 0.75rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important; padding: 1rem 2.5rem !important;
  cursor: pointer !important; transition: background 0.3s !important; box-shadow: none !important;
}
.gcp-metform-light .mf-form .mf-submit-container button[type="submit"]:hover { background: var(--accent) !important; }
.gcp-metform-light .mf-success-message {
  background: var(--accent-pale) !important; border: 1px solid rgba(44,95,74,0.25) !important;
  color: var(--accent) !important; font-family: var(--font-body) !important;
  border-radius: 0 !important; padding: 1.5rem 2rem !important;
}
.gcp-metform-light .mf-form .mf-field { margin-bottom: 1.4rem !important; }
.gcp-metform-light .mf-form .mf-field-error { font-family: var(--font-body) !important; font-size: 0.75rem !important; color: #c0392b !important; margin-top: 0.3rem !important; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE LAYOUT
   ═══════════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; max-width: 1000px; margin: 0 auto; }
.contact-property-card { padding: 1.8rem 2rem; border: 1px solid var(--border); background: var(--white); transition: border-color 0.3s; }
.contact-property-card:hover { border-color: rgba(44,95,74,0.3); }
.contact-property-badge {
  font-family: var(--font-body); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.5rem; border: 1px solid var(--border-med); display: inline-block; padding: 0.2rem 0.6rem;
}
.contact-property-name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--ink); margin-bottom: 1rem; line-height: 1.1; }
.contact-info-rows { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-info-row { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.86rem; color: var(--muted); font-weight: 300; line-height: 1.5; }
.contact-info-row svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.contact-info-row a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 768px) { .contact-layout { grid-template-columns: 1fr; gap: 3rem; } }

/* ═══════════════════════════════════════════════════════════
   GC FORMS — BRAND OVERRIDES
   Styles GC Forms plugin output to match the Gulph Creek theme.
   ═══════════════════════════════════════════════════════════ */
.gcp-form-wrap .gcf-form-wrap { max-width: none; }
.gcp-form-wrap .gcf-label {
  font-family: var(--font-body) !important; font-size: 0.62rem !important; font-weight: 600 !important;
  letter-spacing: 0.18em !important; text-transform: uppercase !important;
  color: rgba(255,255,255,0.45) !important; margin-bottom: 0.4rem !important;
}
.gcp-form-wrap .gcf-input {
  background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.18) !important;
  border-radius: 0 !important; color: var(--white) !important;
  font-family: var(--font-body) !important; font-size: 0.9rem !important; font-weight: 300 !important;
  padding: 0.8rem 1rem !important; transition: border-color 0.25s !important;
}
.gcp-form-wrap .gcf-input::placeholder { color: rgba(255,255,255,0.3) !important; }
.gcp-form-wrap .gcf-input:focus { border-color: var(--accent-light) !important; box-shadow: none !important; }
.gcp-form-wrap .gcf-submit-btn {
  background: var(--accent) !important; border: none !important; border-radius: 0 !important;
  color: var(--white) !important; font-family: var(--font-body) !important;
  font-size: 0.72rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important;
  padding: 0.9rem 2rem !important; cursor: pointer !important; transition: background 0.3s !important;
}
.gcp-form-wrap .gcf-submit-btn:hover { background: var(--accent-light) !important; }
.gcp-form-wrap .gcf-success { background: rgba(255,255,255,0.08) !important; border-color: rgba(255,255,255,0.15) !important; color: rgba(255,255,255,0.8) !important; border-radius: 0 !important; }

/* GC Forms — Light variant (contact page, off-white bg) */
.gcp-form-light .gcf-label { color: var(--slate) !important; }
.gcp-form-light .gcf-input {
  background: var(--off-white) !important; border-color: var(--border-med) !important;
  color: var(--ink) !important;
}
.gcp-form-light .gcf-input::placeholder { color: var(--muted) !important; }
.gcp-form-light .gcf-input:focus { border-color: var(--accent) !important; }
.gcp-form-light .gcf-submit-btn { background: var(--ink) !important; }
.gcp-form-light .gcf-submit-btn:hover { background: var(--accent) !important; }
.gcp-form-light .gcf-success { background: var(--accent-pale) !important; border-color: rgba(44,95,74,0.25) !important; color: var(--accent) !important; }

/* GC Forms inside RFP dark section */
.rfp-gcf-wrap .gcf-form-wrap { max-width: none; }
.rfp-gcf-wrap .gcf-field { margin-bottom: 14px !important; }
.rfp-gcf-wrap .gcf-label { color: rgba(255,255,255,0.4) !important; }
.rfp-gcf-wrap .gcf-input {
  background: rgba(255,255,255,0.06) !important; border-color: rgba(255,255,255,0.15) !important;
  color: var(--white) !important;
}
.rfp-gcf-wrap .gcf-input::placeholder { color: rgba(255,255,255,0.25) !important; }
.rfp-gcf-wrap .gcf-submit-btn { background: var(--accent-light) !important; }
.rfp-gcf-wrap .gcf-submit-btn:hover { background: var(--white) !important; color: var(--ink) !important; }

/* ═══════════════════════════════════════════════════════════
   METFORM — ADDITIONAL SELECTORS
   ═══════════════════════════════════════════════════════════ */
.gcp-wpforms-wrap .metform-form .elementor-field-group input[type="text"],
.gcp-wpforms-wrap .metform-form .elementor-field-group input[type="email"],
.gcp-wpforms-wrap .metform-form .elementor-field-group input[type="tel"],
.gcp-wpforms-wrap .metform-form .elementor-field-group textarea,
.gcp-wpforms-wrap .metform-form .elementor-field-group select,
.gcp-wpforms-wrap .metform-form input.metform-input,
.gcp-wpforms-wrap .metform-form textarea.metform-input {
  background: rgba(255,255,255,0.06) !important; border: 1px solid rgba(255,255,255,0.2) !important;
  border-radius: 0 !important; color: var(--white) !important; font-family: var(--font-body) !important;
  font-size: 0.95rem !important; font-weight: 300 !important; padding: 0.95rem 1.2rem !important; box-shadow: none !important;
}
.gcp-wpforms-wrap .metform-form input.metform-input::placeholder,
.gcp-wpforms-wrap .metform-form textarea.metform-input::placeholder { color: rgba(255,255,255,0.35) !important; }
.gcp-wpforms-wrap .metform-form input.metform-input:focus,
.gcp-wpforms-wrap .metform-form textarea.metform-input:focus { border-color: var(--accent-light) !important; outline: none !important; }
.gcp-wpforms-wrap .metform-form label,
.gcp-wpforms-wrap .metform-form .metform-label {
  font-family: var(--font-body) !important; font-size: 0.68rem !important; font-weight: 600 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase !important; color: rgba(255,255,255,0.5) !important; margin-bottom: 0.4rem !important;
}
.gcp-wpforms-wrap .metform-form button[type="submit"],
.gcp-wpforms-wrap .metform-form .metform-btn {
  background: var(--accent) !important; border: none !important; border-radius: 0 !important; color: var(--white) !important;
  font-family: var(--font-body) !important; font-size: 0.75rem !important; font-weight: 600 !important;
  letter-spacing: 0.14em !important; text-transform: uppercase !important; padding: 1rem 2.5rem !important;
  cursor: pointer !important; transition: background 0.3s !important; box-shadow: none !important;
}
.gcp-wpforms-wrap .metform-form button[type="submit"]:hover,
.gcp-wpforms-wrap .metform-form .metform-btn:hover { background: var(--accent-light) !important; }
.gcp-wpforms-wrap .metform-form .metform-success-message,
.gcp-wpforms-wrap .metform-form .mf-success-message {
  background: rgba(255,255,255,0.08) !important; border: 1px solid rgba(255,255,255,0.15) !important;
  color: rgba(255,255,255,0.8) !important; font-family: var(--font-body) !important;
  border-radius: 0 !important; padding: 1.5rem 2rem !important;
}
.gcp-wpforms-light .metform-form input.metform-input,
.gcp-wpforms-light .metform-form textarea.metform-input,
.gcp-wpforms-light .metform-form .elementor-field-group input,
.gcp-wpforms-light .metform-form .elementor-field-group textarea {
  background: var(--off-white) !important; border: 1px solid var(--border-med) !important; color: var(--ink) !important;
}
.gcp-wpforms-light .metform-form input.metform-input::placeholder,
.gcp-wpforms-light .metform-form textarea.metform-input::placeholder { color: var(--muted) !important; }
.gcp-wpforms-light .metform-form label,
.gcp-wpforms-light .metform-form .metform-label { color: var(--slate) !important; }
.gcp-wpforms-light .metform-form button[type="submit"],
.gcp-wpforms-light .metform-form .metform-btn { background: var(--ink) !important; }
.gcp-wpforms-light .metform-form button[type="submit"]:hover { background: var(--accent) !important; }
.gcp-wpforms-light .metform-form .metform-success-message {
  background: var(--accent-pale) !important; border-color: rgba(44,95,74,0.25) !important; color: var(--accent) !important;
}
