/* ============================================
   BeCreative Communications — Global Stylesheet
   ============================================ */

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

:root {
  --color-ink: #2c2a25;
  --color-ink-light: #4a4740;
  --color-ink-muted: #7a7770;
  --color-paper: #faf9f7;
  --color-paper-warm: #f0ede6;
  --color-moss: #7a8c6e;
  --color-moss-dark: #5e6d53;
  --color-moss-light: #9aab8e;
  --color-moss-pale: #e8ede4;
  --color-brown: #8b7355;
  --color-brown-dark: #6e5a42;
  --color-brown-light: #a89070;
  --color-white: #ffffff;
  --color-border: #ddd8ce;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', sans-serif;
  --max-width: 1100px;
  --section-pad: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); font-weight: 300; color: var(--color-ink); background: var(--color-paper); line-height: 1.7; }
img { max-width: 100%; display: block; }
a { color: var(--color-moss-dark); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--color-moss); }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.2; }

/* --- Navigation --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 249, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}
.nav-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 30px; height: 70px;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 600;
  color: var(--color-ink); letter-spacing: 0.02em;
}
.nav-logo span { color: var(--color-moss); }
.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 400;
  color: var(--color-ink-light); text-transform: uppercase;
  letter-spacing: 0.12em; position: relative; padding-bottom: 2px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px; background: var(--color-moss); transition: width 0.3s;
}
.nav-links a:hover { color: var(--color-ink); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--color-ink); }
.nav-links a.active::after { width: 100%; }

/* Pure CSS mobile menu */
.nav-checkbox { display: none; }
.nav-toggle {
  display: none; cursor: pointer; padding: 8px;
  position: relative; width: 40px; height: 40px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--color-ink); margin: 5px 0; transition: 0.3s;
}

/* --- Hero --- */
.hero {
  padding: 160px 30px 100px; text-align: center;
  background: var(--color-paper); position: relative;
}
.hero::before {
  content: '\201C'; position: absolute; top: 100px; left: 50%;
  transform: translateX(-50%); font-family: var(--font-display);
  font-size: 20rem; color: var(--color-moss-pale); opacity: 0.5;
  pointer-events: none; line-height: 1;
}
.hero-tagline {
  font-family: var(--font-body); font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--color-moss); margin-bottom: 20px; font-weight: 500;
}
.hero h1 {
  font-size: 3.5rem; font-weight: 500; color: var(--color-ink);
  margin-bottom: 24px; max-width: 750px;
  margin-left: auto; margin-right: auto;
  position: relative; z-index: 1;
}
.hero h1 em { font-style: italic; color: var(--color-moss-dark); }
.hero-sub {
  font-size: 1.15rem; color: var(--color-ink-light);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 500; text-transform: uppercase;
  letter-spacing: 0.15em; padding: 15px 40px;
  border: 1.5px solid var(--color-ink); color: var(--color-ink);
  transition: all 0.3s; background: transparent; cursor: pointer;
}
.btn:hover { background: var(--color-ink); color: var(--color-paper); }
.btn-accent { border-color: var(--color-moss-dark); color: var(--color-moss-dark); }
.btn-accent:hover { background: var(--color-moss-dark); color: var(--color-white); }

/* --- Sections --- */
.section { padding: var(--section-pad) 30px; max-width: var(--max-width); margin: 0 auto; }
.section-dark {
  background: var(--color-ink); color: var(--color-paper);
  max-width: 100%; padding: var(--section-pad) 30px;
}
.section-dark .section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-warm {
  background: var(--color-moss-pale); max-width: 100%;
  padding: var(--section-pad) 30px;
}
.section-warm .section-inner { max-width: var(--max-width); margin: 0 auto; }
.section-label {
  font-family: var(--font-body); font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: var(--color-moss); margin-bottom: 16px; font-weight: 500;
}
.section-dark .section-label { color: var(--color-moss-light); }
.section-title { font-size: 2.5rem; margin-bottom: 20px; }
.section-subtitle {
  font-size: 1.1rem; color: var(--color-ink-muted);
  max-width: 600px; line-height: 1.8; margin-bottom: 50px;
}
.section-dark .section-subtitle { color: #b0aba3; }

/* --- Divider --- */
.divider { width: 60px; height: 1px; background: var(--color-moss); margin: 50px auto; }
.divider-left { margin: 30px 0; }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 10px; }
.service-card {
  padding: 40px 30px; border: 1px solid var(--color-border);
  transition: all 0.3s; background: var(--color-white);
}
.service-card:hover {
  border-color: var(--color-moss); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.service-card-number {
  font-family: var(--font-display); font-size: 2.5rem;
  color: var(--color-moss-light); margin-bottom: 16px;
  font-weight: 400; opacity: 0.5;
}
.service-card h3 { font-size: 1.4rem; margin-bottom: 14px; color: var(--color-ink); }
.service-card p { font-size: 0.95rem; color: var(--color-ink-light); line-height: 1.7; }

/* --- Testimonial Cards --- */
.testimonial-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.testimonial-card {
  padding: 40px; background: var(--color-white);
  border: 1px solid var(--color-border); position: relative;
}
.testimonial-card::before {
  content: '\201C'; font-family: var(--font-display);
  font-size: 5rem; color: var(--color-moss-light); opacity: 0.3;
  position: absolute; top: 10px; left: 20px; line-height: 1;
}
.testimonial-card p {
  font-size: 0.95rem; line-height: 1.8; color: var(--color-ink-light);
  position: relative; z-index: 1; font-style: italic;
}
.testimonial-author {
  margin-top: 20px; font-style: normal; font-weight: 500;
  color: var(--color-ink); font-size: 0.9rem;
}
.testimonial-role { font-weight: 300; color: var(--color-ink-muted); font-size: 0.85rem; }

/* --- Featured Testimonial --- */
.featured-testimonial { text-align: center; max-width: 700px; margin: 0 auto; }
.featured-testimonial p {
  font-family: var(--font-display); font-size: 1.5rem;
  font-style: italic; line-height: 1.6;
  color: var(--color-paper); margin-bottom: 24px;
}
.featured-testimonial .testimonial-author { color: var(--color-moss-light); }
.featured-testimonial .testimonial-role { color: #b0aba3; }

/* --- Stats Row --- */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  text-align: center; padding: 60px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border); margin: 50px 0;
}
.stat-number {
  font-family: var(--font-display); font-size: 3rem;
  font-weight: 500; color: var(--color-moss-dark);
}
.stat-label {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--color-ink-muted); margin-top: 6px;
}

