/* Crystal's Cleaning — design tokens */
:root {
  --teal-deep: #0f4c5c;
  --teal: #14808c;
  --teal-light: #1fabae;
  --caribbean: #2ec4b6;
  --lemon: #ffea6b;
  --lemon-deep: #f4d03f;
  --cream: #fefcf6;
  --sand: #f4efe4;
  --ink: #0f172a;
  --muted: #5c6b7a;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(15, 76, 92, 0.12);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-ui);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(254, 252, 246, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--teal-deep);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--caribbean), var(--teal-deep));
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--teal);
}

.btn {
  border: none;
  cursor: pointer;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 650;
  font-size: 0.95rem;
  padding: 0.72rem 1.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--lemon), var(--lemon-deep));
  color: var(--teal-deep);
  box-shadow: 0 10px 28px rgba(244, 208, 63, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(244, 208, 63, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--teal-deep);
  border: 1px solid rgba(15, 76, 92, 0.28);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--caribbean);
}

.section {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--teal-deep);
  margin: 0 0 0.65rem;
  line-height: 1.15;
}

.section-lede {
  color: var(--muted);
  margin: 0;
  max-width: 620px;
}

.hero {
  background: linear-gradient(160deg, #e9fbf8 0%, var(--sand) 45%, var(--cream) 100%);
  padding: clamp(2.25rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.25rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 5vw, 3.4rem);
  color: var(--teal-deep);
  line-height: 1.08;
  margin: 0 0 1rem;
}

.hero-copy .hero-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.65rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid rgba(15, 76, 92, 0.1);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-deep);
  box-shadow: var(--shadow);
}

.pill .star {
  color: var(--lemon-deep);
}

.hero-card {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}

.hero-photo {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  width: 100%;
}

.hero-badge-float {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(15, 24, 36, 0.85);
  color: var(--cream);
  padding: 0.65rem 1rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-strip {
  background: var(--white);
  border-top: 1px solid rgba(15, 76, 92, 0.08);
  border-bottom: 1px solid rgba(15, 76, 92, 0.08);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 1.35rem 0;
}

@media (max-width: 900px) {
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .trust-inner {
    grid-template-columns: 1fr;
  }
}

.trust-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.93rem;
  color: var(--muted);
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(46, 196, 182, 0.15);
  color: var(--teal-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.25rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
}

.service-body {
  padding: 1.15rem 1.2rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  margin: 0 0 0.45rem;
  font-size: 1.15rem;
  color: var(--teal-deep);
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.service-from {
  margin-top: 0.85rem;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
}

.gallery-wrap {
  background: var(--sand);
  border-block: 1px solid rgba(15, 76, 92, 0.06);
}

.gallery-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 1rem 0 1.5rem;
  scrollbar-width: thin;
}

.gallery-track.paused {
  animation: none;
}

.gallery-track img {
  flex: 0 0 min(320px, 78vw);
  scroll-snap-align: start;
  border-radius: var(--radius);
  height: 220px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.booking-section {
  background: var(--white);
}

.booking-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: start;
}

@media (max-width: 960px) {
  .booking-shell {
    grid-template-columns: 1fr;
  }
}

.steps-rail {
  background: linear-gradient(180deg, rgba(46, 196, 182, 0.12), var(--sand));
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
}

.step-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.step-list li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--muted);
}

.step-list li.active {
  color: var(--teal-deep);
}

.step-dot {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(15, 76, 92, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.step-list li.active .step-dot {
  background: var(--caribbean);
  border-color: var(--caribbean);
  color: var(--white);
}

.booking-panel {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 76, 92, 0.1);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: var(--shadow);
}

.book-step {
  display: none;
}

.book-step.active {
  display: block;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.choice-card {
  border-radius: 12px;
  border: 2px solid rgba(15, 76, 92, 0.12);
  padding: 0.85rem 0.95rem;
  cursor: pointer;
  background: var(--white);
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
  font-family: var(--font-ui);
}

.choice-card:hover {
  border-color: var(--caribbean);
}

.choice-card.selected {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.25);
}

.choice-card strong {
  display: block;
  color: var(--teal-deep);
}

.choice-card span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

label.field {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 76, 92, 0.2);
  font-family: var(--font-ui);
  margin-bottom: 0.95rem;
  background: var(--white);
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 560px) {
  .row-2 {
    grid-template-columns: 1fr;
  }
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.92rem;
}

.price-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 234, 107, 0.35), rgba(46, 196, 182, 0.12));
  border: 1px solid rgba(15, 76, 92, 0.12);
}

.price-box .big {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--teal-deep);
}

.nav-actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem;
  border: 1px solid rgba(15, 76, 92, 0.08);
  box-shadow: var(--shadow);
}

.testimonial .stars {
  color: var(--lemon-deep);
  margin-bottom: 0.5rem;
}

.testimonial p {
  margin: 0 0 0.75rem;
  color: var(--muted);
}

.testimonial cite {
  font-style: normal;
  font-weight: 700;
  color: var(--teal-deep);
}

