/* ============================================================
   SMOOVE CLOSER SOLUTIONS — brand stylesheet
   Palette + type pulled straight from the flyer.
   ============================================================ */

:root {
  /* Brand palette */
  --paper:      #FAF5F0;   /* main cream background */
  --paper-warm: #F5EDE4;
  --blush:      #F3D9DC;   /* signature blush band */
  --blush-soft: #F8E7E9;
  --blush-icon: #F0D4D8;   /* icon circle fill */
  --rose:       #E4B8BE;

  --gold:       #C6A15B;   /* primary gold */
  --gold-light: #E4C888;
  --gold-deep:  #A9803F;
  --gold-grad:  linear-gradient(135deg, #E4C888 0%, #C6A15B 45%, #A9803F 100%);

  --ink:        #161616;   /* near-black */
  --ink-soft:   #1E1E1E;
  --text:       #262220;   /* body on light */
  --text-mut:   #6C6360;   /* muted */
  --cream-text: #F4EDE4;   /* body on dark */
  --cream-mut:  #C9BFB4;

  --line:       rgba(198,161,91,0.35);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --script: 'Allura', cursive;
  --sans:   'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1180px;
  --shadow: 0 18px 50px rgba(40,25,15,0.10);
  --shadow-sm: 0 8px 24px rgba(40,25,15,0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---------- Type helpers ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-deep);
}
.script { font-family: var(--script); font-weight: 400; text-transform: none; letter-spacing: 0; }
.gold-text { color: var(--gold-deep); }
.rule {
  display: inline-block; width: 54px; height: 2px;
  background: var(--gold-grad); vertical-align: middle; border-radius: 2px;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250,245,240,0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198,161,91,0.18);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 40px; height: auto; }
.brand-txt { line-height: 1; }
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.35rem;
  letter-spacing: 0.14em; color: var(--ink); display: block;
}
.brand-sub {
  font-family: var(--sans); font-weight: 500; font-size: 0.56rem;
  letter-spacing: 0.34em; color: var(--gold-deep); text-transform: uppercase;
  margin-top: 2px;
}
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-weight: 500; font-size: 0.9rem; letter-spacing: 0.02em; color: var(--text); transition: color .2s; }
.nav-links a:hover { color: var(--gold-deep); }
.nav-links .btn { color: var(--ink); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  letter-spacing: 0.03em; padding: 14px 30px; border-radius: 40px;
  cursor: pointer; border: none; transition: transform .18s ease, box-shadow .2s ease, background .2s;
}
.btn-gold {
  background: var(--gold-grad); color: #2a1c08;
  box-shadow: 0 10px 24px rgba(169,128,63,0.34);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(169,128,63,0.45); }
.btn-dark { background: var(--ink); color: var(--cream-text); }
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--gold); padding: 12px 28px;
}
.btn-outline:hover { background: var(--gold); color: #2a1c08; transform: translateY(-2px); }
.btn-ghost-light {
  background: transparent; color: var(--cream-text);
  border: 1.5px solid rgba(228,200,136,0.6); padding: 12px 28px;
}
.btn-ghost-light:hover { background: rgba(228,200,136,0.14); transform: translateY(-2px); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; background: var(--paper); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: 0; right: 0; width: 46%; height: 100%;
  background: linear-gradient(160deg, var(--blush) 0%, var(--blush-soft) 100%);
  clip-path: polygon(22% 0, 100% 0, 100% 100%, 0 100%);
  z-index: 0;
}
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px;
  align-items: center; padding-top: 54px; padding-bottom: 54px;
}
.hero-copy .eyebrow-line { display: flex; align-items: center; gap: 14px; margin-bottom: 6px; }
.hero-tag-script {
  font-family: var(--script); font-size: 2.1rem; color: var(--gold-deep);
  line-height: 1; margin-bottom: 22px;
}
.hero h1 {
  font-family: var(--serif); font-weight: 700; color: var(--ink);
  font-size: clamp(2.6rem, 5.4vw, 4.1rem); line-height: 1.02;
  letter-spacing: 0.005em; margin-bottom: 20px;
}
.hero h1 .gold-text { display: block; }
.hero-sub {
  font-size: 1.08rem; color: var(--text-mut); max-width: 440px; margin-bottom: 14px;
}
.hero-nationwide {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-portrait { position: relative; justify-self: center; }
.hero-portrait .frame {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: var(--shadow); border: 5px solid #fff;
  max-width: 380px;
}
.hero-portrait .frame img { width: 100%; }
.hero-portrait::after {
  content: ""; position: absolute; right: -18px; bottom: -18px;
  width: 130px; height: 130px; background: var(--gold-grad);
  border-radius: 12px; z-index: -1; opacity: 0.85;
}

/* ============================================================
   PROOF BAR (stats)
   ============================================================ */
.proof {
  background: var(--ink); color: var(--cream-text);
  padding: 40px 0;
}
.proof .grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.proof .stat .num {
  font-family: var(--serif); font-weight: 700; font-size: 2.5rem;
  color: var(--gold-light); line-height: 1;
}
.proof .stat .lbl {
  font-size: 0.82rem; color: var(--cream-mut); letter-spacing: 0.04em; margin-top: 8px;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: 84px 0; }
.section-head { text-align: center; margin-bottom: 54px; }
.section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-head h2 {
  font-family: var(--serif); font-weight: 600; color: var(--ink);
  font-size: clamp(2rem, 4vw, 2.9rem); letter-spacing: 0.14em; text-transform: uppercase;
}
.section-head p { color: var(--text-mut); max-width: 560px; margin: 14px auto 0; }
.head-rules { display: flex; align-items: center; justify-content: center; gap: 16px; }

/* ---------- Services ---------- */
.services-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.svc {
  background: #fff; border-radius: 16px; padding: 36px 26px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(198,161,91,0.14);
  transition: transform .22s ease, box-shadow .22s ease;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc .icon {
  width: 74px; height: 74px; border-radius: 50%; background: var(--blush-icon);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 22px;
}
.svc .icon svg { width: 34px; height: 34px; stroke: var(--gold-deep); }
.svc h3 {
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--ink); margin-bottom: 14px; line-height: 1.3;
}
.svc p { font-size: 0.92rem; color: var(--text-mut); }

/* ---------- Divider band (blush) ---------- */
.blush-band { background: var(--blush-soft); }

/* ---------- Value / bullets (about + home) ---------- */
.value-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.value-list { list-style: none; }
.value-list li {
  display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(198,161,91,0.16);
}
.value-list li:last-child { border-bottom: none; }
.value-list .tick {
  flex: 0 0 24px; height: 24px; border-radius: 50%; background: var(--gold-grad);
  display: flex; align-items: center; justify-content: center; margin-top: 3px;
}
.value-list .tick svg { width: 13px; height: 13px; stroke: #2a1c08; stroke-width: 3; }
.value-list b { color: var(--ink); font-weight: 600; }
.value-list span.txt { color: var(--text-mut); font-size: 0.96rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero { background: linear-gradient(160deg, var(--blush-soft), var(--paper)); }
.about-hero .wrap {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center;
  padding: 66px 28px;
}
.about-portrait .frame {
  border-radius: 14px; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow);
  max-width: 360px;
}
.about-hero h1 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ink); line-height: 1.05; margin: 8px 0 18px;
}
.about-hero .lead { font-size: 1.12rem; color: var(--text); max-width: 540px; }
.about-hero .lead + .lead { margin-top: 16px; color: var(--text-mut); font-size: 1.02rem; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h3 {
  font-family: var(--serif); font-weight: 600; font-size: 1.7rem; color: var(--ink);
  margin: 36px 0 14px; letter-spacing: 0.01em;
}
.prose p { color: var(--text-mut); margin-bottom: 16px; font-size: 1.02rem; }
.prose p strong { color: var(--text); }

.cred-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 10px; }
.cred {
  background: #fff; border-radius: 14px; padding: 26px 24px; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--gold);
}
.cred .big { font-family: var(--serif); font-weight: 700; font-size: 1.9rem; color: var(--gold-deep); line-height: 1; }
.cred .cap { font-weight: 600; color: var(--ink); margin: 8px 0 4px; font-size: 0.98rem; }
.cred .dsc { font-size: 0.9rem; color: var(--text-mut); }

