/* ══════════════════════════════════════════
   FURNICODE — SHARED STYLES
   ══════════════════════════════════════════ */

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', sans-serif; background: #fff; color: #1a1a2e; }
.site { width: 100%; background: #fff; }

/* ── NAV ── */
nav { background: #1a1a2e; display: flex; align-items: center; justify-content: space-between; padding: 0 48px; height: 68px; position: sticky; top: 0; z-index: 100; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.logo-icon { width: 38px; height: 38px; border-radius: 4px; }
.logo-text { color: #fff; font-size: 20px; font-weight: 800; letter-spacing: 2px; white-space: nowrap; }
.logo-text span { color: #c9a84c; }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: #ccc; font-size: 13px; text-decoration: none; font-weight: 500; letter-spacing: .5px; transition: color .2s; text-transform: uppercase; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { background: #c9a84c; color: #1a1a2e !important; padding: 10px 22px; border-radius: 4px; font-weight: 700 !important; }

/* ── MOBILE NAV ── */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 10; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; transition: all .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── PAGE HERO ── */
.page-hero { background: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 60%, #1a1a2e 100%); padding: 100px 72px 60px; }
.page-hero h1 { font-size: 42px; font-weight: 900; color: #fff; margin-bottom: 12px; }
.breadcrumb { font-size: 13px; color: #999; }
.breadcrumb a { color: #c9a84c; text-decoration: none; }
.breadcrumb span { margin: 0 8px; }

/* ── SECTION ── */
.section { padding: 72px; }
.section.alt { background: #f7f9fc; }
.section-eyebrow { font-size: 12px; color: #c9a84c; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: 34px; font-weight: 800; color: #1a1a2e; margin-bottom: 16px; line-height: 1.2; }
.section-sub { font-size: 16px; color: #666; max-width: 600px; line-height: 1.7; margin-bottom: 48px; }

/* ── STATS ── */
.stats { background: #c9a84c; display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 24px; text-align: center; border-right: 1px solid rgba(0,0,0,.12); }
.stat:last-child { border-right: none; }
.stat-num { font-size: 32px; font-weight: 900; color: #1a1a2e; }
.stat-label { font-size: 12px; font-weight: 600; color: #5a4000; text-transform: uppercase; letter-spacing: .5px; margin-top: 2px; }

/* ── CLIENT LOGOS ── */
.logos { padding: 36px 48px; text-align: center; background: #fafafa; border-bottom: 1px solid #eee; }
.logos p { font-size: 12px; color: #999; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 24px; }
.logo-strip { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.logo-item { font-size: 18px; font-weight: 800; color: #bbb; letter-spacing: 2px; text-transform: uppercase; }

/* ── CTA BAND ── */
.cta-band { background: #c9a84c; padding: 64px 72px; text-align: center; }
.cta-band h2 { font-size: 36px; font-weight: 900; color: #1a1a2e; margin-bottom: 12px; }
.cta-band p { font-size: 16px; color: #5a4000; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-band-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-dark { background: #1a1a2e; color: #fff; padding: 14px 36px; border-radius: 4px; font-weight: 800; font-size: 15px; text-decoration: none; transition: transform .2s; }
.btn-dark:hover { transform: translateY(-2px); }
.btn-outline-dark { background: transparent; color: #1a1a2e; padding: 14px 36px; border-radius: 4px; font-weight: 700; font-size: 15px; text-decoration: none; border: 2px solid #1a1a2e; transition: all .2s; }
.btn-outline-dark:hover { background: #1a1a2e; color: #fff; }

/* ── FOOTER ── */
footer { background: #111827; color: #aaa; padding: 48px 72px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-top: 12px; color: #888; }
.footer-col h4 { color: #fff; font-size: 13px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col a { display: block; color: #888; font-size: 13px; text-decoration: none; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: #c9a84c; }
.footer-bottom { border-top: 1px solid #222; padding-top: 20px; display: flex; justify-content: space-between; font-size: 12px; color: #555; }
.social-row { display: flex; gap: 14px; margin-top: 16px; }
.social-btn { width: 34px; height: 34px; border-radius: 50%; background: #222; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; font-size: 14px; transition: background .2s; }
.social-btn:hover { background: #c9a84c; color: #1a1a2e; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats { grid-template-columns: repeat(2,1fr); }
  nav, .section, .page-hero, footer, .cta-band, .logos { padding-left: 20px; padding-right: 20px; }

  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px; left: 0; right: 0;
    background: #1a1a2e;
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid #333;
    box-shadow: 0 4px 12px rgba(0,0,0,.3);
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #222;
    font-size: 14px;
  }
  .nav-cta { margin: 8px 20px; text-align: center; border-bottom: none !important; }
  .logo-text { font-size: 17px; letter-spacing: 1px; }
  .logo-icon { width: 32px; height: 32px; }
}

/* ══════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ══════════════════════════════════════════ */

/* ── ABOUT: INTRO ── */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-intro-text h2 { font-size: 34px; font-weight: 800; color: #1a1a2e; margin-bottom: 20px; line-height: 1.2; }
.about-intro-text h2 span { color: #c9a84c; }
.about-intro-text p { font-size: 16px; color: #666; line-height: 1.7; margin-bottom: 16px; }
.about-intro-img { background: linear-gradient(135deg, #1a1a2e, #2c3e50); border-radius: 12px; height: 400px; display: flex; align-items: center; justify-content: center; }
.about-intro-img .placeholder { text-align: center; color: rgba(255,255,255,.4); }
.about-intro-img .placeholder .icon { font-size: 64px; margin-bottom: 12px; }

/* ── ABOUT: PHILOSOPHY ── */
.philosophy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.phil-card { background: #fff; border-radius: 8px; padding: 32px 28px; box-shadow: 0 2px 20px rgba(0,0,0,.06); border-top: 4px solid #c9a84c; text-align: center; }
.phil-icon { font-size: 40px; margin-bottom: 16px; }
.phil-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.phil-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ── ABOUT: TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi { background: #fff; border-radius: 10px; padding: 28px; box-shadow: 0 2px 18px rgba(0,0,0,.06); }
.testi-quote { font-size: 15px; color: #444; line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testi-quote::before { content: '\201C'; font-size: 32px; color: #c9a84c; font-style: normal; line-height: 0; vertical-align: -12px; margin-right: 4px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: #2c3e50; display: flex; align-items: center; justify-content: center; color: #c9a84c; font-weight: 800; font-size: 16px; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 14px; color: #1a1a2e; }
.testi-role { font-size: 12px; color: #999; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.svc-card { background: #fff; border-radius: 10px; padding: 32px; box-shadow: 0 2px 20px rgba(0,0,0,.06); border-left: 4px solid #c9a84c; transition: transform .2s; }
.svc-card:hover { transform: translateY(-4px); }
.svc-icon { font-size: 36px; margin-bottom: 16px; }
.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.svc-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ── OFFER CARDS (services + packages) ── */
.offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.offer-card { background: #fff; border-radius: 8px; padding: 32px 28px; box-shadow: 0 2px 20px rgba(0,0,0,.06); border-top: 4px solid #c9a84c; text-align: center; }
.offer-icon { font-size: 40px; margin-bottom: 16px; }
.offer-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #1a1a2e; }
.offer-card p { font-size: 14px; color: #666; line-height: 1.6; }

/* ── PORTFOLIO ── */
.filter-tabs { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-tab { padding: 8px 20px; border-radius: 4px; font-size: 13px; font-weight: 600; text-decoration: none; background: #f0f0f0; color: #666; transition: all .2s; cursor: pointer; }
.filter-tab:hover, .filter-tab.active { background: #c9a84c; color: #1a1a2e; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.portfolio-item { border-radius: 10px; overflow: hidden; box-shadow: 0 2px 20px rgba(0,0,0,.08); transition: transform .2s; position: relative; }
.portfolio-item:hover { transform: translateY(-4px); }
.portfolio-img { height: 280px; background: linear-gradient(135deg, #1a1a2e, #2c3e50); display: flex; align-items: center; justify-content: center; }
.portfolio-img .placeholder { color: rgba(255,255,255,.3); text-align: center; }
.portfolio-img .placeholder .icon { font-size: 48px; margin-bottom: 8px; }
.portfolio-info { padding: 20px; background: #fff; }
.portfolio-info h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 8px; }
.portfolio-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.portfolio-tag { font-size: 11px; font-weight: 600; color: #c9a84c; background: #fdf6e3; padding: 3px 10px; border-radius: 12px; text-transform: uppercase; letter-spacing: .5px; }

/* ── PACKAGES ── */
.packages-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pkg { border-radius: 10px; padding: 36px 28px; background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,.07); border: 2px solid #eee; position: relative; }
.pkg.featured { border-color: #c9a84c; }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: #c9a84c; color: #1a1a2e; font-size: 11px; font-weight: 800; padding: 4px 14px; border-radius: 20px; white-space: nowrap; text-transform: uppercase; letter-spacing: 1px; }
.pkg-name { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #999; margin-bottom: 8px; }
.pkg-price { font-size: 36px; font-weight: 900; color: #1a1a2e; margin-bottom: 4px; }
.pkg-price span { font-size: 16px; font-weight: 400; color: #999; }
.pkg-desc { font-size: 13px; color: #777; margin-bottom: 24px; line-height: 1.5; }
.pkg-features { list-style: none; margin-bottom: 28px; }
.pkg-features li { font-size: 13px; color: #444; padding: 7px 0; border-bottom: 1px solid #f0f0f0; display: flex; align-items: flex-start; gap: 8px; }
.pkg-features li::before { content: "\2713"; color: #c9a84c; font-weight: 700; flex-shrink: 0; }
.pkg-cta { display: block; text-align: center; padding: 12px; border-radius: 6px; font-weight: 700; font-size: 14px; text-decoration: none; background: #f0f0f0; color: #1a1a2e; transition: all .2s; }
.pkg-cta:hover { background: #e0e0e0; }
.pkg.featured .pkg-cta { background: #c9a84c; color: #1a1a2e; }
.pkg.featured .pkg-cta:hover { background: #b89840; }

/* ── FAQ ── */
.faq-list { max-width: 700px; }
.faq-item { border-bottom: 1px solid #eee; }
.faq-q { font-size: 16px; font-weight: 700; color: #1a1a2e; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q::after { content: "+"; font-size: 20px; color: #c9a84c; transition: transform .2s; }
.faq-item.open .faq-q::after { content: "\2212"; }
.faq-a { font-size: 14px; color: #666; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: #555; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid #ddd; border-radius: 6px;
  font-size: 15px; font-family: inherit; transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #c9a84c; }
.form-group textarea { min-height: 160px; resize: vertical; }
.form-submit {
  background: #c9a84c; color: #1a1a2e; padding: 14px 32px; border: none; border-radius: 4px;
  font-weight: 800; font-size: 14px; cursor: pointer; text-transform: uppercase; letter-spacing: .5px;
  transition: background .2s;
}
.form-submit:hover { background: #b89840; }
.form-note { font-size: 12px; color: #999; margin-top: 12px; }
.info-card { background: #f7f9fc; border-radius: 8px; padding: 28px; margin-bottom: 20px; }
.info-card h3 { font-size: 16px; font-weight: 700; color: #1a1a2e; margin-bottom: 16px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 16px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.info-label { font-size: 12px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 2px; }
.info-item p { font-size: 14px; color: #555; line-height: 1.5; }
.info-item a { font-size: 14px; color: #c9a84c; text-decoration: none; font-weight: 600; }
.info-item a:hover { text-decoration: underline; }
.map-placeholder { background: #f0f0f0; border-radius: 8px; height: 200px; display: flex; align-items: center; justify-content: center; }
.map-placeholder .placeholder { text-align: center; color: #999; }

/* ── 404 ── */
.error-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 68px); text-align: center; padding: 40px; }
.error-code { font-size: 120px; font-weight: 900; color: #c9a84c; line-height: 1; }
.error-msg { font-size: 22px; font-weight: 700; color: #1a1a2e; margin: 16px 0 8px; }
.error-sub { font-size: 15px; color: #888; margin-bottom: 32px; }
.error-btn { display: inline-block; background: #1a1a2e; color: #fff; padding: 14px 36px; border-radius: 4px; font-weight: 800; font-size: 14px; text-decoration: none; transition: transform .2s; }
.error-btn:hover { transform: translateY(-2px); }

/* ── RESPONSIVE: PAGE-SPECIFIC ── */
@media (max-width: 900px) {
  .about-intro, .contact-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .philosophy-grid, .testimonials-grid, .services-grid, .offer-grid,
  .packages-grid, .portfolio-grid, .footer-grid { grid-template-columns: 1fr !important; }
}
