/* ============================================
   Wild Oak Salon Suites — Global Styles
   Mobile-first responsive design
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@300;400;500&family=Playfair+Display:wght@500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  --sage-dark: #4E5949;
  --sage-mid: #5C6757;
  --sage-light: #6A7665;
  --sage-button: #5A6456;
  --sage-muted: #9FAC9A;
  --cream-bg: #EAECE9;
  --cream-light: #F7F9F6;
  --cream-card: #F0F2EF;
  --cream-warm: #F4F2EB;
  --terracotta: #B96F63;
  --text-dark: #161616;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Lora", Georgia, serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  background-color: var(--cream-bg);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--sage-dark);
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 28px;
  text-align: center;
}

h3 {
  font-size: 21.6px;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  body { font-size: 18px; }
  h1 { font-size: 48px; }
  h2 { font-size: 40px; }
}

@media (min-width: 1024px) {
  h1 { font-size: 56px; }
  h2 { font-size: 48px; }
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 9999px;
  border: 2px solid var(--sage-button);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  text-align: center;
  min-width: 44px;
  min-height: 44px;
}

.btn-primary {
  background: var(--sage-button);
  color: var(--white);
}

.btn-primary:hover {
  background: #4a5648;
  border-color: #4a5648;
}

.btn-secondary {
  background: transparent;
  color: var(--sage-button);
}

.btn-secondary:hover {
  background: var(--sage-button);
  color: var(--white);
}

.btn-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--white);
  color: var(--sage-button);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 767px) {
  .btn {
    width: 100%;
    text-align: center;
  }
  .btn-group {
    flex-direction: column;
    align-items: stretch;
  }
}

/* --- Section Divider --- */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px auto 32px;
  max-width: 300px;
}

.section-divider::before,
.section-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sage-mid);
}

.section-divider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage-mid);
  flex-shrink: 0;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section, .section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  section, .section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  section, .section {
    padding: 100px 0;
  }
}

.bg-cream { background-color: var(--cream-bg); }
.bg-cream-light { background-color: var(--cream-light); }
.bg-cream-warm { background-color: var(--cream-warm); }
.bg-white { background-color: var(--white); }
.bg-sage { background-color: var(--sage-button); }
.bg-sage-muted { background-color: var(--sage-muted); }

.text-center { text-align: center; }
.text-white { color: var(--white); }

/* --- Cards --- */
.card {
  background: var(--cream-card);
  border: 1px solid #d8ddd5;
  border-radius: 14px;
  padding: 28px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* --- Icon Circles --- */
.icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--sage-button);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  flex-shrink: 0;
}

.icon-circle svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Check List --- */
.check-list {
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  font-weight: 400;
  font-size: 15px;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236A7665' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* --- Placeholder --- */
.placeholder {
  background: #FFF3CD;
  border: 1px dashed #D4A017;
  padding: 2px 8px;
  border-radius: 4px;
  font-style: italic;
  color: #856404;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e0e3dd;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--sage-dark);
  line-height: 1.2;
}

@media (max-width: 400px) {
  .logo-text { display: none; }
}

/* Desktop Nav */
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--sage-dark);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage-button);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sage-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  padding: 80px 32px 32px;
  transition: right var(--transition);
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav a {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--sage-dark);
  padding: 14px 0;
  border-bottom: 1px solid #e8ebe5;
}

.mobile-nav a:hover {
  color: var(--sage-button);
}

.mobile-nav .btn {
  margin-top: 24px;
  width: 100%;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1040;
}

.nav-overlay.open {
  display: block;
}

/* Body offset for fixed header */
body {
  padding-top: 68px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--sage-muted);
  color: var(--white);
  padding: 48px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 32px;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-logo span {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 500;
  font-size: 20px;
}

.footer-contact p {
  margin-bottom: 6px;
  font-size: 15px;
}

.footer-contact a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact a:hover {
  opacity: 0.85;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition);
}

.footer-social a:hover {
  opacity: 0.85;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.3);
  text-align: center;
  padding: 16px 20px;
  font-size: 14px;
  opacity: 0.85;
}

