/* =============================================================
   MAYA Property — Consolidated Theme Stylesheet
   Source of truth for all brand styling.
   Based on home page (ID 5) as benchmark.
   ============================================================= */

/* --- Brand Variables --- */
:root {
  --ink: #1e1f23;
  --ivory: #f5f1e8;
  --ivory2: #fbf8f2;
  --gold: #c89f52;
  --gold-dark: #a87825;
  --jade: #315846;
  --jade2: #294d3d;
  --sand: #dccfc0;
  --muted: #706a61;
  --line: #e6dac8;
  --shadow: 0 18px 45px rgba(30, 31, 35, 0.10);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Montserrat', Arial, sans-serif;
}

/* --- Reset & Base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory2);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Typography --- */
h1, h2, h3 { font-weight: 500; margin: 0; }

/* --- Standard Header --- */
.site-header {
  height: 72px;
  background: rgba(251, 248, 242, 0.96);
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 54px;
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 1px 0 rgba(200, 159, 82, 0.2);
}
.logo {
  width: 118px;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
}
.logo .logo-main {
  font-family: var(--serif);
  font-size: 40px;
  letter-spacing: 0.23em;
  font-weight: 500;
}
.logo .logo-line {
  width: 68px;
  height: 2px;
  background: var(--gold);
  display: block;
  margin: 3px 0 5px;
}
.logo .logo-sub {
  font-size: 10px;
  letter-spacing: 0.42em;
  font-weight: 700;
  color: var(--ink);
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
}
.nav a {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 28px 0 22px;
  border-bottom: 2px solid transparent;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav a.active,
.nav a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}
.header-btn {
  flex-shrink: 0;
  min-height: 42px;
  padding: 0 25px;
}

