/* ============================================================
   CLAY SMITH REAL ESTATE — Main Stylesheet
   Brand: Luxury Coastal | Laguna Beach & OC
   Design: Clean, light, modern luxury — inspired by BonLife RE
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light-bg:    #F2F0EC;
  --border:      #E2DDD7;
  --gold:        #0D2545;
  --gold-dark:   #0A1C36;
  --charcoal:    #1C1C1C;
  --dark:        #2A2A2A;
  --mid:         #6B6B6B;
  --light-text:  #9A9A9A;

  --font-sans:    'Montserrat', system-ui, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;

  --max-w:        1200px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Layout ---- */
.container        { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.container--narrow{ max-width: 820px;        margin: 0 auto; padding: 0 2rem; }

/* ---- Type helpers ---- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.9rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 1rem;
}
.section-title--light { color: var(--white); }

.section-body {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  max-width: 560px;
}
.section-body--light { color: rgba(255,255,255,0.7); }

.gold-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 1.25rem 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(180,154,106,0.3);
}
.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn--outline:hover {
  background: var(--charcoal);
  color: var(--white);
}
.btn--outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn--outline-light:hover {
  background: var(--white);
  color: var(--charcoal);
}

/* ================================================================
   NAVIGATION — white background, clean
   ================================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
}

.navbar__logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.navbar__agent-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* REPLACE: Insert BonLife Real Estate logo file here */
.brokerage-logo-placeholder {
  display: none; /* replaced by real logo */
}

/* Navbar: dark logo */
.navbar__bonlife-logo {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Vertical divider between agent name and BonLife logo */
.navbar__agent-name::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: 26px;
  background: var(--charcoal);
  opacity: 0.3;
  margin-left: 1.25rem;
  vertical-align: middle;
}

/* Footer: white logo */
.footer__bonlife-logo {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  margin-bottom: 1.25rem;
  opacity: 0.85;
}
.footer__bonlife-logo:hover { opacity: 1; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}
.navbar__nav a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.navbar__nav a:hover,
.navbar__nav a.active { color: var(--charcoal); }
.navbar__nav .btn { padding: 0.55rem 1.4rem; font-size: 0.68rem; }
.navbar__nav .btn--gold { color: var(--white); }
.navbar__nav .btn--gold:hover { color: var(--white); }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu__close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  font-size: 1.75rem;
  color: var(--charcoal);
  cursor: pointer;
  line-height: 1;
}

/* ================================================================
   HERO — full-bleed photo, minimal text overlay
   ================================================================ */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 7rem;
  overflow: hidden;
  background: #0D2545;
}

/* Invisible tap target — catches first touch to unlock autoplay on strict mobile browsers */
.hero__video-tap {
  position: absolute;
  inset: 0;
  z-index: 3;
}

/* Full-bleed looping video background */
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Gradient overlay so text stays readable over the video */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.hero__image-label {
  display: none; /* placeholder removed — video is live */
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 2rem;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

.hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -0.01em;
  max-width: 700px;
  margin-bottom: 1.25rem;
}
.hero__headline em {
  font-style: italic;
  font-weight: 300;
}

.hero__sub {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
  letter-spacing: 0.01em;
}

.hero__ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0.5;
}
.hero__scroll span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--white), transparent);
  animation: lineGrow 2s ease-in-out infinite;
}
@keyframes lineGrow {
  0%, 100% { transform: scaleY(0.5); opacity: 0.4; }
  50%       { transform: scaleY(1);   opacity: 1;   }
}

/* ================================================================
   MARQUEE BAND — thin strip between hero and content
   ================================================================ */
