/*
Theme Name:        The Syndicate Group — Private Real Estate Advisory
Theme URI:         https://libertygraphix.us
Description:       A luxury child theme for The Syndicate Group. Built on Houzez. Strategy-first, advisory-led real estate brand system — Black, Gold (#C6A664), and White. Editorial, minimal, premium.
Author:            The Syndicate Group
Author URI:        https://libertygraphix.us
Template:          houzez
Version:           1.0.0
License:           GNU General Public License v2 or later
License URI:       http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:       syndicate-child
Tags:              luxury, real-estate, advisory, minimal, editorial
*/

/* ============================================================
   01 — BRAND TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* Core Brand Colors */
  --sg-gold:          #C6A664;
  --sg-gold-light:    #D4B87A;
  --sg-gold-dark:     #A8884E;
  --sg-black:         #0A0A0A;
  --sg-dark:          #1C1C1C;
  --sg-mid:           #4A4A4A;
  --sg-light:         #8A8A8A;
  --sg-rule:          #CCCCCC;
  --sg-off-white:     #F7F5F2;
  --sg-white:         #FFFFFF;

  /* Typography */
  --sg-serif:         'Cormorant Garamond', 'Georgia', serif;
  --sg-sans:          'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing Scale */
  --sg-space-xs:      0.5rem;
  --sg-space-sm:      1rem;
  --sg-space-md:      2rem;
  --sg-space-lg:      4rem;
  --sg-space-xl:      7rem;
  --sg-space-2xl:     10rem;

  /* Layout */
  --sg-max-width:     1280px;
  --sg-content-width: 820px;
  --sg-radius:        0px;

  /* Transitions */
  --sg-transition:    all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ============================================================
   02 — GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&display=swap');

/* ============================================================
   03 — RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--sg-sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.75;
  color: var(--sg-mid);
  background-color: var(--sg-white);
  margin: 0;
  padding: 0;
}

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

a {
  color: var(--sg-gold);
  text-decoration: none;
  transition: var(--sg-transition);
}

a:hover {
  color: var(--sg-gold-dark);
}

::selection {
  background: var(--sg-gold);
  color: var(--sg-white);
}

/* ============================================================
   04 — TYPOGRAPHY
   ============================================================ */

/* Display Headlines */
h1, .h1,
.sg-display {
  font-family: var(--sg-serif);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--sg-black);
  margin: 0 0 1.5rem;
}

h2, .h2 {
  font-family: var(--sg-serif);
  font-weight: 300;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--sg-dark);
  margin: 0 0 1.25rem;
}

h3, .h3 {
  font-family: var(--sg-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  line-height: 1.3;
  color: var(--sg-dark);
  margin: 0 0 1rem;
}

h4, .h4 {
  font-family: var(--sg-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-gold);
  margin: 0 0 0.75rem;
}

h5, h6 {
  font-family: var(--sg-sans);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sg-light);
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--sg-mid);
}

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

blockquote,
.sg-quote {
  font-family: var(--sg-serif);
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-style: italic;
  font-weight: 300;
  color: var(--sg-dark);
  line-height: 1.5;
  margin: var(--sg-lg) auto;
  max-width: 680px;
  padding-left: 2rem;
  border-left: 2px solid var(--sg-gold);
  text-align: left;
}

blockquote p {
  font-size: inherit;
  color: inherit;
  margin: 0;
}

/* Section Label — uppercase tracked gold caps */
.sg-label {
  font-family: var(--sg-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sg-gold);
  display: block;
  margin-bottom: 1.25rem;
}

/* ============================================================
   05 — LAYOUT UTILITIES
   ============================================================ */
.sg-container {
  max-width: var(--sg-max-width);
  margin: 0 auto;
  padding: 0 var(--sg-md);
}

.sg-container--narrow {
  max-width: var(--sg-content-width);
  margin: 0 auto;
  padding: 0 var(--sg-md);
}

.sg-section {
  padding: var(--sg-xl) 0;
}

.sg-section--dark {
  background-color: var(--sg-black);
  color: var(--sg-off-white);
}

