:root {
  --navy: #0b2554;
  --blue: #16458c;
  --red: #b22234;
  --red-dark: #861827;
  --ink: #142033;
  --muted: #5f6d80;
  --line: #dce3ee;
  --paper: #f6f8fb;
  --white: #ffffff;
  --gold: #f2c84b;
  --shadow: 0 22px 60px rgba(11, 37, 84, 0.16);
  --gutter: clamp(16px, 3vw, 32px);
  --content-width: 1180px;
  --section-space: clamp(52px, 6vw, 72px);
  --card-pad: clamp(20px, 2.2vw, 28px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(220, 227, 238, 0.9);
}

.utility-bar {
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  justify-content: center;
  align-items: center;
  padding: 8px var(--gutter);
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.utility-bar a:hover {
  color: #dfeaff;
}

.nav-wrap {
  width: min(var(--content-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  min-height: clamp(104px, 8.5vw, 122px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 900;
  color: var(--navy);
  font-size: clamp(22px, 2vw, 26px);
  line-height: 1.15;
}

.brand img {
  width: clamp(92px, 7.5vw, 108px);
  height: clamp(92px, 7.5vw, 108px);
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.nav-links a {
  padding: 12px 12px;
  border-radius: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover {
  background: #eef4ff;
}

.nav-toggle {
  display: none;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 320px);
  align-items: center;
  gap: clamp(40px, 5vw, 72px);
  padding: clamp(64px, 7vw, 84px) max(var(--gutter), calc((100vw - var(--content-width)) / 2)) clamp(62px, 7vw, 82px);
  overflow: hidden;
  background: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.flag-wash {
  width: 100%;
  height: 100%;
  background:
    linear-gradient(90deg, rgba(11, 37, 84, 0.97) 0%, rgba(11, 37, 84, 0.9) 38%, rgba(11, 37, 84, 0.68) 68%, rgba(178, 34, 52, 0.36) 100%),
    url("../img/photo-laundromat-real.png") center 48% / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -42% 52%;
  height: 64%;
  border-radius: 999px 999px 0 0;
  display: none;
}

.hero-content,
.hero-card {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #dce8ff;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: clamp(16px, 2vw, 24px);
  color: var(--white);
  font-size: clamp(44px, 5.2vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.hero-copy {
  max-width: 620px;
  color: #edf4ff;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.55;
  font-weight: 650;
}

.hero-actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(20px, 3vw, 28px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 14px 20px;
  font-weight: 900;
}

.btn.primary {
  background: var(--red);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--red-dark);
}

.btn.secondary {
  background: var(--white);
  color: var(--navy);
}

.hero-card {
  align-self: center;
  justify-self: center;
  width: min(100%, 310px);
  padding: clamp(20px, 2.4vw, 26px);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.hero-mascot {
  width: min(72%, 210px);
  margin: 0 auto 10px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(11, 37, 84, 0.18));
}

.hero-card strong {
  display: block;
  color: var(--navy);
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 900;
}

.hero-card p {
  max-width: 100%;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.45;
}

.trust-strip {
  width: min(var(--content-width), calc(100% - (var(--gutter) * 2)));
  margin: -24px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 14px;
}

.trust-strip div {
  padding: var(--card-pad);
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 6px solid var(--red);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  color: var(--navy);
  font-size: 18px;
}

.trust-strip span {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}

.section {
  width: min(var(--content-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: var(--section-space) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: start;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.intro-section .section-heading {
  display: block;
}

.section-heading.center {
  display: block;
  max-width: min(780px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.section-heading h2,
.special-copy h2,
.hours-card h2,
.location-card h2,
.contact-section h2 {
  color: var(--navy);
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.intro-copy {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.photo-story {
  width: min(var(--content-width), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 0 0 var(--section-space);
}

.photo-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
}

.photo-feature img,
.photo-grid img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(11, 37, 84, 0.12);
}

.photo-feature img {
  aspect-ratio: 16 / 10;
}

.photo-feature div {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 12px;
  background: var(--navy);
  color: var(--white);
}

.photo-feature h2 {
  color: var(--white);
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.photo-feature p:not(.eyebrow) {
  margin-bottom: 0;
  color: #dce8ff;
  font-size: 18px;
  line-height: 1.6;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(14px, 2vw, 18px);
  margin-top: clamp(14px, 2vw, 18px);
}

.photo-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: clamp(180px, 18vw, 230px);
  background: var(--navy);
}

.photo-grid img {
  height: 100%;
  min-height: clamp(180px, 18vw, 230px);
  box-shadow: none;
  transition: transform 280ms ease;
}

.photo-grid article:hover img {
  transform: scale(1.04);
}

.photo-grid strong {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 9px 11px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 15px;
  font-weight: 900;
}

.services-section {
  width: 100%;
  max-width: none;
  padding-inline: max(var(--gutter), calc((100vw - var(--content-width)) / 2));
  background: var(--paper);
  scroll-margin-top: 112px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
  align-items: stretch;
}

.service-card {
  grid-column: span 4;
  padding: var(--card-pad);
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 4px solid #d8e3f4;
  box-shadow: 0 10px 28px rgba(11, 37, 84, 0.08);
}

.service-card.featured {
  border-top-color: var(--red);
}

.service-card.wide {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fd 100%);
}

.service-card:nth-child(5),
.service-card:nth-child(6) {
  grid-column: span 6;
}

.service-card:nth-child(n + 7) {
  grid-column: span 4;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #eef4ff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h3 {
  color: var(--navy);
  font-size: clamp(21px, 2.2vw, 26px);
  margin-bottom: 16px;
  line-height: 1.15;
}

.service-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.service-card li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 15px;
  font-weight: 600;
}

.service-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}

.columns {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: clamp(20px, 3vw, 36px);
}

.specials-section,
.hours-location,
.contact-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  align-items: stretch;
}

.specials-section {
  align-items: center;
}

.special-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
  gap: clamp(12px, 2vw, 14px);
}

.special-list div,
.hours-card,
.location-card,
.contact-form {
  padding: var(--card-pad);
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px rgba(11, 37, 84, 0.08);
}

.special-list div {
  border-left: 6px solid var(--red);
}

.special-list strong,
.special-list span {
  display: block;
}

.special-list strong {
  color: var(--navy);
  font-size: 18px;
}

.special-list span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.hours-location {
  align-items: stretch;
}

.hours-card {
  background: var(--navy);
  color: var(--white);
}

.hours-card .eyebrow,
.hours-card h2 {
  color: var(--white);
}

dl {
  margin: 22px 0 0;
  display: grid;
  gap: 14px;
}

dt {
  font-weight: 900;
  color: #dce8ff;
}

dd {
  margin: 4px 0 0;
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 800;
}

.location-card p,
.special-copy p,
.contact-section p {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.65;
}

.contact-methods {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-methods a {
  color: var(--navy);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 15px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 900;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.website-field {
  display: none;
}

.form-status {
  padding: 12px 14px;
  border-radius: 8px;
  font-weight: 800;
}

.form-status.success {
  background: #e7f8ee;
  color: #166534;
}

.form-status.error {
  background: #fff0f2;
  color: var(--red-dark);
}

.site-footer {
  padding: 42px 20px;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.site-footer img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  margin: 0 auto 12px;
  background: var(--white);
  border-radius: 8px;
  padding: 6px;
}

.site-footer p {
  margin: 6px 0;
}

@media (max-width: 980px) {
  .brand {
    gap: 14px;
    font-size: 21px;
  }

  .brand img {
    width: 92px;
    height: 92px;
  }

  .nav-links a {
    padding-inline: 9px;
    font-size: 13px;
  }

  .hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-card {
    justify-self: start;
    width: min(100%, 320px);
  }

  .hero-mascot {
    width: min(68%, 200px);
  }

  .photo-feature,
  .intro-section,
  .specials-section,
  .hours-location,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .photo-feature div {
    max-width: 760px;
  }

  .service-card.wide {
    grid-column: 1 / -1;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card,
  .service-card:nth-child(5),
  .service-card:nth-child(6),
  .service-card:nth-child(n + 7) {
    grid-column: span 1;
  }

  .service-card.wide {
    grid-column: 1 / -1;
  }

  .columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .utility-bar {
    display: none;
  }

  .nav-wrap {
    width: calc(100% - (var(--gutter) * 2));
    min-height: 96px;
  }

  .brand span {
    max-width: 205px;
    font-size: 18px;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: var(--gutter);
    right: var(--gutter);
    top: 96px;
    display: none;
    padding: 12px;
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid var(--line);
  }

  .nav-links.open {
    display: grid;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: clamp(44px, 9vw, 58px) var(--gutter) clamp(44px, 9vw, 58px);
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.04;
  }

  .hero-card {
    justify-self: stretch;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(100px, 128px) minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    text-align: left;
  }

  .hero-mascot {
    width: 100%;
    margin: 0;
  }

  .trust-strip,
  .intro-section,
  .section,
  .services-section,
  .photo-story {
    width: calc(100% - (var(--gutter) * 2));
    padding-inline: 0;
  }

  .trust-strip,
  .section-heading,
  .service-grid,
  .photo-feature,
  .photo-grid,
  .specials-section,
  .hours-location,
  .contact-section,
  .special-list {
    grid-template-columns: 1fr;
  }

  .service-card.wide {
    grid-column: auto;
  }

  .columns {
    grid-template-columns: 1fr;
  }

  .section {
    padding: var(--section-space) 0;
  }
}

@media (max-width: 480px) {
  :root {
    --gutter: 16px;
    --section-space: 52px;
  }

  .brand {
    gap: 8px;
  }

  .brand span {
    max-width: 175px;
    font-size: 17px;
  }

  .brand img {
    width: 70px;
    height: 70px;
  }

  .hero-card {
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 18px;
  }

  .hero-card p {
    font-size: 14px;
  }

  .trust-strip {
    margin-top: -16px;
  }

  .photo-feature img {
    aspect-ratio: 4 / 3;
  }
}
