/* ============================================
   PEARL CLEANING — shared stylesheet
   Palette:
     --cream        #f1efe7  page background
     --white        #FFFFFF  cards / panels
     --pearl-blue   #258ec8  primary brand blue
     --pearl-deep   #1a6a99  headings / hover / footer
     --powder       #e5eff5  soft section backgrounds
     --ink          #2A333A  body text
     --shimmer      #b8d4e8  subtle warm accent (the "pearl" glint)
   Type:
     Display: 'Playfair Display' italic — headlines, echoes the logo's script
     Body:    'Jost' — light, airy, brochure-like
     Utility: 'Jost' uppercase, tracked — nav / labels / eyebrows
   Signature element: the "pearl divider" — a hairline rule with a single
   luminous dot at its centre, used to break sections instead of a stock rule.
   ============================================ */

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




:root{
  --cream: #f1efe7;
  --white: #FFFFFF;
  --pearl-blue: #258ec8;
  --pearl-deep: #1a6a99;
  --powder: #e5eff5;
  --ink: #2A333A;
  --shimmer: #b8d4e8;
  --radius: 2px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-weight: 500;
  color: var(--pearl-deep);
  margin: 0 0 0.4em;
  line-height: 1.15;
}

h1{ font-size: clamp(2.4rem, 5vw, 4rem); }
h2{ font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
h3{ font-size: 1.35rem; }

p{ margin: 0 0 1em; }

a{ color: var(--pearl-blue); text-decoration: none; }

.eyebrow{
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--pearl-blue);
}

img{ max-width: 100%; display: block; }

.container{
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Header / nav ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 239, 231, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(26,106,153,0.08);
}

.nav{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  max-width: 1140px;
  margin: 0 auto;
}

.nav .logo{
  display: flex;
  align-items: center;
}

.logo-img {
  height: 70px;  /* Increased from 40px to 70px */
  width: auto;
  display: block;
}

.nav-links{
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a{
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pearl-deep);
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.nav-links a:hover, .nav-links a.active{
  border-color: var(--shimmer);
}

.nav-cta{
  background: var(--pearl-blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.nav-cta:hover{ background: var(--pearl-deep); }

.nav-toggle{ display: none; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn-primary{
  background: var(--pearl-blue);
  color: var(--white);
}
.btn-primary:hover{ background: var(--pearl-deep); }

.btn-outline{
  background: transparent;
  border-color: var(--pearl-blue);
  color: var(--pearl-blue);
}
.btn-outline:hover{ background: var(--pearl-blue); color: var(--white); }

.btn-ghost-light{
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.65);
  color: var(--white);
}
.btn-ghost-light:hover{ background: var(--white); color: var(--pearl-deep); }

.btn-row{ display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero{
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero-media{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,106,153,0.25) 0%, rgba(20,32,42,0.78) 100%), var(--pearl-deep);
  background-size: cover;
  background-position: center;
}

.hero-content{
  position: relative;
  z-index: 2;
  padding: 0 32px 80px;
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

.hero .eyebrow{ color: var(--shimmer); }
.hero h1{ color: var(--white); max-width: 14ch; }
.hero .lede{ max-width: 46ch; font-size: 1.1rem; color: rgba(255,255,255,0.88); }

/* ---------- Photo placeholder ---------- */
.photo-slot{
  background: var(--powder);
  border: 1px dashed var(--pearl-blue);
  color: var(--pearl-deep);
  font-size: 0.8rem;
  font-family: 'Jost', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  min-height: 220px;
  border-radius: var(--radius);
}

.photo-slot code{
  display: block;
  margin-top: 8px;
  font-family: monospace;
  font-size: 0.75rem;
  color: var(--pearl-blue);
}

/* ---------- Pearl divider (signature element) ---------- */
.pearl-divider{
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 auto 56px;
  max-width: 1140px;
  padding: 0 32px;
}

.pearl-divider::before, .pearl-divider::after{
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(26,106,153,0.18);
}

.pearl-divider .dot{
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffffff, var(--shimmer) 55%, var(--pearl-blue) 100%);
  box-shadow: 0 0 10px rgba(37,142,200,0.6);
  flex: none;
}

/* ---------- Sections ---------- */
section{ padding: 96px 0; }
section.tight{ padding: 64px 0; }
section.powder{ background: var(--powder); }
section.deep{ background: var(--pearl-deep); color: var(--white); }
section.deep h2, section.deep h3{ color: var(--white); }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Grids ---------- */
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- Service card ---------- */
.service-card{
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card .body{ padding: 28px; }

.service-price{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--pearl-blue);
  font-size: 1.4rem;
  margin: 6px 0 14px;
}

.service-price small{
  font-family: 'Jost', sans-serif;
  font-style: normal;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  opacity: 0.6;
}

.tag-list{ list-style: none; margin: 0 0 20px; padding: 0; font-size: 0.9rem; }
.tag-list li{ padding-left: 18px; position: relative; margin-bottom: 6px; }
.tag-list li::before{
  content: "";
  position: absolute; left: 0; top: 0.6em;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--shimmer);
}

/* ---------- Testimonials ---------- */
.testimonial{
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
}

.testimonial .quote-mark{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 3rem;
  color: var(--shimmer);
  line-height: 0.6;
  display: block;
  margin-bottom: 12px;
}

.testimonial .name{
  margin-top: 16px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pearl-blue);
}

/* ---------- Contact tiles ---------- */
.contact-tile{
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
}

.contact-tile .eyebrow{ display:block; margin-bottom: 10px; }

.contact-tile a.value{
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--pearl-deep);
}

/* ---------- Footer ---------- */
footer{
  background: var(--pearl-deep);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 28px;
}

.footer-logo {
  height: 60px;  /* Increased from 40px to 60px */
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4{
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  font-family: 'Jost', sans-serif;
  margin-bottom: 16px;
}

.footer-grid ul{ list-style: none; margin: 0; padding: 0; }
.footer-grid li{ margin-bottom: 10px; font-size: 0.92rem; }
.footer-grid a{ color: rgba(255,255,255,0.75); }
.footer-grid a:hover{ color: var(--shimmer); }

.social-row{ display: flex; gap: 14px; }
.social-row a{
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}

.footer-bottom{
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar{ display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .nav-links{ display: none; }
  .nav-links.open{
    display: flex;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    padding: 8px 32px 20px;
    border-bottom: 1px solid rgba(26,106,153,0.08);
  }
  .nav-links.open li{ padding: 10px 0; border-top: 1px solid rgba(26,106,153,0.08); }
  .nav-toggle{ display: block; background:none; border:none; font-size:1.4rem; color:var(--pearl-deep); }
  .grid-2, .grid-3, .grid-4{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  section{ padding: 64px 0; }
  .mobile-callbar{
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 60;
    background: var(--pearl-deep);
    padding: 12px 16px;
    gap: 10px;
  }
  .mobile-callbar a{
    flex: 1;
    text-align: center;
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 10px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius);
  }
  body{ padding-bottom: 64px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ transition: none !important; }
}