.cta-dark {
  background: radial-gradient(120% 120% at 10% 10%, #1b4b5a, #0b1f28 60%, #07141a);
  color: var(--cream);
}

.cta-dark .section-title {
  color: var(--cream);
}

.cta-dark .section-lede {
  color: rgba(254, 252, 246, 0.78);
}

.footer {
  background: #061016;
  color: rgba(254, 252, 246, 0.78);
  padding: 2.5rem 0;
  font-size: 0.92rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer a {
  color: var(--caribbean);
}

.footer strong {
  color: var(--white);
}

.mobile-nav-toggle {
  display: none;
  border: 1px solid rgba(15, 76, 92, 0.2);
  background: var(--white);
  border-radius: 10px;
  padding: 0.45rem 0.65rem;
  font-weight: 700;
}

@media (max-width: 920px) {
  .mobile-nav-toggle {
    display: inline-flex;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    right: 4%;
    top: 64px;
    flex-direction: column;
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 76, 92, 0.1);
  }
}

.helper {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: -0.5rem;
  margin-bottom: 0.85rem;
}

/* ─── Chip booking wizard (#booking-app) ─── */
.booking-app-host {
  margin-top: 1.5rem;
}

#booking-app .booking-card {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 76, 92, 0.1);
  padding: clamp(1.35rem, 3vw, 1.95rem);
  box-shadow: var(--shadow);
  max-width: 720px;
  margin-inline: auto;
}

#booking-app .booking-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--teal-deep);
}

#booking-app .sub {
  margin: 0 0 1.35rem;
  font-size: 0.9rem;
  color: var(--muted);
}

#booking-app .field {
  margin-bottom: 1.15rem;
}

#booking-app .field > label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

#booking-app .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
}

@media (max-width: 560px) {
  #booking-app .field-row {
    grid-template-columns: 1fr;
  }
}

#booking-app .chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

#booking-app .chip-row.date-chip-row {
  gap: 8px;
}

#booking-app .chip {
  font-family: var(--font-ui);
  cursor: pointer;
  border-radius: 999px;
  border: 2px solid rgba(15, 76, 92, 0.14);
  background: var(--white);
  padding: 0.42rem 0.95rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s, background 0.15s;
}

#booking-app .chip:hover {
  border-color: var(--caribbean);
}

#booking-app .chip.active {
  border-color: var(--teal);
  background: rgba(46, 196, 182, 0.12);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.2);
  color: var(--teal-deep);
}

#booking-app .chip.lemon:not(.active) {
  border-color: rgba(244, 208, 63, 0.55);
  background: rgba(255, 234, 107, 0.2);
}

#booking-app .chip.lemon.active {
  background: linear-gradient(135deg, rgba(255, 234, 107, 0.55), rgba(46, 196, 182, 0.14));
}

#booking-app .date-chip {
  display: grid;
  grid-template-rows: auto auto auto;
  place-items: center;
  gap: 0.12rem;
  min-width: 3.85rem;
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  line-height: 1.1;
}

#booking-app .date-chip .day {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

#booking-app .date-chip .num {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--teal-deep);
}

#booking-app .date-chip .mon {
  font-size: 0.72rem;
  color: var(--muted);
}

#booking-app .input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(15, 76, 92, 0.18);
  border-radius: 10px;
  background: var(--white);
  padding: 0.15rem 0.65rem;
  color: var(--teal);
}

#booking-app .input-wrap .input,
#booking-app .input-wrap .select {
  flex: 1;
  min-width: 0;
}

#booking-app .input {
  border: none;
  background: transparent;
  padding: 0.52rem 0;
  margin: 0;
  font-family: var(--font-ui);
}

#booking-app .input:focus {
  outline: none;
}

#booking-app .select {
  border: none;
  background: transparent;
  padding: 0.52rem 0;
  margin: 0;
  font-family: var(--font-ui);
  cursor: pointer;
}

#booking-app .price-display {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-top: 0.75rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 234, 107, 0.35), rgba(46, 196, 182, 0.12));
  border: 1px solid rgba(15, 76, 92, 0.12);
}

#booking-app .price-display .label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

#booking-app .price-display .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--teal-deep);
  line-height: 1;
}

#booking-app .price-display .right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.45rem;
}

#booking-app .btn-back {
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--teal-deep);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: underline;
  padding: 0.25rem 0;
}

#booking-app .btn-back:hover {
  color: var(--teal);
}

#booking-app .booking-smallprint {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

#booking-app .confirmation {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(15, 76, 92, 0.1);
  padding: clamp(1.65rem, 4vw, 2.35rem);
  box-shadow: var(--shadow);
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}

#booking-app .confirmation .check {
  color: var(--caribbean);
  display: grid;
  place-items: center;
  margin-bottom: 0.35rem;
}

#booking-app .confirmation h3 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--teal-deep);
}

#booking-app .confirmation > p:first-of-type {
  margin: 0 0 1.25rem;
  color: var(--muted);
}

#booking-app .summary {
  text-align: left;
  margin: 0 auto 1.25rem;
  max-width: 22rem;
  border-radius: 12px;
  border: 1px solid rgba(15, 76, 92, 0.1);
  background: var(--cream);
  padding: 1rem 1.15rem;
  display: grid;
  gap: 0.65rem;
  font-size: 0.92rem;
}

#booking-app .summary div {
  display: flex;
  justify-content: space-between;
  gap: 0.85rem;
  align-items: baseline;
}

#booking-app .summary span {
  color: var(--muted);
  flex-shrink: 0;
}

#booking-app .summary strong {
  color: var(--ink);
  text-align: right;
}

#booking-app .channels {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-bottom: 1rem;
}

#booking-app .channel {
  font-size: 0.82rem;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

#booking-app .btn.btn-ghost-light {
  background: transparent;
  border: 2px solid rgba(15, 76, 92, 0.2);
  color: var(--teal-deep);
}

#booking-app .btn.btn-ghost-light:hover {
  border-color: var(--caribbean);
  background: rgba(46, 196, 182, 0.08);
}
