/* ==========================================================================
   Lavanderia Laundromat — Brand Stylesheet
   ========================================================================== */

/* --- CSS Custom Properties --- */
:root {
  --color-white: #F8F7F4;
  --color-blue: #3A7CA5;
  --color-blue-dark: #2E6384;
  --color-slate: #6B7A8D;
  --color-linen: #EDE8E0;
  --color-terracotta: #C4714A;
  --color-text: #3A3A3A;
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Nunito Sans', sans-serif;
  --max-width: 1100px;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-white);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-blue); text-decoration: none; }
a:hover { color: var(--color-blue-dark); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--color-text);
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 1.75rem; font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

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

.section {
  padding: 64px 0;
}

.section--linen {
  background-color: var(--color-linen);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  text-align: center;
}

.btn--primary {
  background-color: var(--color-blue);
  color: #fff;
}

.btn--primary:hover {
  background-color: var(--color-blue-dark);
  color: #fff;
}

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

.btn--outline:hover {
  background-color: var(--color-blue);
  color: #fff;
}

.btn--small {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* --- Header / Nav --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid var(--color-linen);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  overflow: visible;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}

.header__logo svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header__logo-primary {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-blue);
}

.header__logo-secondary {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.75rem;
  color: var(--color-slate);
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.nav__menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}

.nav__links {
  display: flex;
  flex-direction: row;
  list-style: none;
  gap: 0;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav__links li {
  display: inline-flex;
}

.nav__links a {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-slate);
  padding: 8px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background-color 0.2s;
  white-space: nowrap;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-blue);
  background-color: rgba(58, 124, 165, 0.06);
}

.nav__cta {
  margin-left: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.nav__lang {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--color-slate);
  padding: 6px 10px;
  border: 1px solid var(--color-linen);
  border-radius: var(--radius);
  margin-left: 8px;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav__lang:hover {
  color: var(--color-blue);
  border-color: var(--color-blue);
}

.nav__call {
  display: none;
}

/* Mobile nav */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-text);
}

@media (max-width: 768px) {
  .nav__toggle { display: block; }

  .nav__menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 32px 24px;
    z-index: 99;
  }

  .nav__menu.is-open {
    display: flex;
  }

  .nav__links {
    flex-direction: column;
    gap: 0;
  }

  .nav__links a {
    font-size: 1.125rem;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-linen);
  }

  .nav__cta {
    margin: 24px 0 0;
    text-align: center;
  }

  .nav__lang {
    margin: 16px 0 0;
    text-align: center;
    display: inline-block;
  }

  .nav__call {
    display: block;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--color-linen);
    text-align: center;
  }

  .nav__call a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--color-blue);
  }
}

/* --- Hero --- */
.hero {
  padding: 80px 0 64px;
  background-color: var(--color-white);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content h1 {
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-slate);
  margin-bottom: 32px;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--color-linen);
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .hero { padding: 48px 0; }
  .hero__inner { grid-template-columns: 1fr; gap: 32px; }
  h1 { font-size: 1.875rem; }
  .hero__image { order: -1; }
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--color-linen);
  border-bottom: 1px solid var(--color-linen);
}

.trust-bar__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-slate);
}

.trust-bar__item svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-linen);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: box-shadow 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3 {
  color: var(--color-text);
  margin-bottom: 8px;
}

.service-card p {
  color: var(--color-slate);
  font-size: 0.9375rem;
  margin-bottom: 16px;
}

.service-card a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
}

.service--hidden {
  display: none;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* --- Location Snapshot --- */
.location-snapshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.location-snapshot__info h2 {
  margin-bottom: 16px;
}

.location-snapshot__detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.location-snapshot__detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  margin-top: 2px;
}

.location-snapshot__detail span {
  color: var(--color-slate);
}

.location-snapshot__detail a {
  font-weight: 600;
}

.location-snapshot__map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-color: var(--color-linen);
}

.location-snapshot__map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .location-snapshot { grid-template-columns: 1fr; }
}

/* --- Commercial Banner --- */
.commercial-banner {
  background-color: var(--color-blue);
  color: #fff;
  padding: 48px 0;
  text-align: center;
}

.commercial-banner h2 {
  color: #fff;
  margin-bottom: 8px;
}

.commercial-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.125rem;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.commercial-banner .btn--outline {
  color: #fff;
  border-color: #fff;
}

.commercial-banner .btn--outline:hover {
  background-color: #fff;
  color: var(--color-blue);
}

/* --- Reviews --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #fff;
  border: 1px solid var(--color-linen);
  border-radius: var(--radius);
  padding: 24px;
}

.review-card__stars {
  color: #F4B942;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.9375rem;
  color: var(--color-slate);
  font-style: italic;
  margin-bottom: 12px;
}

.review-card__author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* --- Page Header --- */
.page-header {
  padding: 48px 0 32px;
  background-color: var(--color-linen);
}

.page-header h1 {
  margin-bottom: 8px;
}

.page-header p {
  color: var(--color-slate);
  font-size: 1.0625rem;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  font-size: 0.8125rem;
  color: var(--color-slate);
  margin-bottom: 12px;
}

.breadcrumbs a { color: var(--color-blue); }
.breadcrumbs span { margin: 0 6px; }

/* --- Steps --- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}

.step {
  counter-increment: step-counter;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-linen);
  border-radius: var(--radius);
}

.step::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: var(--color-blue);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  margin-bottom: 12px;
}

.step h3 { margin-bottom: 4px; }
.step p { color: var(--color-slate); font-size: 0.9375rem; margin-bottom: 0; }

/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
}

.pricing-table th,
.pricing-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-linen);
}

.pricing-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--color-slate);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pricing-table td {
  font-size: 1rem;
}

.pricing-table .price {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-blue);
}

/* --- Amenities Grid --- */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px;
  background: var(--color-linen);
  border-radius: var(--radius);
}

.amenity svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.amenity span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--color-text);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid #d1d5db;
  border-radius: var(--radius);
  background: #fff;
  color: var(--color-text);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 3px rgba(58, 124, 165, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .form-row { grid-template-columns: 1fr; }
}

/* --- FAQ --- */
.faq-item {
  border-bottom: 1px solid var(--color-linen);
  padding: 20px 0;
}

.faq-item h3 {
  color: var(--color-text);
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--color-slate);
  margin-bottom: 0;
}

/* --- Footer --- */
.footer {
  background-color: var(--color-text);
  color: rgba(255,255,255,0.7);
  padding: 48px 0 0;
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}

.footer a:hover { color: #fff; }

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer__heading {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 0.9375rem;
}

.footer__contact p {
  font-size: 0.9375rem;
  margin-bottom: 8px;
}

.footer__contact a {
  color: var(--color-blue);
}

.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: 48px;
  font-size: 0.8125rem;
  text-align: center;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Content Page Layout --- */
.content-page {
  padding: 48px 0;
}

.content-page--narrow {
  max-width: 720px;
}

/* --- Who We Serve (Commercial) --- */
.who-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-linen);
  border-radius: var(--radius);
}

.who-item svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.who-item span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9375rem;
}

/* --- Page Image Banner --- */
.page-banner {
  width: 100%;
  aspect-ratio: 21/6;
  background-color: var(--color-linen);
  border-radius: 0;
  overflow: hidden;
}

.page-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Highlight Box --- */
.highlight-box {
  background-color: var(--color-linen);
  border-radius: var(--radius);
  padding: 32px;
  margin: 24px 0;
}

.highlight-box h3 {
  margin-bottom: 12px;
}