.marquee-band {
  background: var(--charcoal);
  padding: 0.85rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-band__track {
  display: inline-flex;
  gap: 0;
  animation: marquee 28s linear infinite;
}
.marquee-band__item {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 2.5rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.marquee-band__dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   ABOUT — split layout, white bg
   ================================================================ */
.about {
  padding: 8rem 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}

/* REPLACE: Insert professional headshot of Clay Smith here */
.about__photo {
  position: relative;
}
.about__photo-frame {
  aspect-ratio: 3/4;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about__photo-frame::after {
  content: none;
}
.about__photo-accent {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 100px; height: 100px;
  border: 1px solid var(--gold);
  pointer-events: none;
}

.about__content { }

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  background: var(--light-bg);
  border-left: 2px solid var(--gold);
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 1.5rem;
}

.about__bio {
  font-size: 0.975rem;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 1.1rem;
}

.about__values {
  margin: 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.about__value {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--dark);
}
.about__value::before {
  content: '';
  display: block;
  width: 16px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.65em;
}

/* ================================================================
   TESTIMONIALS — light warm background
   ================================================================ */
.testimonials {
  padding: 8rem 0;
  background: var(--off-white);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonials__header .gold-line { margin: 1.25rem auto; }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.25rem;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.07);
  transform: translateY(-3px);
}

.testimonial-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
}
.star { color: var(--gold); font-size: 0.8rem; }

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-card__name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.15rem;
}
.testimonial-card__detail {
  font-size: 0.77rem;
  color: var(--light-text);
}

/* ---- Review form ---- */
.review-form-wrap {
  max-width: 640px;
  margin: 0 auto;
  display: none;
}
.review-form-wrap.is-open { display: block; }

.review-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 2.5rem;
}

.review-form__stars-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.review-form__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

/* Star picker */
.star-picker {
  display: flex;
  gap: 4px;
}
.star-picker__star {
  font-size: 2rem;
  color: var(--border);
  cursor: pointer;
  transition: color 0.15s, transform 0.1s;
  line-height: 1;
  user-select: none;
}
.star-picker__star input { display: none; }
.star-picker__star:hover,
.star-picker__star.is-filled { color: var(--gold); }
.star-picker__star:hover { transform: scale(1.15); }

.review-form__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.review-form__note {
  font-size: 0.72rem;
  color: var(--light-text);
  margin-top: 1rem;
  text-align: center;
}

/* Success state */
.review-form__success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
}
.review-form__thankyou {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.review-form__success .star-row {
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: 4px;
  margin-bottom: 1rem;
}
.review-form__success h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.review-form__success p {
  color: var(--mid);
  font-size: 0.95rem;
}

.review-form__field-error,
.review-form__error {
  display: block;
  color: #c0392b;
  font-size: 0.78rem;
  margin-top: 0.25rem;
}
.review-form__error {
  background: #fdf0ef;
  border: 1px solid #e8b4b0;
  border-radius: 6px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .review-form { padding: 1.75rem 1.25rem; }
  .review-form__actions { flex-direction: column; }
  .review-form__actions .btn { width: 100%; text-align: center; }
}

/* ================================================================
   CONTACT — white bg
   ================================================================ */
.contact {
  padding: 8rem 0;
  background: var(--white);
  border-top: 1px solid var(--border);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 7rem;
  align-items: start;
}

.contact__item { margin-bottom: 1.75rem; }
.contact__item-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.contact__item-value { font-size: 0.95rem; color: var(--dark); }
.contact__item-value a:hover { color: var(--gold); }

.contact__social { display: flex; gap: 0.75rem; margin-top: 2rem; }
.contact__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--mid);
  transition: all 0.2s;
}
.contact__social-link:hover {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}

/* Form */
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 1rem; }

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.8rem 1rem;
  outline: none;
  width: 100%;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ================================================================
   FOOTER — charcoal dark
   ================================================================ */
.footer {
  background: var(--gold);
  padding: 5rem 0 2.5rem;
}

.footer__main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer__agent-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.3rem;
}
.footer__tagline {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

/* REPLACE: Insert BonLife Real Estate logo file here */
.footer__brokerage-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  min-width: 125px;
  padding: 0 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 1.25rem;
}

.footer__dre {
  font-size: 0.67rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.4);
}

.footer__col-title {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.25rem;
}