.sg-section--dark h1,
.sg-section--dark h2,
.sg-section--dark h3 {
  color: var(--sg-white);
}

.sg-section--dark p {
  color: rgba(247, 245, 242, 0.75);
}

.sg-section--offwhite {
  background-color: var(--sg-off-white);
}

.sg-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sg-lg);
  align-items: start;
}

.sg-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sg-md);
  align-items: start;
}

.sg-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sg-md);
}

@media (max-width: 900px) {
  .sg-grid-2,
  .sg-grid-3,
  .sg-grid-4 {
    grid-template-columns: 1fr;
    gap: var(--sg-md);
  }
}

/* Gold rule divider */
.sg-rule {
  border: none;
  border-top: 1px solid var(--sg-rule);
  margin: var(--sg-lg) 0;
}

.sg-rule--gold {
  border-top-color: var(--sg-gold);
  border-top-width: 2px;
}

/* ============================================================
   06 — NAVIGATION
   ============================================================ */

/* Override Houzez default header */
#header,
.header-main,
.main-header {
  background-color: var(--sg-white) !important;
  border-bottom: 1px solid var(--sg-rule) !important;
  box-shadow: none !important;
}

.header-logo img {
  max-height: 48px;
  width: auto;
}

/* Houzez nav override */
.main-navigation ul li a,
#fave-navigation ul li a,
.houzez-nav li a {
  font-family: var(--sg-sans) !important;
  font-size: 0.8125rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--sg-dark) !important;
  padding: 0.5rem 1rem !important;
  transition: var(--sg-transition) !important;
}

.main-navigation ul li a:hover,
#fave-navigation ul li a:hover {
  color: var(--sg-gold) !important;
}

/* Dropdown */
.main-navigation ul .sub-menu,
#fave-navigation ul .sub-menu {
  background: var(--sg-white) !important;
  border: 1px solid var(--sg-rule) !important;
  border-top: 2px solid var(--sg-gold) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08) !important;
  border-radius: 0 !important;
}

.main-navigation ul .sub-menu li a,
#fave-navigation ul .sub-menu li a {
  font-size: 0.75rem !important;
  padding: 0.625rem 1.25rem !important;
}

/* Mobile hamburger */
.menu-toggle,
.mobile-menu-toggle {
  color: var(--sg-dark) !important;
}

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

.sg-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.65) 100%
  );
  z-index: 1;
}

.sg-hero__bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.sg-hero__inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--sg-md);
}

.sg-hero__label {
  display: block;
  font-family: var(--sg-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sg-gold);
  margin-bottom: 2rem;
}

.sg-hero__headline {
  font-family: var(--sg-serif);
  font-weight: 300;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--sg-white);
  margin: 0 0 2rem;
}

.sg-hero__sub {
  font-family: var(--sg-sans);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 300;
  line-height: 1.75;
  color: rgba(247, 245, 242, 0.72);
  max-width: 620px;
  margin: 0 auto 3rem;
}

.sg-hero__rule {
  width: 48px;
  height: 1px;
  background: var(--sg-gold);
  margin: 0 auto 2.5rem;
}

/* ============================================================
   08 — BUTTONS & CTAs
   ============================================================ */
.sg-btn,
.sg-btn--primary {
  display: inline-block;
  font-family: var(--sg-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sg-white);
  background: transparent;
  border: 1px solid var(--sg-gold);
  padding: 1rem 2.5rem;
  cursor: pointer;
  transition: var(--sg-transition);
  text-decoration: none;
  white-space: nowrap;
}

.sg-btn:hover,
.sg-btn--primary:hover {
  background: var(--sg-gold);
  color: var(--sg-white);
  border-color: var(--sg-gold);
}

.sg-btn--dark {
  color: var(--sg-black);
  border-color: var(--sg-black);
}

.sg-btn--dark:hover {
  background: var(--sg-black);
  color: var(--sg-white);
}

.sg-btn--gold-fill {
  background: var(--sg-gold);
  color: var(--sg-white);
  border-color: var(--sg-gold);
}

