/* Sable Key Lifestyle Management - Final Brand Styles */

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

:root {
  --onyx: #0D0E10;
  --onyx-soft: #0D0E10;
  --onyx-soft: #0D0E10;
  --cream: #F3EDE1;
  --cream-on-dark: #E2D3B3;
  --cream-dark: #F3EDE1;
  --gold: #C19A4E;
  --gold-soft: #C19A4E;
  --gold-dark: #C19A4E;
  --text-dark: #0D0E10;
  --text-muted: #0D0E10;
  --white: #F3EDE1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  background-color: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; /* Semibold for headers */
  line-height: 1.25;
  color: var(--text-dark);
}

.subhead, .hero-sub, .conversation-label, .detail-label,
.page-hero .label, .promise-intro, .because {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500; /* Medium for subheads */
}

p, li, .detail-value, .contact-intro, .pillar p, .quote,
.service-block li, .lifestyle-block li, .conversation p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

/* Header - Midnight Onyx */
.site-header {
  background-color: var(--onyx);
  color: var(--cream-on-dark);
  padding: 1.25rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(200, 168, 106, 0.15);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  text-decoration: none;
  color: var(--cream-on-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  display: block;
  color: #E2D3B3;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.12rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.main-nav a {
  color: rgba(226, 211, 179, 0.88);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.25s ease;
  position: relative;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--gold);
}

.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream-on-dark);
  font-size: 1.5rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

/* Hero */
.hero {
  background-color: var(--cream);
  padding: 6.5rem 2rem 4.5rem;
  text-align: center;
}

.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.2rem, 7.5vw, 5.2rem);
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  line-height: 1.12;
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 500;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  font-style: italic;
}

/* Black Band */
.black-band {
  background-color: var(--onyx);
  color: var(--gold);
  padding: 4.8rem 2rem;
  text-align: center;
  position: relative;
}

.black-band::before,
.black-band::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.black-band::before {
  top: -12px;
  border-bottom: 12px solid var(--onyx);
}

.black-band::after {
  bottom: -12px;
  border-top: 12px solid var(--onyx);
}

.black-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.35rem;
}

.black-band .secondary {
  font-size: clamp(1.5rem, 3vw, 1.95rem);
  margin-bottom: 0;
}

/* Photo */
.photo-section img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 620px;
  object-fit: cover;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  max-height: 520px;
  object-fit: cover;
  object-position: center 55%;
}

/* Contact page mood photo — show full sitting area */
.contact-photo {
  max-width: 680px;
  margin: 0 auto;
  overflow: hidden;
}
.contact-photo img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center top;
  display: block;
}
@media (max-width: 700px) {
  .hero-photo img {
    height: 300px;
    max-height: 300px;
  }
  .contact-photo img {
    height: auto;
    max-height: none;
    object-position: center top;
  }
}


/* Live With Ease */
.live-ease {
  background: var(--cream);
  padding: 5.5rem 2rem 4rem;
  text-align: center;
}

.live-ease h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 3.3rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1.6rem;
}

.monogram-improved {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Three Pillars */
.pillars {
  background: var(--cream);
  padding: 5.5rem 2rem;
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.pillar {
  text-align: center;
  padding: 0 1rem;
}

.pillar-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 1.1rem;
  display: block;
  font-weight: 600;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.9rem;
  line-height: 1.3;
}

.pillar p {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
}

/* Conversation */
.conversation {
  background: var(--cream-dark);
  padding: 5rem 2rem;
  text-align: center;
}

.conversation-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1.1rem;
  font-weight: 500;
}

.conversation h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--text-dark);
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.35;
}

/* Page Hero */
.page-hero {
  background: var(--cream);
  padding: 5.5rem 2rem 3.5rem;
  text-align: center;
}

.page-hero .label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
  font-weight: 500;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 600;
  margin-bottom: 1.3rem;
}

.page-hero p {
  font-family: 'Inter', sans-serif;
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}

