/*!
Theme Name: brrpconsultancy
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: brrpconsultancy
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

brrpconsultancy is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

:root {
    --bg:        #f8f7f3;
    --bg2:       #f0ede4;
    --bg3:       #e8e4d8;
    --green-dk:  #2d3d10;
    --green-md:  #4a6b18;
    --green-lt:  #5a8a14;
    --lime:      #6a9a18;
    --yellow:    #b8a010;
    --tan:       #7a5c38;
    --tan-lt:    #5c3e20;
    --text:      #1a1f0a;
    --text-dim:  #4a5030;
    --border:    rgba(74,107,24,0.18);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    overflow-x: hidden;
  }

  /* ── TOPO CANVAS BACKGROUND ── */
  #topo-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    opacity: 0.12;
    pointer-events: none;
  }
.hide{
  display:none!important;
}
  section, nav, footer { position: relative; z-index: 1; }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    height: 130px;
    background: rgba(248,247,243,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-top: 10px;
  }
  .nav-logo-box {
    width: 40px; height: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--green-md);
  }
  .nav-logo-box svg { width: 100%; height: 100%; }
  .nav-logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    color: var(--green-lt);
    letter-spacing: 2px;
    line-height: 1;
  }
  .nav-logo-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--tan);
    text-transform: uppercase;
    margin-top: 2px;
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
  }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 100%;
    height: 1px;
    background: var(--lime);
    transition: right 0.3s ease;
  }
  .nav-links a:hover { color: var(--tan-lt); }
  .nav-links a:hover::after { right: 0; }

  .nav-cta {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--lime);
    padding: 9px 22px;
    text-decoration: none;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--yellow); }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 140px 5vw 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f7f3 0%, #f0ede4 60%, #e8f0d8 100%);
  }

  .hero-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--tan);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s forwards;
  }
  .hero-tag::before {
    content: '';
    width: 48px; height: 1px;
    background: var(--tan);
  }

  .hero-h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(64px, 9vw, 130px);
    line-height: 0.95;
    color: #1a1f0a;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s forwards;
  }
  .hero-h1 span { color: var(--lime); }

  .hero-desc {
    margin-top: 32px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dim);
    max-width: 520px;
    opacity: 0;
    animation: fadeUp 0.9s 0.6s forwards;
  }

  .hero-actions {
    margin-top: 48px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.8s forwards;
  }

  .btn-primary {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--lime);
    padding: 15px 36px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--yellow); transform: translateY(-2px); }

  .btn-ghost {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--tan);
    border: 1px solid var(--border);
    padding: 15px 36px;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-ghost:hover { border-color: var(--tan); color: var(--tan-lt); }

  .hero-stats {
    margin-top: 80px;
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 1s forwards;
  }
  .stat-item {}
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px;
    color: var(--lime);
    line-height: 1;
  }
  .stat-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-top: 4px;
  }

  .hero-graphic {
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-50%);
    width: 42vw;
    max-width: 640px;
    opacity: 0;
    animation: fadeIn 1.2s 0.6s forwards;
  }

  /* ── SECTION HEADER ── */
  .sec-header {
    margin-bottom: 64px;
  }
  .sec-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--tan);
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
  }
  .sec-tag::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--tan);
  }
  .sec-h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1;
    color: var(--text);
  }
  .sec-h2 span { color: var(--lime); }

  /* ── SERVICES ── */
  #services {
    padding: 120px 5vw;
    background: var(--bg2);
  }
  #services::before { background: linear-gradient(180deg, transparent, rgba(74,107,24,0.03), transparent); }
  #services::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(74,107,24,0.03), transparent);
    pointer-events: none;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2px;
  }

  .service-card {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    cursor: default;
    box-shadow: 0 1px 4px rgba(74,107,24,0.06);
  }
  .service-card::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--lime);
    transform: scaleX(0);
    transition: transform 0.35s ease;
  }
  .service-card:hover { border-color: rgba(74,107,24,0.5); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(74,107,24,0.12); }
  .service-card:hover::before { transform: scaleX(1); }

  .service-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--green-md);
    margin-bottom: 20px;
  }

  .service-icon {
    width: 48px; height: 48px;
    margin-bottom: 20px;
    color: var(--lime);
  }

  .service-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--tan-lt);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .service-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-dim);
  }

  /* ── ABOUT ── */
  #about {
    padding: 120px 5vw;
    background: var(--bg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  @media(max-width: 768px) {
    #about { grid-template-columns: 1fr; gap: 40px; }
  }

  .about-visual {
    position: relative;
  }
  .about-visual svg {
    width: 100%;
    height: auto;
    display: block;
  }
  .about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--lime);
    color: var(--bg);
    padding: 24px;
    text-align: center;
  }
  .about-badge-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    line-height: 1;
    display: block;
  }
  .about-badge-txt {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-top: 4px;
  }

  .about-content {}
  .about-body {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dim);
    margin-top: 20px;
  }
  .about-body + .about-body { margin-top: 16px; }

  .about-pillars {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .pillar {
    background: #ffffff;
    border: 1px solid var(--border);
    padding: 20px;
    box-shadow: 0 1px 4px rgba(74,107,24,0.06);
  }
  .pillar-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 6px;
  }
  .pillar-text {
    font-size: 13px;
    font-weight: 300;
    color: var(--text-dim);
    line-height: 1.5;
  }

  /* ── WHY BRRP ── */
  #why {
    padding: 120px 5vw;
    background: var(--bg2);
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 2px;
    margin-top: 64px;
  }
  .why-item {
    padding: 40px 28px;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 1px 4px rgba(74,107,24,0.06);
    position: relative;
    overflow: hidden;
  }
  .why-item::after {
    content: attr(data-num);
    position: absolute;
    top: 16px; right: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: rgba(74,107,24,0.08);
    line-height: 1;
  }
  .why-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .why-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--tan-lt);
    margin-bottom: 10px;
  }
  .why-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-dim);
  }

  /* ── CONTACT ── */
  #contact {
    padding: 120px 5vw;
  }
  .contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
  }
  @media(max-width: 768px) {
    .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  }
  .contact-info {}
  .contact-info p {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-dim);
    margin-top: 20px;
    max-width: 380px;
  }
  .contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }
  .contact-item-icon {
    width: 40px; height: 40px;
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(74,107,24,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }
  .contact-item-text {
    font-family: 'Rajdhani', sans-serif;
  }
  .contact-item-label {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 3px;
  }
  .contact-item-value {
    font-size: 15px;
    font-weight: 500;
    color: var(--tan-lt);
  }
.contact-item-value a{
  color: #5c3e20;
  text-decoration: none;
}
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
	  margin-bottom:20px;
  }
  .form-field label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-dim);
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-size: 14px;
    font-weight: 300;
    padding: 12px 16px;
    outline: none;
    transition: border-color 0.2s;
    appearance: none;
	  width:100%;
  }
  .form-field input:focus,
  .form-field select:focus,
  .form-field textarea:focus {
    border-color: var(--lime);
  }
  .form-field textarea { resize: vertical; min-height: 120px; }
  .form-field select option { background: #ffffff; }

  .form-submit {
    font-family: 'Rajdhani', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--lime);
    border: none;
    padding: 16px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
  }
  .form-submit:hover { background: var(--yellow); }

  /* ── FOOTER ── */
  footer {
    background: var(--bg2);
    border-top: 2px solid var(--border);
    padding: 40px 5vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--green-lt);
    letter-spacing: 3px;
  }
  .footer-logo span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--tan);
    display: block;
    text-transform: uppercase;
  }
  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
    flex-wrap: wrap;
  }
  .footer-links a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--lime); }
  .footer-copy {
    font-size: 12px;
    color: var(--text-dim);
  }

  /* ── DIVIDER ── */
  .topo-divider {
    height: 60px;
    overflow: hidden;
    position: relative;
  }
  .topo-divider svg { width: 100%; height: 100%; }

  /* ── ANIMS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── MOBILE NAV ── */
  .hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 4px;
    z-index: 200;
  }
  .hamburger span {
    display: block;
    width: 26px; height: 2px;
    background: #4a6b18;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* Mobile full-screen menu panel */
  .mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(248,247,243,0.98);
    backdrop-filter: blur(16px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .mobile-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 4px;
    color: #1a1f0a;
    text-decoration: none;
    transition: color 0.2s;
    padding: 8px 0;
  }
  .mobile-menu a:hover { color: var(--lime); }
  .mobile-menu .mobile-cta {
    margin-top: 24px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--bg);
    background: var(--lime);
    padding: 16px 40px;
    font-size: 14px;
  }
  .mobile-menu-line {
    width: 40px; height: 1px;
    background: rgba(74,107,24,0.25);
    margin: 8px 0;
  }

  @media(max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }
  }

  /* ── TEAM SECTION ── */
  #team {
    padding: 120px 5vw;
    background: var(--bg);
  }
  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2px;
    margin-top: 0;
  }
  .team-card {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(74,107,24,0.06);
    overflow: hidden;
    position: relative;
    transition: border-color 0.3s, transform 0.3s;
  }
  .team-card:hover { border-color: rgba(106,154,24,0.45); transform: translateY(-4px); }

  .team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #e8e4d8;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  /* ★ HOW TO ADD PHOTO: replace the SVG avatar with:
     <img src="your-photo.jpg" alt="Name" style="width:100%;height:100%;object-fit:cover;"> */
  .team-photo svg { width: 60%; height: 60%; opacity: 0.18; }
  .team-photo img { width: 100%; height: 100%; object-fit: cover; }

  .team-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,10,5,0.7) 0%, transparent 50%);
  }
  .team-info {
    padding: 24px 24px 28px;
    border-top: 1px solid var(--border);
  }
  .team-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--tan-lt);
    margin-bottom: 4px;
  }
  .team-role {
    font-family: 'Rajdhani', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--lime);
    margin-bottom: 12px;
  }
  .team-bio {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-dim);
  }
  .team-socials {
    margin-top: 16px;
    display: flex;
    gap: 10px;
  }
  .team-social-link {
    width: 32px; height: 32px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    transition: border-color 0.2s, color 0.2s;
  }
  .team-social-link:hover { border-color: var(--lime); color: var(--lime); }