/* ============================================
   HERO SECTIONS
   ============================================ */

/* Split Hero (Home) */
.hero-split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 70vh;
}

@media (min-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
  }
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px 28px;
  min-height: 50vh;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-panel {
    padding: 60px 48px;
    min-height: auto;
  }
}

.hero-panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

.hero-panel-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 500px;
}

.hero-panel-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 28px;
}

@media (min-width: 768px) {
  .hero-panel-content h1 {
    font-size: 40px;
  }
}

@media (min-width: 1024px) {
  .hero-panel-content h1 {
    font-size: 48px;
  }
}

.hero-panel .check-list li {
  color: var(--white);
}

.hero-panel .check-list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%239FAC9A' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

.hero-panel .btn {
  margin-top: 24px;
}

/* Full-width Hero */
.hero-full {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero-full {
    min-height: 60vh;
    padding: 80px 20px;
  }
}

.hero-full-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-full-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
}

.hero-full-content h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero-full-content p {
  font-size: 18px;
  margin-bottom: 24px;
  opacity: 0.95;
}

/* Scroll Arrow */
.scroll-arrow {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s ease infinite;
}

.scroll-arrow svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
  opacity: 0.7;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   IMAGE CARDS (Home Welcome)
   ============================================ */
.image-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.image-card:hover img {
  transform: scale(1.05);
}

.image-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
}

.image-card-overlay h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 4px;
}

.image-card-overlay p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}

/* ============================================
   FEATURE CARDS (Why Choose)
   ============================================ */
.feature-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 14px;
  border: 1px solid #e0e3dd;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--sage-mid);
  line-height: 1.6;
}

/* ============================================
   NOW LEASING CARD
   ============================================ */
.leasing-card {
  background: var(--white);
  border: 1px solid #d8ddd5;
  border-radius: 16px;
  padding: 40px 28px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.leasing-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 20px 0;
}

.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 400;
  color: var(--sage-dark);
}

.badge svg {
  width: 18px;
  height: 18px;
  stroke: var(--sage-light);
  fill: none;
  stroke-width: 2.5;
}

/* ============================================
   PHOTO GALLERY
   ============================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}

@media (min-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
  stroke: var(--white);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ============================================
   TEAM PROFILES (About)
   ============================================ */
.team-profile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}

@media (min-width: 768px) {
  .team-profile {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }
  .team-profile.reverse {
    grid-template-columns: 1fr 300px;
  }
  .team-profile.reverse .team-photo {
    order: 2;
  }
}

.team-photo img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 14px;
  object-fit: cover;
  aspect-ratio: 3/4;
}

.team-info h3 {
  font-size: 28px;
  margin-bottom: 4px;
}

.team-info .title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--sage-light);
  margin-bottom: 16px;
}

.team-info p {
  line-height: 1.7;
}

/* ============================================
   DIRECTORY CARDS (Find a Pro)
   ============================================ */
.pro-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e0e3dd;
  text-align: center;
}

.pro-card-img {
  width: 100%;
  aspect-ratio: 1;
  background: var(--cream-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Initials-based avatar — shown when no photo_url is provided */
.pro-initials-avatar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pro-initials-avatar span {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1;
  letter-spacing: -1px;
  user-select: none;
}

.pro-card-body {
  padding: 20px;
}

.pro-card-body h3 {
  margin-bottom: 4px;
}

.pro-card-body .specialty {
  font-size: 14px;
  color: var(--sage-light);
  font-weight: 500;
  margin-bottom: 4px;
}

.pro-card-body .suite-num {
  font-size: 13px;
  color: var(--sage-muted);
  margin-bottom: 12px;
}

.pro-card-body p {
  font-size: 14px;
  margin-bottom: 16px;
}

.pro-tenant-name {
  font-size: 13px;
  color: var(--sage-muted);
  margin-bottom: 2px;
}

.pro-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--cream-card);
  color: var(--sage-dark);
  transition: background var(--transition), color var(--transition);
}