.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.chip {
  background: var(--blush-soft); color: var(--gold-deep); border: 1px solid rgba(198,161,91,0.3);
  padding: 7px 16px; border-radius: 30px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
}

/* ============================================================
   CTA (dark, flyer footer style)
   ============================================================ */
.cta {
  background: var(--ink); color: var(--cream-text); text-align: center;
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; right: -60px; bottom: -60px; width: 220px; height: 220px;
  background: var(--gold-grad); transform: rotate(45deg); opacity: 0.5;
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 {
  font-family: var(--serif); font-weight: 700; text-transform: uppercase;
  font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: 0.08em; line-height: 1.05;
}
.cta .script { font-size: clamp(2.6rem, 6vw, 4rem); color: var(--gold-light); display: block; text-transform: none; margin-top: -6px; }
.cta p { color: var(--cream-mut); max-width: 520px; margin: 16px auto 30px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 34px; }
.cta-contact { display: flex; gap: 36px; justify-content: center; flex-wrap: wrap; }
.cta-contact a { display: inline-flex; align-items: center; gap: 10px; color: var(--cream-text); font-weight: 500; }
.cta-contact .ic {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(243,217,220,0.14);
  display: flex; align-items: center; justify-content: center;
}
.cta-contact .ic svg { width: 18px; height: 18px; stroke: var(--gold-light); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #0d0d0d; color: var(--cream-mut); padding: 30px 0; }
.footer .wrap { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer .tags { display: flex; gap: 10px; flex-wrap: wrap; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: #7a7168; }
.footer .tags span::after { content: "  |"; margin-left: 10px; color: var(--gold-deep); }
.footer .tags span:last-child::after { content: ""; }
.footer .fine { font-size: 0.78rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; text-align: center; }
  .hero::before { width: 100%; height: 44%; top: 0; clip-path: polygon(0 0,100% 0,100% 78%,0 100%); }
  .hero-copy { order: 2; }
  .hero-portrait { order: 1; margin-bottom: 20px; }
  .hero-copy .eyebrow-line, .hero-cta, .hero-nationwide { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .proof .grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid { grid-template-columns: 1fr; gap: 30px; }
  .about-hero .wrap { grid-template-columns: 1fr; text-align: center; padding: 46px 28px; }
  .about-portrait { justify-self: center; }
  .about-hero .lead { margin-left: auto; margin-right: auto; }
  .cred-grid { grid-template-columns: 1fr; }
  .nav-links { gap: 18px; }
  .nav-links a:not(.btn) { display: none; }
}
@media (max-width: 540px) {
  .services-grid { grid-template-columns: 1fr; }
  .proof .grid { grid-template-columns: 1fr 1fr; }
  .cta-contact { flex-direction: column; gap: 16px; align-items: center; }
  .brand-name { font-size: 1.1rem; }
  .wrap { padding: 0 20px; }
}