.sg-btn--gold-fill:hover {
  background: var(--sg-gold-dark);
  border-color: var(--sg-gold-dark);
  color: var(--sg-white);
}

/* Override Houzez default buttons */
.btn,
.button,
input[type="submit"],
.fave-btn-default,
.houzez-search-btn {
  font-family: var(--sg-sans) !important;
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  border-radius: 0 !important;
  background-color: var(--sg-gold) !important;
  border-color: var(--sg-gold) !important;
  color: var(--sg-white) !important;
  padding: 0.875rem 2rem !important;
  transition: var(--sg-transition) !important;
}

.btn:hover,
.button:hover,
input[type="submit"]:hover {
  background-color: var(--sg-gold-dark) !important;
  border-color: var(--sg-gold-dark) !important;
}

/* ============================================================
   09 — PHILOSOPHY / INTRO SECTION
   ============================================================ */
.sg-philosophy {
  padding: var(--sg-xl) 0;
  background: var(--sg-white);
}

.sg-philosophy__inner {
  max-width: var(--sg-max-width);
  margin: 0 auto;
  padding: 0 var(--sg-md);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sg-xl);
  align-items: center;
}

.sg-philosophy__text p {
  font-size: 1.125rem;
  line-height: 1.85;
}

.sg-philosophy__pullquote {
  font-family: var(--sg-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.125rem);
  font-style: italic;
  font-weight: 300;
  color: var(--sg-dark);
  line-height: 1.4;
  padding-left: 2.5rem;
  border-left: 2px solid var(--sg-gold);
}

@media (max-width: 900px) {
  .sg-philosophy__inner {
    grid-template-columns: 1fr;
    gap: var(--sg-lg);
  }
}

/* ============================================================
   10 — ADVISORY DIFFERENCE (DARK SECTION)
   ============================================================ */
.sg-difference {
  background: var(--sg-black);
  padding: var(--sg-xl) 0;
}

.sg-difference__inner {
  max-width: var(--sg-max-width);
  margin: 0 auto;
  padding: 0 var(--sg-md);
}

.sg-difference__intro {
  max-width: 620px;
  margin-bottom: var(--sg-lg);
}

.sg-difference__intro .sg-label {
  color: var(--sg-gold);
}

.sg-difference__intro h2 {
  color: var(--sg-white);
}

.sg-difference__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(198, 166, 100, 0.15);
  border-top: 1px solid rgba(198, 166, 100, 0.25);
}

.sg-difference__item {
  padding: var(--sg-lg) var(--sg-md);
  background: var(--sg-black);
  transition: var(--sg-transition);
}

.sg-difference__item:hover {
  background: var(--sg-dark);
}

.sg-difference__number {
  font-family: var(--sg-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(198, 166, 100, 0.3);
  display: block;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.sg-difference__item h3 {
  font-family: var(--sg-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sg-white);
  margin-bottom: 1rem;
}

.sg-difference__item p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(247, 245, 242, 0.6);
}

@media (max-width: 900px) {
  .sg-difference__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   11 — PROCESS SECTION
   ============================================================ */
.sg-process {
  padding: var(--sg-xl) 0;
  background: var(--sg-off-white);
}

.sg-process__inner {
  max-width: var(--sg-max-width);
  margin: 0 auto;
  padding: 0 var(--sg-md);
}

.sg-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sg-md);
  margin-top: var(--sg-lg);
}

.sg-process__step {
  position: relative;
  padding-top: var(--sg-md);
  border-top: 1px solid var(--sg-gold);
}

.sg-process__step-num {
  font-family: var(--sg-sans);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sg-gold);
  display: block;
  margin-bottom: 1rem;
}

.sg-process__step h4 {
  font-family: var(--sg-serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--sg-dark);
  margin-bottom: 0.75rem;
}

.sg-process__step p {
  font-size: 0.9375rem;
  color: var(--sg-mid);
}

@media (max-width: 900px) {
  .sg-process__steps {
    grid-template-columns: 1fr 1fr;
    gap: var(--sg-md);
  }
}