.footer__links { display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a { font-size: 0.87rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }

.footer__contact-line { font-size: 0.87rem; color: rgba(255,255,255,0.7); margin-bottom: 0.65rem; }
.footer__contact-line a { color: rgba(255,255,255,0.7); }
.footer__contact-line a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  background: var(--charcoal);
  padding: 9rem 2rem 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero--bg {
  background-image: url('../images/Hero Image BLANK.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.page-hero__subtitle {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}
.page-hero .eyebrow {
  color: rgba(255,255,255,0.6) !important;
}

/* ================================================================
   MY PROCESS PAGE
   ================================================================ */
.process-intro {
  padding: 5rem 0 2.5rem;
  text-align: center;
}

.process-steps { padding: 1.5rem 0 3rem; }

.process-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }

.process-step__number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 400;
  color: var(--border);
  line-height: 1;
  user-select: none;
  transition: color 0.3s;
}
.process-step:hover .process-step__number { color: var(--gold); }

.process-step__label {
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.process-step__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.process-step__body {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.85;
  max-width: 640px;
}
.process-step__points { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }
.process-step__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--dark);
}
.process-step__point::before {
  content: '';
  display: block;
  width: 14px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 0.7em;
}

/* ================================================================
   NEWSLETTER SIGNUP SECTION
   ================================================================ */
.newsletter-section {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  padding: 5rem 2rem;
  margin-top: 4rem;
  text-align: center;
}
.newsletter-inner {
  max-width: 700px;
  margin: 0 auto;
}
.newsletter-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--charcoal);
  line-height: 1.2;
  margin: 0.5rem 0 1rem;
}
.newsletter-body {
  color: var(--mid);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}
/* Beehiiv embed centering */
.newsletter-inner > script,
.newsletter-inner [data-beehiiv-form],
.newsletter-inner iframe,
.newsletter-inner div[style*="beehiiv"],
beehiiv-subscribe-form {
  display: block;
  margin: 0 auto;
}
.newsletter-form__row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.newsletter-form__row .form-group {
  flex: 1;
  min-width: 160px;
  margin: 0;
}
.newsletter-form__row input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--charcoal);
}
.newsletter-form__row input:focus {
  outline: none;
  border-color: var(--gold);
}
.newsletter-form__note {
  font-size: 0.72rem;
  color: var(--light-text);
  letter-spacing: 0.05em;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .newsletter-form__row { flex-direction: column; align-items: stretch; }
  .newsletter-form__row .form-group { min-width: unset; }
  .newsletter-form__row .btn { width: 100%; text-align: center; }
}

.process-cta {
  padding: 3rem 0 5rem;
  background: var(--white);
  text-align: center;
}
.process-cta .gold-line { margin: 1.25rem auto; }

/* ================================================================
   BLOG INDEX
   ================================================================ */
.blog-index { padding: 5rem 0 7rem; }

.blog-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.blog-filter__btn {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter__btn:hover,
.blog-filter__btn.active {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
}
.blog-filter__city-wrap {
  display: flex;
}
.blog-filter__city {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.1rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--mid);
  cursor: pointer;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
}
.blog-filter__city:hover,
.blog-filter__city:focus {
  background-color: var(--charcoal);
  border-color: var(--charcoal);
  color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23fff'/%3E%3C/svg%3E");
  outline: none;
}
@media (max-width: 768px) {
  .blog-filter { gap: 0.4rem; }
  .blog-filter__city { width: 100%; }
}

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

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.blog-card__thumbnail {
  aspect-ratio: 16/9;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* REPLACE: Each blog card needs a featured image */
.blog-card__thumbnail-label {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-text);
}

.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.blog-card__category {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.45rem;
}
.blog-card__date { font-size: 0.72rem; color: var(--light-text); margin-bottom: 0.5rem; }
.blog-card__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.blog-card__title a { transition: color 0.2s; }
.blog-card__title a:hover { color: var(--gold); }
.blog-card__excerpt { font-size: 0.87rem; color: var(--mid); line-height: 1.7; flex: 1; margin-bottom: 1.25rem; }
.blog-card__read-more {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.2s;
  text-decoration: none;
}
.blog-card__read-more::after { content: '→'; transition: transform 0.2s; }
.blog-card__read-more:hover { color: var(--gold); }
.blog-card__read-more:hover::after { transform: translateX(3px); }

/* ================================================================
   BLOG POST
   ================================================================ */
.blog-post { padding: 5rem 0 7rem; }

