/* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --navy: #1E1E1E;
      --navy-deep: #141414;
      --gold: #9E1B32;
      --gold-light: #B32240;
      --gold-pale: #F5E0E4;
      --cream: #FAF7F7;
      --white: #FFFFFF;
      --text: #2C2C2C;
      --text-light: #6B6B6B;
      --text-muted: #999999;
      --border: #E8E4E4;
      --shadow: 0 4px 24px rgba(0,0,0,0.08);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
      --radius: 6px;
      --radius-lg: 12px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html {
      scroll-behavior: smooth;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body {
      font-family: 'Outfit', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', serif;
      font-weight: 400;
      line-height: 1.15;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== NAVIGATION ===== */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(20, 20, 20, 0.97);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(158, 27, 50, 0.15);
      transition: var(--transition);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 24px;
      max-width: 1200px;
      margin: 0 auto;
      transition: padding 0.3s ease;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      transition: var(--transition);
    }

    .nav-logo-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .nav-logo-text {
      color: var(--white);
      font-family: 'DM Serif Display', serif;
      font-size: 20px;
      letter-spacing: 0.5px;
    }

    .nav-logo-text span {
      color: var(--gold);
    }

    .nav-links {
      display: none;
      list-style: none;
      gap: 32px;
      align-items: center;
    }

    .nav-links a {
      color: rgba(255,255,255,0.8);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      transition: var(--transition);
    }

    .nav-links a:hover {
      color: var(--gold);
    }

    .nav-cta {
      background: var(--gold);
      color: var(--white) !important;
      padding: 10px 24px;
      border-radius: var(--radius);
      font-weight: 600 !important;
      transition: var(--transition);
    }

    .nav-cta:hover {
      background: var(--gold-light) !important;
      color: var(--white) !important;
      transform: translateY(-1px);
    }

    .nav-toggle {
      display: flex;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }

    .nav-toggle span {
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-mobile {
      display: none;
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      bottom: 0;
      background: var(--navy-deep);
      padding: 40px 24px;
      z-index: 999;
    }

    .nav-mobile.active {
      display: flex;
      flex-direction: column;
      gap: 0;
      animation: fadeIn 0.3s ease;
    }

    .nav-mobile a {
      color: var(--white);
      font-size: 18px;
      font-weight: 500;
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      display: block;
      transition: var(--transition);
    }

    .nav-mobile a:hover,
    .nav-mobile a:active {
      color: var(--gold);
    }

    .nav-mobile .mobile-cta {
      margin-top: 32px;
      background: var(--gold);
      color: var(--white);
      text-align: center;
      padding: 16px;
      border-radius: var(--radius);
      font-weight: 600;
      border: none;
    }

    @media (min-width: 768px) {
      .nav-links { display: flex; }
      .nav-toggle { display: none; }
    }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--navy-deep);
      overflow: hidden;
      padding-top: 70px;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(158, 27, 50, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(158, 27, 50, 0.05) 0%, transparent 50%);
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 2;
      padding: 60px 0 80px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(158, 27, 50, 0.12);
      border: 1px solid rgba(158, 27, 50, 0.25);
      padding: 8px 16px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease;
    }

    .hero-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--gold);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    .hero h1 {
      font-size: clamp(36px, 7vw, 64px);
      color: var(--white);
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease 0.1s both;
    }

    .hero h1 em {
      color: var(--gold);
      font-style: italic;
    }

    .hero-sub {
      font-size: clamp(16px, 2.5vw, 19px);
      color: rgba(255,255,255,0.65);
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease 0.2s both;
    }

    .hero-areas {
      animation: fadeInUp 0.8s ease 0.25s both;
    }

    .hero-area-tag {
      display: inline-block;
      padding: 5px 14px;
      font-family: 'Outfit', sans-serif;
      font-size: 13px;
      font-weight: 500;
      color: rgba(255,255,255,0.8);
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 20px;
      letter-spacing: 0.2px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      animation: fadeInUp 0.8s ease 0.3s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: var(--radius);
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.3px;
      cursor: pointer;
      transition: var(--transition);
      border: none;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--white);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(158, 27, 50, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.25);
    }

    .btn-outline:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    .hero-images {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      animation: fadeInUp 0.8s ease 0.4s both;
    }

    .hero-img-wrapper {
      border-radius: var(--radius-lg);
      overflow: hidden;
      position: relative;
    }

    .hero-img-wrapper img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .hero-img-wrapper:hover img {
      transform: scale(1.05);
    }

    .hero-img-wrapper:first-child {
      grid-row: span 2;
    }

    .hero-img-wrapper:first-child img {
      height: 100%;
    }

    .hero-img-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 24px 14px 12px;
      background: linear-gradient(transparent, rgba(0,0,0,0.7));
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.8px;
      text-transform: uppercase;
    }

    @media (min-width: 768px) {
      .hero-grid {
        grid-template-columns: 1fr 1fr;
        padding: 80px 0;
      }
      .hero-img-wrapper img {
        height: 220px;
      }
    }

    @media (min-width: 1024px) {
      .hero-img-wrapper img {
        height: 260px;
      }
    }

    /* ===== TRUST BAR ===== */
    .trust-bar {
      background: var(--navy);
      padding: 20px 0;
      border-bottom: 1px solid rgba(158, 27, 50,0.1);
    }

    .trust-items {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px 48px;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      font-weight: 500;
    }

    .trust-item svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
      flex-shrink: 0;
    }

    /* ===== SECTIONS SHARED ===== */
    .section {
      padding: 80px 0;
    }

    @media (min-width: 768px) {
      .section { padding: 120px 0; }
    }

    .section-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 60px;
    }

    .section-label {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-title {
      font-size: clamp(30px, 5vw, 44px);
      color: var(--text);
      margin-bottom: 16px;
    }

    .section-desc {
      font-size: 17px;
      color: var(--text-light);
      line-height: 1.7;
    }

    /* ===== ABOUT ===== */
    .about {
      background: var(--cream);
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
      }
    }

    .about-visual {
      position: relative;
    }

    .about-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow);
      position: relative;
    }

    .about-card::before {
      content: '';
      position: absolute;
      top: -3px;
      left: 40px;
      right: 40px;
      height: 3px;
      background: var(--gold);
      border-radius: 3px 3px 0 0;
    }

    .about-names {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 20px;
    }

    .about-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'DM Serif Display', serif;
      font-size: 18px;
      color: var(--white);
      flex-shrink: 0;
    }

    .about-avatar.cody { background: var(--navy); }
    .about-avatar.tulip { background: var(--gold); color: var(--white); }

    .about-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    .about-name {
      font-family: 'DM Serif Display', serif;
      font-size: 20px;
    }

    .about-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 28px;
      padding-top: 28px;
      border-top: 1px solid var(--border);
    }

    .about-stat {
      text-align: center;
    }

    .about-stat-num {
      font-family: 'DM Serif Display', serif;
      font-size: 32px;
      color: var(--gold);
      line-height: 1;
    }

    .about-stat-text {
      font-size: 13px;
      color: var(--text-light);
      margin-top: 4px;
    }

    .about-content h2 {
      font-size: clamp(30px, 5vw, 40px);
      margin-bottom: 20px;
    }

    .about-content h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .about-content p {
      color: var(--text-light);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .about-location {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 10px 18px;
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
      margin-top: 8px;
    }

    .about-location svg {
      width: 16px;
      height: 16px;
      color: var(--gold);
    }

    /* ===== SERVICES ===== */
    .services-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .service-card:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .service-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .service-card:hover::after {
      transform: scaleX(1);
    }

    .service-icon {
      width: 52px;
      height: 52px;
      background: var(--gold-pale);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .service-icon svg {
      width: 24px;
      height: 24px;
      color: var(--gold);
    }

    .service-card h3 {
      font-size: 22px;
      margin-bottom: 12px;
    }

    .service-card p {
      color: var(--text-light);
      font-size: 15px;
      line-height: 1.7;
    }

    .service-card.featured {
      border-color: var(--gold);
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    }

    .service-card.featured h3,
    .service-card.featured p {
      color: var(--white);
    }

    .service-card.featured p {
      color: rgba(255,255,255,0.7);
    }

    .service-card.featured .service-icon {
      background: rgba(158, 27, 50, 0.15);
    }

    .service-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 8px;
    }

    /* ===== TULIP SECTION ===== */
    .tulip-section {
      background: var(--navy-deep);
      position: relative;
      overflow: hidden;
    }

    .tulip-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 30%, rgba(158, 27, 50,0.06) 0%, transparent 60%);
    }

    .tulip-section .section-label {
      color: var(--gold);
    }

    .tulip-section .section-title {
      color: var(--white);
    }

    .tulip-section .section-desc {
      color: rgba(255,255,255,0.6);
    }

    .tulip-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
      position: relative;
      z-index: 2;
    }

    @media (min-width: 768px) {
      .tulip-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
    }

    .tulip-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: var(--transition);
    }

    .tulip-card:hover {
      background: rgba(255,255,255,0.06);
      border-color: rgba(158, 27, 50,0.3);
      transform: translateY(-4px);
    }

    .tulip-card-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }

    .tulip-card h3 {
      font-size: 20px;
      color: var(--white);
      margin-bottom: 10px;
    }

    .tulip-card p {
      color: rgba(255,255,255,0.55);
      font-size: 14px;
      line-height: 1.7;
    }

    /* ===== PORTFOLIO ===== */
    .portfolio {
      background: var(--cream);
    }

    .portfolio-filters {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 48px;
    }

    .filter-btn {
      padding: 10px 22px;
      border: 1px solid var(--border);
      border-radius: 100px;
      background: var(--white);
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-light);
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--navy);
      color: var(--white);
      border-color: var(--navy);
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    @media (min-width: 768px) {
      .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
      }
    }

    @media (min-width: 1024px) {
      .portfolio-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
    }

    .portfolio-item {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      cursor: pointer;
      aspect-ratio: 3/4;
    }

    .portfolio-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .portfolio-item:hover img {
      transform: scale(1.08);
    }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(transparent 40%, rgba(26,35,50,0.85) 100%);
      opacity: 0;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 20px;
    }

    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-overlay h4 {
      color: var(--white);
      font-size: 16px;
      margin-bottom: 4px;
    }

    .portfolio-overlay span {
      color: var(--gold);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .portfolio-item.wide {
      grid-column: span 2;
      aspect-ratio: 16/9;
    }

    /* ===== BEFORE/AFTER ===== */
    .ba-section {
      background: var(--white);
    }

    .ba-container {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }

    @media (min-width: 768px) {
      .ba-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
      }
    }

    .ba-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .ba-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .ba-card img { height: 340px; }
    }

    .ba-label {
      display: inline-block;
      padding: 8px 16px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
    }

    .ba-label.before {
      background: var(--text-light);
      color: var(--white);
    }

    .ba-label.after {
      background: var(--gold);
      color: var(--white);
    }

    .ba-info {
      padding: 20px 24px;
      background: var(--white);
    }

    .ba-info h4 {
      font-size: 18px;
      margin-bottom: 4px;
    }

    .ba-info p {
      color: var(--text-light);
      font-size: 14px;
    }

    /* ===== TASKRABBIT SOCIAL PROOF ===== */
    .taskrabbit-section {
      background: var(--white);
      position: relative;
      overflow: hidden;
    }

    .tr-hero {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
      align-items: center;
    }

    @media (min-width: 768px) {
      .tr-hero {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
      }
    }

    .tr-stats-card {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
      border-radius: var(--radius-lg);
      padding: 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .tr-stats-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 0%, rgba(158,27,50,0.1) 0%, transparent 60%);
    }

    .tr-logo-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
    }

    .tr-logo-text {
      font-family: 'Outfit', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    .tr-verified-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(158,27,50,0.15);
      border: 1px solid rgba(158,27,50,0.3);
      padding: 4px 12px;
      border-radius: 100px;
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .tr-rating-big {
      font-family: 'DM Serif Display', serif;
      font-size: 72px;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
      position: relative;
      z-index: 2;
    }

    .tr-stars {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .tr-stars svg {
      width: 24px;
      height: 24px;
      fill: #FBBF24;
    }

    .tr-review-count {
      font-size: 16px;
      color: rgba(255,255,255,0.6);
      margin-bottom: 28px;
      position: relative;
      z-index: 2;
    }

    .tr-review-count strong {
      color: var(--white);
      font-weight: 700;
    }

    .tr-stat-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      position: relative;
      z-index: 2;
    }

    .tr-stat-box {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: var(--radius);
      padding: 20px 16px;
    }

    .tr-stat-box-num {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: var(--gold);
      line-height: 1;
    }

    .tr-stat-box-label {
      font-size: 12px;
      color: rgba(255,255,255,0.5);
      margin-top: 4px;
      font-weight: 500;
    }

    .tr-content h2 {
      font-size: clamp(28px, 4.5vw, 40px);
      margin-bottom: 16px;
    }

    .tr-content h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .tr-content p {
      color: var(--text-light);
      font-size: 16px;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .tr-skills-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 24px 0;
    }

    .tr-skill-tag {
      padding: 6px 14px;
      background: var(--gold-pale);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      color: var(--gold);
    }

    .tr-cta-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-weight: 600;
      font-size: 15px;
      margin-top: 8px;
      transition: var(--transition);
    }

    .tr-cta-link:hover {
      gap: 12px;
    }

    .tr-cta-link svg {
      width: 18px;
      height: 18px;
      transition: var(--transition);
    }

    /* Scrolling reviews ticker */
    .tr-reviews-ticker {
      margin-top: 48px;
      overflow: hidden;
      position: relative;
    }

    .tr-reviews-ticker::before,
    .tr-reviews-ticker::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 60px;
      z-index: 3;
      pointer-events: none;
    }

    .tr-reviews-ticker::before {
      left: 0;
      background: linear-gradient(to right, var(--white), transparent);
    }

    .tr-reviews-ticker::after {
      right: 0;
      background: linear-gradient(to left, var(--white), transparent);
    }

    .tr-ticker-track {
      display: flex;
      gap: 20px;
      animation: ticker 60s linear infinite;
      width: max-content;
    }

    .tr-ticker-track:hover {
      animation-play-state: paused;
    }

    .tr-review-card {
      flex-shrink: 0;
      width: 320px;
      background: var(--cream);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 24px;
      transition: var(--transition);
    }

    .tr-review-card:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow);
    }

    .tr-review-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }

    .tr-review-stars {
      display: flex;
      gap: 3px;
    }

    .tr-review-stars svg {
      width: 14px;
      height: 14px;
      fill: #FBBF24;
    }

    .tr-review-category {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .tr-review-text {
      color: var(--text-light);
      font-size: 14px;
      line-height: 1.6;
      margin-bottom: 12px;
    }

    .tr-review-author {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
    }

    @keyframes ticker {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @media (max-width: 767px) {
      .tr-stats-card { padding: 28px 20px; }
      .tr-rating-big { font-size: 56px; }
      .tr-stat-box-num { font-size: 24px; }
      .tr-review-card { width: 280px; padding: 20px; }
    }

    /* ===== CTA ===== */
    .cta-section {
      background: var(--white);
      text-align: center;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
      border-radius: 20px;
      padding: 60px 32px;
      position: relative;
      overflow: hidden;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 50%, rgba(158, 27, 50,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(158, 27, 50,0.06) 0%, transparent 50%);
    }

    @media (min-width: 768px) {
      .cta-box { padding: 80px 60px; }
    }

    .cta-box h2 {
      font-size: clamp(28px, 5vw, 42px);
      color: var(--white);
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .cta-box h2 em {
      color: var(--gold);
      font-style: italic;
    }

    .cta-box p {
      color: rgba(255,255,255,0.6);
      font-size: 17px;
      max-width: 500px;
      margin: 0 auto 36px;
      position: relative;
      z-index: 2;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      position: relative;
      z-index: 2;
    }

    .cta-phone {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: var(--white);
      margin-top: 32px;
      position: relative;
      z-index: 2;
    }

    .cta-phone a {
      color: var(--gold);
      transition: var(--transition);
    }

    .cta-phone a:hover {
      opacity: 0.8;
    }

    /* ===== FOOTER ===== */
    .footer {
      background: var(--navy-deep);
      padding: 48px 0 24px;
      border-top: 1px solid rgba(158, 27, 50,0.1);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
      }
    }

    .footer-brand p {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 360px;
    }

    .footer h4 {
      color: var(--white);
      font-size: 16px;
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      transition: var(--transition);
    }

    .footer-links a:hover {
      color: var(--gold);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 24px;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }

    .footer-bottom p {
      color: rgba(255,255,255,0.35);
      font-size: 13px;
    }

    .footer-flag {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.35);
      font-size: 13px;
    }

    /* ===== LIGHTBOX ===== */
    .lightbox {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(0,0,0,0.92);
      align-items: center;
      justify-content: center;
      padding: 24px;
      cursor: pointer;
    }

    .lightbox.active {
      display: flex;
      animation: fadeIn 0.3s ease;
    }

    .lightbox img {
      max-width: 90vw;
      max-height: 85vh;
      object-fit: contain;
      border-radius: var(--radius);
      cursor: default;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 24px;
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.1);
      border: none;
      border-radius: 50%;
      color: var(--white);
      font-size: 24px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .lightbox-close:hover {
      background: rgba(255,255,255,0.2);
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(24px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.5; }
    }

    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== SCROLL TO TOP ===== */
    .scroll-top {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 48px;
      height: 48px;
      background: var(--gold);
      color: var(--white);
      border: none;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 500;
      box-shadow: 0 4px 16px rgba(158, 27, 50,0.3);
      transition: var(--transition);
    }

    .scroll-top.visible {
      display: flex;
    }

    .scroll-top:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(158, 27, 50,0.4);
    }

    /* ===== SERVICE AREA ===== */
    .area-badges {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 32px;
    }

    .area-badge {
      padding: 8px 18px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text);
    }

    /* ===== MOBILE STICKY CTA BAR ===== */
    .mobile-cta-bar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 900;
      background: var(--navy-deep);
      border-top: 1px solid rgba(158, 27, 50, 0.25);
      padding: 12px 16px;
      padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    .mobile-cta-bar a {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      background: var(--gold);
      color: var(--white);
      padding: 14px;
      border-radius: var(--radius);
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .mobile-cta-bar a svg {
      width: 20px;
      height: 20px;
    }

    @media (max-width: 767px) {
      .mobile-cta-bar { display: block; }
      body { padding-bottom: 72px; }
    }

    /* ===== ANIMATED HAMBURGER ===== */
    .nav-toggle span {
      transition: transform 0.3s ease, opacity 0.2s ease;
    }
    .nav-toggle.open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }
    .nav-toggle.open span:nth-child(2) {
      opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    /* ===== NAV SCROLL SHRINK ===== */
    .nav.scrolled {
      box-shadow: 0 2px 20px rgba(0,0,0,0.35);
    }
    .nav.scrolled .nav-inner {
      padding-top: 10px;
      padding-bottom: 10px;
    }
    .nav.scrolled .nav-logo-icon {
      width: 30px;
      height: 30px;
      transition: var(--transition);
    }

    /* ===== PHONE NUMBER IN CTA ===== */
    .cta-phone-display {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(24px, 4vw, 36px);
      color: var(--white);
      margin-top: 28px;
      position: relative;
      z-index: 2;
    }

    .cta-phone-display a {
      color: var(--gold);
      border-bottom: 2px solid rgba(158, 27, 50, 0.3);
      padding-bottom: 4px;
      transition: var(--transition);
    }

    .cta-phone-display a:hover {
      border-color: var(--gold);
    }

    /* ===== PORTFOLIO FILTER ANIMATION ===== */
    .portfolio-item {
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .portfolio-item.hiding {
      opacity: 0;
      transform: scale(0.95);
    }

    /* ===== ACTIVE STATES FOR MOBILE ===== */
    .btn-primary:active { transform: scale(0.97); }
    .btn-outline:active { transform: scale(0.97); }
    .service-card:active { transform: scale(0.98); }
    .filter-btn:active { transform: scale(0.95); }
    .tulip-card:active { background: rgba(255,255,255,0.08); }
    .lane-card:active { transform: scale(0.98); }
    .portfolio-item:active { transform: scale(0.98); }
    .mobile-cta-bar a:active { transform: scale(0.97); }

    /* ===== MOBILE RESPONSIVE POLISH ===== */
    @media (max-width: 767px) {
      .nav-toggle {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .hero {
        min-height: auto;
        padding-bottom: 0;
      }

      .hero-grid {
        padding: 40px 0 48px;
        gap: 32px;
      }

      .hero h1 { font-size: 32px; }

      .hero-sub {
        font-size: 15px;
        line-height: 1.65;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
      }

      .hero-images { gap: 8px; }
      .hero-img-wrapper img { height: 150px; }
      .hero-img-label {
        font-size: 10px;
        padding: 16px 10px 8px;
      }

      .section { padding: 56px 0; }
      .section-header { margin-bottom: 36px; }
      .section-title { font-size: 26px; }
      .section-desc { font-size: 15px; }

      .about-card { padding: 28px; }
      .about-stat-num { font-size: 28px; }

      .service-card { padding: 28px; }
      .service-card h3 { font-size: 19px; }

      .tulip-card { padding: 24px; }
      .tulip-card h3 { font-size: 18px; }

      .portfolio-filters {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        flex-wrap: nowrap;
        padding-bottom: 8px;
        margin-bottom: 28px;
        scrollbar-width: none;
      }
      .portfolio-filters::-webkit-scrollbar { display: none; }
      .filter-btn {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 13px;
      }

      .portfolio-grid { gap: 8px; }
      .portfolio-item { border-radius: 8px; }

      .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(transparent 50%, rgba(20,20,20,0.75) 100%);
      }
      .portfolio-overlay h4 { font-size: 13px; }
      .portfolio-overlay span { font-size: 10px; }

      .ba-card img { height: 220px; }


      .cta-box {
        padding: 44px 20px;
        border-radius: 16px;
      }
      .cta-box h2 { font-size: 26px; }
      .cta-actions { flex-direction: column; }
      .cta-actions .btn {
        width: 100%;
        justify-content: center;
        padding: 16px;
        font-size: 16px;
      }

      .footer-grid { gap: 28px; }

      .scroll-top { bottom: 84px; }

      .lightbox img {
        max-width: 96vw;
        max-height: 70vh;
      }
      .lightbox-close {
        top: 12px;
        right: 12px;
      }
    }

    /* ===== TABLET TWEAKS ===== */
    @media (min-width: 768px) and (max-width: 1023px) {
      .hero-grid { gap: 32px; }
      .about-grid { gap: 48px; }
    }

    /* ===== SAFE AREAS ===== */
    @supports (padding: env(safe-area-inset-bottom)) {
      .footer {
        padding-bottom: calc(24px + env(safe-area-inset-bottom));
      }
    }

    /* ===== PRINT ===== */
    @media print {
      .nav, .mobile-cta-bar, .scroll-top, .lightbox { display: none !important; }
      body { padding: 0; }
      .hero { min-height: auto; padding: 40px 0; }
      .section { padding: 40px 0; }
    }
    /* ===== PAGE HEADER (inner pages) ===== */
    .page-header {
      background: var(--navy-deep);
      padding: 120px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 50% 80%, rgba(158, 27, 50, 0.08) 0%, transparent 60%);
    }

    .page-header h1 {
      font-size: clamp(32px, 5vw, 48px);
      color: var(--white);
      margin-bottom: 12px;
      position: relative;
      z-index: 2;
    }

    .page-header h1 em {
      color: var(--gold);
      font-style: italic;
    }

    .page-header p {
      color: rgba(255,255,255,0.6);
      font-size: 17px;
      max-width: 560px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    /* ===== SERVICE OVERVIEW CARDS (homepage) ===== */
    .service-lanes {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .service-lanes { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    .lane-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px 32px;
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .lane-card:hover {
      border-color: var(--gold);
      box-shadow: var(--shadow);
      transform: translateY(-4px);
    }

    .lane-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }

    .lane-card:hover::after {
      transform: scaleX(1);
    }

    .lane-icon {
      font-size: 36px;
      margin-bottom: 16px;
    }

    .lane-card h3 {
      font-size: 24px;
      margin-bottom: 12px;
    }

    .lane-card p {
      color: var(--text-light);
      font-size: 15px;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .lane-services {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 24px;
    }

    .lane-tag {
      padding: 4px 12px;
      background: var(--cream);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 500;
      color: var(--text-light);
    }

    .lane-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--gold);
      font-weight: 600;
      font-size: 15px;
      transition: var(--transition);
    }

    .lane-link:hover { gap: 12px; }

    .lane-link svg {
      width: 18px;
      height: 18px;
      transition: var(--transition);
    }

    /* ===== FEATURED PROJECTS PREVIEW ===== */
    .projects-preview-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    @media (min-width: 768px) {
      .projects-preview-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
      }
    }

    .projects-preview-grid .portfolio-item {
      aspect-ratio: 1;
    }

    /* ===== CONTACT FORM ===== */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 48px;
    }

    @media (min-width: 768px) {
      .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 14px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: var(--white);
      transition: var(--transition);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      outline: none;
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(158, 27, 50, 0.1);
    }

    .form-group textarea {
      min-height: 140px;
      resize: vertical;
    }

    .contact-info-card {
      background: var(--navy-deep);
      border-radius: var(--radius-lg);
      padding: 40px;
      color: var(--white);
    }

    .contact-info-card h3 {
      font-size: 24px;
      margin-bottom: 24px;
      color: var(--white);
    }

    .contact-detail {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .contact-detail-icon {
      width: 44px;
      height: 44px;
      background: rgba(158, 27, 50, 0.15);
      border-radius: var(--radius);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-detail-icon svg {
      width: 20px;
      height: 20px;
      color: var(--gold);
    }

    .contact-detail-text h4 {
      font-size: 16px;
      color: var(--white);
      margin-bottom: 4px;
    }

    .contact-detail-text p,
    .contact-detail-text a {
      color: rgba(255,255,255,0.6);
      font-size: 15px;
      transition: var(--transition);
    }

    .contact-detail-text a:hover {
      color: var(--gold);
    }

    /* ===== SERVICE DETAIL PAGE ===== */
    .service-detail-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 768px) {
      .service-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (min-width: 1024px) {
      .service-detail-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    /* ===== ACTIVE NAV LINK ===== */
    .nav-links a.active {
      color: var(--gold);
    }

    .nav-mobile a.active {
      color: var(--gold);
    }

    @media (max-width: 767px) {
      /* Page headers */
      .page-header { padding: 100px 0 48px; }
      .page-header h1 { font-size: 28px; }
      .page-header p { font-size: 15px; }

      /* Service lanes (homepage) */
      .lane-card { padding: 28px 24px; }
      .lane-card h3 { font-size: 20px; }
      .lane-icon { font-size: 28px; }
      .lane-services { gap: 5px; }
      .lane-tag { font-size: 11px; padding: 3px 10px; }

      /* Service detail grid (services page) */
      .service-detail-grid { gap: 16px; }

      /* TR hero layout */
      .tr-hero { gap: 32px; }
      .tr-content h2 { font-size: 24px; }
      .tr-content p { font-size: 15px; }
      .tr-skills-wrap { gap: 6px; }
      .tr-skill-tag { font-size: 12px; padding: 5px 12px; }

      /* Contact page */
      .contact-grid { gap: 32px; }
      .contact-info-card { padding: 28px; }
      .contact-info-card h3 { font-size: 20px; }
      .contact-detail { gap: 12px; margin-bottom: 24px; }
      .contact-detail-icon { width: 40px; height: 40px; }
      .contact-detail-text h4 { font-size: 15px; }
      .contact-detail-text p, .contact-detail-text a { font-size: 14px; }

      .form-group input,
      .form-group textarea,
      .form-group select {
        padding: 16px;
        font-size: 16px; /* prevents iOS zoom */
      }

      /* Projects preview (homepage) */
      .projects-preview-grid { gap: 8px; }
      .projects-preview-grid .portfolio-item { aspect-ratio: 1; border-radius: 8px; }

      /* About grid on inner pages */
      .about-content h2 { font-size: 24px; }
      .about-content p { font-size: 15px; }

      /* Tulip grid */
      .tulip-grid { gap: 16px; }

      /* BA cards */
      .ba-container { gap: 20px; }

      /* Area badges in CTA */
      .area-badges { gap: 8px; }
      .area-badge { font-size: 13px; padding: 6px 14px; }
    }
