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

    :root {
      --bg: #FDFCF8;
      --fg: #2C2C24;
      --primary: #5D7052;
      --primary-fg: #F3F4F1;
      --secondary: #C18C5D;
      --accent: #E6DCCD;
      --muted: #F0EBE5;
      --muted-fg: #78786C;
      --border: #DED8CF;
      --shadow-soft: 0 4px 20px -2px rgba(93, 112, 82, 0.15);
      --shadow-float: 0 10px 40px -10px rgba(193, 140, 93, 0.20);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.035;
      mix-blend-mode: multiply;
      pointer-events: none;
      z-index: 9999;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Fraunces', serif;
      line-height: 1.2;
    }

    h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.9rem, 3.8vw, 2.8rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.25rem;
      font-weight: 600;
    }

    p {
      color: var(--muted-fg);
    }

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

    /* ---- NAV (identical to homepage) ---- */
    nav {
      position: sticky;
      top: 1rem;
      z-index: 100;
      padding: 0 1.5rem;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(253, 252, 248, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 9999px;
      padding: 0.6rem 1.2rem 0.6rem 0.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-soft);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-icon svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .nav-logo-text {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--fg);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0.2rem;
      list-style: none;
    }

    .nav-links a {
      padding: 0.4rem 0.9rem;
      border-radius: 9999px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--muted-fg);
      transition: all 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: rgba(93, 112, 82, 0.09);
      color: var(--primary);
    }

    .nav-cta {
      background: var(--primary) !important;
      color: var(--primary-fg) !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 9999px !important;
      font-weight: 700 !important;
      font-size: 0.88rem !important;
      box-shadow: var(--shadow-soft);
      transition: all 0.25s !important;
    }

    .nav-cta:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 24px -4px rgba(93, 112, 82, 0.28) !important;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--fg);
      margin: 4px 0;
      border-radius: 2px;
      transition: all 0.3s;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(253, 252, 248, 0.97);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--fg);
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--primary);
    }

    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--muted);
      border: none;
      cursor: pointer;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

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

      .hamburger {
        display: block;
      }

      .nav-cta-desktop {
        display: none;
      }
    }

    /* ---- SHARED UTILITIES ---- */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.75rem 2rem;
      border-radius: 9999px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-fg);
      box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 28px -4px rgba(93, 112, 82, 0.28);
    }

    .btn-primary:active {
      transform: scale(0.97);
    }

    .btn-outline {
      background: transparent;
      color: var(--secondary);
      border: 2px solid var(--secondary);
    }

    .btn-outline:hover {
      background: rgba(193, 140, 93, 0.08);
      transform: scale(1.04);
    }

    .btn-lg {
      padding: 0.95rem 2.4rem;
      font-size: 1.05rem;
    }

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

    .btn-white:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-ghost-white {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.35);
    }

    .btn-ghost-white:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(1.04);
    }

    section {
      padding: 5rem 1.5rem;
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    .section-tag {
      display: inline-block;
      background: rgba(193, 140, 93, 0.12);
      color: var(--secondary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-tag-green {
      display: inline-block;
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    /* ========= HERO SECTION ========= */
    .about-hero {
      padding: 5rem 1.5rem 6rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .hero-blob-tl {
      position: absolute;
      width: 520px;
      height: 520px;
      background: rgba(93, 112, 82, 0.09);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -180px;
      left: -140px;
      filter: blur(65px);
      pointer-events: none;
    }

    .hero-blob-br {
      position: absolute;
      width: 420px;
      height: 420px;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -130px;
      right: -120px;
      filter: blur(55px);
      pointer-events: none;
    }

    .about-hero-inner {
      max-width: 780px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--muted-fg);
      font-weight: 600;
      margin-bottom: 1.6rem;
    }

    .breadcrumb a {
      color: var(--primary);
    }

    .breadcrumb-sep {
      color: var(--border);
    }

    .about-hero h1 {
      color: var(--fg);
      margin-bottom: 1.3rem;
    }

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

    .about-hero-desc {
      font-size: 1.08rem;
      max-width: 620px;
      margin: 0 auto 2.4rem;
      line-height: 1.85;
    }

    .hero-trust-row {
      display: flex;
      justify-content: center;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .htr-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--fg);
    }

    .htr-dot {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(93, 112, 82, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .htr-dot svg {
      width: 14px;
      height: 14px;
      fill: var(--primary);
    }

    /* ========= STORY SECTION ========= */
    .story-section {
      background: var(--muted);
      position: relative;
      overflow: hidden;
    }

    .story-blob {
      position: absolute;
      width: 380px;
      height: 380px;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
      top: -100px;
      right: -100px;
      filter: blur(55px);
      pointer-events: none;
    }

    .story-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 5rem;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .story-visual {
      position: relative;
    }

    .story-photo-wrap {
      width: 100%;
      aspect-ratio: 4/5;
      background: rgba(93, 112, 82, 0.1);
      border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 340px;
    }

    .story-photo-inner {
      width: 110px;
      height: 110px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .story-photo-inner svg {
      width: 52px;
      height: 52px;
      fill: white;
    }

    .story-year-badge {
      position: absolute;
      top: 1.4rem;
      right: -1.4rem;
      background: white;
      border-radius: 1.4rem;
      padding: 1rem 1.3rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      text-align: center;
    }

    .syb-year {
      font-family: 'Fraunces', serif;
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
      display: block;
    }

    .syb-label {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--muted-fg);
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .story-quote-card {
      position: absolute;
      bottom: 1.5rem;
      left: -1.5rem;
      background: white;
      border-radius: 1.6rem;
      padding: 1.1rem 1.4rem;
      box-shadow: var(--shadow-float);
      border: 1px solid rgba(222, 216, 207, 0.5);
      max-width: 230px;
    }

    .sqc-text {
      font-size: 0.82rem;
      font-style: italic;
      color: var(--muted-fg);
      line-height: 1.6;
      margin-bottom: 0.5rem;
      font-family: 'Fraunces', serif;
    }

    .sqc-author {
      font-size: 0.74rem;
      font-weight: 700;
      color: var(--secondary);
    }

    .story-content {
      padding-top: 0.5rem;
    }

    .story-content h2 {
      color: var(--fg);
      margin-bottom: 1.2rem;
    }

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

    .story-paragraphs p {
      margin-bottom: 1.1rem;
      font-size: 0.96rem;
    }

    .story-timeline {
      margin-top: 2rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .tl-item {
      display: flex;
      gap: 1.2rem;
      align-items: flex-start;
      padding-bottom: 1.4rem;
      position: relative;
    }

    .tl-item::before {
      content: '';
      position: absolute;
      left: 17px;
      top: 32px;
      bottom: 0;
      width: 2px;
      background: rgba(93, 112, 82, 0.15);
    }

    .tl-item:last-child::before {
      display: none;
    }

    .tl-dot {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(93, 112, 82, 0.1);
      border: 2px solid rgba(93, 112, 82, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      z-index: 1;
    }

    .tl-dot svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
    }

    .tl-year {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.04em;
      margin-bottom: 0.2rem;
    }

    .tl-title {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.15rem;
    }

    .tl-desc {
      font-size: 0.84rem;
      color: var(--muted-fg);
      line-height: 1.55;
    }

    @media (max-width: 900px) {
      .story-inner {
        grid-template-columns: 1fr;
      }

      .story-visual {
        display: none;
      }
    }

    /* ========= MISSION & VISION ========= */
    .mv-section {
      position: relative;
      overflow: hidden;
    }

    .mv-blob {
      position: absolute;
      width: 350px;
      height: 350px;
      background: rgba(93, 112, 82, 0.07);
      border-radius: 50% 50% 30% 70% / 50% 70% 30% 50%;
      bottom: -100px;
      left: -80px;
      filter: blur(55px);
      pointer-events: none;
    }

    .mv-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .mv-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .mv-header h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .mv-header p {
      max-width: 560px;
      margin: 0 auto;
    }

    .mv-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
    }

    .mv-card {
      border-radius: 2.5rem;
      padding: 2.5rem;
      position: relative;
      overflow: hidden;
    }

    .mv-card-mission {
      background: var(--primary);
      border: none;
    }

    .mv-card-vision {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      box-shadow: var(--shadow-soft);
    }

    .mv-card-icon {
      width: 56px;
      height: 56px;
      border-radius: 1.2rem;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.4rem;
    }

    .mv-card-mission .mv-card-icon {
      background: rgba(255, 255, 255, 0.15);
    }

    .mv-card-vision .mv-card-icon {
      background: rgba(193, 140, 93, 0.1);
    }

    .mv-card-mission .mv-card-icon svg {
      fill: white;
      width: 28px;
      height: 28px;
    }

    .mv-card-vision .mv-card-icon svg {
      fill: var(--secondary);
      width: 28px;
      height: 28px;
    }

    .mv-label {
      font-size: 0.76rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      border-radius: 9999px;
      padding: 0.25rem 0.8rem;
      display: inline-block;
      margin-bottom: 0.9rem;
    }

    .mv-card-mission .mv-label {
      background: rgba(255, 255, 255, 0.15);
      color: rgba(243, 244, 241, 0.9);
    }

    .mv-card-vision .mv-label {
      background: rgba(193, 140, 93, 0.12);
      color: var(--secondary);
    }

    .mv-card h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.9rem;
    }

    .mv-card-mission h3 {
      color: white;
    }

    .mv-card-vision h3 {
      color: var(--fg);
    }

    .mv-card p {
      font-size: 0.93rem;
      line-height: 1.78;
    }

    .mv-card-mission p {
      color: rgba(243, 244, 241, 0.82);
    }

    .mv-card-vision p {
      color: var(--muted-fg);
    }

    .mv-list {
      list-style: none;
      margin-top: 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0.6rem;
    }

    .mv-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.88rem;
    }

    .mv-card-mission .mv-list li {
      color: rgba(243, 244, 241, 0.82);
    }

    .mv-card-vision .mv-list li {
      color: var(--muted-fg);
    }

    .mv-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .mv-card-mission .mv-check {
      background: rgba(255, 255, 255, 0.2);
    }

    .mv-card-vision .mv-check {
      background: rgba(93, 112, 82, 0.12);
    }

    .mv-card-mission .mv-check svg {
      fill: white;
      width: 10px;
      height: 10px;
    }

    .mv-card-vision .mv-check svg {
      fill: var(--primary);
      width: 10px;
      height: 10px;
    }

    .mv-deco-blob {
      position: absolute;
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      pointer-events: none;
    }

    .mv-card-mission .mv-deco-blob {
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, 0.05);
      bottom: -60px;
      right: -60px;
      filter: blur(30px);
    }

    @media (max-width: 700px) {
      .mv-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ========= STATS ========= */
    .stats-section {
      background: rgba(93, 112, 82, 0.04);
      position: relative;
      overflow: hidden;
    }

    .stats-inner {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .stats-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .stats-header h2 {
      color: var(--fg);
      margin-bottom: 0.6rem;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.4rem;
    }

    .stat-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 2rem;
      padding: 1.8rem 1.4rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-float);
    }

    .stat-icon {
      width: 46px;
      height: 46px;
      border-radius: 1rem;
      background: rgba(93, 112, 82, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
    }

    .stat-icon svg {
      width: 22px;
      height: 22px;
      fill: var(--primary);
    }

    .stat-num {
      font-family: 'Fraunces', serif;
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--primary);
      display: block;
      line-height: 1;
      margin-bottom: 0.35rem;
    }

    .stat-label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--muted-fg);
    }

    @media (max-width: 780px) {
      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ========= VALUES ========= */
    .values-section {
      background: var(--muted);
      position: relative;
      overflow: hidden;
    }

    .values-blob1 {
      position: absolute;
      width: 320px;
      height: 320px;
      background: rgba(93, 112, 82, 0.08);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      top: -80px;
      right: -80px;
      filter: blur(50px);
      pointer-events: none;
    }

    .values-blob2 {
      position: absolute;
      width: 260px;
      height: 260px;
      background: rgba(193, 140, 93, 0.08);
      border-radius: 60% 40% 40% 60% / 40% 60% 40% 60%;
      bottom: -60px;
      left: -60px;
      filter: blur(40px);
      pointer-events: none;
    }

    .values-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .values-header {
      margin-bottom: 3.5rem;
    }

    .values-header h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .values-header p {
      max-width: 540px;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.4rem;
    }

    .value-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.5);
      padding: 2rem 1.8rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      cursor: default;
    }

    .value-card:nth-child(1) {
      border-radius: 3.5rem 2rem 2rem 2rem;
    }

    .value-card:nth-child(2) {
      border-radius: 2rem 3.5rem 2rem 2rem;
    }

    .value-card:nth-child(3) {
      border-radius: 2rem 2rem 3.5rem 2rem;
    }

    .value-card:nth-child(4) {
      border-radius: 2rem 2rem 2rem 3.5rem;
    }

    .value-card:nth-child(5) {
      border-radius: 2.5rem 2rem 3rem 2rem;
    }

    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px -10px rgba(93, 112, 82, 0.15);
    }

    .vc-icon {
      width: 52px;
      height: 52px;
      border-radius: 1rem;
      background: rgba(93, 112, 82, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.2rem;
      transition: all 0.3s;
    }

    .value-card:hover .vc-icon {
      background: var(--primary);
    }

    .vc-icon svg {
      width: 26px;
      height: 26px;
      fill: var(--primary);
      transition: fill 0.3s;
    }

    .value-card:hover .vc-icon svg {
      fill: white;
    }

    .vc-num {
      font-size: 0.72rem;
      font-weight: 700;
      color: var(--secondary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 0.4rem;
    }

    .vc-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.5rem;
    }

    .vc-desc {
      font-size: 0.87rem;
      color: var(--muted-fg);
      line-height: 1.65;
    }

    @media (max-width: 900px) {
      .values-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 580px) {
      .values-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ========= TEAM ========= */
    .team-section {
      position: relative;
      overflow: hidden;
    }

    .team-blob {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(193, 140, 93, 0.07);
      border-radius: 50% 50% 70% 30% / 60% 40% 60% 40%;
      top: -120px;
      right: -100px;
      filter: blur(60px);
      pointer-events: none;
    }

    .team-inner {
      max-width: 1100px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .team-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .team-header h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .team-header p {
      max-width: 560px;
      margin: 0 auto;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.6rem;
    }

    .team-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.5);
      border-radius: 2rem;
      padding: 2rem 1.6rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      text-align: center;
    }

    .team-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-float);
    }

    .tc-avatar-wrap {
      position: relative;
      display: inline-block;
      margin-bottom: 1.3rem;
    }

    .tc-avatar {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: white;
      margin: 0 auto;
      border: 3px solid white;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .tc-online {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #4CAF50;
      border: 2.5px solid white;
      position: absolute;
      bottom: 2px;
      right: 2px;
    }

    .tc-name {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.25rem;
    }

    .tc-role {
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 700;
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.25rem 0.8rem;
      margin-bottom: 1rem;
    }

    .tc-bio {
      font-size: 0.85rem;
      color: var(--muted-fg);
      line-height: 1.65;
    }

    .tc-spec {
      margin-top: 1.1rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(222, 216, 207, 0.5);
      display: flex;
      gap: 0.4rem;
      flex-wrap: wrap;
      justify-content: center;
    }

    .tc-spec-tag {
      font-size: 0.72rem;
      font-weight: 700;
      background: rgba(193, 140, 93, 0.1);
      color: var(--secondary);
      border-radius: 9999px;
      padding: 0.2rem 0.65rem;
    }

    @media (max-width: 900px) {
      .team-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 580px) {
      .team-grid {
        grid-template-columns: 1fr;
      }
    }

    /* ========= EMOTIONAL CTA ========= */
    .emotional-cta {
      background: rgba(230, 220, 205, 0.35);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .ecta-blob1 {
      position: absolute;
      width: 350px;
      height: 350px;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      top: -80px;
      left: 5%;
      filter: blur(55px);
      pointer-events: none;
    }

    .ecta-blob2 {
      position: absolute;
      width: 280px;
      height: 280px;
      background: rgba(93, 112, 82, 0.09);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      bottom: -70px;
      right: 8%;
      filter: blur(45px);
      pointer-events: none;
    }

    .ecta-inner {
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .ecta-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: rgba(93, 112, 82, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .ecta-icon svg {
      width: 36px;
      height: 36px;
      fill: var(--primary);
    }

    .ecta-inner h2 {
      color: var(--fg);
      margin-bottom: 1rem;
    }

    .ecta-inner h2 em {
      font-style: italic;
      color: var(--primary);
    }

    .ecta-inner p {
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto 2rem;
      line-height: 1.85;
    }

    .ecta-btns {
      display: flex;
      justify-content: center;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    /* ========= FINAL CTA BANNER ========= */
    .final-cta {
      background: var(--fg);
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .fcta-blob1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(93, 112, 82, 0.2);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -200px;
      left: -120px;
      filter: blur(60px);
      pointer-events: none;
    }

    .fcta-blob2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(193, 140, 93, 0.15);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -150px;
      right: -100px;
      filter: blur(60px);
      pointer-events: none;
    }

    .fcta-inner {
      max-width: 680px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .fcta-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(243, 244, 241, 0.88);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .fcta-inner h2 {
      color: white;
      margin-bottom: 1rem;
      font-size: clamp(2rem, 4vw, 3rem);
    }

    .fcta-inner p {
      color: rgba(240, 235, 229, 0.73);
      font-size: 1.05rem;
      margin-bottom: 2.2rem;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
    }

    .fcta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* ========= FOOTER ========= */
    footer {
      background: #1A1A14;
      color: rgba(240, 235, 229, 0.7);
      padding: 4rem 1.5rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand-name {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.8rem;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-icon svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }

    .footer-socials {
      display: flex;
      gap: 0.6rem;
    }

    .footer-social {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(240, 235, 229, 0.7);
      font-size: 0.9rem;
      transition: all 0.2s;
    }

    .footer-social:hover {
      background: var(--primary);
      color: white;
    }

    .footer-col-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(240, 235, 229, 0.4);
      margin-bottom: 1rem;
    }

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

    .footer-links a {
      font-size: 0.88rem;
      color: rgba(240, 235, 229, 0.65);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.85rem;
      margin-bottom: 0.6rem;
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copy {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: rgba(240, 235, 229, 0.75);
    }

    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 550px) {
      .footer-inner {
        grid-template-columns: 1fr;
      }
    }

    /* ---- Scroll reveal ---- */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

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

    .reveal-left {
      opacity: 0;
      transform: translateX(-28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0);
    }