.blog-post__header { max-width: 760px; margin: 0 auto 3rem; padding: 0 2rem; }
.blog-post__meta { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.blog-post__category { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.blog-post__date,
.blog-post__read-time { font-size: 0.78rem; color: var(--light-text); }

.blog-post__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.blog-post__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}
.blog-post__author-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--light-bg);
  overflow: hidden;
  flex-shrink: 0;
}
.blog-post__author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.blog-post__author-name { font-size: 0.83rem; font-weight: 600; color: var(--charcoal); }
.blog-post__author-title { font-size: 0.73rem; color: var(--light-text); }

.blog-post__featured-image { max-width: 960px; margin: 0 auto 4rem; padding: 0 2rem; }
/* REPLACE: Insert featured blog post image here */
.blog-post__featured-image-placeholder {
  aspect-ratio: 16/7;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-text);
  font-family: var(--font-sans);
}

.blog-post__content { max-width: 700px; margin: 0 auto; padding: 0 2rem; font-size: 1rem; line-height: 1.85; color: var(--dark); }
.blog-post__content h2 { font-family: var(--font-serif); font-size: 1.65rem; font-weight: 500; color: var(--charcoal); margin: 2.5rem 0 1rem; }
.blog-post__content h3 { font-family: var(--font-serif); font-size: 1.25rem; font-weight: 500; color: var(--charcoal); margin: 2rem 0 0.75rem; }
.blog-post__content p { margin-bottom: 1.5rem; }
.blog-post__content ul, .blog-post__content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; list-style: revert; }
.blog-post__content li { margin-bottom: 0.5rem; }
.blog-post__content blockquote {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.75rem;
  margin: 2rem 0;
  background: var(--off-white);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--charcoal);
  line-height: 1.6;
}

.blog-post__cta-box { max-width: 700px; margin: 4rem auto; padding: 0 2rem; }
.blog-post__cta-inner {
  background: var(--charcoal);
  padding: 3rem;
  text-align: center;
}
.blog-post__cta-inner .section-title--light { font-size: 1.6rem; margin-bottom: 0.75rem; }

.blog-post__nav {
  max-width: 700px;
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.blog-post__nav-link { display: flex; flex-direction: column; gap: 0.3rem; max-width: 280px; }
.blog-post__nav-label { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
.blog-post__nav-title { font-family: var(--font-serif); font-size: 1rem; color: var(--charcoal); }
.blog-post__nav-title:hover { color: var(--gold); }

/* ================================================================
   INSTAGRAM PAGE
   ================================================================ */
.instagram-page { padding: 5rem 0 7rem; }
.instagram-intro { text-align: center; max-width: 560px; margin: 0 auto 4rem; padding: 0 2rem; }
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}

/* ===== INSTAGRAM EMBED SLOT =====
   Service recommendation: behold.so (free tier available)
   1. Sign up at behold.so
   2. Connect @clay.ocrealtor
   3. Choose Grid layout, 3 columns
   4. Paste embed code inside .instagram-embed-container
   5. Delete .instagram-placeholder
   ================================ */
.instagram-embed-container { max-width: 1050px; margin: 0 auto; padding: 0 2rem; }

.instagram-placeholder {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  border: 1px dashed var(--border);
  padding: 2rem;
  background: var(--off-white);
}
.instagram-placeholder-item {
  aspect-ratio: 1;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-text);
  font-family: var(--font-sans);
}

.instagram-embed-note {
  text-align: center;
  margin: 2rem auto 0;
  padding: 1.25rem;
  background: var(--off-white);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--mid);
  max-width: 660px;
}
.instagram-cta { text-align: center; margin-top: 2.5rem; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .about__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__photo { max-width: 380px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .footer__main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { min-height: 85vh; padding-bottom: 5rem; }
  .hero__scroll { display: none; }

  .marquee-band__track { animation-duration: 18s; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .process-step { grid-template-columns: 60px 1fr; gap: 1.5rem; }
  .process-step__number { font-size: 3rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer__main { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: 0.4rem; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero__content { padding: 0 1.25rem; }
  .hero__ctas { flex-direction: column; }
  .btn { text-align: center; }
}
