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

  /* ── Brand palette derived from Tero logo ── */
  :root {
    --tero-red:       #9B2D1F;   /* logo primary */
    --tero-red-dark:  #5C1810;   /* hero / footer bg */
    --tero-red-mid:   #B8402F;   /* hover accents */
    --tero-red-light: #F3E4E1;   /* card tints */
    --tero-blush:     #FBF0ED;   /* light section bg */
    --sage:           #5C6B3E;   /* secondary / env. green */
    --sage-light:     #D9E8C4;   /* icon bg, tags */
    --sage-dark:      #3A4528;   /* dark sage text */
    --warm-white:     #FAF7F4;   /* page bg */
    --warm-gray:      #F0EBE6;   /* alternate section bg */
    --text-dark:      #2C1E18;   /* headings */
    --text-mid:       #6B504A;   /* body text */
    --text-muted:     #9C837C;   /* captions */
    --border:         #E2D5CE;   /* subtle borders */
    --border-strong:  #C9B8B0;
    --radius-sm:      6px;
    --radius-md:      10px;
    --radius-lg:      16px;
  }

  body {
    background: var(--warm-white);
    color: var(--text-dark);
  }

  /* ── Top stripe ── */
  .top-stripe {
    background: var(--tero-red-dark);
    height: 4px;
  }

    /* ── Hero ── */
  .hero {
    background: var(--tero-red-dark);
    padding: 100px 32px 96px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(155, 45, 31, 0.3);
    pointer-events: none;
  }
  .hero::after {
    content: '';
    position: absolute;
    bottom: -60px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(92, 24, 16, 0.4);
    pointer-events: none;
  }
  .hero-inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  .hero-pill {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    padding: 5px 16px;
    border-radius: 99px;
    border: 1px solid rgba(255,255,255,0.2);
    margin-bottom: 24px;
  }
  .hero h1 {
    font-size: 44px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
  }
  .hero h1 em {
    font-style: italic;
    color: #F2A394;
  }
  .hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.72);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
  }
  .hero-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn-hero-primary {
    background: #fff;
    color: var(--tero-red-dark);
    border: none;
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
  }
  .btn-hero-primary:hover { 
    background: rgba(0, 0, 0, 1);
    color: rgba(255,255,255,0.9);
  }
  .btn-hero-outline {
    background: transparent;
    color: rgba(255,255,255,1);
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 14px 30px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
  }
  .btn-hero-outline:hover {
    border-color: rgba(255,255,255,0.7);
    background: rgba(255,255,255,1);
    color: var(--tero-red-dark);
  }

  /* ── Sections ── */
  section {
    padding: 72px 32px;
  }
  .section-inner {
    max-width: 1160px;
    margin: 0 auto;
  }
  .section-alt { background: var(--warm-gray); }
  .section-blush { background: var(--tero-blush); }

  .section-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .section-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tero-red);
    margin-bottom: 10px;
  }
  .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }
  .section-header p {
    font-size: 16px;
    color: var(--text-mid);
    max-width: 520px;
    margin: 0 auto;
  }

  /* ── Services grid ── */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: border-color 0.15s, box-shadow 0.15s;
  }
  .service-card:hover {
    border-color: var(--tero-red);
    box-shadow: 0 4px 20px rgba(155,45,31,0.08);
  }
  .service-icon {
    width: 44px;
    height: 44px;
    background: var(--tero-red-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .service-icon svg { stroke: var(--tero-red); }
  .service-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
  }
  .service-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
  }
  .service-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--tero-red);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .service-link:hover { text-decoration: underline; }

  /* ── Stats bar ── */
  .stats-bar {
    background: var(--tero-red);
    padding: 52px 32px;
  }
  .stats-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: center;
  }
  .stat-divider {
    border-right: 1px solid rgba(255,255,255,0.2);
  }
  .stat-divider:last-child { border-right: none; }
  .stat-num {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }
  .stat-label {
    font-size: 13px;
    color: rgba(255,255,255,1);
    margin-top: 6px;
  }

  /* ── About ── */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .about-text .eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tero-red);
    margin-bottom: 12px;
  }
  .about-text h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.3;
    letter-spacing: -0.3px;
  }
  .about-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 14px;
  }
  .about-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tero-red);
    text-decoration: none;
  }
  .about-cta:hover { text-decoration: underline; }
  .about-visual {
    background: var(--tero-red-light);
    border-radius: var(--radius-lg);
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .about-visual::before {
    content: '';
    position: absolute;
    top: -40px; right: -40px;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(155,45,31,0.1);
  }
  .about-visual::after {
    content: '';
    position: absolute;
    bottom: -30px; left: -30px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: rgba(155,45,31,0.08);
  }

  /* ── Projects ── */
  .projects-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
  }
  .projects-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.3px;
  }
  .projects-header p {
    font-size: 14px;
    color: var(--text-mid);
    margin-top: 4px;
  }
  .view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--tero-red);
    text-decoration: none;
    white-space: nowrap;
    margin-left: 24px;
    flex-shrink: 0;
  }
  .view-all-link:hover { text-decoration: underline; }
  .projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .project-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color 0.15s;
  }
  .project-card:hover { border-color: var(--tero-red); }
  .project-thumb {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  .project-thumb svg {
    opacity: 0.25;
  }
  .project-body { padding: 18px 20px 20px; }
  .project-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    background: var(--sage-light);
    color: var(--sage-dark);
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
  }
  .project-body h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    line-height: 1.4;
  }
  .project-body p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
  }

  /* ── Brands ── */
  .brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    transition: border-color 0.15s;
  }
  .brand-card:hover { border-color: var(--tero-red); }
  .brand-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    font-style: italic;
  }
  .brand-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 16px;
  }
  .brand-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--tero-red);
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .brand-link:hover { text-decoration: underline; }

  /* ── Members / badges ── */
  .badges-bar {
    background: var(--warm-gray);
    padding: 32px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .badges-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
  }
  .badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
  }
  .badge-dot {
    width: 32px;
    height: 32px;
    background: var(--tero-red-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--tero-red);
  }

  /* ── CTA strip ── */
  .cta-strip {
    background: var(--tero-blush);
    border-top: 1px solid var(--border);
    padding: 64px 32px;
    text-align: center;
  }
  .cta-strip h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.3px;
  }
  .cta-strip p {
    font-size: 16px;
    color: var(--text-mid);
    margin-bottom: 28px;
  }
  .btn-cta {
    background: var(--tero-red);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.15s;
  }
  .btn-cta:hover { 
    background: var(--tero-red-dark);
    color: rgba(255,255,255,0.9);
  }

