/* ===========================================================================
   Salt & Shine Cleaning — site styles
   Palette + type derived from the brand logo and moodboard.
   =========================================================================== */

:root {
  /* Brand palette */
  --navy:        #3f5063;  /* primary text / headings */
  --navy-deep:   #33414f;
  --rose:        #c58890;  /* accent / primary actions */
  --rose-deep:   #b3737c;
  --rose-soft:   #f1dede;  /* soft pink wash */
  --blue:        #8ba3bc;  /* dusty blue secondary */
  --blue-soft:   #dce6ef;
  --sand:        #bba88c;  /* warm tan */
  --gold:        #c9a86a;  /* subtle accent */
  --cream:       #fbf6f1;  /* page background */
  --cream-2:     #f6efe7;  /* alt section */
  --white:       #ffffff;
  --ink-soft:    #6b7682;  /* muted text */
  --line:        #e9ddd4;  /* hairlines */

  --shadow-sm: 0 2px 10px rgba(63, 80, 99, .07);
  --shadow-md: 0 12px 34px rgba(63, 80, 99, .12);
  --radius:    16px;
  --radius-sm: 10px;

  --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-sans:  'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --maxw: 1140px;
}

/* --- Reset-ish ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--navy);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--rose-deep); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--navy); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.4rem; }
p  { margin: 0 0 1rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }
.muted  { color: var(--ink-soft); font-weight: 400; }
.accent { color: var(--rose); }
.note   { color: var(--ink-soft); font-size: .95rem; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .76rem;
  font-weight: 600;
  color: var(--sand);
  margin: 0 0 .8rem;
}

/* --- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: .8rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-primary { background: var(--rose); color: #fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--rose-deep); color: #fff; box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: #fff; }

.link-arrow { font-weight: 600; font-size: .92rem; color: var(--rose-deep); }
.link-arrow:hover { color: var(--navy); }

/* --- Header / nav -------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 241, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 78px; }
.brand-logo { height: 56px; width: auto; }
.site-nav { display: flex; align-items: center; gap: 1.6rem; }
.site-nav a {
  font-weight: 500; color: var(--navy); font-size: .95rem;
  letter-spacing: .02em;
}
.site-nav a:hover, .site-nav a.is-active { color: var(--rose-deep); }
.site-nav .nav-cta { color: #fff; }
.site-nav .nav-cta:hover { color: #fff; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--navy); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* --- Hero ---------------------------------------------------------------- */
.hero {
  background:
    radial-gradient(1100px 460px at 85% -10%, var(--rose-soft), transparent 60%),
    radial-gradient(900px 500px at -10% 20%, var(--blue-soft), transparent 55%),
    var(--cream);
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.hero-inner { display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center; }
.hero-copy h1 { margin-bottom: .3em; }
.lede { font-size: 1.18rem; color: #4f5d6a; max-width: 34rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1.8rem 0 1.4rem; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; gap: 1.4rem; flex-wrap: wrap; color: var(--navy); font-size: .9rem; font-weight: 500; }
.hero-points li { position: relative; padding-left: 1.4rem; }
.hero-points li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); }

.hero-art { display: flex; justify-content: center; }
.hero-badge {
  width: min(360px, 80%); aspect-ratio: 1; border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  padding: 2rem;
}
.hero-badge img { width: 78%; }

/* --- Sections ------------------------------------------------------------ */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-alt { background: var(--cream-2); }
.section-head { text-align: center; max-width: 40rem; margin: 0 auto 2.6rem; }