@media (max-width: 600px) {
  .sg-process__steps {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   12 — PROPERTY CARDS (Houzez Overrides)
   ============================================================ */
.sg-properties {
  padding: var(--sg-xl) 0;
  background: var(--sg-white);
}

/* Houzez listing card override */
.fave-property-thumb,
.property-listing,
.listing-item,
.houzez-listing {
  border-radius: 0 !important;
  border: 1px solid var(--sg-rule) !important;
  box-shadow: none !important;
  overflow: hidden;
  transition: var(--sg-transition) !important;
}

.fave-property-thumb:hover,
.property-listing:hover,
.listing-item:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08) !important;
  transform: translateY(-3px);
}

/* Property price override */
.listing-price,
.fave-prop-price,
.property-price {
  font-family: var(--sg-serif) !important;
  font-size: 1.375rem !important;
  font-weight: 300 !important;
  color: var(--sg-dark) !important;
}

/* Property title override */
.listing-title,
.fave-prop-title,
.property-title {
  font-family: var(--sg-serif) !important;
  font-weight: 300 !important;
  font-size: 1.125rem !important;
  color: var(--sg-dark) !important;
}

/* Featured badge */
.fave-featured,
.property-label-wrap .featured {
  background-color: var(--sg-gold) !important;
  border-radius: 0 !important;
  font-family: var(--sg-sans) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
}

/* Houzez search bar override */
.fave-search-wrap,
.property-search-section,
.houzez-advance-search-form {
  background: var(--sg-off-white) !important;
  border-radius: 0 !important;
  border: 1px solid var(--sg-rule) !important;
  box-shadow: none !important;
}

/* ============================================================
   13 — INSIGHTS / BLOG
   ============================================================ */
.sg-insights {
  padding: var(--sg-xl) 0;
  background: var(--sg-black);
}

.sg-insights .sg-label {
  color: var(--sg-gold);
}

.sg-insights h2 {
  color: var(--sg-white);
}

.sg-article-card {
  border-top: 1px solid rgba(198, 166, 100, 0.3);
  padding-top: var(--sg-md);
  transition: var(--sg-transition);
}

.sg-article-card:hover {
  border-top-color: var(--sg-gold);
}

.sg-article-card__date {
  font-family: var(--sg-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(198, 166, 100, 0.7);
  display: block;
  margin-bottom: 0.75rem;
}

.sg-article-card__title {
  font-family: var(--sg-serif);
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--sg-white);
  line-height: 1.35;
  margin-bottom: 0.75rem;
  display: block;
  text-decoration: none;
  transition: var(--sg-transition);
}

.sg-article-card__title:hover {
  color: var(--sg-gold);
}

.sg-article-card__excerpt {
  font-size: 0.9375rem;
  color: rgba(247, 245, 242, 0.55);
  line-height: 1.7;
}

/* Houzez blog post override */
.houzez-blog-post,
.fave-blog-wrap {
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ============================================================
   14 — CONSULTATION / CTA SECTION
   ============================================================ */
.sg-cta {
  padding: var(--sg-xl) 0;
  background: var(--sg-dark);
  text-align: center;
}

.sg-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 var(--sg-md);
}

.sg-cta h2 {
  color: var(--sg-white);
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.sg-cta p {
  color: rgba(247, 245, 242, 0.65);
  font-size: 1.0625rem;
  margin-bottom: 2.5rem;
}

.sg-cta__note {
  display: block;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(198, 166, 100, 0.55);
  margin-top: 1.25rem;
}

/* ============================================================
   15 — FORMS
   ============================================================ */
.sg-form label {
  font-family: var(--sg-sans);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sg-light);
  display: block;
  margin-bottom: 0.5rem;
}

.sg-form input,
.sg-form textarea,
.sg-form select,
.wpcf7-form input,
.wpcf7-form textarea,
.wpcf7-form select,
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--sg-sans) !important;
  font-size: 0.9375rem !important;
  font-weight: 300 !important;
  color: var(--sg-dark) !important;
  background: var(--sg-white) !important;
  border: 1px solid var(--sg-rule) !important;
  border-radius: 0 !important;
  padding: 0.875rem 1.125rem !important;
  transition: var(--sg-transition) !important;
  outline: none !important;
  box-shadow: none !important;
}

