/* ==========================================================================
   T.L.S.E Cleaning Co. — Site stylesheet
   Palette sampled from the brand business card:
     Navy (primary)   #0a1d33
     Navy (deep)       #071527
     Gold (accent)     #c9a45c
     Gold (light)      #e8cf9a
     Cream (bg)        #f8f4ec
   ========================================================================== */

:root {
  --navy: #0a1d33;
  --navy-deep: #071527;
  --navy-soft: #12294a;
  --gold: #c9a45c;
  --gold-light: #e8cf9a;
  --gold-dark: #a9803f;
  --cream: #f8f4ec;
  --white: #ffffff;
  --text: #1c2b3d;
  --text-muted: #5b6b80;
  --text-on-navy: #f5f1e8;
  --border-soft: rgba(201, 164, 92, 0.35);
  --shadow: 0 20px 45px rgba(10, 29, 51, 0.14);
  --radius: 14px;
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --script: 'Pinyon Script', 'Brush Script MT', cursive;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 700; line-height: 1.2; margin: 0 0 .5em; color: var(--navy); }
p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold);
}
.eyebrow.center { justify-content: center; }

.section { padding: 88px 0; }
.section--tight { padding: 60px 0; }
.section--navy { background: var(--navy); color: var(--text-on-navy); }
.section--navy h2, .section--navy h3, .section--navy .eyebrow { color: var(--text-on-navy); }
.section--navy .eyebrow { color: var(--gold-light); }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section-head p { color: var(--text-muted); }
.section--navy .section-head p { color: rgba(245, 241, 232, 0.78); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(201, 164, 92, 0.35);
}
.btn-gold:hover { box-shadow: 0 16px 34px rgba(201, 164, 92, 0.48); }
.btn-outline {
  background: transparent;
  border-color: var(--gold);
  color: var(--text-on-navy);
}
.btn-outline:hover { background: rgba(201, 164, 92, 0.14); }
.btn-outline-navy {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline-navy:hover { background: rgba(10, 29, 51, 0.06); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ==== Header ==== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 29, 51, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 164, 92, 0.25);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img { width: 48px; height: 48px; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text .brand-mono {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text-on-navy);
  font-size: 1.05rem;
}
.brand-text .brand-script {
  font-family: var(--script);
  color: var(--gold-light);
  font-size: 1.4rem;
  margin-top: -2px;
}

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-on-navy);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--gold-light); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}
.header-phone svg { width: 17px; height: 17px; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-light); display: block; }

/* ==== Hero ==== */
.hero {
  position: relative;
  background: radial-gradient(circle at 82% 18%, rgba(201,164,92,0.16), transparent 55%), var(--navy);
  color: var(--text-on-navy);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(201, 164, 92, 0.35);
  border-radius: 50%;
}
.hero::before { width: 420px; height: 420px; top: -180px; right: -140px; }
.hero::after { width: 260px; height: 260px; bottom: -120px; left: -80px; border-color: rgba(201,164,92,0.2); }
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  padding: 100px 24px 90px;
}
.hero-tagline {
  font-family: var(--script);
  color: var(--gold-light);
  font-size: 1.6rem;
  display: block;
  margin-bottom: 6px;
}
.hero h1 {
  color: var(--text-on-navy);
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}
.hero-sub { color: rgba(245,241,232,.82); font-size: 1.08rem; max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 32px; }
.hero-meta { display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap; }
.hero-meta-item { display: flex; align-items: center; gap: 10px; }
.hero-meta-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.hero-meta-item span { font-size: .86rem; letter-spacing: .04em; color: rgba(245,241,232,.85); }

.hero-art {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  background: linear-gradient(160deg, rgba(201,164,92,0.14), rgba(255,255,255,0.02));
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
}
.hero-art .ring {
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-art .ring::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(201,164,92,.5);
}
.hero-art .ring-icon { width: 108px; height: 108px; color: var(--gold-light); }
.sparkle { position: absolute; color: var(--gold); }
.sparkle svg { width: 100%; height: 100%; }
.sparkle.s1 { width: 26px; height: 26px; top: 18px; right: 46px; }
.sparkle.s2 { width: 16px; height: 16px; bottom: 40px; left: 30px; }
.sparkle.s3 { width: 20px; height: 20px; top: 60%; right: -6px; }

/* ==== Trust bar ==== */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid rgba(10,29,51,0.08);
}
.trust-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding: 26px 24px;
}
.trust-bar li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: .86rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
}
.trust-bar svg { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; }

