  :root {
    --gold: #C9A52A;
    --gold-light: #DEB84A;
    --gold-dark: #A88520;
    --sage: #4A7C59;
    --sage-light: #E8F0EB;
    --cream: #FDFAF3;
    --cream-dark: #F5F0E6;
    --white: #FFFFFF;
    --charcoal: #2C2C2C;
    --text-body: #444444;
    --text-light: #777777;
    --text-dark: #1A1A1A;
    --border: #E8E3D8;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.10);
    --radius: 12px;
    --radius-lg: 20px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Lato', sans-serif;
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
  }

  /* ============ NAVIGATION ============ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
  }
  nav.scrolled {
    box-shadow: var(--shadow-md);
  }
  .nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
  }
  .nav-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
  }
  .nav-logo-text {
    display: flex;
    flex-direction: column;
  }
  .nav-logo-name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--text-dark);
    text-transform: uppercase;
  }
  .nav-logo-tagline {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--gold);
    text-transform: uppercase;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
  }
  .nav-links a {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.3s;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover, .nav-links a.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
  }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    border-radius: 8px !important;
    border-bottom: none !important;
    transition: all 0.3s !important;
    letter-spacing: 1.5px !important;
  }
  .nav-cta:hover {
    background: var(--gold-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(201,165,42,0.3);
  }
  .nav-portal {
    color: var(--sage) !important;
    font-weight: 700 !important;
    border-bottom-color: transparent !important;
  }
  .nav-portal:hover {
    color: var(--gold-dark) !important;
  }
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
  }
  .hamburger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s;
  }

  /* ============ PAGES ============ */
  .page {
    display: none;
    min-height: 100vh;
    padding-top: 76px;
    animation: fadeIn 0.4s ease;
  }
  .page.active { display: block; }
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============ BUTTONS ============ */
  .btn-primary {
    background: var(--gold);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 34px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,165,42,0.3);
  }
  .btn-outline {
    background: transparent;
    color: var(--gold-dark);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 15px 34px;
    border: 2px solid var(--gold);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
  }
  .btn-dark {
    background: var(--charcoal);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 34px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }
  .btn-dark:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  /* ============ SECTION HELPERS ============ */
  section {
    padding: 100px 10%;
  }
  .section-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before {
    content: '';
    width: 32px;
    height: 1px;
    background: var(--gold);
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
  }
  .section-title em {
    font-style: italic;
    color: var(--gold-dark);
  }
  .section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 600px;
    margin-bottom: 50px;
  }

  /* ============ HERO (HOME) ============ */
  .hero {
    background: var(--cream);
    min-height: calc(100vh - 76px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
      radial-gradient(ellipse at 20% 80%, rgba(201,165,42,0.08) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 20%, rgba(74,124,89,0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 8% 80px 10%;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--gold);
  }
  .hero-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 28px;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--gold-dark);
  }
  .hero-subheadline {
    font-family: 'Lato', sans-serif;
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 44px;
    max-width: 480px;
  }
  .hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    max-width: 420px;
    margin: 60px;
  }
  .stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 32px 24px;
    text-align: center;
    border-radius: var(--radius);
    transition: all 0.4s;
    box-shadow: var(--shadow-sm);
  }
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
  }
  .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
  }
  .stat-label {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-light);
  }

  /* ============ PROBLEM / SOLUTION ============ */
  .problem-section {
    background: var(--white);
    border-top: 3px solid var(--gold);
  }
  .problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
  }
  .problem-list {
    list-style: none;
    margin-top: 32px;
  }
  .problem-list li {
    padding: 14px 0 14px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    border-bottom: 1px solid var(--border);
  }
  .problem-list li:last-child { border-bottom: none; }
  .problem-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
  }
  .problem-list li em {
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 700;
  }
  .solution-box {
    background: var(--sage);
    border-radius: var(--radius-lg);
    padding: 50px 44px;
    position: relative;
    overflow: hidden;
  }
  .solution-box::before {
    content: '';
    position: absolute;
    top: -50px; right: -50px;
    width: 200px; height: 200px;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
  }
  .solution-list {
    list-style: none;
  }
  .solution-list li {
    padding: 10px 0 10px 24px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
  }
  .solution-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 10px;
    height: 2px;
    background: var(--gold-light);
  }

  /* ============ SERVICES OVERVIEW ============ */
  .services-overview {
    background: var(--cream);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px 28px 36px;
    transition: all 0.4s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
  }
  .service-card:hover::after {
    transform: scaleX(1);
  }
  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .service-icon .material-icons-outlined {
    font-size: 26px;
    color: var(--gold);
  }
  .service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    line-height: 1.3;
  }
  .service-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
  }
  .service-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .service-link::after {
    content: '\2192';
    transition: transform 0.3s;
  }
  .service-card:hover .service-link::after {
    transform: translateX(4px);
  }

  /* ============ MEET WADE ============ */
  .meet-wade {
    background: var(--white);
  }
  .meet-wade-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: center;
  }
  .wade-photo-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
  }
  .wade-photo-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
  }
  .wade-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .wade-content .section-title { color: var(--text-dark); }
  .wade-bio {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 24px;
  }
  .wade-quote {
    border-left: 3px solid var(--gold);
    padding: 20px 28px;
    margin: 28px 0 32px;
    background: var(--cream);
    border-radius: 0 var(--radius) var(--radius) 0;
  }
  .wade-quote p {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
  }

  /* ============ CTA BANNER ============ */
  .cta-banner {
    background: var(--cream);
    text-align: center;
    padding: 80px 10%;
    border-top: 1px solid var(--border);
  }
  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
  }
  .cta-banner p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
    font-weight: 300;
  }

  /* ============ ABOUT PAGE ============ */
  .about-hero {
    background: var(--cream);
    padding: 80px 10% 0;
  }
  .about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  .about-hero-content {
    padding-bottom: 80px;
  }
  .about-headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
  }
  .about-headline em {
    font-style: italic;
    color: var(--gold-dark);
  }
  .about-intro {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
  }
  .about-photo-container {
    position: relative;
    display: flex;
    align-items: flex-end;
  }
  .about-photo-wrap {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .about-photo {
    width: 100%;
    display: block;
  }

  .about-story {
    background: var(--white);
  }
  .about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
  }
  .timeline-item {
    position: relative;
    padding-left: 32px;
    padding-bottom: 36px;
    border-left: 2px solid var(--border);
  }
  .timeline-item:last-child { padding-bottom: 0; }
  .timeline-dot {
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
  }
  .timeline-year {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  .timeline-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-light);
  }
  .about-narrative p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 24px;
  }
  .philosophy-box {
    background: var(--cream);
    border-left: 3px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    padding: 36px;
    margin-top: 32px;
  }
  .philosophy-box blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 12px;
  }
  .philosophy-box cite {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--gold-dark);
    font-style: normal;
  }

  /* ============ SERVICES PAGE ============ */
  .services-hero {
    background: var(--cream);
    padding: 80px 10%;
    text-align: center;
  }
  .services-hero .section-eyebrow { justify-content: center; }
  .services-hero .section-subtitle { margin: 0 auto; }

  .services-detail {
    padding: 0 10%;
  }
  .service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
  }
  .service-detail-item:last-child { border-bottom: none; }
  .service-detail-number {
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 16px;
  }
  .service-detail-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--sage);
    background: var(--sage-light);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
  }
  .service-detail-right p {
    font-size: 16px;
    line-height: 1.85;
    color: var(--text-body);
    margin-bottom: 24px;
  }
  .outcome-box {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 32px;
    margin-top: 12px;
  }
  .outcome-box h4 {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 18px;
  }
  .outcome-list {
    list-style: none;
  }
  .outcome-list li {
    padding: 8px 0 8px 20px;
    position: relative;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
  }
  .outcome-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 14px;
    width: 8px; height: 2px;
    background: var(--gold);
  }

  /* ============ REQUEST FORM PAGE ============ */
  .request-hero {
    background: var(--cream);
    padding: 80px 10% 60px;
  }
  .request-hero .section-subtitle { max-width: 700px; }
  .request-form-container {
    padding: 0 10% 80px;
  }
  .request-form {
    max-width: 800px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
  }
  .form-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    margin-top: 36px;
  }
  .form-section-title:first-child { margin-top: 0; }
  .form-section-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 24px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .form-group {
    margin-bottom: 20px;
  }
  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-body);
    margin-bottom: 8px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    color: var(--text-body);
    background: var(--white);
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,165,42,0.12);
  }
  .form-group textarea {
    min-height: 120px;
    resize: vertical;
  }
  .form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23777' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
  }
  .checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  .checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
  }
  .checkbox-item:hover {
    border-color: var(--gold);
    background: var(--cream);
  }
  .checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
  }
  .checkbox-item span {
    font-size: 14px;
    color: var(--text-body);
  }
  .form-submit {
    background: var(--gold);
    color: var(--white);
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 18px 40px;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s;
    width: 100%;
    margin-top: 12px;
  }
  .form-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(201,165,42,0.3);
  }
  .form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
  }

  /* ============ PORTAL PAGE ============ */
  .portal-page {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 40px 20px;
  }
  .portal-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 52px 48px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-md);
    text-align: center;
  }
  .portal-card .nav-logo {
    justify-content: center;
    margin-bottom: 36px;
  }
  .portal-card .nav-logo img { height: 56px; }
  .portal-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
  }
  .portal-subtitle {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 32px;
  }
  .portal-card .form-group { text-align: left; }
  .portal-card .form-submit { margin-top: 8px; }
  .portal-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--text-light);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  .portal-divider::before,
  .portal-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }
  .portal-help {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 20px;
  }
  .portal-help a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 700;
  }
  .portal-help a:hover { text-decoration: underline; }

  /* ============ CONTACT PAGE ============ */
  .contact-hero {
    background: var(--cream);
    padding: 80px 10%;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
  }
  .contact-info .section-title { color: var(--text-dark); }
  .contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
    align-items: flex-start;
  }
  .contact-detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }
  .contact-detail h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
  }
  .contact-detail p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
  }
  .contact-detail a {
    color: var(--gold-dark);
    text-decoration: none;
  }
  .contact-detail a:hover { text-decoration: underline; }

  .contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
  }
  .form-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
  }
  .form-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
  }
  .contact-bottom {
    text-align: center;
    padding: 60px 10%;
    background: var(--white);
  }
  .contact-bottom p {
    font-size: 16px;
    color: var(--text-light);
  }
  .contact-bottom a {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 700;
  }

  /* ============ FOOTER ============ */
  footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.6);
    padding: 60px 10% 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .footer-logo-area img {
    height: 60px;
    opacity: 0.9;
    margin-bottom: 16px;
  }
  .footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 15px;
    color: rgba(255,255,255,0.4);
    margin-bottom: 12px;
  }
  .footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-links {
    list-style: none;
  }
  .footer-links li { margin-bottom: 12px; }
  .footer-links a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    cursor: pointer;
  }
  .footer-links a:hover { color: var(--gold); }
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 12px;
    color: rgba(255,255,255,0.3);
  }
  .footer-email a {
    color: rgba(255,255,255,0.3);
    text-decoration: none;
  }
  .footer-email a:hover { color: var(--gold); }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .hero { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .hero-content { padding: 60px 8%; }
    .problem-grid { grid-template-columns: 1fr; }
    .meet-wade-grid { grid-template-columns: 1fr; }
    .wade-photo-wrap { max-width: 400px; margin: 0 auto; }
    .about-hero-grid { grid-template-columns: 1fr; }
    .about-story-grid { grid-template-columns: 1fr; }
    .service-detail-item { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    nav { padding: 0 4%; height: 68px; }
    .page { padding-top: 68px; }
    section { padding: 60px 5%; }
    .services-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 40px 5%; }
    .hero-headline { font-size: 32px; }
    .form-row { grid-template-columns: 1fr; }
    .checkbox-group { grid-template-columns: 1fr; }
    .services-hero { padding: 60px 5%; }
    .services-detail { padding: 0 5%; }
    .request-hero { padding: 60px 5% 40px; }
    .request-form-container { padding: 0 5% 60px; }
    .request-form { padding: 32px 24px; }
    .contact-hero { padding: 60px 5%; }
    .contact-form-wrap { padding: 32px 24px; }
    .about-hero { padding: 60px 5% 0; }
    .portal-card { padding: 36px 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }

    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: fixed;
      top: 68px;
      left: 0; right: 0;
      background: var(--white);
      padding: 24px;
      gap: 20px;
      border-top: 1px solid var(--border);
      box-shadow: var(--shadow-lg);
    }
    .nav-links.open a { color: var(--text-body); }
    .hamburger { display: flex; }
  }


/* ============ FEATURED WORK ============ */
.featured-work {
  padding: 100px 5%;
  background: var(--cream-dark);
}

.featured-work-container {
  max-width: 900px;
  margin: 0 auto;
}

.featured-work-summary {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 20px;
}

.featured-work-cta {
  margin-top: 32px;
}

@media (max-width: 768px) {
  .featured-work {
    padding: 60px 5%;
  }
  .featured-work-summary {
    font-size: 16px;
  }
}
