/* =========================================================
   Halo House Creative — shared stylesheet
   Rebuilt from The Glow Agency site per CONTINUATION doc.

   PLACEHOLDER VALUES USED IN THIS FILE (see NOTES.md):
   - --accent (Muted Terracotta) — no accent/pop color was chosen yet
   - Body/caption font (Work Sans) — stand-in for Neue Haas Grotesk,
     which is a licensed font pending confirmation
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Work+Sans:wght@300;400;500;600&display=swap');

:root {
  /* Brand palette (confirmed in continuation doc, Section 1) */
  --gold: #c6a15b;
  --gold-light: #e3cda0;
  --ivory: #fbf7f0;
  --ivory-2: #f2e9db;
  --charcoal: #34312c;
  --espresso: #2b1d14;
  --line: rgba(43, 29, 20, 0.14);

  /* PLACEHOLDER — no accent/pop color decided yet (Section 9 open item) */
  --accent: #b5654a;
  --accent-light: #d99a83;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Work Sans', Arial, sans-serif; /* PLACEHOLDER for Neue Haas Grotesk */

  --max-width: 1120px;
  --radius: 4px;
}

* { box-sizing: border-box; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--espresso);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em; }

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

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

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

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75em;
  display: inline-block;
}

.section {
  padding: 88px 0;
}

.section--alt {
  background: var(--ivory-2);
}

.section--dark {
  background: var(--espresso);
  color: var(--ivory);
}

.section--dark h2, .section--dark h3 { color: var(--ivory); }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

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

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--gold);
  color: var(--espresso);
}
.btn-primary:hover { background: var(--gold-light); }

.btn-outline {
  border-color: currentColor;
  background: transparent;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }

.btn-accent {
  background: var(--accent);
  color: var(--ivory);
}
.btn-accent:hover { background: var(--accent-light); }

/* -------------------- Logo -------------------- */
/* Real Halo House Creative logo (logo.png) — primary lockup, transparent background. */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.logo-wordmark {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--espresso);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .logo-wordmark { display: none; }
}

.logo--small .logo-img { height: 34px; }

/* Header sits on light Warm Ivory, so the logo's dark wordmark reads fine as-is.
   Footer sits on dark Deep Espresso — the logo's wordmark is black, so it needs
   its own light chip to stay legible without losing the gold ring / rose caption colors. */
.site-footer .logo {
  background: var(--ivory);
  padding: 8px 16px;
  border-radius: var(--radius);
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  color: var(--charcoal);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a.current {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.nav-toggle-checkbox { display: none; }

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--espresso);
  line-height: 1;
  padding: 4px 8px;
}

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

.hero {
  background: var(--espresso);
  color: var(--ivory);
  padding: 120px 0 100px;
  text-align: center;
}

.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--ivory); }

.hero-sub {
  max-width: 620px;
  margin: 0 auto 36px;
  font-size: 1.1rem;
  color: rgba(251, 247, 240, 0.82);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* -------------------- Cards -------------------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.section--alt .card,
.section--dark .card { background: rgba(255,255,255,0.03); }

.card-icon {
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  margin-bottom: 20px;
}

/* -------------------- Pricing -------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tier {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.tier--featured {
  border-color: var(--gold);
  box-shadow: 0 12px 32px rgba(43, 29, 20, 0.08);
  transform: translateY(-8px);
}

.tier-name { margin-bottom: 4px; }

.tier-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  margin: 12px 0;
}

.tier-price span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
}

.tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}

.tier-features li {
  padding: 8px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}

.tier-features li:first-child { border-top: none; }

.tier-note {
  font-size: 0.8rem;
  color: rgba(52,49,44,0.65);
  margin-top: 8px;
}

.sprint-tier {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

/* -------------------- Forms -------------------- */

.opt-in {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-row input[type="email"],
.form-row input[type="text"] {
  flex: 1 1 240px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--ivory);
  color: var(--charcoal);
}

.form-note {
  font-size: 0.78rem;
  color: rgba(52,49,44,0.6);
  margin-top: 14px;
}

.section--dark .form-note { color: rgba(251,247,240,0.6); }

/* -------------------- Portfolio -------------------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.portfolio-item {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.portfolio-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--ivory-2);
}

.portfolio-media--audio {
  aspect-ratio: auto;
  padding: 40px 28px 8px;
}

.portfolio-body { padding: 24px 28px 28px; }

.tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

/* -------------------- About page -------------------- */

.founder-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: start;
}

.founder-photo {
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--ivory-2);
}

/* -------------------- Contact page -------------------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}

.calendly-inline-widget {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ivory-2);
}

.contact-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-card + .contact-card { margin-top: 24px; }

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

.site-footer {
  background: var(--espresso);
  color: rgba(251, 247, 240, 0.75);
  padding: 56px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.site-footer .logo-name { color: var(--ivory); }

.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a { font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }

.footer-copy { font-size: 0.78rem; margin: 0; }

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

@media (max-width: 860px) {
  .card-grid,
  .pricing-grid,
  .portfolio-grid,
  .founder-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .tier--featured { transform: none; }

  .founder-photo { max-width: 320px; margin: 0 auto; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }

  .site-nav ul {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--line);
    padding: 8px 24px 20px;
  }

  .nav-toggle-checkbox:checked ~ ul {
    display: flex;
  }

  .site-nav {
    position: relative;
  }

  .site-nav a {
    display: block;
    padding: 12px 0;
  }

  .section { padding: 64px 0; }
}
                   