.social-icon:hover {
  background: var(--sage-button);
  color: var(--white);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.social-icon-sm {
  display: inline-flex;
  align-items: center;
  color: var(--sage-muted);
  transition: color var(--transition);
}

.social-icon-sm:hover {
  color: var(--sage-dark);
}

.social-icon-sm svg {
  width: 16px;
  height: 16px;
}

.tenant-list-socials {
  display: flex;
  gap: 8px;
  margin-top: 2px;
}

/* Pro card CTA buttons */
.pro-card-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.btn-book-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--sage-button);
  color: var(--white);
  border: 2px solid var(--sage-button);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform 0.15s ease;
  width: 100%;
  text-align: center;
}

.btn-book-now:hover {
  background: #4a5648;
  border-color: #4a5648;
  transform: translateY(-1px);
}

.btn-book-now svg {
  flex-shrink: 0;
}

.btn-outline-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
  background: transparent;
  color: var(--sage-button);
  border: 1.5px solid var(--sage-button);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  width: 100%;
  text-align: center;
}

.btn-outline-sm:hover {
  background: var(--sage-button);
  color: var(--white);
}

.btn-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-category {
  margin-bottom: 32px;
}

.faq-category h3 {
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--sage-dark);
}

.faq-item {
  background: var(--white);
  border: 1px solid #e0e3dd;
  border-radius: 10px;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: "Lora", Georgia, serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  cursor: pointer;
  text-align: left;
  min-height: 44px;
}

.faq-question:hover {
  background: var(--cream-light);
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--sage-mid);
  fill: none;
  stroke-width: 2;
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--sage-mid);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
}

.contact-info h2 {
  text-align: left;
  margin-bottom: 16px;
}

.contact-info p {
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 15px;
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--sage-button);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.contact-form {
  background: var(--white);
  padding: 32px;
  border-radius: 14px;
  border: 1px solid #e0e3dd;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--sage-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: "Lora", Georgia, serif;
  font-size: 15px;
  border: 1px solid #d0d5cc;
  border-radius: 8px;
  background: var(--cream-light);
  color: var(--text-dark);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-button);
  box-shadow: 0 0 0 3px rgba(90,100,86,0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.form-success {
  display: none;
  background: #d4edda;
  color: #155724;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  margin-top: 16px;
}

/* ============================================
   GOOGLE MAP
   ============================================ */
.map-embed {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

@media (min-width: 768px) {
  .map-embed { height: 400px; }
}

/* ============================================
   SUITE TABLE
   ============================================ */
.suite-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 24px 0;
}

.suite-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.suite-table th,
.suite-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid #e0e3dd;
}

.suite-table th {
  background: var(--sage-button);
  color: var(--white);
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.suite-table tr:hover {
  background: var(--cream-light);
}

.size-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
}

