/* ============================================
   KG Real Estate — Global Stylesheet
   Colors: Black #0A0A0A | White #FAFAFA | Gold #C49A3C
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --black:    #0A0A0A;
  --black-soft: #141414;
  --white:    #FAFAFA;
  --white-pure: #FFFFFF;
  --gold:     #C49A3C;
  --gold-light: #D4AE5A;
  --gold-dark:  #A07A20;
  --gray-light: #F2F2F2;
  --gray-mid:   #888888;
  --gray-dark:  #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --nav-height: 80px;
  --max-width: 1200px;
  --radius: 4px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--black);
  background: var(--white-pure);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 6rem 0; }

/* ---- Navigation ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(196, 154, 60, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
}

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

.nav-links a {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--gold); }

.nav-links a.active { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: var(--black) !important;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--black) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* Mobile nav overlay */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0; bottom: 0;
  background: var(--black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--gold); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.05);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

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

/* ---- Hero (Home) ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0A0A0A 0%, #1a1410 50%, #0A0A0A 100%);
}

.hero-accent {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196,154,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
  width: 100%;
}

.hero-content { max-width: 560px; }

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-title span { color: var(--gold); }

.hero-tagline {
  font-size: 1.1rem;
  color: rgba(250,250,250,0.6);
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: 380px;
  max-width: 100%;
}

.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(196,154,60,0.3);
  border-radius: var(--radius);
  z-index: 0;
}

.hero-photo-wrap img,
.hero-photo-placeholder {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.hero-photo-placeholder {
  background: var(--gray-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 0.85rem;
  gap: 0.5rem;
}
.hero-photo-placeholder svg { opacity: 0.4; }

/* ---- Section Divider ---- */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0 auto 3rem;
  max-width: 200px;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}
.divider-icon { color: var(--gold); font-size: 1rem; }

/* ---- About Preview ---- */
.about-preview {
  background: var(--white-pure);
}

.about-preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.stat-card {
  border: 1px solid rgba(196,154,60,0.25);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.about-visual {
  position: relative;
}

.about-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 0.85rem;
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--black);
  color: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  min-width: 140px;
}
.about-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.about-badge-text { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; }

/* ---- Services ---- */
.services { background: var(--black); color: var(--white); }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
.section-header.light h2 { color: var(--white); }
.section-header p { color: var(--gray-mid); margin-top: 1rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.section-header.light p { color: rgba(250,250,250,0.55); }

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

.service-card {
  border: 1px solid rgba(196,154,60,0.15);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  transition: border-color var(--transition), background var(--transition);
}
.service-card:hover {
  border-color: rgba(196,154,60,0.5);
  background: rgba(196,154,60,0.03);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(196,154,60,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.service-card p { color: rgba(250,250,250,0.5); font-size: 0.9rem; }

/* ---- Testimonials ---- */
.testimonials { background: var(--gray-light); }

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

.testimonial-card {
  background: var(--white-pure);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid rgba(196,154,60,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
}

.author-name { font-weight: 600; font-size: 0.9rem; }
.author-detail { font-size: 0.78rem; color: var(--gray-mid); }

/* ---- Video Section ---- */
.videos-section { background: var(--white-pure); }

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

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.video-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

.video-info { padding: 1.25rem; }
.video-info h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.25rem; }
.video-info p { font-size: 0.8rem; color: var(--gray-mid); }

/* ---- CTA Band ---- */
.cta-band {
  background: var(--black);
  color: var(--white);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196,154,60,0.05) 0%, transparent 60%);
}
.cta-band-inner { position: relative; }
.cta-band h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); margin-bottom: 1rem; }
.cta-band p { color: rgba(250,250,250,0.55); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

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

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.1); transform: translateY(-2px); }

.blog-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 0.8rem;
}

.blog-body { padding: 1.75rem; }

