/* Pro Circle Kabaddi Foundation of India */

:root {
  --navy:        #16233D;
  --navy-deep:   #101A2E;
  --gold:        #C08A2E;
  --gold-soft:   #E0B361;
  --ink:         #1C2437;
  --ink-soft:    #5A6478;
  --paper:       #FBFAF7;
  --paper-alt:   #F3F1EC;
  --line:        #E3DFD6;
  --white:       #FFFFFF;

  --display: "Archivo", system-ui, sans-serif;
  --body: "Source Serif 4", Georgia, serif;

  --wrap: 1040px;
  --pad: clamp(20px, 4vw, 34px);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }

a { color: var(--navy); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--gold); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--display);
  color: var(--navy);
  margin: 0 0 0.5em;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
}

h1 { font-size: clamp(1.95rem, 4.1vw, 3rem); }
h2 { font-size: clamp(1.35rem, 2.5vw, 1.9rem); }
h3 { font-size: 1.08rem; letter-spacing: -0.01em; }

p { margin: 0 0 1.05em; max-width: 68ch; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: var(--white);
  padding: 10px 16px; z-index: 200;
  font-family: var(--display); font-size: 0.9rem;
}
.skip:focus { left: 0; }

/* ---------- Header ---------- */

.masthead {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 60;
}

.masthead-in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding-top: 13px; padding-bottom: 13px;
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand:hover { color: inherit; }
.brand img { width: 36px; height: 36px; object-fit: contain; flex-shrink: 0; }
.brand-name {
  display: block;
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  color: var(--navy); letter-spacing: -0.01em; line-height: 1.15;
}
.brand-sub {
  display: block;
  font-family: var(--display); font-weight: 500; font-size: 0.66rem;
  color: var(--gold); letter-spacing: 0.13em; line-height: 1.3; margin-top: 2px;
}

.menu {
  display: flex; gap: clamp(16px, 3vw, 30px); list-style: none;
  margin: 0; padding: 0;
  font-family: var(--display); font-weight: 600; font-size: 0.93rem;
}
.menu a {
  color: var(--navy); text-decoration: none; padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
.menu a:hover { color: var(--gold); }
.menu a[aria-current="page"] { border-bottom-color: var(--gold); }

.burger {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 3px; width: 38px; height: 34px; cursor: pointer;
  padding: 0; position: relative;
}
.burger i {
  position: absolute; left: 9px; right: 9px; height: 2px;
  background: var(--navy); border-radius: 2px;
}
.burger i:nth-child(1) { top: 11px; }
.burger i:nth-child(2) { top: 16px; }
.burger i:nth-child(3) { top: 21px; }

@media (max-width: 700px) {
  .burger { display: block; }
  .masthead-in { position: relative; }
  .menu {
    position: absolute; top: calc(100% + 13px); left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--white); border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 4px var(--pad) 12px; display: none;
  }
  .menu.on { display: flex; }
  .menu li { padding: 9px 0; border-bottom: 1px solid var(--paper-alt); }
  .menu li:last-child { border-bottom: none; }
  .menu a { border-bottom: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; font-family: var(--display); font-weight: 600;
  font-size: 0.92rem; padding: 11px 22px; border-radius: 2px;
  text-decoration: none; border: 1.5px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.btn-solid { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); }
.btn-solid:hover { background: var(--gold-soft); border-color: var(--gold-soft); color: var(--navy-deep); }
.btn-line { color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-line:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-dark:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-deep); }
.btns { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 22px; }

/* ---------- Hero ---------- */

.hero {
  background: var(--navy-deep);
  color: #DCE1EA;
  overflow: hidden;
}
.hero-in {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 5vw, 52px); align-items: center;
  padding-top: clamp(44px, 6vw, 68px);
  padding-bottom: clamp(44px, 6vw, 68px);
}
.hero h1 { color: var(--white); margin-bottom: 0.45em; }
.hero p { color: #B4BDCD; font-size: 1.04rem; max-width: 46ch; margin-bottom: 0; }

.ground { width: 100%; max-width: 330px; margin: 0 auto; height: auto; }
.ground .edge, .ground .mid, .ground .lobby { fill: none; stroke-linecap: round; }
.ground .court { fill: rgba(224,179,97,0.13); }
.ground .edge  { stroke: #F0EADC; stroke-width: 2.6; }
.ground .lobby { stroke: rgba(240,234,220,0.26); stroke-width: 1.4; stroke-dasharray: 5 7; }
.ground .mid   { stroke: var(--gold); stroke-width: 2.2; }

@media (prefers-reduced-motion: no-preference) {
  .ground .edge { stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 1.5s ease-out .15s forwards; }
  .ground .lobby { opacity: 0; animation: fadein .7s ease-out 1.1s forwards; }
  .ground .court { opacity: 0; animation: fadein .9s ease-out 1.2s forwards; }
  .ground .mid { stroke-dasharray: 320; stroke-dashoffset: 320; animation: draw 0.7s ease-out .95s forwards; }
  .hero h1, .hero p, .hero .btns { opacity: 0; animation: rise .7s ease-out forwards; }
  .hero h1 { animation-delay: .1s; }
  .hero p  { animation-delay: .25s; }
  .hero .btns { animation-delay: .4s; }
  @keyframes draw { to { stroke-dashoffset: 0; } }
  @keyframes fadein { to { opacity: 1; } }
  @keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
}

@media (max-width: 780px) {
  .hero-in { grid-template-columns: 1fr; }
  .ground { max-width: 210px; order: -1; }
}

/* ---------- Sections ---------- */

.band { padding-top: clamp(40px, 5.5vw, 62px); padding-bottom: clamp(40px, 5.5vw, 62px); }
.band-alt { background: var(--paper-alt); }
.band-line { border-top: 1px solid var(--line); }

.lede { font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }

/* Two paragraphs side by side */
.cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(22px, 4vw, 46px); }
.cols p { margin: 0; max-width: 46ch; }
@media (max-width: 720px) { .cols { grid-template-columns: 1fr; gap: 16px; } }

/* Heading beside its text */
.duo {
  display: grid; grid-template-columns: 210px 1fr;
  gap: clamp(18px, 4vw, 46px); align-items: start;
  border-top: 1px solid var(--line); padding-top: 24px; margin-top: 30px;
}
.duo h2 { font-size: clamp(1.2rem, 2vw, 1.45rem); margin: 0; }
.duo p:last-child { margin-bottom: 0; }
.duo .body { max-width: 67ch; }
@media (max-width: 760px) { .duo { grid-template-columns: 1fr; gap: 12px; } }

.head { max-width: 68ch; margin-bottom: 26px; }
.head h2 { margin-bottom: 0.4em; }
.head p:last-child { margin-bottom: 0; }

/* Definition pairs */

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 30px; }
.fact { background: var(--paper); padding: 20px 18px; }
.fact .k { font-family: var(--display); font-weight: 700; font-size: 1.5rem; color: var(--navy); line-height: 1.1; }
.fact .v { font-size: 0.88rem; color: var(--ink-soft); margin-top: 5px; line-height: 1.5; }
@media (max-width: 680px) { .facts { grid-template-columns: 1fr; } }

