/* ============================================================
   NICOLE LLOYD | REALTOR — styles.css
   Mobile-First | Navy · Gold · White | Playfair + Montserrat
   ============================================================ */

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

/* === CSS VARIABLES === */
:root {
  --navy:        #1a2e5a;
  --navy-dark:   #111e3d;
  --navy-light:  #243a6e;
  --gold:        #c9a84c;
  --gold-light:  #d8bc74;
  --gold-dark:   #a88835;
  --white:       #ffffff;
  --cream:       #f5f5f0;
  --cream-dark:  #ede9e0;
  --gray-light:  #f8f8f6;
  --gray:        #aaaaaa;
  --text-body:   #444444;
  --text-muted:  #888888;
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Montserrat', Arial, Helvetica, sans-serif;
  --transition:  all 0.28s ease;
  --shadow-sm:   0 2px 12px rgba(26,46,90,0.08);
  --shadow:      0 4px 24px rgba(26,46,90,0.12);
  --shadow-lg:   0 8px 40px rgba(26,46,90,0.18);
  --radius:      0px;
  --max-w:       1200px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 4.2rem); font-weight: 600; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.7rem); font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }
p { font-size: 0.975rem; line-height: 1.8; color: var(--text-body); }
strong { font-weight: 700; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-body);
}

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section      { padding: 80px 0; }
.section-sm   { padding: 52px 0; }
.section-lg   { padding: 120px 0; }
.section-dark { background: var(--navy); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.75); }
.section-dark .eyebrow { color: var(--gold); }
.section-cream { background: var(--cream); }
.section-deep  { background: var(--navy-dark); }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header p { max-width: 580px; margin: 16px auto 0; }

.grid-2 { display: grid; gap: 40px; }
.grid-3 { display: grid; gap: 32px; }
.grid-4 { display: grid; gap: 24px; grid-template-columns: repeat(2,1fr); }

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

