:root {
  --ink: #172126;
  --muted: #647579;
  --paper: #ffffff;
  --cream: #f5fbf8;
  --sage: #7fb69f;
  --sage-dark: #2e6959;
  --sky: #eaf8fb;
  --coral: #d96f58;
  --line: rgba(23, 33, 38, 0.1);
  --shadow: 0 22px 60px rgba(38, 93, 101, 0.11);
  --radius: 8px;
  --section-y: clamp(72px, 9vw, 116px);
  --section-x: clamp(18px, 4.8vw, 56px);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 5vw, 64px);
  color: var(--ink);
}

.brand,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.brand-logo {
  display: block;
  width: clamp(190px, 24vw, 292px);
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.55));
}

.nav-links {
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.nav-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(46, 105, 89, 0.18);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: var(--sage-dark);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 28px rgba(38, 93, 101, 0.1);
  backdrop-filter: blur(14px);
  opacity: 1;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.nav-links a:hover {
  border-color: rgba(46, 105, 89, 0.32);
  background: rgba(245, 253, 252, 0.94);
  box-shadow: 0 14px 34px rgba(38, 93, 101, 0.15);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 90svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("./assets/hero-ironing-service.png");
  background-position: center;
  background-size: cover;
  filter: saturate(1.08) contrast(1.05) brightness(1.02);
  transform: scale(1.02);
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76) 0%, rgba(245, 253, 252, 0.34) 46%, rgba(235, 251, 250, 0) 100%),
    linear-gradient(0deg, rgba(234, 248, 251, 0.1), rgba(255, 255, 255, 0.03));
}