.sg-form input:focus,
.sg-form textarea:focus,
.sg-form select:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  border-color: var(--sg-gold) !important;
}

.sg-form textarea,
.wpcf7-form textarea {
  min-height: 160px;
  resize: vertical;
}

/* Houzez contact form override */
.fave-contact-form input,
.fave-contact-form textarea,
.houzez-contact-form input,
.houzez-contact-form textarea {
  border-radius: 0 !important;
  border-color: var(--sg-rule) !important;
}

/* ============================================================
   16 — SINGLE PROPERTY PAGE OVERRIDES
   ============================================================ */
.single-property .page-title,
.single-properties h1.entry-title {
  font-family: var(--sg-serif) !important;
  font-weight: 300 !important;
  color: var(--sg-dark) !important;
}

/* Property detail meta */
.property-meta-wrapper,
.fave-prop-meta-wrap {
  border-radius: 0 !important;
  font-family: var(--sg-sans) !important;
}

/* Agent/contact box on property page */
.agent-contact-form-wrap,
.property-agent-wrap {
  border: 1px solid var(--sg-rule) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Gallery */
.property-gallery-wrap img {
  border-radius: 0 !important;
}

/* ============================================================
   17 — PAGE HERO (Interior Pages)
   ============================================================ */
.sg-page-hero {
  background: var(--sg-black);
  padding: var(--sg-xl) 0 var(--sg-lg);
  text-align: left;
}

.sg-page-hero h1 {
  color: var(--sg-white);
  max-width: 700px;
}

.sg-page-hero p {
  color: rgba(247, 245, 242, 0.65);
  max-width: 560px;
  font-size: 1.125rem;
}

/* Houzez default page banner override */
.fave-page-title-bar,
.page-title-bar {
  background-color: var(--sg-black) !important;
  background-image: none !important;
}

.fave-page-title-bar .page-title,
.page-title-bar h1,
.page-title-bar .title {
  font-family: var(--sg-serif) !important;
  font-weight: 300 !important;
  color: var(--sg-white) !important;
  font-size: clamp(2rem, 4vw, 3.5rem) !important;
}

/* ============================================================
   18 — FOOTER
   ============================================================ */
.sg-footer,
#fave-footer,
.site-footer,
footer.main-footer {
  background-color: var(--sg-black) !important;
  border-top: 1px solid rgba(198, 166, 100, 0.2) !important;
  padding: var(--sg-lg) 0 var(--sg-md) !important;
}

.sg-footer__brand {
  font-family: var(--sg-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--sg-white);
  letter-spacing: 0.02em;
  display: block;
  margin-bottom: 0.5rem;
}

.sg-footer__descriptor {
  font-family: var(--sg-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sg-gold);
  display: block;
  margin-bottom: 2rem;
}

.sg-footer__tagline {
  font-family: var(--sg-serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(247, 245, 242, 0.45);
}

/* Footer nav */
#fave-footer a,
.site-footer a,
footer.main-footer a {
  font-family: var(--sg-sans) !important;
  font-size: 0.8125rem !important;
  color: rgba(247, 245, 242, 0.55) !important;
  transition: var(--sg-transition) !important;
  text-decoration: none !important;
}

#fave-footer a:hover,
.site-footer a:hover {
  color: var(--sg-gold) !important;
}

/* Footer widget titles */
.footer-widget-title,
.widget-title,
#fave-footer .widget-title {
  font-family: var(--sg-sans) !important;
  font-size: 0.6875rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--sg-gold) !important;
  margin-bottom: 1.25rem !important;
  font-weight: 500 !important;
}

/* Copyright bar */
.sg-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: var(--sg-md);
  margin-top: var(--sg-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sg-footer__bottom p,
.footer-copyright,
#fave-footer .copyright-text {
  font-family: var(--sg-sans) !important;
  font-size: 0.75rem !important;
  color: rgba(247, 245, 242, 0.3) !important;
}

