/* =============================================================
   Sarah's Sleek Salon -- public landing page
   Brand tokens mirror styles.css so the public site and the
   staff app feel like one product.
   ============================================================= */

:root {
  --bg: #f6f9f9;
  --bg-deep: #eaf2f2;
  --surface: #ffffff;
  --surface-soft: #f1f7f6;
  --line: #e0e8ea;
  --line-strong: #cad6d8;
  --text: #0d1c1f;
  --text-2: #2c3a3e;
  --muted: #5d6c70;
  --muted-strong: #3f4d51;
  --accent: #0d7378;
  --accent-dark: #095459;
  --accent-bright: #16a39c;
  --accent-soft: #def2f0;
  --accent-tint: #ecf7f5;

  --radius: 12px;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-xs: 0 1px 2px rgba(15, 28, 31, 0.04);
  --shadow-sm: 0 1px 2px rgba(15, 28, 31, 0.05), 0 6px 16px rgba(15, 28, 31, 0.04);
  --shadow: 0 4px 12px rgba(15, 28, 31, 0.06), 0 18px 40px rgba(15, 28, 31, 0.05);

  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 { margin: 0; line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 700; }
p  { margin: 0; }

a { color: var(--accent-dark); text-decoration: none; }
a:hover { color: var(--accent); text-decoration: underline; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--text);
  color: #fff;
  padding: 8px 16px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 100;
}
.skip-link:focus { left: 0; outline: none; }

/* ------------- Header / nav ------------- */

.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
}

.site-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--accent-tint);
  padding: 4px;
}

.brand-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.brand-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
}

.site-nav a {
  color: var(--text-2);
  font-weight: 500;
}

.site-nav-cta {
  background: var(--accent);
  color: #fff !important;
  padding: 9px 16px;
  border-radius: var(--radius-full);
  font-weight: 600;
}
.site-nav-cta:hover { background: var(--accent-dark); text-decoration: none; }

/* ------------- Hero ------------- */

.hero {
  background:
    radial-gradient(circle at 80% -20%, rgba(22, 163, 156, 0.18), transparent 60%),
    radial-gradient(circle at -10% 110%, rgba(13, 115, 120, 0.12), transparent 55%),
    var(--bg);
  padding: clamp(48px, 9vw, 96px) 24px clamp(40px, 7vw, 72px);
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  background: var(--accent-tint);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.hero-title {
  color: var(--text);
  margin-bottom: 16px;
}

.hero-lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted-strong);
  max-width: 620px;
  margin: 0 auto 28px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-rating {
  color: var(--muted-strong);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-rating-star { color: #d4a73c; font-size: 1.1rem; }
.hero-rating strong { color: var(--text); }
.hero-rating-sub { color: var(--muted); }

/* ------------- Buttons ------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.08s ease, box-shadow 0.12s ease, background 0.12s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--accent-dark);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  text-decoration: none;
}

.btn-block { display: flex; width: 100%; }
.btn-large { padding: 16px 28px; font-size: 1.1rem; }

.btn-icon { font-size: 1.05em; }

/* ------------- Info strip ------------- */

.info-strip {
  max-width: 1180px;
  margin: -40px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.info-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-tint);
  color: var(--accent-dark);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-card h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card p { color: var(--text); font-size: 0.95rem; }
.info-card a { color: var(--text); font-weight: 600; }
.info-card a:hover { color: var(--accent-dark); }

/* ------------- Content blocks ------------- */

.block {
  padding: clamp(48px, 7vw, 80px) 24px;
}

.block-soft {
  background: var(--bg-deep);
}

.block-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 10px;
}

.eyebrow-accent { color: var(--accent); }

.lead {
  font-size: 1.05rem;
  color: var(--muted-strong);
  margin: 16px 0 20px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-2);
  font-weight: 500;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: var(--accent-tint);
  background-image:
    linear-gradient(45deg, transparent 45%, var(--accent-dark) 45%, var(--accent-dark) 55%, transparent 55%),
    linear-gradient(-45deg, transparent 60%, var(--accent-dark) 60%, var(--accent-dark) 70%, transparent 70%);
  background-size: 12px 8px, 8px 12px;
  background-position: 4px 6px, 2px 4px;
  background-repeat: no-repeat;
}

/* "Hiring" card */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.card.hiring {
  border-color: var(--accent-soft);
  background: linear-gradient(180deg, var(--accent-tint), var(--surface) 65%);
}
.card.hiring h3 {
  font-size: 1.3rem;
  margin: 6px 0 10px;
}
.card.hiring p { color: var(--muted-strong); margin-bottom: 18px; }

/* ------------- Hours & map ------------- */

.hours {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.hours > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 4px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.hours dt { color: var(--muted-strong); font-weight: 600; }
.hours dd { margin: 0; color: var(--text); }
.hours .closed dd { color: var(--muted); }

.hours-note {
  margin-top: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}

.map-wrap {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  background: var(--surface);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ------------- Facebook embed ------------- */

.fb-embed-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.fb-page {
  width: 100%;
  max-width: 520px;
}

/* Facebook injects an iframe inside .fb-page. Keep it from blowing the
   container on small screens. */
.fb-page > span,
.fb-page iframe {
  width: 100% !important;
  max-width: 500px !important;
}

/* ------------- Closing CTA ------------- */

.cta-block { background: var(--accent); color: #fff; }
.cta-inner { text-align: center; }
.cta-block h2 { color: #fff; margin-bottom: 8px; }
.cta-block p { color: rgba(255, 255, 255, 0.88); margin-bottom: 24px; font-size: 1.1rem; }
.cta-block .btn-primary {
  background: #fff;
  color: var(--accent-dark);
}
.cta-block .btn-primary:hover {
  background: var(--accent-tint);
  color: var(--accent-dark);
}

/* ------------- Footer ------------- */

.site-footer {
  background: #0a2326;
  color: #c9d6d8;
  padding: 36px 24px 20px;
}

.site-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer-brand strong { color: #fff; font-size: 1.1rem; }
.site-footer-brand span { font-size: 0.88rem; color: #94a8ab; }

.site-footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.site-footer-links a { color: #c9d6d8; }
.site-footer-links a:hover { color: #fff; }

.site-footer-links .staff-link {
  color: #94a8ab;
  font-size: 0.85rem;
}
.site-footer-links .staff-link:hover { color: #fff; }

.site-footer-bottom {
  max-width: 1180px;
  margin: 18px auto 0;
  font-size: 0.82rem;
  color: #677e82;
  text-align: center;
}

/* ------------- Responsive ------------- */

@media (max-width: 980px) {
  .info-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: -20px; }
  .two-col { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .site-header-inner { padding: 12px 16px; }
  .site-nav { gap: 14px; font-size: 0.9rem; }
  .site-nav a:not(.site-nav-cta) { display: none; }
  .info-strip { padding: 0 16px; grid-template-columns: 1fr; }
  .block { padding: 48px 16px; }
  .site-footer { padding: 28px 16px 16px; }
  .site-footer-inner { flex-direction: column; align-items: flex-start; }
}