/* --- Hamburger for mobile --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
  transition: 0.2s;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 28px;
  border-radius: 1px;
  font-size: 10px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  text-decoration: none;
  line-height: 1.15;
  text-align: center;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, #c99641, #af7627);
  color: white;
  border-color: #b78235;
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold-dark);
}
.btn-outline-light {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.78);
}
.btn-dark {
  background: var(--jade);
  color: white;
  border-color: var(--jade);
}

/* --- Eyebrow --- */
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 11px;
  font-weight: 800;
}
.eyebrow.center { text-align: center; }
.eyebrow.light { color: #d7b675; }

/* --- Gold Line Divider --- */
.gold-line {
  width: 58px;
  height: 2px;
  background: var(--gold);
  margin: 0 0 28px;
}

/* --- Hero Section --- */
.hero {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 420px;
  background: linear-gradient(90deg, #faf6ee 0%, #faf6ee 68%, rgba(250, 246, 238, 0) 100%);
  position: relative;
  overflow: hidden;
}
.hero-copy {
  padding: 70px 0 58px 88px;
  position: relative;
  z-index: 2;
  max-width: 520px;
}
.hero h1 {
  font-family: var(--serif);
  font-size: 58px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0 0 22px;
}
.hero h2 {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 18px;
}
.hero p:not(.eyebrow) {
  max-width: 420px;
  font-size: 14px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-image {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 66%;
  background-size: cover;
  background-position: center;
}

/* --- Trust Strip --- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7f1e7;
}
.trust-strip div {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-left: 1px solid var(--line);
}
.trust-strip div:first-child { border-left: 0; }
.trust-strip span {
  font-size: 30px;
  color: var(--gold-dark);
  font-family: var(--serif);
  line-height: 1;
}
.trust-strip strong {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  line-height: 1.45;
}

/* --- Why Grid --- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
.why-photo {
  min-height: 360px;
  background-size: cover;
  background-position: center;
}
.why-copy {
  padding: 52px 70px;
  text-align: center;
  background: #faf6ef;
}
.why-copy h2 {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1.05;
  font-weight: 500;
}
.script {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-dark);
  font-size: 32px !important;
  line-height: 1.1;
  margin: 8px 0 22px;
}
.mini-icons {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 550px;
  margin: 0 auto 18px;
}
.mini-icons div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.mini-icons span { font-size: 22px; color: var(--gold-dark); }
.mini-icons small { font-size: 9px; color: var(--muted); }

/* --- Assessment / Score Card --- */
.assessment {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: center;
  background: #f7f0e6;
  padding: 62px 80px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.assessment h2 {
  font-family: var(--serif);
  font-size: 42px;
  line-height: 1.05;
  font-weight: 500;
}
.assessment-copy p:not(.eyebrow) { max-width: 560px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 8px 0;
  font-size: 13px;
}
.check-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid var(--jade);
  border-radius: 50%;
  font-size: 11px;
  line-height: 17px;
  text-align: center;
  color: var(--jade);
}
.gold-checks li:before {
  border: 0;
  color: var(--gold-dark);
  font-weight: 900;
}
.score-card {
  background: #fffaf3;
  padding: 32px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid #eee1d0;
}
.score-card p {
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  font-weight: 800;
}
.score-ring {
  width: 130px;
  height: 130px;
  margin: 0 auto 15px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--gold) 0 78%, #eadcc7 78% 100%);
  position: relative;
}
.score-ring:after {
  content: '';
  position: absolute;
  inset: 14px;
  background: #fffaf3;
  border-radius: 50%;
}
.score-ring span {
  position: relative;
  z-index: 2;
  font-family: var(--serif);
  font-size: 39px;
}
.score-card small { display: block; margin-bottom: 22px; }

/* --- Services Section --- */
.services {
  padding: 52px 60px 68px;
  background: #fbf8f2;
}
.section-title {
  max-width: 1180px;
  margin: 0 auto 30px;
}
.section-title h2 {
  font-family: var(--serif);
  font-size: 38px;
  line-height: 1;
  font-weight: 500;
}
.service-cards {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.service-card {
  background: #fffaf3;
  padding-bottom: 28px;
  box-shadow: 0 1px 0 rgba(200, 159, 82, 0.1);
  position: relative;
}
.service-card img {
  height: 155px;
  width: 100%;
  object-fit: cover;
}
.service-icon {
  position: absolute;
  top: 128px;
  left: 24px;
  width: 54px;
  height: 54px;
  background: var(--jade);
  color: #e6d1a5;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 3px solid #f8f0e5;
  font-size: 22px;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  margin: 36px 25px 4px;
}
.service-card p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0 25px 16px;
  color: #4d4a45;
}
.service-card a {
  margin-left: 25px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  font-weight: 800;
}

/* --- Meet Section --- */
.meet {
  display: grid;
  grid-template-columns: 260px 1fr 270px;
  gap: 36px;
  align-items: center;
  padding: 28px 58px;
  background: #3a4e41;
  color: white;
  min-height: 176px;
}
.meet-photo img {
  width: 230px;
  height: 140px;
  object-fit: cover;
  object-position: center 24%;
  border: 0;
}
.meet h2 {
  font-family: var(--serif);
  font-size: 33px;
  color: white;
  font-weight: 500;
  margin-bottom: 14px;
}
.meet p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 18px;
  color: #f3eadb;
}
.portal {
  height: 120px;
  opacity: 0.75;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

/* --- Testimonials --- */
.testimonials {
  padding: 44px 58px 30px;
  background: #fffaf3;
  position: relative;
  overflow: hidden;
}
.testimonial-wrap {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  position: relative;
}
.testimonial-card {
  background: #fbf7ef;
  border: 1px solid #ece0cf;
  padding: 28px 32px;
  min-height: 180px;
}
.testimonial-card b {
  font-family: var(--serif);
  font-size: 58px;
  color: #d6b981;
  line-height: 0.5;
}
.testimonial-card p {
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.35;
  margin: 0 0 18px;
}
.testimonial-card strong {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
}
.testimonial-card small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 2px;
}
.dots {
  text-align: center;
  margin: 22px 0 0;
}
.dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e9ddcb;
  margin: 0 7px;
}
.dots span:first-child { background: var(--gold); }