/* Numbered sequence */

.steps {
  counter-reset: s; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3.5vw, 38px); margin-top: 10px;
}
.step { counter-increment: s; border-top: 2px solid var(--gold); padding-top: 15px; }
.step::before {
  content: counter(s); display: block;
  font-family: var(--display); font-weight: 700; font-size: 0.82rem;
  color: var(--gold); letter-spacing: 0.06em; margin-bottom: 7px;
}
.step h3 { margin-bottom: 6px; }
.step p { margin-bottom: 0; color: var(--ink-soft); font-size: 0.94rem; max-width: 40ch; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 22px; } }

/* People */

.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3.5vw, 38px); margin-top: 4px; }
@media (max-width: 760px) { .people { grid-template-columns: 1fr; gap: 22px; } }

.person { padding-top: 16px; border-top: 2px solid var(--navy); }
.person:nth-child(2), .person:nth-child(3) { border-top-color: var(--line); }
.person .who { display: flex; align-items: center; gap: 13px; min-height: 62px; }
.person .pic {
  width: 62px; height: 62px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--paper-alt); border: 1px solid var(--line);
}
.person .pic img { width: 100%; height: 100%; object-fit: cover; }
.person .rl { font-family: var(--display); font-size: 0.75rem; font-weight: 600; color: var(--gold); letter-spacing: 0.06em; }
.person h3 { margin: 1px 0 0; }
.person .note { font-size: 0.93rem; color: var(--ink-soft); margin: 13px 0 0; max-width: 42ch; }

/* Values */

.vals { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; list-style: none; }
.vals li {
  font-family: var(--display); font-weight: 600; font-size: 0.84rem;
  color: var(--navy); border: 1px solid var(--line); background: var(--white);
  border-radius: 40px; padding: 6px 14px; white-space: nowrap;
}

/* Statement */

.statement {
  border-left: 3px solid var(--gold); padding: 4px 0 4px 24px; margin: 0 0 34px;
}
.statement p {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(1.2rem, 2.4vw, 1.65rem); line-height: 1.32;
  color: var(--navy); letter-spacing: -0.012em; max-width: 30ch; margin: 0;
}

/* Contact */

.reach { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 4px; }
@media (max-width: 680px) { .reach { grid-template-columns: 1fr; } }
.reach > div { background: var(--paper); padding: 24px 22px; }
.reach .rl { font-family: var(--display); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.08em; color: var(--gold); }
.reach .big { font-family: var(--display); font-weight: 700; font-size: 1.22rem; color: var(--navy); margin-top: 6px; display: block; text-decoration: none; letter-spacing: -0.01em; }
a.big:hover { color: var(--gold); }
.reach p { font-size: 0.92rem; color: var(--ink-soft); margin: 7px 0 0; }

/* Page head */

.phead { padding-top: clamp(34px, 4.5vw, 52px); padding-bottom: 6px; }
.phead h1 { margin-bottom: 0.3em; }

/* Footer */

.foot { background: var(--navy); color: #AAB4C6; padding-top: 34px; padding-bottom: 22px; margin-top: 0; }
.foot-in { display: flex; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.foot-brand { font-family: var(--display); font-weight: 700; font-size: 1.02rem; color: var(--white); letter-spacing: -0.01em; }
.foot-tag { font-size: 0.87rem; color: #8F9BB0; margin-top: 3px; }
.foot-legal { font-size: 0.8rem; color: #8F9BB0; max-width: 34ch; line-height: 1.6; }
.foot-legal strong { color: #C6CEDC; font-weight: 600; }
.foot-base { border-top: 1px solid #27334C; margin-top: 24px; padding-top: 14px; font-size: 0.76rem; color: #74809A; }
