/* ============================================================
   A+ ŠKOLA ENGLESKOG — landing page styles
   Palette pulled from the brand logo:
   blue #1CA5E5 · yellow #FFD84D · pink #F5919A · white #fff
   ============================================================ */

:root {
  --blue:        #1CA5E5;
  --blue-deep:   #0F7FB8;
  --blue-soft:   #6FC8EE;
  --yellow:      #FFD84D;
  --yellow-deep: #F2B400;
  --pink:        #F5919A;
  --pink-deep:   #E96E7A;
  --white:       #ffffff;
  --cream:       #FFF8E7;
  --ink:         #0B1B2A;
  --ink-soft:    #44556B;
  --line:        rgba(11, 27, 42, .1);

  --radius-sm: 14px;
  --radius:    22px;
  --radius-lg: 34px;

  --font-display: 'Fredoka', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --shadow-sm: 0 4px 16px rgba(11,27,42,.08);
  --shadow:    0 18px 50px -12px rgba(11,27,42,.25);
  --shadow-pop:0 30px 80px -20px rgba(28,165,229,.45);

  --ease: cubic-bezier(.2,.7,.2,1);
}

/* ============================================================
   Base / reset
   ============================================================ */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img,svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--yellow); color: var(--ink); }

/* Subtle film grain */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 1000;
  opacity: .05; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* Custom cursor (desktop only)
   .cursor          = positioning layer (driven by JS, NO transitions on transform)
   .cursor::before  = the outer ring (scales / recolors on hover)
   .cursor span     = the precise center dot */
.cursor {
  position: fixed; top: 0; left: 0;
  width: 24px; height: 24px;
  pointer-events: none;
  z-index: 1001;
  display: none;
  opacity: 0;
  will-change: transform;
  transition: opacity .2s;
}
.cursor.is-visible { opacity: 1; }
.cursor::before {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transition: transform .15s var(--ease), background .15s, border-color .15s;
}
.cursor span {
  position: absolute; inset: 0; margin: auto;
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--ink);
  transition: background .15s;
}
.cursor.is-hover::before {
  transform: scale(1.4);
  background: var(--yellow);
  border-color: var(--yellow);
}
/* Light variant — used when the cursor is over a dark section
   (footer, camp, marquee, blue logo card, contact left panel) */
.cursor.is-light::before { border-color: var(--white); }
.cursor.is-light span    { background: var(--white); }
/* On hover inside a dark section, the ring goes yellow (great contrast on dark);
   flip the dot back to dark so it reads on the yellow fill */
.cursor.is-light.is-hover span { background: var(--ink); }
@media (hover:hover) and (pointer:fine) {
  .cursor { display: block; }
  body { cursor: none; }
  a,button,input,textarea,label { cursor: none; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  padding: .85em 1.4em;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
  position: relative;
}
.btn--lg { padding: 1em 1.7em; font-size: 1.05rem; }
.btn--primary {
  background: var(--ink); color: var(--white);
  box-shadow: 0 8px 0 0 var(--blue-deep);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 0 0 var(--blue-deep); }
.btn--primary:active{ transform: translateY(4px); box-shadow: 0 4px 0 0 var(--blue-deep); }

.btn--yellow {
  background: var(--yellow); color: var(--ink);
  box-shadow: 0 8px 0 0 var(--yellow-deep);
}
.btn--yellow:hover { transform: translateY(-2px); box-shadow: 0 10px 0 0 var(--yellow-deep); }
.btn--yellow:active{ transform: translateY(4px); box-shadow: 0 4px 0 0 var(--yellow-deep); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border: 2px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--white); }
.btn--ghost .play {
  display: grid; place-items: center;
  width: 1.6em; height: 1.6em; border-radius: 50%;
  background: var(--pink); color: var(--white); font-size: .55em;
}

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2.2rem;
  background: rgba(255,248,231,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav.is-scrolled { border-color: var(--line); }
.nav__logo {
  display: inline-flex; align-items: center; gap: .65rem;
  font-family: var(--font-display); font-size: 1.05rem;
}
.nav__logo b { color: var(--blue-deep); }
.nav__logo svg { transition: transform .4s var(--ease); }
.nav__logo:hover svg { transform: rotate(-12deg) scale(1.08); }

.nav__links { display: flex; gap: 1.6rem; flex-wrap: nowrap; }
.nav__links a {
  font-weight: 500; font-size: .95rem;
  position: relative; padding: .3em 0;
  white-space: nowrap;
}
.nav__links a::after {
  content:''; position:absolute; left:0; bottom: -2px;
  width: 100%; height: 2px; background: var(--ink);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border: 2px solid var(--ink);
  background: transparent;
  border-radius: 50%;
  padding: 0;
  position: relative;
}
.nav__burger span {
  position: absolute; left: 11px; right: 11px;
  height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  padding: 4rem 2.2rem 6rem;
  min-height: calc(100svh - 80px);
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 4rem; align-items: center;
  max-width: 1400px; margin: 0 auto;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 500;
  font-size: .9rem;
  padding: .5rem 1rem;
  background: var(--white);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.eyebrow .dot {
  width: 8px; height: 8px; background: var(--pink-deep); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(233,110,122,.25);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 4px rgba(233,110,122,.25); }
  50%     { box-shadow: 0 0 0 8px rgba(233,110,122,0); }
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 5.3rem);
  line-height: 1;
  letter-spacing: -.02em;
  margin: 1.5rem 0 1.4rem;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--yellow) 0% 100%);
  padding: .04em .15em .1em;
  border-radius: 8px;
  color: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.hero__title .line {
  display: block; overflow: hidden;
  padding-bottom: .18em;
  margin-bottom: -.18em;
}
.hero__title .line > span {
  display: inline-block;
  transform: translateY(110%);
  animation: heroLine .9s var(--ease) forwards;
}
.hero__title .line:nth-child(1) > span { animation-delay: .05s; }
.hero__title .line:nth-child(2) > span { animation-delay: .2s; }
.hero__title .line:nth-child(3) > span { animation-delay: .35s; }
.hero__title .line:nth-child(4) > span { animation-delay: .5s; }
@keyframes heroLine { to { transform: translateY(0); } }