.size-small { background: #e8ede6; color: var(--sage-dark); }
.size-standard { background: #dce3d9; color: var(--sage-dark); }
.size-medium { background: #c8d5c4; color: var(--sage-dark); }
.size-large { background: #b0c4ab; color: #3a4536; }
.size-xl { background: var(--sage-muted); color: var(--white); }

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: var(--sage-button);
  text-align: center;
  padding: 60px 20px;
}

@media (min-width: 768px) {
  .cta-section { padding: 80px 20px; }
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  max-width: 500px;
  margin: 0 auto 24px;
}

/* ============================================
   AMENITY CARDS (Lease a Suite)
   ============================================ */
.amenity-card {
  background: var(--white);
  border: 1px solid #e0e3dd;
  border-radius: 14px;
  padding: 28px 24px;
  text-align: center;
}

.amenity-card h3 {
  margin-bottom: 12px;
}

.amenity-card p {
  font-size: 15px;
  color: var(--sage-mid);
  line-height: 1.6;
}

/* ============================================
   FLOOR PLAN
   ============================================ */
.floorplan-img {
  max-width: 100%;
  border-radius: 14px;
  border: 1px solid #e0e3dd;
  margin: 0;
  display: block;
  width: 100%;
}

/* ============================================
   INTERACTIVE FLOOR PLAN OVERLAY
   ============================================ */
.floorplan-container {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 24px auto;
  border-radius: 14px;
  overflow: hidden;
}

/* --- Suite Hotspots --- */
.suite-hotspot {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-height: 32px;
  padding: 3px 4px;
  gap: 1px;
  border-radius: 6px;
  font-family: "Lora", Georgia, serif;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  z-index: 1;
  overflow: hidden;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.hotspot-suite-num {
  font-size: 9px;
  font-weight: 600;
  opacity: 0.8;
  line-height: 1;
}

.hotspot-name {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  max-width: 100%;
  white-space: nowrap;
}

/* Leased suite */
.suite-hotspot.suite-leased {
  background: rgba(90, 100, 86, 0.7);
  color: var(--white);
  border: 2px solid var(--sage-button);
}

.suite-hotspot.suite-leased:hover,
.suite-hotspot.suite-leased:focus {
  background: rgba(90, 100, 86, 0.9);
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  z-index: 3;
}

/* Available suite */
.suite-hotspot.suite-available {
  background: rgba(255, 255, 255, 0.4);
  color: var(--sage-mid);
  border: 2px dashed var(--sage-muted);
}

.suite-hotspot.suite-available:hover,
.suite-hotspot.suite-available:focus {
  background: rgba(185, 111, 99, 0.12);
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translate(-50%, -50%) scale(1.08);
  z-index: 3;
}

/* --- Tooltip --- */
.suite-tooltip {
  position: absolute;
  background: var(--white);
  border: 1px solid #e0e3dd;
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  z-index: 10;
  pointer-events: none;
  min-width: 190px;
  max-width: 260px;
  font-size: 14px;
}

.suite-tooltip h4 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--sage-dark);
}

.suite-tooltip .tooltip-specialty {
  color: var(--sage-light);
  font-size: 13px;
  margin-bottom: 4px;
}

.suite-tooltip .tooltip-bio {
  color: var(--text-dark);
  font-size: 13px;
  line-height: 1.4;
  margin-bottom: 6px;
}

.suite-tooltip .tooltip-suite {
  color: var(--sage-muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.suite-tooltip .tooltip-cta {
  color: var(--terracotta);
  font-size: 13px;
  font-weight: 500;
  margin-top: 4px;
}

/* --- Legend --- */
.floorplan-legend {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-top: 16px;
  font-size: 14px;
  font-family: "Lora", Georgia, serif;
  color: var(--sage-mid);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.legend-swatch {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  display: inline-block;
}

.legend-swatch.leased {
  background: rgba(90, 100, 86, 0.7);
  border: 2px solid var(--sage-button);
}

.legend-swatch.available {
  background: rgba(255, 255, 255, 0.4);
  border: 2px dashed var(--sage-muted);
}


/* ============================================
   TENANT LIST (below floor plan)
   ============================================ */
.tenant-list-heading {
  text-align: center;
  margin: 40px 0 20px;
  font-family: "Playfair Display", Georgia, serif;
  color: var(--sage-dark);
}

.tenant-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 12px;
}

.tenant-list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  transition: box-shadow 0.2s;
}

.tenant-list-card:hover {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.tenant-list-leased {
  background: var(--white);
  border: 1px solid #e0e3dd;
}

.tenant-list-available {
  background: var(--cream-card);
  border: 1px dashed var(--sage-muted);
}

.tenant-list-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tenant-list-suite {
  font-size: 12px;
  color: var(--sage-muted);
  font-weight: 500;
}

.tenant-list-name {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--sage-dark);
}

.tenant-list-specialty {
  font-size: 13px;
  color: var(--sage-light);
}

.tenant-list-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--sage-button);
  text-decoration: none;
  padding: 6px 14px;
  border: 1px solid var(--sage-button);
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.tenant-list-link:hover {
  background: var(--sage-button);
  color: var(--white);
}

.tenant-list-inquire {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.tenant-list-inquire:hover {
  background: var(--terracotta);
  color: var(--white);
}


/* ============================================
   SKELETON LOADING STATE
   ============================================ */
.skeleton-card {
  pointer-events: none;
}

.skeleton-card .pro-card-img,
.skeleton-card .skeleton-img {
  background: #e0e3dd;
}

.skeleton-text {
  background: #e0e3dd;
  border-radius: 4px;
  margin-bottom: 10px;
}

.skeleton-card {
  animation: skeleton-pulse 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}


/* ============================================
   PRO CARD — TENANT PHOTOS
   ============================================ */
.pro-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pro-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
}

.pro-empty-state h3 {
  font-family: "Playfair Display", Georgia, serif;
  margin-bottom: 12px;
  color: var(--sage-dark);
}

.pro-empty-state p {
  margin-bottom: 24px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================
   RESPONSIVE — FLOOR PLAN & TENANT LIST
   ============================================ */
@media (max-width: 767px) {
  .suite-hotspot {
    width: 48px;
    min-height: 22px;
    padding: 2px 3px;
    border-width: 1px;
  }

  .hotspot-suite-num {
    font-size: 6px;
  }

  .hotspot-name {
    font-size: 6px;
  }

  .suite-tooltip {
    min-width: 150px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .floorplan-legend {
    gap: 16px;
    font-size: 13px;
  }

  .tenant-list-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .suite-hotspot {
    width: 40px;
    min-height: 18px;
    padding: 1px 2px;
  }

  .hotspot-suite-num {
    font-size: 5.5px;
  }

  .hotspot-name {
    display: none;
  }
}

/* ============================================
   UTILITIES
   ============================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
  line-height: 1.7;
}

/* ============================================
   DESIGN FIXES
   ============================================ */

/* FIX 1: Body padding-top for fixed header (~68px tall) */
body {
  padding-top: 68px;
}

/* FIX 2: Remove extra section padding from hero sections */
section.hero-split {
  padding: 0;
}

/* FIX 3: hero-full background coverage + no double padding */
.hero-full {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

/* FIX 4: Hero overlay div (about.html & any page using a separate overlay div) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  z-index: 0;
}

/* FIX 5: .hero-content — white, positioned above overlay, works in both panel + full heroes */
.hero-panel .hero-content,
.hero-full .hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.hero-panel .hero-content {
  max-width: 520px;
}

.hero-full .hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* FIX 6: All headings inside hero content must be white */
.hero-panel .hero-content h1,
.hero-panel .hero-content h2,
.hero-full .hero-content h1,
.hero-full .hero-content h2 {
  color: var(--white);
  margin-bottom: 20px;
}

/* FIX 7: Hero subtext/paragraph readable on photo */
.hero-full .hero-content p,
.hero-panel .hero-content p,
.hero-subtext {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  margin-bottom: 28px;
}

/* FIX 8: Checklist in hero (index.html split panels) */
.checklist {
  list-style: none;
  margin: 16px 0 24px;
}

.checklist li {
  color: var(--white);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
}

.checkmark {
  color: var(--sage-muted);
  flex-shrink: 0;
}

/* FIX 9: Section divider — auto-generate dot so empty divs work too */
.section-divider:not(:has(.dot))::before {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sage-mid);
}

/* Since we already use ::before/::after for lines, make empty dividers use a centered dot trick */
.section-divider:empty,
.section-divider:not(:has(.dot)) {
  position: relative;
  height: 8px;
  display: flex;
  align-items: center;
  max-width: 280px;
  margin: 16px auto 32px;
}

.section-divider:not(:has(.dot))::before,
.section-divider:not(:has(.dot))::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--sage-mid);
  display: block;
}

/* dot in center for empty dividers */
.section-divider:not(:has(.dot)) {
  gap: 12px;
}

.section-divider:not(:has(.dot))::after {
  /* second line via ::after */
}

/* FIX 10: FAQ hero text must be white */
.faq-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.faq-hero p {
  color: rgba(255, 255, 255, 0.9);
}

/* FIX 11: Image cards — ensure h3 inside .card-grid uses overlay when properly structured */
.image-card .image-card-overlay h3 {
  color: var(--white);
  font-size: 20px;
  margin: 0;
}

/* FIX 12: hero-full without inline gradient still darkens */
.hero-full:not([style*="linear-gradient"]) {
  position: relative;
}

.hero-full:not([style*="linear-gradient"])::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
