/* Henry Cleaning Australia — site design system */

:root {
  --sage: #91968d;
  --sage-dark: #737a6f;
  --cream: #faf8f3;
  --ink: #1c1c1a;
  --charcoal: #2c2c2a;
  --body-text: #3a3a38;
  --border: #d0cfc8;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Jost', Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--body-text);
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; }
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  text-wrap: balance;
}

/* ── Nav ── */
.hc-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: padding 0.3s;
}
.hc-nav a { display: block; line-height: 0; text-decoration: none; }
.hc-nav img { height: 52px; width: auto; display: block; object-fit: contain; }

/* ── Video hero (homepage) ── */
.hc-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.hc-video-wrap { position: absolute; inset: 0; width: 100%; height: 100%; }
.hc-video-wrap iframe {
  position: absolute; top: 50%; left: 50%;
  width: 177.78vh; height: 100vh; min-width: 100%; min-height: 56.25vw;
  transform: translate(-50%, -50%);
  border: none; pointer-events: none;
}
.hc-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.5)); z-index: 1; }
.hc-hero-content { position: absolute; top: 50%; left: 0; right: 0; transform: translateY(-50%); text-align: center; z-index: 2; padding: 0 2rem; }
.hc-hero-content h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; color: #fff; }

/* ── Image hero (inner pages) ── */
.hc-img-hero { position: relative; height: 50vh; overflow: hidden; margin-top: 0; }
.hc-img-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hc-img-hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 5%; }
.hc-img-hero-overlay h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 300; color: #fff; letter-spacing: 0.02em; }

/* ── Booking strip ── */
.hc-strip, a.hc-strip {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 22px 32px; background: var(--sage); color: #fff;
  text-decoration: none; font-size: 15px; letter-spacing: 3px;
  text-transform: uppercase; font-weight: 500; width: 100%; border: none;
}
.hc-strip svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ── About / content sections ── */
.hc-section { padding: 80px 0; }
.hc-section.alt { background: #fdfcfa; }
.hc-section-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
.hc-about-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.hc-about-inner img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: center top; }
.hc-about-text { padding-left: 40px; border-left: 3px solid var(--sage); display: flex; flex-direction: column; gap: 20px; }
.hc-about-text h2 { font-size: clamp(2rem, 4vw, 3rem); }
.hc-about-text p { font-size: 17px; font-weight: 400; line-height: 1.85; }

/* ── Buttons ── */
.hc-btn {
  display: inline-block; padding: 16px 40px; background: var(--sage); color: #fff;
  text-decoration: none; font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; border-radius: 2px; cursor: pointer; border: none;
}
.hc-btn:hover { background: var(--sage-dark); }

/* ── How it works / step grid ── */
.hc-lbl { font-size: 11px; letter-spacing: 4px; text-transform: uppercase; color: var(--sage-dark); font-weight: 500; margin-bottom: 12px; }
.hc-steps { display: grid; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid rgba(145,150,141,0.3); margin-top: 56px; }
.hc-step { padding: 40px 40px 40px 0; border-right: 1px solid rgba(145,150,141,0.3); min-width: 0; }
.hc-step:last-child { border-right: none; padding-right: 0; }
.hc-step:not(:first-child) { padding-left: 40px; }
.hc-step .num { font-family: 'Cormorant Garamond', serif; font-size: 48px; font-weight: 300; color: #b0b8ac; margin-bottom: 16px; line-height: 1; }
.hc-step .ttl { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--charcoal); margin-bottom: 10px; }
.hc-step .bdy { font-size: 16px; font-weight: 400; line-height: 1.8; word-wrap: break-word; }
.hc-how-cta { margin-top: 56px; text-align: center; }

/* ── Banner ── */
.hc-banner { position: relative; height: 65vh; overflow: hidden; }
.hc-banner img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hc-banner-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.1) 70%); display: flex; align-items: center; justify-content: center; text-align: center; padding: 0 5%; }
.hc-banner-overlay h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 300; color: #fff; transform: translateY(-25px); }

/* ── Work-with-Henry strip ── */
.hc-wwh { background: var(--sage); padding: 40px; text-align: center; }
.hc-wwh a { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.9); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }

/* ── Form section (book / enquiry pages) ── */
.hc-form-section { background: #fff; padding: 80px 48px; display: flex; justify-content: center; }
.hc-form-section .inner { max-width: 560px; width: 100%; }
.hc-form-section h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); margin-bottom: 12px; }
.hc-form-section .sub { font-size: 17px; font-weight: 400; color: #46463f; line-height: 1.8; margin-bottom: 36px; }
.hc-form { display: flex; flex-direction: column; gap: 14px; }
.hc-form input, .hc-form textarea, .hc-form select {
  width: 100%; padding: 16px 18px; border: 1px solid var(--border); background: #fdfcfa;
  font-family: 'Jost', sans-serif; font-size: 16px; font-weight: 400; color: var(--ink);
  outline: none; transition: border-color 0.2s;
}
.hc-form input:focus, .hc-form textarea:focus, .hc-form select:focus { border-color: var(--sage); }
.hc-form input::placeholder, .hc-form textarea::placeholder { color: #aaa; }
.hc-form textarea { height: 120px; resize: vertical; }
.hc-form button { padding: 18px; background: var(--sage); color: #fff; border: none; font-size: 13px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; cursor: pointer; margin-top: 8px; }
.hc-form button:hover { background: var(--sage-dark); }
.hc-form button:disabled { opacity: 0.6; cursor: default; }
.hc-form-success { display: none; text-align: center; padding: 60px 20px; }
.hc-form-success.show { display: block; }
.hc-form-success h3 { font-size: 2.5rem; margin-bottom: 16px; }
.hc-form-success p { font-size: 17px; font-weight: 400; color: #46463f; line-height: 1.8; }
.hc-form-error { display: none; color: #b04040; font-size: 13px; margin-top: 4px; }
.hc-form-error.show { display: block; }
.hc-divider { width: 60px; height: 1px; background: var(--sage); margin: 0 auto 32px; }

/* ── Content slot placeholder (regional page scaffolds) ── */
.hc-slot { border: 1px dashed var(--border); background: #fdfcfa; padding: 32px; font-size: 13px; color: #8a8a82; text-align: center; margin: 16px 0; }

/* ── Selectable package / cleaner-preference (structured signup form) ── */
.hc-price-card.selectable { cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s; }
.hc-price-card.selectable:hover { border-color: var(--sage); }
.hc-price-card.selectable.selected { border-color: var(--sage); box-shadow: 0 0 0 2px var(--sage); }
.hc-pref-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 4px 0; }
.hc-pref-opt { border: 1px solid var(--border); border-radius: 20px; padding: 9px 18px; font-size: 13px; cursor: pointer; background: #fdfcfa; user-select: none; }
.hc-pref-opt.selected { border-color: var(--sage); background: var(--sage); color: #fff; }
.hc-form-label { font-size: 12px; letter-spacing: 0.5px; color: #6b6b62; margin: 10px 0 -4px; }

/* ── Cleaner profile cards (regional pages) ── */
.hc-cleaners { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; margin-top: 32px; }
.hc-cleaner-card { display: flex; gap: 24px; align-items: flex-start; }
.hc-cleaner-photo-wrap { position: relative; flex-shrink: 0; width: 120px; height: 120px; }
.hc-cleaner-photo { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; }
.hc-cleaner-badge { position: absolute; bottom: -4px; left: 50%; transform: translateX(-50%); background: var(--sage); color: #fff; font-size: 10px; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 10px; white-space: nowrap; }
.hc-cleaner-name { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ink); margin-bottom: 2px; }
.hc-cleaner-title { font-size: 12px; color: var(--sage-dark); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.hc-cleaner-bio { font-size: 15px; font-weight: 400; line-height: 1.8; color: var(--body-text); margin-bottom: 8px; }
.hc-cleaner-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.hc-cleaner-tag { font-size: 11px; letter-spacing: 0.5px; color: var(--sage-dark); border: 1px solid var(--border); border-radius: 12px; padding: 4px 12px; }
.hc-availability { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: #4a7a4a; font-weight: 500; margin-top: 10px; }
.hc-availability::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #4a7a4a; display: inline-block; }
@media (max-width: 640px) {
  .hc-cleaner-card { flex-direction: column; align-items: center; text-align: center; }
  .hc-cleaner-tags { justify-content: center; }
}

/* ── Pricing table ── */
.hc-pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 32px; }
.hc-price-card { border: 1px solid var(--border); padding: 32px 24px; text-align: center; }
.hc-price-card .tier { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--ink); margin-bottom: 8px; }
.hc-price-card .amount { font-size: 28px; font-weight: 500; color: var(--sage-dark); margin-bottom: 6px; }
.hc-price-card .note { font-size: 12px; color: #8a8a82; }

/* ── Footer ── */
.hc-footer { background: var(--charcoal); padding: 24px 48px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.hc-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.hc-footer-links a { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; }
.hc-footer .copy { font-size: 11px; color: rgba(255,255,255,0.2); }

/* ── Body padding for pages with a fixed nav + no video hero ── */
.hc-page-body { padding-top: 88px; }

@media (max-width: 768px) {
  .hc-hero { display: none; }
  .hc-about-inner { grid-template-columns: 1fr; gap: 40px; padding: 0 24px; }
  .hc-about-inner img { width: 100%; aspect-ratio: 4/5; margin: 0; }
  .hc-about-text { padding-left: 0; border-left: none; align-items: center; text-align: center; padding: 0; }
  .hc-steps { grid-template-columns: 1fr; }
  .hc-step { border-right: none; border-bottom: 1px solid rgba(145,150,141,0.3); padding: 32px 0; }
  .hc-step:not(:first-child) { padding-left: 0; }
  .hc-section-inner { padding: 0 24px; }
  .hc-footer { padding: 24px; }
  .hc-banner { height: 50vh; }
  .hc-nav img { height: 50px; }
  .hc-form-section { padding: 60px 24px; }
  .hc-img-hero { height: 40vh; }
}