/* --- Signup / Newsletter --- */
.signup {
  display: grid;
  grid-template-columns: 1fr 1fr 1.05fr;
  gap: 48px;
  align-items: center;
  max-width: 1240px;
  margin: 20px auto 0;
  background: #f1e5d5;
  padding: 36px 42px;
}
.signup h2 {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
}
.signup-form {
  display: grid;
  gap: 12px;
}
.signup-form input {
  height: 44px;
  border: 1px solid #e2d5c3;
  background: #fffaf5;
  padding: 0 16px;
  font-family: var(--sans);
  font-size: 13px;
}
.signup-form button { width: 100%; }

/* --- Standard Footer (3 columns) --- */
.site-footer {
  background: #fbf8f2;
  color: var(--ink);
  border-top: 1px solid var(--line);
  padding: 44px 60px 0;
}
.site-footer .footer-brand .logo {
  align-items: center;
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
  margin-bottom: 14px;
}
.site-footer .logo .logo-main { color: var(--ink); }
.site-footer .logo .logo-sub { color: var(--ink); }
.site-footer .logo .logo-line { background: var(--gold); }
.site-footer .footer-tagline {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
  max-width: 320px;
  margin: 0 0 12px;
}
.site-footer .footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 28px;
}
.site-footer h4 {
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  margin: 0 0 14px;
  font-weight: 700;
}
.site-footer .footer-main a {
  display: block;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.7;
  text-decoration: none;
}
.site-footer .footer-main a:hover { color: var(--gold-dark); }
.site-footer .footer-contact {
  font-size: 13px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 0 0 16px;
}
.site-footer .footer-social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.site-footer .footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  font-size: 14px;
  text-decoration: none;
  transition: 0.2s;
}
.site-footer .footer-social a:hover {
  background: var(--gold);
  color: white;
}
.site-footer .footer-bottom {
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer .footer-bottom p {
  font-size: 11px;
  color: #706a61;
  margin: 0;
}
.site-footer .footer-legal {
  display: flex;
  gap: 10px;
  align-items: center;
}
.site-footer .footer-legal a {
  font-size: 11px;
  color: #706a61;
  text-decoration: none;
}
.site-footer .footer-legal a:hover {
  color: var(--gold-dark);
}
.site-footer .footer-legal .sep {
  color: var(--line);
  font-size: 11px;
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Tablet Responsive --- */
@media (max-width: 1050px) {
  .site-header { padding: 0 22px; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .nav.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(251,248,242,0.98); padding: 20px; gap: 8px; box-shadow: 0 8px 20px rgba(0,0,0,0.08); }
  .nav.open a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-copy { padding: 62px 32px; max-width: 620px; }
  .hero-image { position: relative; width: 100%; height: 300px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .why-grid,
  .assessment,
  .meet,
  .signup,
  .site-footer .footer-main { grid-template-columns: 1fr; }
  .service-cards,
  .testimonial-wrap { grid-template-columns: 1fr 1fr; }
  .meet-photo img { width: 100%; height: 260px; }
  .portal { display: none; }
}

/* --- Mobile Responsive --- */
@media (max-width: 640px) {
  .site-header { padding: 0 16px; gap: 16px; }
  .hero h1 { font-size: 46px; }
  .why-copy { padding: 42px 26px; }
  .assessment { padding: 42px 26px; grid-template-columns: 1fr; }
  .service-cards,
  .testimonial-wrap { grid-template-columns: 1fr; }
  .mini-icons { grid-template-columns: repeat(2, 1fr); }
  .site-footer { padding: 34px 28px; gap: 30px; }
  .header-btn { display: none; }
  .services { padding: 42px 24px 52px; }
  .testimonials { padding: 34px 24px; }
  .signup { padding: 28px 24px; gap: 28px; }
}
