/* ----------------------------------------------------
   LIGHT THEME — HOME WATCH BUSINESS
   Modern, warm, professional palette
----------------------------------------------------- */

:root {
  --primary: #2F3A45;
  --accent: #D4A64A;

  --bg: #F7F3EB;
  --card-bg: #FFFFFF;

  --text: #2F3A45;
  --muted: #6F6A63;

  --border: #D9D4CC;
  --highlight: #C57A57;

  --radius: 14px;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* ----------------------------------------------------
   GLOBAL
----------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.main-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ----------------------------------------------------
   NAVIGATION — CLEAN RESPONSIVE VERSION
----------------------------------------------------- */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--accent);
  padding: 2px;
}

.brand-mark-inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--primary);
}

/* Desktop nav */
.nav-links {
  display: flex;
  gap: 1.2rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--muted);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav-links a:hover {
  background: var(--border);
  color: var(--primary);
}

/* Hamburger (hidden on desktop) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* ----------------------------------------------------
   MOBILE NAVIGATION
----------------------------------------------------- */

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 60px;
    right: 20px;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }
}

/* ----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 1.5rem;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 0.9rem;
  color: var(--primary);
}

.hero-title span {
  color: var(--accent);
}

.hero-subtitle {
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 32rem;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
}

.btn-primary {
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  color: var(--primary);
  font-size: 0.9rem;
  cursor: pointer;
}

.hero-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.7rem;
}

/* ----------------------------------------------------
   HERO CARD
----------------------------------------------------- */

.hero-media {
  position: relative;
}

.hero-card {
  background: var(--card-bg);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
}

.hero-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.hero-card-pill {
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--muted);
}

.hero-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.hero-card-item {
  padding: 0.7rem;
  border-radius: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 0.78rem;
  color: var(--primary);
}

.hero-card-item span {
  display: block;
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

/* ----------------------------------------------------
   FOOTER
----------------------------------------------------- */

.footer {
  border-top: 1px solid var(--border);
  background: var(--card-bg);
  padding: 1.1rem 1.5rem;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: var(--muted);
}

/* ----------------------------------------------------
   RESPONSIVE LAYOUT
----------------------------------------------------- */

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 0.5rem;
  }
}
