/* ============================================
   Wheelers Hill Dry Cleaning & Laundry
   Modern hand-built stylesheet — no frameworks
   ============================================ */

:root {
  --navy:        #0b1f3a;
  --navy-2:      #14305b;
  --ink:         #0a1828;
  --paper:       #faf8f4;
  --paper-2:     #f1ece2;
  --line:        #e5dfd2;
  --muted:       #5b6678;
  --accent:      #c89a3a;
  --accent-2:    #b88826;
  --steam:       #d8e6ee;
  --steam-2:     #aac4d2;
  --shadow-sm:   0 2px 8px rgba(11, 31, 58, 0.06);
  --shadow-md:   0 12px 32px rgba(11, 31, 58, 0.10);
  --shadow-lg:   0 28px 60px rgba(11, 31, 58, 0.14);
  --radius-sm:   6px;
  --radius-md:   14px;
  --radius-lg:   28px;
  --max:         1200px;
  --font-serif:  "Cormorant Garamond", "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans:   -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --ease:        cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

p  { margin: 0 0 1em; color: #2a3548; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* ============================================
   Top bar
   ============================================ */
.topbar {
  background: var(--ink);
  color: #c8d2e2;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  gap: 16px;
}
.topbar a { color: #f0f3fa; transition: color .2s var(--ease); }
.topbar a:hover { color: var(--accent); }
.topbar .pipes { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar .pipes span::before {
  content: "•";
  margin-right: 18px;
  color: #4a5870;
}
.topbar .pipes span:first-child::before { display: none; }

/* ============================================
   Header / Navigation
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
@supports (backdrop-filter: blur(14px)) {
  /* Only apply backdrop-filter on wider screens — on mobile it creates a containing
     block that breaks the position:fixed nav drawer. */
  @media (min-width: 681px) {
    .site-header {
      background: rgba(250, 248, 244, 0.92);
      backdrop-filter: saturate(160%) blur(14px);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
    }
  }
}
.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  color: var(--navy);
  line-height: 1;
}
.brand-mark {
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #ffffff 0%, var(--steam) 40%, var(--steam-2) 100%);
  display: grid; place-items: center;
  border: 1.5px solid rgba(11, 31, 58, 0.12);
  box-shadow: inset 0 -6px 12px rgba(11, 31, 58, 0.06);
  flex-shrink: 0;
}
.brand-mark svg { width: 24px; height: 24px; color: var(--navy); }
.brand-name { font-size: 1.15rem; font-weight: 500; letter-spacing: 0.01em; }
.brand-name small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-links a {
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--navy);
  font-weight: 500;
  position: relative;
  padding: 6px 2px;
  transition: color .25s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--accent-2); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease),
              box-shadow .3s var(--ease),
              background .3s var(--ease),
              color .3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--paper);
  box-shadow: 0 8px 22px rgba(11,31,58,.18);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11,31,58,.28);
}
.btn-accent {
  background: var(--accent);
  color: var(--ink);
}
.btn-accent:hover {
  background: var(--accent-2);
  color: var(--paper);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(11,31,58,.18);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--paper);
  border-color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  margin: 5px 0;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: 80px 0 110px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 90% 0%, rgba(200, 154, 58, 0.10) 0%, transparent 60%),
    radial-gradient(50% 40% at 5% 90%, rgba(170, 196, 210, 0.30) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(11,31,58,.06);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2eb65d;
  box-shadow: 0 0 0 4px rgba(46,182,93,.18);
}
.hero h1 span { color: var(--accent-2); font-style: italic; font-weight: 400;}
.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
  flex-wrap: wrap;
}
.hero-stat strong {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--navy);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(0);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.6s var(--ease);
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,31,58,.4) 100%);
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(250,248,244,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 2;
}
.hero-badge .stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
.hero-badge .reviews-count {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.hero-badge .rating {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1;
}

/* Steam decorative element */
.steam-deco {
  position: absolute;
  top: -40px; right: -30px;
  width: 220px; height: 220px;
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.steam-deco span {
  position: absolute;
  bottom: 0;
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, var(--steam-2) 70%, var(--steam) 100%);
  animation: steam 7s var(--ease) infinite;
}
.steam-deco span:nth-child(1) { left: 30%; height: 120px; animation-delay: 0s; }
.steam-deco span:nth-child(2) { left: 50%; height: 160px; animation-delay: 1.2s; }
.steam-deco span:nth-child(3) { left: 70%; height: 130px; animation-delay: 2.4s; }
@keyframes steam {
  0%   { transform: translateY(20px) scaleY(0.6); opacity: 0; }
  30%  { opacity: .65; }
  100% { transform: translateY(-60px) scaleY(1.1); opacity: 0; }
}

/* ============================================
   Section primitives
   ============================================ */
.section { padding: 110px 0; position: relative; }
.section--cream { background: var(--paper-2); }
.section--ink   { background: var(--ink); color: #d6dde9; }
.section--ink h1, .section--ink h2, .section--ink h3 { color: #fff; }
.section--ink p { color: #aebac9; }

.section-head { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 18px;
}
.section--ink .eyebrow { color: var(--accent); }
.lead { font-size: 1.1rem; color: var(--muted); max-width: 580px; margin: 0 auto; }
.section-head.left .lead { margin-left: 0; }

/* ============================================
   Services grid
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 30px;
  transition: transform .45s var(--ease),
              box-shadow .45s var(--ease),
              border-color .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--paper-2);
  color: var(--navy);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.service-card:hover .service-icon {
  background: var(--navy);
  color: var(--accent);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }
.service-card .price {
  display: inline-block;
  margin-top: 18px;
  font-family: var(--font-serif);
  color: var(--accent-2);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ============================================
   Two-column features
   ============================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.two-col.flip { direction: rtl; }
.two-col.flip > * { direction: ltr; }
.two-col img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.feature-list li {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list .num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.9rem;
}
.feature-list strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 1.05rem;
  font-weight: 600;
}
.feature-list span { color: var(--muted); font-size: 0.95rem; }

/* ============================================
   Reviews
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.section--ink .review-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.section--ink .review-card p { color: #d8e0ec; }
.section--ink .review-card .stars { color: var(--accent); }
.review-card .stars {
  color: var(--accent);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.review-card p {
  font-family: var(--font-serif);
  font-size: 1.13rem;
  line-height: 1.5;
  color: #1d2638;
  font-weight: 500;
  margin-bottom: 22px;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.section--ink .review-meta { border-color: rgba(255,255,255,0.08); }
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--steam), var(--steam-2));
  color: var(--navy);
  display: grid; place-items: center;
  font-weight: 700;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.review-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}
.section--ink .review-meta strong { color: #fff; }
.review-meta span { font-size: 0.8rem; color: var(--muted); }

/* ============================================
   CTA banner
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  background: var(--navy);
  color: var(--paper);
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 100% at 100% 0%, rgba(200,154,58,.18) 0%, transparent 60%),
    radial-gradient(40% 100% at 0% 100%, rgba(170,196,210,.10) 0%, transparent 60%);
}
.cta-banner .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 8px; }
.cta-banner p { color: #c5cdd9; margin-bottom: 0; max-width: 520px; }

/* ============================================
   Footer
   ============================================ */
.site-footer {
  background: var(--ink);
  color: #aebac9;
  padding: 80px 0 32px;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}
.footer-grid a { color: #aebac9; transition: color .2s var(--ease); }
.footer-grid a:hover { color: var(--accent); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid ul li { margin-bottom: 10px; }
.footer-brand { font-family: var(--font-serif); font-size: 1.4rem; color: #fff; margin-bottom: 14px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.82rem;
  color: #6a7793;
}

/* ============================================
   Page banner (sub-pages)
   ============================================ */
.page-banner {
  position: relative;
  padding: 100px 0 80px;
  background: var(--paper-2);
  text-align: center;
  overflow: hidden;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(50% 60% at 80% 20%, rgba(200,154,58,.10) 0%, transparent 70%),
    radial-gradient(40% 60% at 20% 80%, rgba(170,196,210,.20) 0%, transparent 70%);
}
.page-banner .container { position: relative; }
.breadcrumb {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 18px;
}
.breadcrumb a:hover { color: var(--accent-2); }

/* ============================================
   Pricing/services list (services page)
   ============================================ */
.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.price-table {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 36px 32px;
}
.price-table h3 {
  font-family: var(--font-serif);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.price-table .tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}
.price-table > p { color: var(--muted); font-size: 0.95rem; margin-bottom: 24px; }
.price-table dl { margin: 0; }
.price-table div.row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  gap: 18px;
}
.price-table div.row:last-child { border-bottom: 0; }
.price-table dt {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.97rem;
}
.price-table dt small {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
  margin-top: 3px;
}
.price-table dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--accent-2);
  font-weight: 500;
  white-space: nowrap;
}
.price-note {
  margin-top: 36px;
  padding: 22px 26px;
  background: rgba(200,154,58,.10);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  font-size: 0.92rem;
  color: #5a4416;
}

/* ============================================
   About page bits
   ============================================ */
.about-cover {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
  margin-top: -120px;
  margin-bottom: 80px;
  box-shadow: var(--shadow-lg);
}
.about-cover img { width: 100%; height: 100%; object-fit: cover; }
.about-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(11,31,58,.55) 100%);
}
.about-cover .signature {
  position: absolute;
  bottom: 32px; left: 36px; right: 36px;
  color: #fff;
  z-index: 2;
}
.about-cover .signature h2 { color: #fff; margin-bottom: 4px; }
.about-cover .signature span {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.value {
  text-align: center;
  padding: 0 14px;
}
.value-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--accent-2);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.value h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value p { font-size: 0.95rem; color: var(--muted); }

/* ============================================
   Contact page
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-info {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 40px 36px;
}
.info-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.info-item:first-of-type { padding-top: 0; }
.info-item:last-of-type { border-bottom: 0; padding-bottom: 0; }
.info-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--paper-2);
  color: var(--navy);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-icon svg { width: 22px; height: 22px; }
.info-item h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.info-item p, .info-item a {
  margin: 0;
  font-size: 1rem;
  color: var(--ink);
  font-weight: 500;
  transition: color .2s var(--ease);
}
.info-item a:hover { color: var(--accent-2); }

.hours-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.hours-table tr { border-bottom: 1px dashed var(--line); }
.hours-table tr:last-child { border-bottom: 0; }
.hours-table td { padding: 12px 0; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 500; }
.hours-table tr.today { background: rgba(200,154,58,.08); }
.hours-table tr.today td { color: var(--accent-2); font-weight: 600; }
.hours-table tr.today td:first-child::after { content: " — Today"; font-size: 0.78rem; }

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-form label {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(11,31,58,.08);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .full { grid-column: 1 / -1; }
.contact-form button { margin-top: 6px; }
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok {
  background: rgba(46,182,93,.12);
  color: #1f6c3a;
  border: 1px solid rgba(46,182,93,.3);
}

.map-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  margin-top: 36px;
  position: relative;
  aspect-ratio: 16/9;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 30px;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg,
      transparent 0,
      transparent 22px,
      rgba(11,31,58,0.04) 22px,
      rgba(11,31,58,0.04) 23px),
    radial-gradient(50% 60% at 50% 50%, rgba(170,196,210,.4) 0%, transparent 70%);
  pointer-events: none;
}
.map-pin {
  position: relative;
  z-index: 1;
}
.map-pin svg { width: 56px; height: 56px; color: var(--accent-2); margin-bottom: 12px; filter: drop-shadow(0 6px 12px rgba(11,31,58,.2)); }
.map-pin h4 { color: var(--navy); margin-bottom: 4px; font-family: var(--font-serif); font-size: 1.3rem; }
.map-pin p { color: var(--muted); margin-bottom: 14px; font-size: 0.92rem; }

/* ============================================
   Scroll reveal animations
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.delay-4 { transition-delay: .4s; }

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-left.in { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-right.in { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal-scale.in { opacity: 1; transform: scale(1); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html { scroll-behavior: auto; }
  .steam-deco { display: none; }
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 980px) {
  .hero { padding: 50px 0 80px; }
  .hero .container { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { aspect-ratio: 4/3; max-width: 560px; margin: 0 auto; }
  .two-col, .two-col.flip { grid-template-columns: 1fr; gap: 40px; direction: ltr; }
  .two-col img { aspect-ratio: 16/10; max-height: 460px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid  { grid-template-columns: repeat(2, 1fr); }
  .price-list, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .values-grid { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .about-cover { height: 360px; margin-top: -80px; }
}
@media (max-width: 680px) {
  .container { padding: 0 22px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    background: var(--paper);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 18px;
    align-items: flex-start;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    box-shadow: var(--shadow-lg);
    z-index: 60;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    font-size: 1.1rem;
    display: block;
    padding: 14px 4px;
    width: 100%;
  }
  .nav-links a.btn {
    display: inline-flex;
    width: auto;
    margin-top: 18px;
  }
  .nav-overlay {
    position: fixed; inset: 0;
    background: rgba(11,31,58,.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s var(--ease);
    /* Below the header (z-50) so the drawer (inside header) stays clickable. */
    z-index: 45;
  }
  .nav-overlay.show { opacity: 1; pointer-events: auto; }
  .topbar .pipes span:nth-child(n+2) { display: none; }
  .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { gap: 24px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; text-align: center; }
}