.hero-content {
  width: min(700px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding: clamp(112px, 16vw, 156px) 0 clamp(64px, 9vw, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--coral);
}

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

h1,
h2 {
  font-family: inherit;
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 800;
}

h1 {
  max-width: 720px;
  margin-bottom: clamp(18px, 3vw, 26px);
  font-size: clamp(3.35rem, 8.2vw, 6.3rem);
  line-height: 0.98;
  text-shadow: 0 2px 18px rgba(255, 255, 255, 0.72);
}

h2 {
  max-width: 780px;
  margin-bottom: clamp(16px, 2.4vw, 24px);
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.28;
  font-weight: 800;
}

.hero-copy {
  max-width: 640px;
  margin-bottom: 30px;
  color: #334348;
  font-size: clamp(1.04rem, 1.8vw, 1.22rem);
  line-height: 1.7;
  text-shadow: 0 1px 16px rgba(255, 255, 255, 0.72);
}

.hero-actions,
.button {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: clamp(34px, 5vw, 48px);
}

.button {
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 13px 22px;
  font-weight: 800;
  line-height: 1.15;
}

.button.primary {
  color: #fff;
  background: var(--sage-dark);
  box-shadow: 0 12px 28px rgba(46, 105, 89, 0.18);
}

.button.primary:hover {
  background: #24483f;
}

.button.secondary {
  color: var(--sage-dark);
  border-color: rgba(46, 105, 89, 0.28);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(12px);
}

.button.full {
  width: 100%;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  max-width: 760px;
  margin: 0;
}

.quick-facts div {
  border-top: 1px solid rgba(23, 33, 38, 0.14);
  padding-top: 16px;
}

dt {
  color: inherit;
  font-weight: 800;
}

dd {
  margin: 0;
}

.quick-facts dt {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.quick-facts dd {
  color: var(--ink);
}

.section-inner {
  width: min(1120px, calc(100% - var(--section-x) * 2));
  margin: 0 auto;
}

.section-band {
  background:
    linear-gradient(135deg, rgba(234, 248, 251, 0.7), rgba(255, 255, 255, 0.45)),
    var(--cream);
}

.intro {
  padding: clamp(58px, 7vw, 88px) 0;
}

.intro-grid,
.split,
.contact-grid {
  display: grid;
  gap: clamp(32px, 6vw, 76px);
}

.intro-grid {
  grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
  align-items: start;
}

.intro p:last-child,
.section-copy p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.services {
  padding: var(--section-y) 0;
  background:
    linear-gradient(90deg, rgba(234, 248, 251, 0.95), rgba(255, 255, 255, 0.66)),
    var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.service-card,
.price-row,
.hours-panel,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.service-card {
  padding: clamp(24px, 3vw, 34px);
}

.service-card p,
.price-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.prices,
.hours,
.contact {
  padding: var(--section-y) 0;
}

.split {
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(320px, 1fr) minmax(260px, 0.9fr);
}

.price-list {
  display: grid;
  gap: 16px;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(22px, 3vw, 30px);
}

.price-row strong {
  flex: 0 0 auto;
  color: var(--sage-dark);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  white-space: nowrap;
}

.price-row.muted {
  background: rgba(234, 248, 251, 0.86);
}

.hours {
  background: var(--paper);
}

.hours-panel {
  padding: clamp(26px, 5vw, 46px);
  background:
    linear-gradient(145deg, rgba(127, 182, 159, 0.14), rgba(234, 248, 251, 0.86)),
    #fff;
}

.status-pill {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border-radius: 999px;
  margin-bottom: 26px;
  padding: 8px 14px;
  color: #fff;
  background: var(--sage-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.hours-list {
  display: grid;
  gap: 20px;
  margin: 0;
}

.hours-list div {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.hours-list dt {
  margin-bottom: 4px;
}

.hours-list dd {
  color: var(--muted);
  font-size: 1.18rem;
}

.contact-grid {
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 430px);
  align-items: center;
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 3vw, 32px);
  font-style: normal;
}

.contact-card span {
  font-weight: 900;
  font-size: 1.25rem;
}

.contact-card a:not(.button) {
  color: var(--sage-dark);
  font-weight: 700;
}

.site-footer {
  padding: 28px 18px;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    width: min(100% - 32px, 680px);
    margin: 0 auto;
    padding: 108px 0 58px;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(245, 253, 252, 0.42)),
      linear-gradient(0deg, rgba(234, 248, 251, 0.12), rgba(255, 255, 255, 0.04));
  }

  .quick-facts,
  .intro-grid,
  .service-grid,
  .split,
  .split.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .price-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .brand {
    max-width: calc(100vw - 36px);
  }

  .brand-logo {
    width: min(220px, calc(100vw - 36px));
  }

  h1 {
    font-size: clamp(2.35rem, 10vw, 3.05rem);
    line-height: 1.03;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .hero-copy,
  .intro p:last-child,
  .section-copy p {
    font-size: 1rem;
    line-height: 1.68;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .service-card,
  .price-row,
  .contact-card {
    padding: 22px;
  }
}


.footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-links a {
  color: var(--sage-dark);
}

.legal-page {
  background:
    linear-gradient(135deg, rgba(234, 248, 251, 0.7), rgba(255, 255, 255, 0.45)),
    var(--cream);
  min-height: 100svh;
}

.legal-main {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 140px 0 80px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
}

.legal-card h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.05;
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 3vw, 2rem);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card a {
  color: var(--sage-dark);
  font-weight: 700;
}

.legal-list {
  padding-left: 1.2rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sage-dark);
  font-weight: 800;
}

@media (max-width: 520px) {
  .site-header {
    padding: 18px 18px 6px;
  }

  .brand-logo {
    width: min(190px, calc(100vw - 36px));
  }

  .hero {
    min-height: 100svh;
    align-items: start;
  }

  .hero-content {
    padding: 126px 0 46px;
  }

  .eyebrow {
    margin-bottom: 10px;
  }

  h1 {
    margin-bottom: 16px;
  }

  .hero-copy {
    margin-bottom: 24px;
  }

  .hero-actions {
    gap: 10px;
    margin-bottom: 28px;
  }

  .quick-facts {
    gap: 14px;
  }

  .quick-facts div {
    padding-top: 12px;
  }

  .legal-main {
    padding-top: 120px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