.hero__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 36rem;
  margin: 0 0 1.8rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .65s forwards;
}
.hero__ctas {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .8s var(--ease) .75s forwards;
}
.hero__meta {
  display: flex; gap: 2.2rem; margin-top: 3rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .9s forwards;
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b {
  font-family: var(--font-display);
  font-size: 1.9rem; color: var(--blue-deep);
}
.hero__meta span { font-size: .85rem; color: var(--ink-soft); }

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

/* Hero logo card */
.hero__logo { position: relative; }
.logo-card {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--blue);
  box-shadow: var(--shadow-pop);
  padding: 8%;
  animation: floatCard 6s ease-in-out infinite;
}
.logo-svg { width: 100%; height: 100%; }
.logo-svg .bubble { animation: bubblePop 4s ease-in-out infinite; transform-origin: 180px 200px; }
.logo-svg .dot-1  { animation: dotBlink 1.8s infinite .0s; }
.logo-svg .dot-2  { animation: dotBlink 1.8s infinite .25s; }
.logo-svg .dot-3  { animation: dotBlink 1.8s infinite .5s; }
.logo-svg .plus   { animation: plusSpin 8s linear infinite; transform-origin: 300px 140px; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes bubblePop {
  0%,100% { transform: scale(1); }
  50%     { transform: scale(1.04); }
}
@keyframes dotBlink {
  0%,40%,100% { opacity: 1; }
  20%        { opacity: .3; }
}
@keyframes plusSpin {
  to { transform: rotate(360deg); }
}

/* Floating shapes */
.hero__shapes {
  position: absolute; inset: 0; pointer-events: none;
}
.shape { position: absolute; will-change: transform; }
.shape--yellow {
  width: 110px; height: 110px; border-radius: 40% 60% 60% 40%/55% 45% 55% 45%;
  background: var(--yellow);
  top: 12%; left: 8%; animation: blob 12s ease-in-out infinite;
}
.shape--pink {
  width: 70px; height: 70px; border-radius: 50%;
  background: var(--pink);
  bottom: 18%; left: 42%;
}
.shape--white {
  width: 50px; height: 50px; border-radius: 12px;
  background: var(--white);
  top: 60%; left: 4%;
  transform: rotate(20deg);
  box-shadow: var(--shadow-sm);
}
.shape--ring {
  width: 130px; height: 130px;
  border-radius: 50%;
  border: 8px dashed var(--blue);
  top: 5%; right: 8%;
  animation: spin 18s linear infinite;
  opacity: .55;
}
.shape--star, .shape--plus {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--pink-deep);
  font-size: 3rem;
}
.shape--star { top: 70%; right: 12%; }
.shape--plus { top: 8%; left: 38%; color: var(--blue-deep); font-size: 3.4rem; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blob {
  0%,100% { border-radius: 40% 60% 60% 40%/55% 45% 55% 45%; }
  50%     { border-radius: 55% 45% 35% 65%/45% 55% 65% 35%; }
}

/* Scroll hint */
.hero__scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-family: var(--font-display);
  font-size: .75rem; text-transform: uppercase; letter-spacing: .25em;
  color: var(--ink-soft);
}
.line-anim {
  width: 1px; height: 40px;
  background: linear-gradient(var(--ink), transparent);
  position: relative; overflow: hidden;
}
.line-anim::after {
  content:''; position: absolute; inset: 0;
  background: var(--ink);
  animation: lineFall 2s var(--ease) infinite;
}
@keyframes lineFall {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--ink); color: var(--white);
  padding: 1.4rem 0; overflow: hidden;
  border-top: 6px solid var(--yellow);
  border-bottom: 6px solid var(--pink);
}
.marquee__track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 500;
}
.marquee__track span:nth-child(3n) { color: var(--yellow); }
.marquee__track span:nth-child(3n+1) { color: var(--pink); }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================================
   Section base
   ============================================================ */