/* ============================================================
   19 — ABOUT PAGE
   ============================================================ */
.sg-about-bio {
  padding: var(--sg-xl) 0;
}

.sg-about-bio__inner {
  max-width: var(--sg-max-width);
  margin: 0 auto;
  padding: 0 var(--sg-md);
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: var(--sg-xl);
  align-items: start;
}

.sg-about-bio__photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
}

.sg-about-bio__content .sg-label {
  margin-bottom: 1rem;
}

.sg-about-bio__content blockquote {
  margin: var(--sg-md) 0;
}

@media (max-width: 900px) {
  .sg-about-bio__inner {
    grid-template-columns: 1fr;
    gap: var(--sg-lg);
  }
}

/* ============================================================
   20 — RELOCATION PAGE
   ============================================================ */
.sg-relocation-hero {
  background: var(--sg-black);
  padding: var(--sg-xl) 0;
}

.sg-relocation-content {
  padding: var(--sg-xl) 0;
  max-width: var(--sg-content-width);
  margin: 0 auto;
  padding-left: var(--sg-md);
  padding-right: var(--sg-md);
}

/* ============================================================
   21 — HOUZEZ GLOBAL OVERRIDES
   ============================================================ */

/* Remove all Houzez default color highlights */
.fave-highlight,
.accent-color,
.highlight-text {
  color: var(--sg-gold) !important;
}

/* Houzez pagination */
.fave-pagination .page-numbers,
.pagination .page-numbers {
  border-radius: 0 !important;
  font-family: var(--sg-sans) !important;
}

.fave-pagination .page-numbers.current,
.pagination .page-numbers.current {
  background: var(--sg-gold) !important;
  border-color: var(--sg-gold) !important;
}

/* Houzez tabs */
.fave-tabs .nav-tabs li.active a,
.fave-tabs .nav-tabs li a:hover {
  border-bottom-color: var(--sg-gold) !important;
  color: var(--sg-dark) !important;
}

/* Houzez sliders — suppress autoplay visual */
.houzez-slider-wrap .slick-dots li button:before {
  color: var(--sg-gold) !important;
}

/* Star ratings */
.fave-star-rating span,
.star-rating span {
  color: var(--sg-gold) !important;
}

/* Checkboxes / radio brand color */
input[type="checkbox"]:checked,
input[type="radio"]:checked {
  accent-color: var(--sg-gold);
}

/* ============================================================
   22 — UTILITIES
   ============================================================ */
.text-center   { text-align: center; }
.text-left     { text-align: left; }
.text-gold     { color: var(--sg-gold); }
.text-white    { color: var(--sg-white); }
.text-light    { color: var(--sg-light); }
.bg-black      { background-color: var(--sg-black); }
.bg-offwhite   { background-color: var(--sg-off-white); }
.mt-lg         { margin-top: var(--sg-lg); }
.mb-lg         { margin-bottom: var(--sg-lg); }

/* ============================================================
   23 — ANIMATIONS
   ============================================================ */
@keyframes sg-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sg-animate {
  animation: sg-fade-up 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.sg-animate--delay-1 { animation-delay: 0.15s; }
.sg-animate--delay-2 { animation-delay: 0.30s; }
.sg-animate--delay-3 { animation-delay: 0.45s; }

/* ============================================================
   24 — RESPONSIVE ADJUSTMENTS
   ============================================================ */
@media (max-width: 1100px) {
  :root {
    --sg-xl: 5rem;
    --sg-space-xl: 5rem;
  }
}

@media (max-width: 768px) {
  :root {
    --sg-xl: 4rem;
    --sg-lg: 3rem;
    --sg-md: 1.5rem;
  }

  .sg-process__steps {
    grid-template-columns: 1fr;
  }

  .sg-hero {
    min-height: 80vh;
  }

  .sg-footer__bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1, .h1 {
    font-size: 2.25rem;
  }

  h2, .h2 {
    font-size: 1.75rem;
  }

  .sg-hero__headline {
    font-size: 2.25rem;
  }
}
