/* ============================================
   BRIAN COOPER REAL ESTATE TEAM
   Luxury Minimalist Website — BEM Edition
   ============================================ */

:root {
  --black: #1a1a1a;
  --white: #ffffff;
  --off-white: #f8f7f5;
  --light-gray: #e8e6e3;
  --mid-gray: #999;
  --dark-gray: #555;
  --gold: #D4A843;
  --gold-light: #e8d8b8;
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  --transition: all 0.3s ease;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark-gray);
  background: var(--white);
  line-height: 1.6;
  letter-spacing: 0.3px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--black);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 { font-size: 3.5rem; letter-spacing: -1px; }
h2 { font-size: 2.5rem; letter-spacing: -0.5px; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--dark-gray); }
a { color: var(--black); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }

/* ============================================
   CONTAINER
   ============================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HEADER & NAV
   ============================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 3rem;
  transition: var(--transition);
  background: transparent;
}
.header--scrolled {
  background: var(--white);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 0.75rem 3rem;
}

.nav {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}
.header--scrolled .nav__logo img { height: 50px; }

.nav__links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav__link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.nav__link:hover,
.nav__link--active {
  color: var(--white);
}
.header--scrolled .nav__link {
  color: var(--dark-gray);
}
.header--scrolled .nav__link:hover,
.header--scrolled .nav__link--active {
  color: var(--black);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 20px;
  position: relative;
  cursor: pointer;
}
.nav__toggle span,
.nav__toggle span::before,
.nav__toggle span::after {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  position: absolute;
  transition: var(--transition);
}
.nav__toggle span { top: 50%; transform: translateY(-50%); }
.nav__toggle span::before { content: ''; top: -8px; }
.nav__toggle span::after { content: ''; top: 8px; }
.header--scrolled .nav__toggle span,
.header--scrolled .nav__toggle span::before,
.header--scrolled .nav__toggle span::after {
  background: var(--black);
}

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; height: 100vh;
  background: var(--black);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 5rem 3rem 3rem;
  gap: 1.5rem;
  transition: right 0.4s ease;
}
.mobile-nav--open { right: 0; }

.mobile-nav__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.mobile-nav__link:hover { color: var(--white); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  overflow: hidden;
}

.hero__content {
  z-index: 2;
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 2rem;
}

.hero__tagline {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   INNER HERO (non-homepage pages)
   ============================================ */
.inner-hero {
  padding: 10rem 2rem 4rem;
  background: var(--black);
  text-align: center;
}
.inner-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.inner-hero p { color: rgba(255,255,255,0.5); font-size: 1.1rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  background: var(--gold);
  color: var(--black);
}
.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212,168,67,0.3);
  color: var(--black);
}
.btn--dark {
  background: var(--black);
  color: var(--white);
}
.btn--dark:hover {
  background: var(--dark-gray);
  color: var(--white);
}

/* ============================================
   STATS
   ============================================ */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 5rem 2rem;
  flex-wrap: wrap;
}

.stat { text-align: center; }