/* --- Page hero (interior pages) ------------------------------------------ */
.page-hero {
  background:
    radial-gradient(700px 300px at 80% -20%, var(--rose-soft), transparent 60%),
    var(--cream-2);
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.page-hero .lede { margin-left: auto; margin-right: auto; }

/* --- Cards (service highlights) ------------------------------------------ */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-bottom: .4rem; }
.card p { color: #54616d; font-size: .96rem; }
.card-price { color: var(--rose-deep); font-weight: 600; font-family: var(--font-sans); margin-top: auto; }
.card .link-arrow { margin-top: .6rem; }

/* --- Steps --------------------------------------------------------------- */
.step-list { list-style: none; counter-reset: step; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.step-list li { text-align: center; }
.step-num {
  display: inline-grid; place-items: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--rose-soft); color: var(--rose-deep);
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 600;
  margin-bottom: .9rem;
}
.step-list h3 { font-size: 1.25rem; }
.step-list p { color: #54616d; }

/* --- CTA band ------------------------------------------------------------ */
/* Dusty blue — kept distinct from the navy footer so they don't blend. */
.cta-band {
  background: linear-gradient(120deg, #6f8aa5, var(--blue));
  color: #fff; text-align: center;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-inner { max-width: 40rem; margin: 0 auto; }
.cta-inner p { color: #e8eef4; margin-bottom: 1.6rem; }

/* --- Services list ------------------------------------------------------- */
.service-list { display: flex; flex-direction: column; gap: 1.1rem; max-width: 820px; margin: 0 auto; }
.service-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.7rem 1.8rem; box-shadow: var(--shadow-sm);
}
.service-row h2 { font-size: 1.5rem; margin-bottom: .3rem; }
.service-row p { color: #54616d; margin-bottom: .4rem; }
.service-meta { font-family: var(--font-sans); font-size: .85rem; color: var(--sand); font-weight: 600; letter-spacing: .02em; }
.service-cta { flex-shrink: 0; }

/* --- Prose / lists ------------------------------------------------------- */
.prose { max-width: 720px; margin: 0 auto; font-size: 1.06rem; color: #4f5d6a; }
.prose h2 { margin-top: 2rem; }
.check-list { list-style: none; padding: 0; }
.check-list li { position: relative; padding-left: 1.9rem; margin-bottom: .7rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--rose); font-weight: 700;
}

/* --- Contact ------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2.6rem; align-items: start; }
.contact-info p { margin-bottom: 1rem; }
.contact-info strong { color: var(--navy); }

/* --- Forms --------------------------------------------------------------- */
.form, .booking { width: 100%; }
.form label, .booking label { display: block; font-weight: 500; font-size: .9rem; color: var(--navy); margin-bottom: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
input, select, textarea {
  width: 100%; font-family: var(--font-sans); font-size: 1rem; color: var(--navy);
  background: var(--white); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: .72rem .9rem; margin-top: .35rem; transition: border-color .15s ease, box-shadow .15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(197, 136, 144, .18);
}
textarea { resize: vertical; }

/* --- Booking ------------------------------------------------------------- */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.booking-step {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.9rem; box-shadow: var(--shadow-sm);
}
.booking-step h2 { display: flex; align-items: center; gap: .6rem; font-size: 1.4rem; margin-bottom: 1.2rem; }
.booking-step .step-num { width: 38px; height: 38px; font-size: 1.1rem; margin-bottom: 0; }

.slots { margin: .4rem 0 0; min-height: 56px; }
.slots-hint { color: var(--ink-soft); font-size: .92rem; margin: .6rem 0 0; }
.slots-hint.is-empty { color: var(--rose-deep); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(92px, 1fr)); gap: .55rem; margin-top: .5rem; }
.slot-btn {
  width: 100%; margin: 0; padding: .6rem .4rem; cursor: pointer;
  background: var(--cream); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  font-weight: 600; font-size: .88rem; color: var(--navy);
  transition: all .12s ease;
}
.slot-btn:hover { border-color: var(--rose); color: var(--rose-deep); }
.slot-btn.is-selected { background: var(--rose); border-color: var(--rose); color: #fff; }

.booking-summary {
  background: var(--blue-soft); border-radius: var(--radius-sm);
  padding: .8rem 1rem; margin-bottom: 1rem; font-size: .92rem; color: var(--navy);
}

/* --- Alerts -------------------------------------------------------------- */
.alert { border-radius: var(--radius-sm); padding: 1.1rem 1.3rem; margin-bottom: 1.4rem; }
.alert ul { margin: 0; padding-left: 1.2rem; }
.alert-success { background: #e7f1e8; border: 1px solid #bcd9c0; color: #2f5d3a; }
.alert-success h3 { color: #2f5d3a; }
.alert-error { background: #fbe7e7; border: 1px solid #f0c0c0; color: #9a3838; }

/* --- Footer -------------------------------------------------------------- */
.site-footer { background: var(--navy); color: #d9e1ea; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding: 3rem 24px 2rem; }
/* White logo mark, no backing box — filter turns the colored PNG solid white. */
.footer-logo { height: 92px; width: auto; margin-bottom: 1.1rem; filter: brightness(0) invert(1); }
.footer-brand p { color: #aeb9c5; max-width: 22rem; }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: .8rem; text-transform: uppercase; letter-spacing: .15em; margin-bottom: .9rem; }
.footer-col a, .footer-col p { display: block; color: #cdd6e0; margin-bottom: .5rem; font-size: .95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom p { text-align: center; color: #9aa6b3; font-size: .85rem; padding: 1.1rem 0; margin: 0; }

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute; top: 78px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem 24px 1.2rem; box-shadow: var(--shadow-md);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { margin-top: .8rem; text-align: center; border-bottom: 0; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-badge { width: 220px; }
  .card-grid, .step-list { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.6rem; }
  .form-row { grid-template-columns: 1fr; }
  .service-row { flex-direction: column; align-items: flex-start; }
}