.section {
  position: relative;
  padding: 7rem 2.2rem;
  max-width: 1400px;
  margin: 0 auto;
}
.section__head {
  max-width: 760px; margin: 0 auto 4rem;
  text-align: center;
}
.kicker {
  display: inline-block;
  font-family: var(--font-display); font-weight: 500;
  font-size: .85rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  background: var(--ink); color: var(--white);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.kicker--light { background: var(--white); color: var(--ink); }

h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.18; letter-spacing: -.02em;
  margin: 0;
}
h2 em {
  font-style: normal;
  background: var(--yellow);
  padding: .04em .15em .1em;
  border-radius: 8px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.white { color: var(--white); }

.section__head p, .camp__head p {
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.camp__head p { color: rgba(255,255,255,.85); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: calc(var(--i, 0) * 80ms);
}
.reveal.is-in {
  opacity: 1; transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   About cards
   ============================================================ */
.about__grid {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.about__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem 1.7rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.about__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.about__card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.25rem; margin: 1.2rem 0 .6rem;
}
.about__card p { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--c);
  border-radius: 16px;
  color: var(--ink);
}
.icon svg { width: 28px; height: 28px; }

/* ============================================================
   Camp
   ============================================================ */
.camp {
  max-width: none;
  padding-left: 0; padding-right: 0;
}
.camp__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,216,77,.18) 0, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(245,145,154,.22) 0, transparent 40%),
    var(--blue);
}
.camp__bg::before, .camp__bg::after {
  content:''; position: absolute;
  border-radius: 50%;
}
.camp__bg::before {
  width: 280px; height: 280px; background: var(--yellow);
  top: -120px; right: -80px; opacity: .35;
}
.camp__bg::after {
  width: 200px; height: 200px; background: var(--pink);
  bottom: -100px; left: 10%; opacity: .5;
}
.camp__inner {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.2rem;
  color: var(--white);
}
.camp__head { text-align: center; max-width: 760px; margin: 0 auto 4rem; }

.camp__features {
  display: grid; gap: 1.4rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-bottom: 4rem;
}
.feature {
  position: relative;
  padding: 2.2rem 1.6rem 2rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: background .3s, transform .35s var(--ease);
}
.feature:hover {
  background: rgba(255,255,255,.18);
  transform: translateY(-4px);
}
.feature__num {
  font-family: var(--font-display); font-weight: 600;
  font-size: 2.4rem; line-height: 1;
  color: var(--yellow);
  margin-bottom: 1rem;
}
.feature h3 {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.15rem; margin: 0 0 .5rem;
}
.feature p { margin: 0; font-size: .92rem; color: rgba(255,255,255,.82); }

.camp__cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding: 2rem 2.4rem;
  background: var(--ink);
  border-radius: var(--radius);
  color: var(--white);
}
.camp__cta h3 { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; margin: 0 0 .3rem; }
.camp__cta p { margin: 0; color: rgba(255,255,255,.7); font-size: .95rem; }

/* ============================================================
   Program
   ============================================================ */
.program__grid {
  display: grid; gap: 1.6rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.program__card {
  position: relative;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  box-shadow: 6px 6px 0 var(--ink);
}
.program__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 var(--ink);
}
.program__card--featured {
  background: var(--yellow);
}
.program__badge {
  display: inline-block;
  font-family: var(--font-display); font-weight: 500;
  font-size: .8rem;
  background: var(--ink); color: var(--white);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.program__card--featured .program__badge { background: var(--pink-deep); }
.program__card h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.7rem; margin: 0 0 .6rem;
}
.program__card p { color: var(--ink-soft); margin: 0 0 1.2rem; }
.program__card--featured p { color: var(--ink); }
.program__lead {
  font-family: var(--font-display); font-weight: 600;
  font-size: 1.1rem; color: var(--ink) !important;
  margin-bottom: .7rem !important;
}
.program__card ul {
  padding: 0; margin: 0; list-style: none;
  display: grid; gap: .4rem;
  font-size: .92rem;
}
.program__card li::before {
  content: '✦ ';
  color: var(--pink-deep);
  font-weight: 700;
}
.program__card--featured li::before { color: var(--ink); }
.program__star {
  position: absolute; top: -16px; right: 14px;
  background: var(--ink); color: var(--white);
  padding: .4rem .9rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 500;
  font-size: .8rem;
}

/* ============================================================
   Why
   ============================================================ */