/* --- About Page --- */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-intro-text p { font-size: 1rem; line-height: 1.8; color: var(--color-ink-light); margin-bottom: 20px; }
.about-intro-text p:first-child { font-size: 1.15rem; color: var(--color-ink); }
.philosophy-block {
  padding: 40px; background: var(--color-moss-pale);
  border-left: 3px solid var(--color-moss);
}
.philosophy-block p {
  font-family: var(--font-display); font-size: 1.25rem;
  line-height: 1.6; color: var(--color-ink); margin-bottom: 12px;
}
.philosophy-block p:last-child { margin-bottom: 0; }
.credentials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; margin-top: 50px; }
.credential-group h3 { font-size: 1.3rem; margin-bottom: 20px; color: var(--color-ink); }
.credential-list { list-style: none; }
.credential-list li {
  padding: 8px 0; border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem; color: var(--color-ink-light);
}
.credential-list li:last-child { border-bottom: none; }

/* --- Client Grid --- */
.client-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 30px; }
.client-item {
  padding: 20px; text-align: center; font-size: 0.85rem;
  color: var(--color-ink-muted); border: 1px solid var(--color-border); font-weight: 400;
}

/* --- Contact Page --- */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info h2 { font-size: 2rem; margin-bottom: 20px; }
.contact-info p { font-size: 1rem; color: var(--color-ink-light); line-height: 1.8; margin-bottom: 24px; }
.contact-detail { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.contact-detail a, .contact-detail span { font-size: 1rem; color: var(--color-ink); font-weight: 400; }
.contact-detail .label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.15em; color: var(--color-ink-muted); font-weight: 500;
}
.quote-box { padding: 50px; background: var(--color-moss-pale); border: 1px solid var(--color-border); }
.quote-box h3 { font-size: 1.5rem; margin-bottom: 16px; }
.quote-box p { font-size: 0.95rem; color: var(--color-ink-light); line-height: 1.8; margin-bottom: 16px; }
.checklist { list-style: none; margin: 20px 0; }
.checklist li {
  padding: 8px 0; font-size: 0.95rem; color: var(--color-ink-light);
  padding-left: 24px; position: relative;
}
.checklist li::before { content: '\2014'; position: absolute; left: 0; color: var(--color-moss); }

/* --- Page Header --- */
.page-header {
  padding: 140px 30px 60px; text-align: center;
  background: var(--color-paper); border-bottom: 1px solid var(--color-border);
}
.page-header h1 { font-size: 3rem; margin-bottom: 16px; }
.page-header p { font-size: 1.1rem; color: var(--color-ink-muted); max-width: 550px; margin: 0 auto; }

/* --- CTA Band --- */
.cta-band {
  text-align: center; padding: 80px 30px;
  background: var(--color-paper-warm); border-top: 1px solid var(--color-border);
}
.cta-band h2 { font-size: 2.2rem; margin-bottom: 16px; }
.cta-band p { font-size: 1rem; color: var(--color-ink-muted); margin-bottom: 30px; }

/* --- Footer --- */
.footer {
  padding: 40px 30px; text-align: center;
  border-top: 1px solid var(--color-border);
  font-size: 0.8rem; color: var(--color-ink-muted);
}
.footer a { color: var(--color-ink-muted); }
.footer a:hover { color: var(--color-moss); }

/* --- Services Detail --- */
.service-detail {
  display: grid; grid-template-columns: 200px 1fr; gap: 30px;
  padding: 40px 0; border-bottom: 1px solid var(--color-border); align-items: start;
}
.service-detail:last-child { border-bottom: none; }
.service-detail h3 { font-size: 1.3rem; color: var(--color-ink); position: sticky; top: 90px; }
.service-detail p { font-size: 1rem; line-height: 1.8; color: var(--color-ink-light); }

/* ============================================
   Responsive — Pure CSS mobile menu
   ============================================ */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-border);
    padding: 20px 30px;
    gap: 16px;
  }
  .nav-checkbox:checked ~ .nav-links {
    display: flex;
  }
  .nav-toggle { display: block; }

  .hero h1 { font-size: 2.4rem; }
  .hero { padding: 130px 20px 70px; }
  .hero::before { font-size: 12rem; top: 80px; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .client-grid { grid-template-columns: repeat(2, 1fr); }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail h3 { position: static; }
  .section-title { font-size: 2rem; }
  .page-header h1 { font-size: 2.2rem; }
  :root { --section-pad: 50px; }
}

@media (max-width: 500px) {
  .hero h1 { font-size: 1.9rem; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 20px; }
  .stat-number { font-size: 2.2rem; }
  .client-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner { padding: 0 20px; }
}
