/* Double G Consulting - page styles for portfolio.html (externalised 2026-08-22) */
      *,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      :root {
        --bg: #ffffff;
        --bg-soft: #f6f6f9;
        --ink: #14151a;
        --ink-soft: #5b5f6b;
        --line: #e6e6ea;
        --primary: #ff5a1f;
        --primary-dark: #e2490f;
        --primary-tint: #fff1ea;
        --green: #16a34a;
        --green-tint: #eafbf1;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: "Inter", sans-serif;
        background: var(--bg);
        color: var(--ink);
        line-height: 1.6;
      }
      h1,
      h2,
      h3 {
        font-family: "Plus Jakarta Sans", sans-serif;
        line-height: 1.15;
        font-weight: 800;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      img {
        max-width: 100%;
        display: block;
      }
      .container {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 24px;
      }

      nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid var(--line);
      }
      .nav-inner {
        max-width: 1180px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 72px;
      }
      .nav-logo {
        font-family: "Plus Jakarta Sans";
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--ink);
      }
      .nav-logo span {
        color: var(--primary);
      }
      .nav-links {
        display: flex;
        gap: 30px;
        list-style: none;
      }
      .nav-links a {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--ink-soft);
      }
      .nav-links a:hover {
        color: var(--ink);
      }
      .nav-right {
        display: flex;
        align-items: center;
        gap: 20px;
      }
      .nav-phone {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--ink);
        white-space: nowrap;
      }
      .nav-phone span {
        color: var(--primary);
      }
      .btn-nav {
        background: var(--primary);
        color: #fff;
        padding: 11px 22px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 0.875rem;
        white-space: nowrap;
      }

      header.hero {
        padding: 160px 24px 70px;
        background: linear-gradient(180deg, #fff6f1 0%, #ffffff 60%);
        text-align: center;
      }
      .hero .tag {
        display: inline-block;
        color: var(--primary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 16px;
      }
      header.hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.1rem);
        max-width: 760px;
        margin: 0 auto 20px;
      }
      header.hero p {
        color: var(--ink-soft);
        font-size: 1.08rem;
        max-width: 600px;
        margin: 0 auto;
      }

      section {
        padding: 80px 0;
      }
      .section-head {
        max-width: 680px;
        margin: 0 auto 46px;
        text-align: center;
      }
      .section-head .lbl {
        color: var(--primary);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 10px;
        display: block;
      }
      .section-head h2 {
        font-size: clamp(1.6rem, 3vw, 2.2rem);
        margin-bottom: 14px;
      }
      .section-head p {
        color: var(--ink-soft);
        font-size: 1rem;
      }

      .work-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
      }
      .concept-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
      }

      .work-card {
        display: block;
        border: 1px solid var(--line);
        border-radius: 18px;
        overflow: hidden;
        background: #fff;
        transition:
          box-shadow 0.25s,
          transform 0.25s;
      }
      .work-card:hover {
        box-shadow: 0 24px 50px rgba(20, 21, 26, 0.12);
        transform: translateY(-3px);
      }
      .work-card.no-link {
        cursor: default;
      }
      .thumb {
        position: relative;
        overflow: hidden;
        aspect-ratio: 16/8;
        background: var(--bg-soft);
      }
      .thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
      }
      .work-card:hover .thumb img {
        transform: scale(1.18);
      }
      .thumb-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          180deg,
          transparent 55%,
          rgba(0, 0, 0, 0.55)
        );
        opacity: 0;
        transition: opacity 0.3s;
        display: flex;
        align-items: flex-end;
        padding: 16px 18px;
      }
      .work-card:hover .thumb-overlay {
        opacity: 1;
      }
      .thumb-overlay span {
        color: #fff;
        font-weight: 700;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
      }
      .badge {
        position: absolute;
        top: 14px;
        left: 14px;
        background: rgba(255, 255, 255, 0.95);
        color: var(--ink);
        font-size: 0.7rem;
        font-weight: 700;
        padding: 5px 12px;
        border-radius: 100px;
        letter-spacing: 0.03em;
        text-transform: uppercase;
        z-index: 2;
      }
      .card-body {
        padding: 22px 22px 26px;
      }
      .card-body h3 {
        font-size: 1.12rem;
        margin-bottom: 6px;
      }
      .card-body p {
        color: var(--ink-soft);
        font-size: 0.9rem;
        margin-bottom: 14px;
      }
      .card-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.82rem;
        color: var(--ink-soft);
      }
      .card-meta .link-txt {
        color: var(--primary);
        font-weight: 700;
      }

      .cta {
        background: var(--primary);
        padding: 80px 24px;
        text-align: center;
      }
      .cta .cta-label {
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: #fff;
        opacity: 0.85;
        margin-bottom: 12px;
      }
      .cta h2 {
        font-size: clamp(1.7rem, 3vw, 2.6rem);
        color: #fff;
        margin-bottom: 16px;
      }
      .cta p {
        color: #fff;
        opacity: 0.9;
        margin-bottom: 32px;
        font-size: 1rem;
      }
      .btn-dark {
        display: inline-block;
        background: var(--ink);
        color: #fff;
        padding: 16px 36px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1rem;
      }

      footer {
        background: var(--ink);
        padding: 50px 24px 30px;
        text-align: center;
        color: #9a9da6;
        font-size: 0.85rem;
      }
      footer strong {
        color: #fff;
      }

      @media (max-width: 900px) {
        .nav-links,
        .nav-phone {
          display: none;
        }
        .work-grid {
          grid-template-columns: 1fr;
        }
        .concept-grid {
          grid-template-columns: 1fr;
        }
      }