.stat__number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--black);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.stat__label {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ============================================
   FEATURED / SPLIT SECTION
   ============================================ */
.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.featured__image {
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

.featured__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem;
}

.featured__content h2 { margin-bottom: 1.5rem; }
.featured__content p { line-height: 1.8; margin-bottom: 2rem; }

.subtitle {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 6rem 2rem;
}

.section--dark {
  background: var(--black);
  color: var(--white);
}
.section--dark h2 { color: var(--white); }
.section--dark p { color: rgba(255,255,255,0.5); }

.text-center { text-align: center; }

/* ============================================
   CARD GRID
   ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: var(--white);
  transition: var(--transition);
  overflow: hidden;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.card__image {
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-color: var(--light-gray);
}

.card__content { padding: 1.5rem; }

.card__tag {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}

.card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.card__price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
}

/* ============================================
   CTA
   ============================================ */
.cta {
  background: var(--black);
  padding: 6rem 2rem;
  text-align: center;
  color: var(--white);
}
.cta h2 { color: var(--white); margin-bottom: 1.5rem; }
.cta p { color: rgba(255,255,255,0.5); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  padding: 5rem 2rem 2rem;
  color: var(--white);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.footer__brand img {
  height: 60px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
}

.footer__heading {
  font-family: var(--font-body);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}

.footer__link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
a.footer__link:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

.footer__legal {
  display: flex;
  gap: 2rem;
}
.footer__legal a {
  color: rgba(255,255,255,0.3);
  font-size: 0.75rem;
}
.footer__legal a:hover { color: rgba(255,255,255,0.6); }

/* ============================================
   BROKERAGE BAR
   ============================================ */
.brokerage-bar {
  background: var(--off-white);
  padding: 1.25rem 2rem;
  border-top: 1px solid var(--light-gray);
}

.brokerage-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.brokerage-bar__logo {
  height: 28px;
  width: auto;
}

.brokerage-bar__text {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--dark-gray);
}

/* ============================================
   LISTING TABS & GRID
   ============================================ */
.listing-tabs {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.listing-tab {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  cursor: pointer;
  padding-bottom: 6px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  transition: var(--transition);
}
.listing-tab:hover,
.listing-tab--active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.listing-card { transition: var(--transition); }
.listing-card:hover { transform: translateY(-4px); }

.listing-card__image {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--off-white);
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.listing-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.listing-card:hover .listing-card__image img { transform: scale(1.04); }

.listing-card__status {
  position: absolute;
  top: 1rem; left: 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  z-index: 2;
}
.listing-card__status--active { background: var(--black); color: var(--white); }
.listing-card__status--sold { background: var(--white); color: var(--black); border: 1px solid var(--light-gray); }
.listing-card__status--pending { background: var(--gold); color: var(--black); }

.listing-card__neighborhood {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.3rem;
}
.listing-card__address {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--black);
  margin-bottom: 0.3rem;
}
.listing-card__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 0.5rem;
}
.listing-card__details {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}

/* ============================================
   TEAM
   ============================================ */
.team-lead { text-align: center; margin-bottom: 4rem; }
.team-lead__photo-placeholder,
.team-member__photo-placeholder {
  background: var(--off-white);
  border: 2px dashed var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--mid-gray);
  font-size: 0.8rem;
}
.team-lead__photo-placeholder { width: 280px; height: 340px; margin: 0 auto 2rem; }
.team-member__photo-placeholder { width: 100%; aspect-ratio: 3/4; margin-bottom: 1.25rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.team-member { text-align: center; }
.team-member h3 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-member__title {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.75rem;
}
.team-member__bio {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

/* ============================================
   SERVICES
   ============================================ */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}
.service-split--reverse { direction: rtl; }
.service-split--reverse > * { direction: ltr; }

.service-split__image {
  background-size: cover;
  background-position: center;
  background-color: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem;
}

/* ============================================
   VIDEOS
   ============================================ */
.video-hero {
  position: relative;
  aspect-ratio: 16/9;
  max-width: 900px;
  margin: 0 auto 4rem;
  background: var(--off-white);
  border: 2px dashed var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.video-card__thumbnail {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--off-white);
  margin-bottom: 1rem;
  overflow: hidden;
}

.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 50px; height: 50px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-card__play::after {
  content: '';
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent white;
  margin-left: 3px;
}

.video-card__category {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.3rem;
}
.video-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--black);
}

/* ============================================
   PRESS
   ============================================ */
.press-logos {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.press-logo-placeholder {
  width: 140px; height: 50px;
  background: var(--off-white);
  border: 1px dashed var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--mid-gray);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.press-card {
  border: 1px solid var(--light-gray);
  padding: 2rem;
  transition: var(--transition);
}
.press-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--off-white);
}
.contact-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.contact-form textarea { resize: vertical; min-height: 140px; }

/* ============================================
   CONTENT PAGES
   ============================================ */