/* ==== Cards / Services grid ==== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10,29,51,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px rgba(10,29,51,0.18); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.card-icon svg { width: 26px; height: 26px; color: var(--gold-light); }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); margin-bottom: 0; font-size: .95rem; }

.service-card--navy {
  background: var(--navy-soft);
  border: 1px solid var(--border-soft);
  color: var(--text-on-navy);
}
.service-card--navy h3 { color: var(--text-on-navy); }
.service-card--navy p { color: rgba(245,241,232,.75); }
.service-card--navy .card-icon { background: rgba(201,164,92,0.14); }

/* ==== About / split sections ==== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-visual {
  border-radius: var(--radius);
  background: linear-gradient(155deg, var(--navy), var(--navy-soft));
  border: 1px solid var(--border-soft);
  min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}
.split-visual img { width: 150px; height: 150px; }
.split-visual img.owner-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 20%;
  border: 4px solid var(--gold);
  box-shadow: 0 0 0 8px rgba(201, 164, 92, 0.14), 0 20px 45px rgba(0, 0, 0, 0.35);
}
@media (max-width: 500px) {
  .split-visual img.owner-photo { width: 200px; height: 200px; }
}
.list-check { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.list-check li { display: flex; align-items: flex-start; gap: 12px; }
.list-check svg { width: 22px; height: 22px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }

.owner-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--border-soft);
}
.owner-badge .initials {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.owner-badge strong { display: block; font-size: .95rem; color: var(--navy); }
.owner-badge span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--text-muted); }

/* ==== CTA banner ==== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--text-on-navy);
  border-radius: var(--radius);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  border: 1px solid var(--border-soft);
}
.cta-banner h2 { color: var(--text-on-navy); margin-bottom: 8px; }
.cta-banner p { color: rgba(245,241,232,.8); margin: 0; }
.cta-banner-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ==== Footer ==== */
.site-footer {
  background: var(--navy-deep);
  color: rgba(245,241,232,.82);
  padding: 70px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,164,92,0.18);
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: rgba(245,241,232,.68); font-size: .92rem; max-width: 280px; }
.footer-col h4 {
  color: var(--gold-light);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 700;
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: .92rem; color: rgba(245,241,232,.78); }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: .8rem;
  color: rgba(245,241,232,.55);
}
.footer-bottom a { color: rgba(245,241,232,.55); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ==== Mobile call bar ==== */
.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid var(--border-soft);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-callbar a { flex: 1; }

/* ==== Page hero (inner pages) ==== */
.page-hero {
  background: var(--navy);
  color: var(--text-on-navy);
  padding: 64px 0 56px;
  text-align: center;
}
.page-hero h1 { color: var(--text-on-navy); margin-bottom: 10px; }
.page-hero p { color: rgba(245,241,232,.78); max-width: 560px; margin: 0 auto; }
.breadcrumb { font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px; }
.breadcrumb a { color: rgba(245,241,232,.6); }

/* ==== Forms ==== */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
  border: 1px solid rgba(10,29,51,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(10,29,51,0.14);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: .96rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,164,92,0.2);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }
.field-hint { font-size: .78rem; color: var(--text-muted); margin-top: 6px; }

.captcha-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: var(--text-on-navy);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 22px;
}
.captcha-question {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  white-space: nowrap;
}
.captcha-box input { max-width: 110px; margin: 0; }
.captcha-refresh {
  background: none;
  border: 1px solid var(--border-soft);
  color: var(--gold-light);
  border-radius: 8px;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.captcha-refresh svg { width: 17px; height: 17px; }
.hp-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; }

.form-msg {
  display: none;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: .92rem;
  margin-bottom: 20px;
}
.form-msg.show { display: block; }
.form-msg.success { background: rgba(60,140,90,0.12); color: #2c7a4b; border: 1px solid rgba(60,140,90,0.3); }
.form-msg.error { background: rgba(190,70,60,0.1); color: #b8402f; border: 1px solid rgba(190,70,60,0.3); }

.contact-info-card {
  background: var(--navy);
  color: var(--text-on-navy);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border-soft);
}
.contact-info-card h3 { color: var(--text-on-navy); }
.contact-info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.contact-info-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-info-list svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-info-list strong { display: block; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 3px; }
.contact-info-list a, .contact-info-list span { font-size: .96rem; color: rgba(245,241,232,.9); }
.map-embed {
  margin-top: 26px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

/* ==== Utility ==== */
.text-center { text-align: center; }
.mt-lg { margin-top: 48px; }
.fade-up { animation: fadeUp .7s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

/* ==== Responsive ==== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; min-height: 260px; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .main-nav, .header-actions .header-phone-text { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    border-top: 1px solid var(--border-soft);
    padding: 10px 24px 24px;
  }
  .main-nav.open ul { flex-direction: column; align-items: flex-start; gap: 18px; }
  .grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; justify-content: center; }
  .mobile-callbar { display: flex; }
  body { padding-bottom: 66px; }
  .trust-bar ul { gap: 22px; }
  .form-card { padding: 28px 22px; }
}
