/* Beverly Place Dry Cleaning — site styles
   Simple, single stylesheet for easy maintenance. */

:root {
  --green-900: #1b4332;
  --green-800: #234b36;
  --green-700: #2d6a4f;
  --green-600: #40916c;
  --green-500: #52b788;
  --green-200: #b7e4c7;
  --green-100: #d8f3dc;
  --cream: #fbfdf9;
  --ink: #1c2b22;
  --gray: #5b6b60;
  --border: #e1ede4;
  --radius: 14px;
  --shadow: 0 6px 20px rgba(27, 67, 50, 0.08);
  --maxw: 1120px;
}

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

body {
  margin: 0;
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.25;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--gray); }

a { color: var(--green-700); }

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

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

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--green-700); color: #fff; }
.btn-primary:hover { background: var(--green-900); color: #fff; }
.btn-outline { background: transparent; border-color: var(--green-700); color: var(--green-700); }
.btn-outline:hover { background: var(--green-700); color: #fff; }
.btn-light { background: #fff; color: var(--green-800); }

/* Header / Nav */
.site-header {
  background: var(--cream);
}
.header-top {
  text-align: center;
  padding: 24px 24px 18px;
  background: #fff;
}
.header-bottom {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(180deg, var(--green-100) 0%, var(--green-200) 100%);
}
.nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.brand-logo {
  height: 150px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.brand-name {
  display: block;
  font-family: 'Nunito Sans', -apple-system, sans-serif;
  font-weight: 800;
  font-size: 3.6rem;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--green-900);
  white-space: nowrap;
}
.brand-sub {
  display: block;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
  margin-top: 6px;
}
.brand-address {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.01em;
}
@media (max-width: 900px) {
  .brand-name { font-size: 3rem; }
  .brand-sub { font-size: 0.9rem; }
}
@media (max-width: 640px) {
  .brand-row { gap: 14px; }
  .brand-logo { height: 100px; }
  .brand-name { font-size: 1.9rem; white-space: normal; }
  .brand-sub { font-size: 0.72rem; }
  .header-top { padding: 20px 20px 14px; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.96rem;
}
.nav-links a.active,
.nav-links a:hover { color: var(--green-700); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-weight: 600;
  color: var(--green-800);
  text-decoration: none;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--green-900);
  cursor: pointer;
}

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .nav-links.open { max-height: 400px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; width: 100%; border-top: 1px solid var(--border); }
  .nav-cta { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--green-100) 0%, var(--cream) 60%);
  padding: 72px 0 56px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) { .hero-inner { grid-template-columns: 1fr; } }

.eyebrow {
  display: inline-block;
  background: var(--green-200);
  color: var(--green-900);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }

.hero-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  border: 1px solid var(--border);
}
.hero-card ul { margin: 0; padding-left: 20px; color: var(--gray); }
.hero-card li { margin-bottom: 8px; }

/* Trust strip */
.trust-strip {
  background: var(--green-900);
  color: #fff;
  padding: 18px 0;
}
.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 36px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
.trust-strip span { color: var(--green-200); margin-right: 8px; }

.areas-strip {
  background: var(--green-200);
  padding: 8px 0 7px;
  text-align: center;
}
.areas-line {
  font-weight: 600;
  color: var(--green-800);
  font-size: 0.76rem;
  margin: 0 0 3px;
}
.areas-line:last-of-type { margin-bottom: 0; }
.areas-line strong { color: var(--green-900); font-weight: 800; }
.areas-strip .language-note { color: var(--green-800); font-size: 0.72rem; margin-top: 4px; }

/* Sections */
.section { padding: 64px 0; }
.section-alt { background: #f3f9f4; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }

/* Cards grid */
.grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 860px) { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid { grid-template-columns: 1fr; } }

/* Reviews widget */
.reviews-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 560px) { .reviews-grid { grid-template-columns: 1fr; } }
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.review-card .review-platform {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.review-card p { margin-bottom: 14px; }

/* Legal pages (Privacy Policy, Terms of Service) */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content h2 { margin-top: 2em; font-size: 1.4rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { margin-top: 1.4em; color: var(--green-800); }
.legal-content p, .legal-content li { color: var(--ink); }
.legal-content ul { padding-left: 1.2em; margin: 0 0 1em; }
.legal-content li { margin-bottom: 0.4em; }
.legal-content .legal-updated { color: var(--gray); font-size: 0.95rem; margin-bottom: 2em; }

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
}
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.card a.card-link { font-weight: 600; text-decoration: none; }

.services-grid .card { text-align: center; }
.services-grid .card-link { display: inline-block; }

/* How it works steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { text-align: center; }
.step-number {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}

/* Banner (Murrieta CTA) */
.banner {
  background: var(--green-700);
  color: #fff;
  border-radius: 20px;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.banner h2, .banner p { color: #fff; }
.banner p { color: var(--green-100); }

/* Tables (schedule) */
table.schedule {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
table.schedule th, table.schedule td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
table.schedule th { background: var(--green-100); color: var(--green-900); }

.tag {
  display: inline-block;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 3px 4px 3px 0;
}

.area-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.area-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 2px solid var(--green-500);
  color: var(--green-800);
  border-radius: 999px;
  padding: 12px 28px;
  font-size: 1.05rem;
  font-weight: 700;
  box-shadow: var(--shadow);
}
.area-badge::before {
  content: "📍";
  font-size: 0.9rem;
}
@media (max-width: 560px) {
  .area-badge { padding: 10px 20px; font-size: 0.95rem; }
}

/* Forms */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 720px;
  margin: 0 auto;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--green-900);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: #fbfdf9;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green-600);
}
.checkbox-group { display: flex; flex-wrap: wrap; gap: 10px; }
.checkbox-group label {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500;
  background: var(--green-100);
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--green-900);
}
.checkbox-group input { width: auto; }

.form-note {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 10px;
}
.form-success {
  display: none;
  background: var(--green-100);
  border: 1px solid var(--green-500);
  color: var(--green-900);
  padding: 16px 18px;
  border-radius: 10px;
  margin-top: 18px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* FAQ accordion */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 22px;
  font-weight: 600;
  font-family: 'Fraunces', serif;
  color: var(--green-900);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question .icon-plus { transition: transform 0.2s ease; color: var(--green-600); font-size: 1.3rem; }
.faq-item.open .icon-plus { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 22px;
}
.faq-item.open .faq-answer { max-height: 500px; padding-bottom: 18px; }

/* Owner / about */
.owner-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.owner-avatar {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: var(--green-700);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 1.6rem;
  overflow: hidden;
  flex-shrink: 0;
}
.owner-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--green-900);
  color: var(--green-100);
  padding: 48px 0 24px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: var(--green-100); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  font-size: 0.85rem;
  color: var(--green-200);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}
.social-links a:hover { color: var(--green-200); }
.social-links svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}

/* Photo banners */
.photo-banner {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin: 0 0 8px;
}
.photo-banner img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .photo-banner img { height: 220px; }
}

.language-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--green-100);
  margin-top: 6px;
}

/* Photo collage */
.photo-collage {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 440px;
  border-radius: var(--radius);
  overflow: hidden;
}
.collage-main { grid-row: 1 / 3; }
.photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: 220px 140px 140px;
    height: auto;
  }
  .collage-main { grid-row: auto; }
}

.badge-eco {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-900);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
}

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 10px;
  color: var(--gray);
}
.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-600);
  font-weight: 700;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; } }