.why__grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 4rem; align-items: start;
}
.why__copy h2 { margin: 1rem 0 1.2rem; }
.why__copy p { color: var(--ink-soft); margin-bottom: 1.6rem; }

.why__list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1.2rem; }
.why__list li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.4rem;
  padding: 1.4rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform .3s var(--ease), background .3s;
}
.why__list li:hover { transform: translateX(6px); background: var(--cream); }
.bullet {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  background: var(--blue); color: var(--white);
  font-family: var(--font-display); font-weight: 600;
  border-radius: 14px;
}
.why__list li:nth-child(2) .bullet { background: var(--pink); }
.why__list li:nth-child(3) .bullet { background: var(--yellow); color: var(--ink); }
.why__list li:nth-child(4) .bullet { background: var(--ink); }
.why__list h3 { font-family: var(--font-display); font-size: 1.15rem; margin: 0 0 .3rem; }
.why__list p { margin: 0; font-size: .92rem; color: var(--ink-soft); }

/* ============================================================
   Contact
   ============================================================ */
.contact { padding-top: 3rem; padding-bottom: 7rem; }
.contact__card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.contact__left {
  background: var(--blue);
  color: var(--white);
  padding: 3rem 2.6rem;
  position: relative;
  overflow: hidden;
}
.contact__left::after {
  content: ''; position: absolute;
  width: 240px; height: 240px;
  bottom: -100px; right: -100px;
  background: var(--yellow);
  border-radius: 50%; opacity: .6;
}
.contact__left h2 { margin: 1rem 0 .8rem; position: relative; line-height: 1.35; }
.contact__left h2 em { color: var(--ink); }
.contact__left p { margin: 0 0 2rem; opacity: .9; position: relative; }
.contact__info {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .8rem;
  position: relative;
}
.contact__info li { display: flex; gap: .8rem; align-items: center; font-size: .98rem; }
.contact__info a { border-bottom: 1px solid rgba(255,255,255,.4); }
.contact__info a:hover { border-color: var(--yellow); color: var(--yellow); }

.contact__form {
  background: var(--white);
  padding: 3rem 2.6rem;
  display: grid; gap: 1rem;
}
.contact__form label {
  display: grid; gap: .4rem;
  font-family: var(--font-display);
  font-size: .9rem; font-weight: 500;
  color: var(--ink-soft);
}
.contact__form input,
.contact__form textarea {
  font: inherit; font-family: var(--font-body);
  padding: .85rem 1rem;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  transition: border-color .25s, background .25s;
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.contact__form button { justify-self: start; margin-top: .6rem; }
.form__msg { margin: .5rem 0 0; font-size: .9rem; color: var(--blue-deep); min-height: 1.2em; }
/* Honeypot — visually hidden, bots fill it in */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--ink); color: var(--white);
  padding: 4rem 2.2rem 2.5rem;
}
.footer__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto;
  gap: 2.5rem 4rem; align-items: center;
}
.footer__brand { display: flex; align-items: center; gap: 1rem; }
.footer__brand b { font-family: var(--font-display); font-size: 1.05rem; }
.footer__brand span { color: rgba(255,255,255,.6); font-size: .9rem; }
.footer__nav { display: flex; gap: 1.8rem; flex-wrap: wrap; }
.footer__nav a {
  font-size: .92rem; opacity: .8; transition: opacity .2s, color .2s;
}
.footer__nav a:hover { opacity: 1; color: var(--yellow); }
.footer__copy {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  font-size: .85rem; color: rgba(255,255,255,.5);
  margin: 0;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero__logo { max-width: 380px; margin: 0 auto; width: 100%; }
  .why__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact__card { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .nav { padding: .9rem 1.2rem; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--cream);
    padding: 1rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-100%);
    opacity: 0; pointer-events: none;
    transition: transform .35s var(--ease), opacity .25s;
  }
  .nav.is-open .nav__links {
    transform: translateY(0); opacity: 1; pointer-events: auto;
  }
  .nav__links a { padding: .9rem 0; border-bottom: 1px solid var(--line); }
  .nav__links a:last-child { border-bottom: none; }
  .nav__cta { display: none; }
  .nav__burger { display: block; }

  .hero { padding: 2.5rem 1.2rem 5rem; }
  .hero__meta { gap: 1.4rem; }
  .hero__meta b { font-size: 1.5rem; }

  .section { padding: 5rem 1.2rem; }
  .camp__inner { padding: 0 1.2rem; }
  .camp__cta { padding: 1.6rem; }
  .contact__left, .contact__form { padding: 2.2rem 1.6rem; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__nav { justify-content: center; }

  .marquee__track { font-size: 1.2rem; gap: 2rem; }
  .shape--ring { width: 80px; height: 80px; border-width: 5px; }
  .shape--yellow { width: 70px; height: 70px; }
}