/* === DIVIDER === */
.divider { width: 48px; height: 2px; background: var(--gold); display: block; }
.divider-c { margin: 18px auto; }
.divider-l { margin: 18px 0; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: var(--transition);
  border-radius: var(--radius);
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.38);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 0.75rem; }

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.nav-transparent { background: transparent; }
.nav-solid {
  background: var(--navy-dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  max-width: 1400px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-serif);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.nav-logo span { color: var(--gold); }
.nav-links {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-cta {
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  transition: var(--transition);
}
/* mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--white);
}
.nav-mobile a:hover { color: var(--gold); }
.nav-close {
  position: absolute;
  top: 24px; right: 28px;
  color: var(--white);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
}
.nav-mobile-tel {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  margin-top: 12px;
}

/* === HERO (home) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    125deg,
    rgba(17,30,61,0.93) 0%,
    rgba(26,46,90,0.78) 55%,
    rgba(17,30,61,0.65) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 130px 24px 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
  padding: 8px 18px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 44px;
  line-height: 1.85;
  font-weight: 300;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}

/* === STAT BAR === */
.stat-bar {
  background: var(--gold);
  padding: 28px 24px;
}
.stat-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-lbl {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  opacity: 0.72;
  margin-top: 5px;
}

/* === PAGE HERO (interior) === */
.page-hero {
  background: var(--navy);
  padding: 148px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .eyebrow,
.page-hero h1,
.page-hero p { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.72); max-width: 560px; margin: 14px auto 0; }

/* === SERVICE CARDS === */
.service-card {
  background: var(--white);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  border-bottom: 3px solid transparent;
  transition: var(--transition);
}
.service-card:hover {
  border-bottom-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.svc-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }

/* === ABOUT LAYOUT === */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
.portrait-box {
  position: relative;
  max-width: 380px;
  margin: 0 auto;
  width: 100%;
}
.portrait-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(150deg, var(--navy-light) 0%, var(--navy-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.portrait-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
}
.portrait-initials {
  font-family: var(--font-serif);
  font-size: 6rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  user-select: none;
}
.portrait-note {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.award-pill {
  position: absolute;
  bottom: -20px;
  right: -16px;
  background: var(--gold);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.award-pill-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.award-pill-txt {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-top: 3px;
}
.cred-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.cred-tag {
  padding: 8px 16px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === REVIEW CARDS === */
.reviews-grid { display: grid; gap: 28px; }
.review-card {
  background: var(--white);
  padding: 32px;
  border-left: 3px solid var(--gold);
  box-shadow: var(--shadow-sm);
}
.section-dark .review-card { background: rgba(255,255,255,0.07); }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 22px;
}
.section-dark .review-text { color: rgba(255,255,255,0.75); }
.review-meta { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  flex-shrink: 0;
}
.review-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
}
.section-dark .review-name { color: var(--white); }
.review-source { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }
.section-dark .review-source { color: rgba(255,255,255,0.45); }

/* === SIROCCO SECTION === */
.sirocco-wrap {
  background: var(--navy-dark);
  padding: 80px 0;
}
.sirocco-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
}
.sirocco-body h2 { color: var(--white); margin-bottom: 20px; }
.sirocco-body p { color: rgba(255,255,255,0.73); margin-bottom: 16px; }
.press-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.press-tag {
  padding: 6px 14px;
  border: 1px solid rgba(201,168,76,0.45);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sirocco-panel {
  border: 1px solid rgba(201,168,76,0.2);
  background: rgba(255,255,255,0.03);
  padding: 36px 30px;
}
.sirocco-panel-title {
  font-family: var(--font-serif);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
}
.location-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.location-item:last-child { border-bottom: none; padding-bottom: 0; }
.location-item h4 { color: var(--white); font-size: 0.88rem; margin-bottom: 5px; }
.location-item p { font-size: 0.78rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* === CTA SPLIT === */
.cta-split { display: grid; grid-template-columns: 1fr; }
.cta-panel {
  padding: 60px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.cta-panel:first-child { background: var(--navy); }
.cta-panel:last-child  { background: var(--navy-dark); }
.cta-panel h3 { color: var(--white); margin-bottom: 12px; }
.cta-panel p  { color: rgba(255,255,255,0.68); margin-bottom: 32px; }

/* === PROCESS STEPS === */
.step {
  display: flex;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--cream-dark);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; padding-bottom: 0; }
.step-num {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  line-height: 1;
  flex-shrink: 0;
  width: 64px;
  text-align: center;
}
.step-body h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step-body p  { font-size: 0.88rem; }

/* === AREA TAGS === */
.area-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-tag {
  padding: 9px 18px;
  background: var(--cream);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--cream-dark);
  transition: var(--transition);
}
.area-tag:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* === CONTACT === */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
.form-row { margin-bottom: 20px; }
.form-row label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d8d8d0;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-row textarea { min-height: 130px; resize: vertical; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cd-icon svg { width: 20px; height: 20px; color: var(--navy); }
.cd-label {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.cd-val {
  font-size: 0.92rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.soc-btn {
  width: 44px; height: 44px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.soc-btn:hover { background: var(--gold); color: var(--navy); }

/* === FOOTER === */
.footer {
  background: var(--navy-dark);
  padding: 56px 24px 32px;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-brand .f-logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
}
.footer-brand .f-logo span { color: var(--gold); }
.footer-brand p { font-size: 0.78rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.35); }

/* === UTILITY CLASSES === */
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }

/* ================================================
   BREAKPOINT: 640px (small tablets / large phones)
   ================================================ */
@media (min-width: 640px) {
  .stat-bar-inner { grid-template-columns: repeat(4,1fr); }
  .hero-actions   { flex-direction: row; }
  .grid-2         { grid-template-columns: repeat(2,1fr); }
  .grid-3         { grid-template-columns: repeat(2,1fr); }
  .cta-split      { grid-template-columns: repeat(2,1fr); }
  .contact-wrap   { grid-template-columns: 1.2fr 1fr; }
}

/* ================================================
   BREAKPOINT: 1024px (desktop)
   ================================================ */
@media (min-width: 1024px) {
  .nav-links    { display: flex; }
  .nav-cta      { display: block; }
  .nav-hamburger{ display: none; }
  .grid-3       { grid-template-columns: repeat(3,1fr); }
  .grid-4       { grid-template-columns: repeat(4,1fr); }
  .about-wrap   { grid-template-columns: 1fr 1.6fr; }
  .sirocco-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid  { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