.page-content {
  padding: 8rem 2rem 4rem;
  max-width: 800px;
  margin: 0 auto;
}
.page-content h1 { margin-bottom: 2rem; text-align: center; }
.page-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.8rem; }
.page-content p { line-height: 1.8; }
.page-content ul, .page-content ol { margin: 0 0 1.5rem 1.5rem; line-height: 1.8; }
.page-content li { margin-bottom: 0.5rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .featured { grid-template-columns: 1fr; }
  .featured__image { min-height: 350px; }
  .featured__content { padding: 3rem; }
  .card-grid, .listing-grid, .team-grid, .video-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
  .service-split { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
  .hero__title { font-size: 2.5rem; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  .stats { gap: 2rem; padding: 3rem 2rem; }
  .stat__number { font-size: 2rem; }
  .card-grid, .listing-grid, .team-grid, .video-grid,
  .press-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .featured__content { padding: 2.5rem 1.5rem; }
  .brokerage-bar__inner { flex-direction: column; gap: 0.75rem; }
  .inner-hero { padding: 8rem 1.5rem 3rem; }
}

@media (max-width: 480px) {
  .header { padding: 1rem 1.5rem; }
  .hero__title { font-size: 2rem; }
  .section { padding: 4rem 1rem; }
}

/* ============================================
   PAGE HEADER (internal pages)
   ============================================ */
.page-header {
  background: var(--black);
  color: var(--white);
  padding: 10rem 0 4rem;
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-header p {
  color: rgba(255,255,255,0.55);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ============================================
   SECTION VARIANTS
   ============================================ */
.section--light {
  background: var(--off-white);
}
.section-alt {
  background: var(--off-white);
}
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}
.section-title h2 {
  margin-bottom: 0.75rem;
}
.section-subtitle {
  color: var(--mid-gray);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   GRID SYSTEM
   ============================================ */
.grid {
  display: grid;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE BOX (about, contact, city-guides)
   ============================================ */
.service-box {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
  transition: var(--transition);
}
.service-box:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(212,168,67,0.12);
}
.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.service-box p {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.about-text p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stat-item {
  text-align: center;
  padding: 2rem;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.value-item {
  padding: 2rem;
  border: 1px solid var(--light-gray);
  background: var(--white);
}
.value-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--black);
}
.value-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
}
.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 1024px) {
  .about-intro { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .about-stats { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   TESTIMONIAL CARDS (about page style)
   ============================================ */
.testimonial-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--light-gray);
}
.stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  color: var(--dark-gray);
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.testimonial-role {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
.testimonial {
  padding: 2.5rem;
  background: var(--off-white);
  border-left: 3px solid var(--gold);
}
.testimonial__quote {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--dark-gray);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial__author {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 0.25rem;
}
.testimonial__location {
  font-size: 0.8rem;
  color: var(--mid-gray);
}
.divider {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.5rem 0;
}
.divider--center {
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-2px);
}
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.blog-content {
  padding: 1.5rem;
}
.blog-date {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 0.5rem;
}
.blog-title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}
.blog-excerpt {
  font-size: 0.9rem;
  color: var(--dark-gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.blog-read-more:hover {
  color: var(--black);
}

/* ============================================
   CITY GUIDES PAGE
   ============================================ */
.city-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  aspect-ratio: 4/3;
}
.city-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.city-card:hover .city-image {
  transform: scale(1.05);
}
.city-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  color: var(--white);
}
.city-name {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.city-description {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--black);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--light-gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-group textarea {
  min-height: 150px;
  resize: vertical;
}
.form-submit {
  display: inline-block;
  padding: 0.85rem 2.5rem;
  background: var(--black);
  color: var(--white);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}
.form-submit:hover {
  background: var(--gold);
}

/* ============================================
   HERO CONTENT (BEM aliases for non-BEM pages)
   ============================================ */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   TEAM PAGE EXTRAS
   ============================================ */
.team-lead__photo {
  width: 100%;
  max-width: 400px;
  border: 1px solid var(--light-gray);
}

/* ============================================
   PAGE CONTENT (disclaimer, terms)
   ============================================ */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}
.page-content h2 {
  margin-bottom: 2rem;
}
.page-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.page-content p {
  font-size: 0.95rem;
  line-height: 1.8;
}