.blog-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.blog-body h3 { font-size: 1.1rem; margin-bottom: 0.75rem; line-height: 1.35; }
.blog-body p { font-size: 0.88rem; color: var(--gray-mid); margin-bottom: 1.25rem; line-height: 1.7; }

.blog-meta { font-size: 0.78rem; color: var(--gray-mid); }

.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: 0.7rem; }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: var(--black);
  color: var(--white);
  padding: calc(var(--nav-height) + 4rem) 0 4rem;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(250,250,250,0.55);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  font-size: 0.8rem;
  color: rgba(250,250,250,0.4);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { margin: 0 0.5rem; }

/* ---- Forms ---- */
.form-section { background: var(--white-pure); }

.form-wrap {
  max-width: 720px;
  margin: 0 auto;
  background: var(--white-pure);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  padding: 3rem;
}

.form-intro { margin-bottom: 2.5rem; }
.form-intro h2 { font-size: 1.75rem; margin-bottom: 0.75rem; }
.form-intro p { color: var(--gray-mid); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: var(--gray-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--black);
  background: var(--white-pure);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,154,60,0.1);
}

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

.form-group select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }

.form-submit { margin-top: 0.5rem; }

.form-note {
  font-size: 0.8rem;
  color: var(--gray-mid);
  margin-top: 1rem;
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 3rem;
  color: var(--black);
}
.form-success h3 { font-size: 1.5rem; color: var(--gold); margin-bottom: 0.75rem; }

/* ---- Contact ---- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.contact-info p { color: var(--gray-mid); margin-bottom: 2rem; line-height: 1.8; }

.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(196,154,60,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-item-text { font-size: 0.9rem; }
.contact-item-text strong { display: block; font-weight: 600; margin-bottom: 0.1rem; }
.contact-item-text a { color: var(--gray-mid); transition: color var(--transition); }
.contact-item-text a:hover { color: var(--gold); }

.social-links-stack {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--black);
  transition: all var(--transition);
}
.social-pill:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.social-pill svg { width: 16px; height: 16px; }

/* ---- About Page ---- */
.about-hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-page-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-page-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--gray-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-mid);
  font-size: 0.85rem;
  flex-direction: column;
  gap: 0.5rem;
}

.about-bio h2 { font-size: 2.25rem; margin-bottom: 1.5rem; }
.about-bio p { color: var(--gray-dark); margin-bottom: 1.25rem; font-size: 0.97rem; line-height: 1.85; }

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.about-highlight {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.about-highlight::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---- Footer ---- */
.footer {
  background: var(--black-soft);
  color: rgba(250,250,250,0.5);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(196,154,60,0.1);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem;
}

.footer-brand img { height: 40px; margin-bottom: 1.25rem; opacity: 0.9; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 260px; }

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }

.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(250,250,250,0.45);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-socials {
  display: flex;
  gap: 0.65rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.social-icon-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,250,250,0.5);
  transition: all var(--transition);
}
.social-icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196,154,60,0.08);
}
.social-icon-btn svg { width: 16px; height: 16px; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(250,250,250,0.3);
}

.footer-bottom a { color: rgba(250,250,250,0.3); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ---- Experiences Page ---- */
.testimonials-full { background: var(--white-pure); }

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

.testimonial-card-lg {
  background: var(--white-pure);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.testimonial-card-lg:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); }

.testimonial-card-lg .testimonial-text {
  font-size: 1rem;
  line-height: 1.85;
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-gold   { color: var(--gold); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.pt-0 { padding-top: 0 !important; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid,
  .videos-grid,
  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }
  section { padding: 4rem 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-image { order: -1; }
  .hero-photo-wrap { width: 260px; }

  .about-preview-inner,
  .about-hero-layout,
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }

  .about-badge { display: none; }

  .services-grid,
  .testimonials-grid,
  .testimonials-full-grid,
  .videos-grid,
  .blog-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .form-wrap { padding: 2rem 1.5rem; }

  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}
