/* ── LOCAL FONTS ── */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/cormorant-garamond-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 300; font-display: swap; src: url('../fonts/cormorant-garamond-latin-300-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-garamond-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-garamond-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-garamond-latin-600-italic.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/cormorant-garamond-latin-700-normal.woff2') format('woff2'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 700; font-display: swap; src: url('../fonts/cormorant-garamond-latin-700-italic.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/dm-sans-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/dm-sans-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/dm-sans-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'DM Sans'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/dm-sans-latin-600-normal.woff2') format('woff2'); }

:root {
      --white:    #ffffff;
      --snow:     #faf8f5;
      --cream:    #f4f0e8;
      --light:    #ede8df;
      --border:   rgba(0,0,0,0.08);
      --border2:  rgba(0,0,0,0.13);
      --ink:      #1a1612;
      --ink2:     #3d3530;
      --muted:    #7a6e65;
      --faint:    #a89e95;
      --amber:    #c96b1a;
      --amber-bg: #fef3e8;
      --amber-light: #e8892e;
      --amber-pale:  rgba(201,107,26,0.10);
      --amber-mid:   rgba(201,107,26,0.20);
      --teal:     #1a7a70;
      --teal-light: #229e92;
      --teal-pale: rgba(26,122,112,0.10);
      --shadow-sm: 0 1px 4px rgba(0,0,0,0.07);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.09);
      --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      background: var(--snow);
      color: var(--ink);
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--amber); border-radius: 2px; }
    ::selection { background: var(--amber); color: #fff; }

    h1, h2, h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; letter-spacing:-0.02em; line-height:1.1; }
    h4, h5 { font-family: 'DM Sans', sans-serif; font-weight: 500; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 0 2rem; height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(250,248,245,0.92);
      backdrop-filter: blur(20px) saturate(1.4);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .nav-logo { display:flex; align-items:center; gap:0.75rem; text-decoration:none; color:var(--ink); }
    .nav-logo img { width:36px; height:36px; object-fit:contain; }
    .nav-logo-text { font-family:'Cormorant Garamond',serif; font-size:1.25rem; font-weight:600; letter-spacing:0.02em; }
    .nav-logo-text span { color:var(--amber); }
    .nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
    .nav-links a {
      color:var(--muted); text-decoration:none;
      font-size:0.82rem; font-weight:400; letter-spacing:0.05em; text-transform:uppercase;
      transition:color 0.2s;
    }
    .nav-links a:hover { color:var(--amber); }
    .nav-cta {
      background:var(--amber) !important; color:#fff !important;
      padding:0.45rem 1.2rem; border-radius:3px;
      font-weight:500 !important; transition:background 0.2s !important;
    }
    .nav-cta:hover { background:var(--amber-light) !important; }
    .hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
    .hamburger span { display:block; width:24px; height:1.5px; background:var(--ink); transition:all 0.3s; }
    .mobile-menu {
      display:none; position:fixed; top:64px; left:0; right:0; bottom:0;
      background:rgba(250,248,245,0.98); backdrop-filter:blur(20px);
      z-index:999; padding:2rem; flex-direction:column; gap:1.5rem;
    }
    .mobile-menu.open { display:flex; }
    .mobile-menu a {
      color:var(--ink); text-decoration:none;
      font-family:'Cormorant Garamond',serif;
      font-size:2rem; font-weight:600;
      border-bottom:1px solid var(--border); padding-bottom:1rem;
    }

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden;
      padding: 80px 2rem 4rem;
      background: var(--white);
    }
    .hero-bg {
      position:absolute; inset:0; z-index:0;
      background:
        radial-gradient(ellipse 70% 55% at 60% 30%, rgba(201,107,26,0.07) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 5% 90%, rgba(26,122,112,0.06) 0%, transparent 55%),
        linear-gradient(160deg, #ffffff 0%, #faf7f2 100%);
    }
    .hero-dots {
      position:absolute; inset:0; z-index:1; opacity:0.4;
      background-image: radial-gradient(circle, rgba(201,107,26,0.18) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 80% 80% at 80% 20%, black 0%, transparent 70%);
    }
    .hero-content {
      position:relative; z-index:2;
      display:grid; grid-template-columns:1fr 1fr;
      gap:5rem; align-items:center;
      max-width:1200px; width:100%; margin:0 auto;
    }
    .hero-eyebrow {
      display:inline-flex; align-items:center; gap:0.5rem;
      color:var(--teal); font-size:0.78rem;
      letter-spacing:0.15em; text-transform:uppercase;
      margin-bottom:1.5rem; font-weight:500;
    }
    .hero-eyebrow::before { content:''; width:30px; height:1px; background:var(--teal); }
    .hero-title {
      font-size:clamp(3rem,7vw,5.5rem);
      line-height:1.0; margin-bottom:1.5rem; color:var(--ink);
    }
    .hero-title .accent { color:var(--amber); font-style:italic; }
    .hero-subtitle {
      font-size:1.05rem; color:var(--muted); max-width:480px;
      margin-bottom:0.75rem; font-weight:300;
    }
    .hero-memorial {
      font-family:'Cormorant Garamond',serif; font-style:italic;
      font-size:1rem; color:var(--amber); margin-bottom:2.5rem;
    }
    .hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; }
    .btn-primary {
      background:var(--amber); color:#fff;
      padding:0.85rem 2rem; border-radius:3px;
      text-decoration:none; font-weight:500; font-size:0.88rem;
      letter-spacing:0.04em; transition:all 0.25s; border:none; cursor:pointer;
      box-shadow: 0 2px 12px rgba(201,107,26,0.3);
    }
    .btn-primary:hover {
      background:var(--amber-light);
      box-shadow: 0 4px 20px rgba(201,107,26,0.4); transform:translateY(-1px);
    }
    .btn-outline {
      border:1.5px solid var(--border2); color:var(--ink2);
      padding:0.85rem 2rem; border-radius:3px;
      text-decoration:none; font-weight:400; font-size:0.88rem;
      letter-spacing:0.04em; transition:all 0.25s;
    }
    .btn-outline:hover { border-color:var(--amber); color:var(--amber); }
    .hero-right { display:flex; align-items:center; justify-content:center; }
    .hero-logo-wrap {
      position:relative; width:380px; height:380px;
      display:flex; align-items:center; justify-content:center;
    }
    .hero-logo-ring {
      position:absolute; inset:20px; border-radius:50%;
      border:1.5px solid rgba(201,107,26,0.18);
      animation:rotate-slow 20s linear infinite;
    }
    .hero-logo-ring::before, .hero-logo-ring::after {
      content:''; position:absolute; width:7px; height:7px; border-radius:50%;
      background:var(--amber); top:-3.5px; left:50%; transform:translateX(-50%);
    }
    .hero-logo-ring::after { top:auto; bottom:-3.5px; background:var(--teal); }
    .hero-logo-img {
      width:280px; height:280px; object-fit:contain; position:relative; z-index:1;
      filter: drop-shadow(0 8px 32px rgba(201,107,26,0.25));
      animation:float 6s ease-in-out infinite;
    }
    .hero-stats {
      display:grid; grid-template-columns:repeat(3,1fr);
      gap:0; margin-top:4rem;
      border:1px solid var(--border);
      border-radius:4px; overflow:hidden;
      box-shadow:var(--shadow-md);
      position:relative; z-index:2;
      max-width:1200px; width:100%; margin-left:auto; margin-right:auto;
    }
    .stat-item {
      background:var(--white); padding:1.5rem 2rem; text-align:center;
      border-right:1px solid var(--border);
    }
    .stat-item:last-child { border-right:none; }
    .stat-number {
      font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:600;
      color:var(--amber); line-height:1; margin-bottom:0.25rem;
    }
    .stat-label { font-size:0.78rem; color:var(--muted); letter-spacing:0.05em; text-transform:uppercase; }

    @keyframes rotate-slow { from {transform:rotate(0deg)} to {transform:rotate(360deg)} }
    @keyframes float { 0%,100% {transform:translateY(0)} 50% {transform:translateY(-12px)} }
    @keyframes fadeUp { from {opacity:0;transform:translateY(24px)} to {opacity:1;transform:translateY(0)} }
    .animate-in { animation:fadeUp 0.7s ease forwards; }
    .delay-1 { animation-delay:0.1s; opacity:0; }
    .delay-2 { animation-delay:0.2s; opacity:0; }
    .delay-3 { animation-delay:0.3s; opacity:0; }
    .delay-4 { animation-delay:0.4s; opacity:0; }
    .delay-5 { animation-delay:0.5s; opacity:0; }

    /* ── SECTIONS ── */
    section { padding:6rem 2rem; }
    .section-inner { max-width:1200px; margin:0 auto; }
    .section-label {
      display:inline-flex; align-items:center; gap:0.5rem;
      color:var(--teal); font-size:0.75rem; letter-spacing:0.15em;
      text-transform:uppercase; font-weight:500; margin-bottom:1rem;
    }
    .section-label::before { content:''; width:24px; height:1px; background:var(--teal); }
    .section-title { font-size:clamp(2rem,4vw,3.2rem); color:var(--ink); margin-bottom:1rem; }
    .section-title .accent { color:var(--amber); font-style:italic; }
    .section-body { color:var(--muted); font-size:1.05rem; max-width:620px; line-height:1.8; }
    .divider {
      width:60px; height:2px; margin:1.5rem 0;
      background:linear-gradient(90deg, var(--amber), var(--teal));
    }

    /* ── STORY ── */
    #story { background:var(--cream); }
    .story-grid { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
    .story-image-wrap { position:relative; }
    .story-card-img { width:100%; border-radius:4px; display:block; box-shadow:var(--shadow-lg); }
    .story-card-badge {
      position:absolute; bottom:-1.5rem; right:-1.5rem;
      background:var(--amber); color:#fff;
      padding:1.25rem 1.5rem; border-radius:3px;
      font-family:'Cormorant Garamond',serif;
      font-size:0.95rem; font-weight:600; max-width:200px; line-height:1.4; text-align:center;
      box-shadow:var(--shadow-md);
    }
    .story-quote {
      font-family:'Cormorant Garamond',serif; font-style:italic;
      font-size:1.6rem; color:var(--ink); line-height:1.4;
      border-left:3px solid var(--amber); padding-left:1.5rem; margin:2rem 0;
    }
    .story-text { color:var(--muted); line-height:1.9; margin-bottom:1.2rem; }

    /* ── MISSION ── */
    #mission { background:var(--white); }
    .mission-header { display:grid; grid-template-columns:1fr 1fr; gap:4rem; margin-bottom:4rem; align-items:end; }
    .vision-list { list-style:none; margin-top:1.5rem; }
    .vision-list li {
      display:flex; align-items:flex-start; gap:0.75rem;
      padding:0.6rem 0; border-bottom:1px solid var(--border);
      color:var(--muted); font-size:0.95rem;
    }
    .vision-list li::before { content:'◆'; color:var(--amber); font-size:0.5rem; margin-top:0.5rem; flex-shrink:0; }
    .pillars-grid {
      display:grid; grid-template-columns:repeat(5,1fr);
      gap:1.25rem;
    }
    .pillar-card {
      background:var(--snow); border:1px solid var(--border);
      border-radius:4px; padding:1.75rem 1.5rem;
      position:relative; overflow:hidden;
      transition:all 0.3s; box-shadow:var(--shadow-sm);
    }
    .pillar-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); border-color:rgba(201,107,26,0.3); }
    .pillar-card::after {
      content:''; position:absolute; top:0; left:0; right:0; height:3px;
      background:linear-gradient(90deg,var(--amber),var(--amber-light));
      transform:scaleX(0); transform-origin:left; transition:transform 0.3s;
    }
    .pillar-card:hover::after { transform:scaleX(1); }
    .pillar-icon {
      width:44px; height:44px; background:var(--amber-pale);
      border:1px solid rgba(201,107,26,0.2); border-radius:3px;
      display:flex; align-items:center; justify-content:center;
      margin-bottom:1rem; font-size:1.3rem;
    }
    .pillar-number { font-family:'Cormorant Garamond',serif; font-size:0.7rem; color:var(--amber); letter-spacing:0.15em; text-transform:uppercase; margin-bottom:0.5rem; display:block; }
    .pillar-title { font-family:'Cormorant Garamond',serif; font-size:1.3rem; font-weight:600; margin-bottom:0.5rem; color:var(--ink); }
    .pillar-desc { font-size:0.82rem; color:var(--muted); line-height:1.6; }

    /* ── CANCER TYPES ── */
    #cancers { background:var(--cream); }
    .cancers-intro { display:grid; grid-template-columns:1fr 1.4fr; gap:4rem; margin-bottom:3rem; align-items:center; }
    .cancer-tabs { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:2rem; }
    .tab-btn {
      background:var(--white); border:1px solid var(--border);
      color:var(--muted); padding:0.45rem 1rem; border-radius:20px;
      font-size:0.78rem; cursor:pointer; transition:all 0.2s;
      font-family:'DM Sans',sans-serif; letter-spacing:0.03em;
    }
    .tab-btn.active, .tab-btn:hover { background:var(--amber); border-color:var(--amber); color:#fff; }
    .cancer-panel { display:none; }
    .cancer-panel.active { display:block; }
    .cancer-card {
      background:var(--white); border:1px solid var(--border);
      border-radius:6px; overflow:hidden; box-shadow:var(--shadow-md);
    }
    .cancer-card-header {
      padding:1.5rem 2rem;
      background:linear-gradient(90deg, var(--amber-pale), var(--white));
      border-bottom:1px solid var(--border);
      display:flex; align-items:center; gap:1rem;
    }
    .cancer-badge {
      background:var(--amber); color:#fff;
      padding:0.25rem 0.75rem; border-radius:20px;
      font-size:0.7rem; font-weight:500; letter-spacing:0.08em; text-transform:uppercase;
    }
    .cancer-badge.special { background:var(--teal); }
    .cancer-card-title { font-family:'Cormorant Garamond',serif; font-size:1.6rem; color:var(--ink); }
    .cancer-card-body { padding:2rem; display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; }
    .cancer-stat-row {
      display:flex; flex-direction:column; gap:0.3rem;
      padding:0.75rem 0; border-bottom:1px solid var(--border);
    }
    .cancer-stat-label { font-size:0.7rem; color:var(--teal); letter-spacing:0.1em; text-transform:uppercase; font-weight:500; }
    .cancer-stat-value { font-size:0.9rem; color:var(--ink2); }
    .cancer-highlight-box {
      grid-column:1/-1;
      background:var(--teal-pale); border:1px solid rgba(26,122,112,0.2);
      border-radius:4px; padding:1rem 1.25rem;
      font-size:0.88rem; color:var(--ink2); line-height:1.6;
    }

    /* ── DETECTION ── */
    #detection { background:var(--white); }
    .detection-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
    .caution-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1rem; margin-top:1.5rem; }
    .caution-card {
      background:var(--snow); border:1px solid var(--border);
      border-radius:4px; padding:1.25rem;
      transition:border-color 0.25s, box-shadow 0.25s; box-shadow:var(--shadow-sm);
    }
    .caution-card:hover { border-color:var(--amber); box-shadow:var(--shadow-md); }
    .caution-letter { font-family:'Cormorant Garamond',serif; font-size:2.5rem; font-weight:700; color:var(--amber); line-height:1; margin-bottom:0.25rem; }
    .caution-word { font-size:0.75rem; color:var(--teal); letter-spacing:0.1em; text-transform:uppercase; margin-bottom:0.4rem; font-weight:500; }
    .caution-desc { font-size:0.82rem; color:var(--muted); }
    .screening-table { width:100%; border-collapse:collapse; margin-top:1.5rem; border-radius:4px; overflow:hidden; box-shadow:var(--shadow-sm); }
    .screening-table th {
      background:var(--amber-pale); padding:0.65rem 1rem;
      font-size:0.72rem; letter-spacing:0.1em; text-transform:uppercase;
      color:var(--amber); text-align:left; font-weight:500;
      border-bottom:1px solid rgba(201,107,26,0.15);
    }
    .screening-table td {
      padding:0.7rem 1rem; font-size:0.85rem; color:var(--muted);
      border-bottom:1px solid var(--border); background:var(--white);
    }
    .screening-table tr:hover td { background:var(--snow); color:var(--ink); }

    /* ── PREVENTION ── */
    #prevention { background:var(--cream); }
    .prevention-header { display:grid; grid-template-columns:1fr 1fr; gap:4rem; margin-bottom:3rem; }
    .prevention-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; }
    .prevention-card {
      background:var(--white); border:1px solid var(--border);
      border-radius:6px; padding:1.5rem;
      transition:all 0.25s; box-shadow:var(--shadow-sm);
    }
    .prevention-card:hover { box-shadow:var(--shadow-md); transform:translateY(-3px); }
    .prev-icon { font-size:1.8rem; margin-bottom:0.75rem; }
    .prev-title { font-weight:500; font-size:0.9rem; margin-bottom:0.5rem; color:var(--ink); }
    .prev-desc { font-size:0.82rem; color:var(--muted); line-height:1.6; }

    /* ── GLOBAL ── */
    #global { background:var(--white); }
    .global-grid { display:grid; grid-template-columns:1fr 1fr; gap:4rem; align-items:start; }
    .impact-cards { display:flex; flex-direction:column; gap:1rem; }
    .impact-card {
      background:var(--snow); border:1px solid var(--border);
      border-radius:6px; padding:1.5rem;
      display:flex; gap:1.5rem; align-items:flex-start; box-shadow:var(--shadow-sm);
    }
    .impact-icon {
      width:48px; height:48px; flex-shrink:0;
      background:var(--teal-pale); border:1px solid rgba(26,122,112,0.2);
      border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:1.4rem;
    }
    .impact-title { font-weight:500; margin-bottom:0.4rem; font-size:0.95rem; color:var(--ink); }
    .impact-text { font-size:0.85rem; color:var(--muted); line-height:1.7; }
    .progress-section { padding-top:1rem; }
    .progress-item { margin-bottom:1.5rem; }
    .progress-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:0.5rem; }
    .progress-label { font-size:0.82rem; color:var(--muted); }
    .progress-value { font-family:'Cormorant Garamond',serif; font-size:1.1rem; color:var(--amber); }
    .progress-bar { height:5px; background:var(--light); border-radius:3px; overflow:hidden; }
    .progress-fill {
      height:100%;
      background:linear-gradient(90deg,var(--amber),var(--amber-light));
      border-radius:3px; transition:width 1.5s ease;
    }
    .progress-fill.teal { background:linear-gradient(90deg,var(--teal),var(--teal-light)); }

    /* ── RESEARCH ── */
    #research { background:var(--cream); }
    .research-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
    .research-card {
      background:var(--white); border:1px solid var(--border);
      border-radius:6px; padding:2rem;
      transition:all 0.25s; box-shadow:var(--shadow-sm);
    }
    .research-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:rgba(201,107,26,0.25); }
    .research-card-icon { font-size:2rem; margin-bottom:1rem; }
    .research-card-title { font-family:'Cormorant Garamond',serif; font-size:1.3rem; margin-bottom:0.75rem; color:var(--ink); }
    .research-card-text { font-size:0.85rem; color:var(--muted); line-height:1.7; }

    /* ── RESOURCES ── */
    #resources { background:var(--white); }
    .resources-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; margin-top:3rem; }
    .resource-group-title {
      font-family:'Cormorant Garamond',serif; font-size:1.3rem; color:var(--amber);
      margin-bottom:1rem; padding-bottom:0.5rem; border-bottom:2px solid var(--amber-pale);
    }
    .resource-link {
      display:flex; align-items:center; gap:0.5rem;
      color:var(--muted); text-decoration:none; font-size:0.88rem;
      padding:0.5rem 0; border-bottom:1px solid var(--border); transition:color 0.2s;
    }
    .resource-link:hover { color:var(--amber); }
    .resource-link::before { content:'→'; color:var(--amber); font-size:0.75rem; }

    /* ── CTA ── */
    #cta {
      background:linear-gradient(135deg, var(--amber) 0%, #d4761f 100%);
      padding:5rem 2rem; text-align:center; position:relative; overflow:hidden;
    }
    #cta::before {
      content:''; position:absolute; inset:0;
      background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .cta-inner { position:relative; z-index:1; max-width:700px; margin:0 auto; }
    .cta-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2rem,4vw,3.5rem); margin-bottom:1rem; line-height:1.15; color:#fff; }
    .cta-sub { color:rgba(255,255,255,0.88); font-size:1.05rem; margin-bottom:2rem; line-height:1.8; }
    .cta-buttons { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }
    .btn-white {
      background:#fff; color:var(--amber);
      padding:0.85rem 2rem; border-radius:3px; text-decoration:none;
      font-weight:500; font-size:0.88rem; letter-spacing:0.04em;
      transition:all 0.25s; box-shadow:0 2px 12px rgba(0,0,0,0.15);
    }
    .btn-white:hover { background:var(--snow); transform:translateY(-1px); }
    .btn-outline-white {
      border:1.5px solid rgba(255,255,255,0.6); color:#fff;
      padding:0.85rem 2rem; border-radius:3px; text-decoration:none;
      font-weight:400; font-size:0.88rem; letter-spacing:0.04em; transition:all 0.25s;
    }
    .btn-outline-white:hover { border-color:#fff; background:rgba(255,255,255,0.1); }

    /* ── FOOTER ── */
    footer { background:var(--ink); padding:4rem 2rem 2rem; }
    .footer-grid {
      max-width:1200px; margin:0 auto;
      display:grid; grid-template-columns:2fr 1fr 1fr 1fr;
      gap:3rem; margin-bottom:3rem;
    }
    .footer-brand-text { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:600; margin-bottom:0.75rem; color:#fff; }
    .footer-brand-text span { color:var(--amber-light); }
    .footer-tagline { font-size:0.85rem; color:rgba(255,255,255,0.5); line-height:1.8; margin-bottom:1.5rem; }
    .footer-col-title { font-size:0.72rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--amber-light); font-weight:500; margin-bottom:1rem; }
    .footer-links { list-style:none; }
    .footer-links li { margin-bottom:0.6rem; }
    .footer-links a { color:rgba(255,255,255,0.5); text-decoration:none; font-size:0.85rem; transition:color 0.2s; }
    .footer-links a:hover { color:#fff; }
    .footer-bottom {
      max-width:1200px; margin:0 auto; padding-top:2rem;
      border-top:1px solid rgba(255,255,255,0.08);
      display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:1rem;
    }
    .footer-copy { font-size:0.78rem; color:rgba(255,255,255,0.3); }
    .footer-memorial { font-family:'Cormorant Garamond',serif; font-style:italic; font-size:0.9rem; color:var(--amber-light); opacity:0.7; }
    .footer-disclaimer {
      max-width:1200px; margin:1.5rem auto 0;
      padding:1rem; background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08);
      border-radius:3px; font-size:0.75rem; color:rgba(255,255,255,0.3); line-height:1.6;
    }

    /* ── SCROLL REVEAL ── */
    .reveal { opacity:0; transform:translateY(30px); transition:opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width:900px) {
      .nav-links { display:none; }
      .hamburger { display:flex; }
      .hero-content { grid-template-columns:1fr; gap:3rem; text-align:center; }
      .hero-subtitle { margin-left:auto; margin-right:auto; }
      .hero-buttons { justify-content:center; }
      .hero-stats { grid-template-columns:1fr; }
      .hero-logo-wrap { width:280px; height:280px; }
      .hero-logo-img { width:210px; height:210px; }
      .story-grid, .mission-header, .detection-grid,
      .global-grid, .prevention-header, .cancers-intro { grid-template-columns:1fr; gap:2.5rem; }
      .story-card-badge { position:static; margin-top:1.5rem; display:inline-block; }
      .pillars-grid { grid-template-columns:repeat(2,1fr); }
      .caution-grid { grid-template-columns:1fr 1fr; }
      .prevention-grid { grid-template-columns:repeat(2,1fr); }
      .research-grid { grid-template-columns:1fr; }
      .resources-grid { grid-template-columns:1fr; }
      .footer-grid { grid-template-columns:1fr 1fr; }
      .cancer-card-body { grid-template-columns:1fr; }
    }
    @media (max-width:600px) {
      section { padding:4rem 1.25rem; }
      .pillars-grid { grid-template-columns:1fr; }
      .prevention-grid { grid-template-columns:1fr; }
      .caution-grid { grid-template-columns:1fr; }
      .footer-grid { grid-template-columns:1fr; }
      .footer-bottom { flex-direction:column; text-align:center; }
      .hero-stats { display:none; }
    }