/* Footer */
.site-footer {
  background: var(--onyx);
  color: rgba(226, 211, 179, 0.72);
  padding: 3.5rem 2rem;
  text-align: center;
}

.footer-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
  margin: 0 auto 0.85rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  letter-spacing: 0.22em;
  color: var(--cream-on-dark);
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.gold-diamond {
  color: var(--gold);
  font-size: 0.65em;
  padding: 0 0.55rem;
  vertical-align: middle;
}
.footer-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  line-height: 1.7;
  color: #E2D3B3;
  opacity: 1;
  max-width: 720px;
  margin: 0 auto 1.1rem;
  letter-spacing: 0.06em;
  text-transform: none;
}
.footer-area {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #E2D3B3;
  opacity: 1;
  letter-spacing: 0.02em;
  margin: 0.8rem auto 1.1rem;
  max-width: 560px;
  line-height: 1.5;
}
.footer-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  list-style: none;
}

.footer-nav a {
  color: rgba(226, 211, 179, 0.6);
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}

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

.copyright {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: #E2D3B3;
  letter-spacing: 0.04em;
  font-weight: 400;
}

/* Buttons */
.cta-button, a[style*="background:var(--onyx)"], a[style*="background:#0"] {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

/* Mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .header-inner {
    padding: 0 1.5rem;
  }
  .pillars-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .logo-mark {
    width: 38px;
    height: 38px;
  }
  .logo-main {
    font-size: 1.2rem;
    letter-spacing: 0.18em;
  }
  body {
    font-size: 18px;
  }
}

/* ========== FORCE INTER ON ALL BODY TEXT ========== */
body, p, li, td, th, label, input, textarea, 
.detail-value, .contact-intro, .pillar p, .quote,
.service-block li, .lifestyle-block li, .conversation p,
.promise-list li, .grow-line p, .copyright,
.footer-nav a, .detail-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 400 !important;
}

/* Navigation & Buttons = Inter Medium */
.main-nav a, .footer-nav a, .cta-button, 
a[href="contact.html"], button {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

/* Headers stay Cormorant Garamond Semibold */
h1, h2, h3, h4, .hero-headline, .logo-main, 
.footer-logo, .live-ease h2, .black-band h2,
.you-hold, .monogram-improved {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600 !important;
}

/* Subheads = Cormorant Medium */
.hero-sub, .conversation-label, .page-hero .label,
.detail-label, .promise-intro, .because, .pillar-number {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500 !important;
}

/* Quotes grid safety */
.quotes-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2.5rem 3.5rem !important;
  max-width: 960px !important;
  margin: 0 auto !important;
}

@media (max-width: 700px) {
  .quotes-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ========== FORCE INTER ON ALL BODY TEXT ========== */
body, p, li, td, th, label, input, textarea, 
.detail-value, .contact-intro, .pillar p, .quote,
.service-block li, .lifestyle-block li, .conversation p,
.promise-list li, .grow-line p, .copyright,
.footer-nav a, .detail-label {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 400 !important;
}

/* Navigation & Buttons = Inter Medium */
.main-nav a, .footer-nav a, .cta-button, 
a[href="contact.html"], button {
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
}

/* Headers stay Cormorant Garamond Semibold */
h1, h2, h3, h4, .hero-headline, .logo-main, 
.footer-logo, .live-ease h2, .black-band h2,
.you-hold, .monogram-improved {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 600 !important;
}

/* Subheads = Cormorant Medium */
.hero-sub, .conversation-label, .page-hero .label,
.detail-label, .promise-intro, .because, .pillar-number {
  font-family: 'Cormorant Garamond', serif !important;
  font-weight: 500 !important;
}

/* Quotes grid safety */
.quotes-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 2.5rem 3.5rem !important;
  max-width: 960px !important;
  margin: 0 auto !important;
}

@media (max-width: 700px) {
  .quotes-grid {
    grid-template-columns: 1fr !important;
  }
}
