/* ==========================================================================
   NETCAFE Tech — netcafetech.com
   Dual-theme design system. Dark is default; light is opt-in via
   [data-theme="light"] on <html>.
   ========================================================================== */

:root {
  color-scheme: dark;

  --bg:          #1A1C25;
  --bg-alt:      #21232E;
  --surface:     #272936;
  --surface-2:   #2E3040;
  --line:        #383B4D;
  --line-soft:   #2C2F3D;

  --ink:         #F4F3EE;
  --muted:       #9BB1C5;
  --muted-dim:   #8093A6;

  --brand:       #7CCC21;
  --brand-text:  #8FD93A;
  --action:      #1ECC64;
  --action-text: #2ADB74;
  --on-action:   #06210F;
  --pargo:       #FFF200;

  --glass:       rgba(26, 28, 37, .72);
  --glass-line:  rgba(255, 255, 255, .08);
  --shadow-sm:   0 2px 8px rgba(0,0,0,.28);
  --shadow-md:   0 12px 32px rgba(0,0,0,.34);
  --shadow-lg:   0 28px 64px rgba(0,0,0,.46);
  --glow:        0 0 0 1px rgba(124,204,33,.18), 0 18px 48px rgba(124,204,33,.08);

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   18px;

  --wrap:        1200px;
  --gutter:      clamp(1.25rem, 4vw, 2.5rem);

  --step-1:  0.8125rem;
  --step0:   1rem;
  --step1:   1.0625rem;
  --step2:   clamp(1.3rem, 1.05rem + 1.05vw, 1.7rem);
  --step3:   clamp(1.7rem, 1.25rem + 2vw, 2.4rem);
  --step4:   clamp(2.3rem, 1.5rem + 3.6vw, 4rem);

  --ease:      cubic-bezier(.22,.61,.36,1);
  --ease-out:  cubic-bezier(.16,1,.3,1);
}

[data-theme="light"] {
  color-scheme: light;

  --bg:          #FFFFFF;
  --bg-alt:      #F5F7FA;
  --surface:     #FFFFFF;
  --surface-2:   #F1F4F8;
  --line:        #E1E6ED;
  --line-soft:   #EDF0F5;

  --ink:         #12141C;
  --muted:       #4C5765;
  --muted-dim:   #5A6674;   /* 5.31:1 on surface-2 */

  --brand:       #7CCC21;
  --brand-text:  #45790F;   /* 5.26:1 on white */
  --action:      #1ABF5C;
  --action-text: #0C7539;   /* 5.80:1 on white */
  --on-action:   #052B12;

  --glass:       rgba(255, 255, 255, .74);
  --glass-line:  rgba(10, 12, 20, .08);
  --shadow-sm:   0 2px 8px rgba(16,24,40,.06);
  --shadow-md:   0 12px 30px rgba(16,24,40,.09);
  --shadow-lg:   0 26px 60px rgba(16,24,40,.13);
  --glow:        0 0 0 1px rgba(124,204,33,.28), 0 18px 44px rgba(124,204,33,.12);
}

/* --------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font: 400 var(--step0)/1.72 "Open Sans", system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
  transition: background-color .3s var(--ease), color .3s var(--ease);
}
img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--action-text); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5 {
  font-family: Poppins, system-ui, sans-serif;
  color: var(--ink); line-height: 1.14; margin: 0 0 .6em;
  letter-spacing: -0.025em;
}
h1 { font-size: var(--step4); font-weight: 800; }
h2 { font-size: var(--step3); font-weight: 800; }
h3 { font-size: var(--step2); font-weight: 700; letter-spacing: -.015em; }
h4 { font-size: var(--step1); font-weight: 600; letter-spacing: -.005em; }
h5 { font-size: var(--step-1); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
p { margin: 0 0 1.15em; }
p:last-child, ul:last-child { margin-bottom: 0; }
ul { margin: 0 0 1.15em; padding-left: 1.15em; }
li { margin-bottom: .45em; }
strong { color: var(--ink); font-weight: 600; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 3px; border-radius: 3px; }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 300;
  background: var(--action); color: var(--on-action); padding: .8rem 1.2rem;
  font-family: Poppins, sans-serif; font-weight: 600;
}
.skip:focus { left: 0; top: 0; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ------------------------------------------------------------- buttons -- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: Poppins, sans-serif; font-weight: 600; font-size: .92rem;
  text-transform: uppercase; letter-spacing: .06em;
  padding: .9rem 1.55rem; border-radius: var(--radius-sm);
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--solid { background: var(--action); color: var(--on-action); box-shadow: var(--shadow-sm); }
.btn--solid:hover { box-shadow: 0 10px 26px rgba(30,204,100,.28); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn--ghost:hover { border-color: var(--action); color: var(--action-text); background: var(--surface-2); }
.btn--sm { padding: .62rem 1.1rem; font-size: .78rem; }
.btn--wide { width: 100%; }

/* --------------------------------------------------- signal arc eyebrow -- */
.eyebrow {
  display: flex; align-items: center; gap: .65rem;
  font-family: Poppins, sans-serif; font-size: var(--step-1); font-weight: 600;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--brand-text); margin-bottom: .85rem;
}
.eyebrow::before {
  content: ""; flex: none; width: 17px; height: 17px; background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='round'%3E%3Cpath d='M3.5 10a11.5 11.5 0 0 1 17 0'/%3E%3Cpath d='M7.5 14a6.5 6.5 0 0 1 9 0'/%3E%3Ccircle cx='12' cy='18' r='1.9' fill='%23000' stroke='none'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.8' stroke-linecap='round'%3E%3Cpath d='M3.5 10a11.5 11.5 0 0 1 17 0'/%3E%3Cpath d='M7.5 14a6.5 6.5 0 0 1 9 0'/%3E%3Ccircle cx='12' cy='18' r='1.9' fill='%23000' stroke='none'/%3E%3C/svg%3E") no-repeat center / contain;
}

/* -------------------------------------------------------- glass header -- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 120;
  background: transparent; border-bottom: 1px solid transparent;
  transition: background-color .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}
.site-header.is-stuck {
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--glass-line);
  box-shadow: var(--shadow-sm);
}
.site-header .wrap { display: flex; align-items: center; gap: 1rem; min-height: 76px; }
.brand { flex: none; display: block; }
.brand img { height: 32px; width: auto; }
.logo-dark { display: none; }
[data-theme="light"] .logo-light { display: none; }
[data-theme="light"] .logo-dark  { display: block; }

.nav { margin-left: auto; }
.nav > ul { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.nav li { margin: 0; }
.nav a, .has-sub > button {
  display: flex; align-items: center; gap: .3rem;
  padding: .55rem .8rem; border-radius: var(--radius-sm);
  font-family: Poppins, sans-serif; font-size: .93rem; font-weight: 500;
  color: var(--muted); text-decoration: none; background: none; border: 0; cursor: pointer;
  transition: color .16s var(--ease), background-color .16s var(--ease);
}
.nav a:hover, .has-sub > button:hover { color: var(--ink); background: var(--surface-2); text-decoration: none; }
.nav a[aria-current="page"], .has-sub.is-active > button { color: var(--ink); }
.has-sub > button svg { transition: transform .22s var(--ease); }
.has-sub[data-open="true"] > button svg { transform: rotate(180deg); }

.has-sub { position: relative; }
.sub {
  position: absolute; top: calc(100% + .5rem); left: 0; min-width: 272px; padding: .45rem;
  background: var(--glass);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
          backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid var(--glass-line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: none; flex-direction: column; gap: .05rem;
}
.has-sub[data-open="true"] .sub { display: flex; animation: dropIn .2s var(--ease-out); }
@keyframes dropIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.sub a { font-weight: 400; padding: .58rem .75rem; }
.sub a:hover { background: var(--surface-2); color: var(--ink); }

.theme-toggle {
  flex: none; width: 40px; height: 40px; margin-left: .4rem;
  display: grid; place-items: center; cursor: pointer;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line); border-radius: 50%;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.theme-toggle:hover { border-color: var(--action); transform: rotate(-18deg); }
.theme-toggle .icon-sun { display: none; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

.burger {
  display: none; width: 42px; height: 42px; cursor: pointer;
  background: var(--surface-2); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  align-items: center; justify-content: center;
}

/* --------------------------------------------------------------- hero -- */
.hero { position: relative; padding: clamp(8rem, 15vw, 11rem) 0 clamp(3.5rem, 8vw, 6rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 400px at 82% -6%, rgba(124,204,33,.16), transparent 62%),
    radial-gradient(620px 340px at 6% 4%,  rgba(30,204,100,.09), transparent 58%);
}
[data-theme="light"] .hero::before {
  background:
    radial-gradient(760px 400px at 82% -6%, rgba(124,204,33,.22), transparent 62%),
    radial-gradient(620px 340px at 6% 4%,  rgba(30,204,100,.13), transparent 58%);
}
.hero .wrap { position: relative; }
.hero__inner { max-width: 780px; }
.hero h1 .accent { color: var(--brand-text); }
.hero .lede { font-size: var(--step1); max-width: 60ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2.1rem; }
.hero--compact { padding: clamp(7rem, 12vw, 9rem) 0 clamp(2.5rem, 5vw, 3.5rem); }

.crumb { font-family: Poppins, sans-serif; font-size: var(--step-1); color: var(--muted-dim); margin-bottom: .9rem; letter-spacing: .03em; }
.crumb a { color: var(--muted-dim); }

/* ------------------------------------------------------------ sections -- */
.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--bg-alt); border-block: 1px solid var(--line-soft); }
.section__head { max-width: 660px; margin-bottom: 2.6rem; }
.section__head p:last-child { margin-bottom: 0; }
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .eyebrow { justify-content: center; }

/* ---------------------------------------------------------------- grid -- */
.grid { display: grid; gap: 1.15rem; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(228px, 1fr)); }
.grid--split { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 2.5rem; align-items: start; }

/* ---------------------------------------------------------------- card -- */
.card {
  position: relative; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: border-color .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
}
.card h3 { margin-bottom: .45rem; }
.card p { font-size: .95rem; }
.card ul { font-size: .93rem; margin-top: .9rem; }
a.card { display: block; text-decoration: none; }
a.card:hover, .card--hover:hover { border-color: var(--action); transform: translateY(-4px); box-shadow: var(--shadow-md); text-decoration: none; }
.card__link {
  display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem;
  font-family: Poppins, sans-serif; font-weight: 600; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .07em; color: var(--action-text);
}
a.card:hover .card__link { text-decoration: underline; }
.card__icon {
  width: 52px; height: 52px; border-radius: 50%; margin-bottom: 1.1rem;
  display: grid; place-items: center; color: var(--brand-text);
  background: var(--surface-2); border: 1px solid var(--line);
}
.card__media {
  border-radius: var(--radius); overflow: hidden; margin: -.35rem -.35rem 1.15rem;
  background: var(--surface-2); aspect-ratio: 16 / 10; border: 1px solid var(--line-soft);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------- pills -- */
.pill {
  display: inline-block; font-family: Poppins, sans-serif;
  font-size: .67rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem .62rem; border-radius: 100px; margin-bottom: .85rem;
  border: 1px solid var(--line); color: var(--muted-dim);
}
.pill--now   { color: var(--action-text); border-color: rgba(30,204,100,.42); background: rgba(30,204,100,.09); }
.pill--order { color: var(--brand-text);  border-color: rgba(124,204,33,.42); background: rgba(124,204,33,.09); }

/* --------------------------------------------------------- price cards -- */
.price-card { display: flex; flex-direction: column; height: 100%; }
.price-card .price {
  font-family: Poppins, sans-serif; font-weight: 800; color: var(--ink);
  font-size: 2rem; line-height: 1; margin: 0; letter-spacing: -.03em;
}
.price-card .price small {
  display: block; font-size: .7rem; font-weight: 600;
  text-transform: uppercase; color: var(--muted-dim); margin-bottom: .4rem; letter-spacing: .1em;
}
.price-card ul { list-style: none; padding: 0; margin: 1.25rem 0 1.5rem; flex: 1; }
.price-card li { display: flex; gap: .6rem; align-items: flex-start; font-size: .93rem; }
.price-card li::before {
  content: ""; flex: none; width: 17px; height: 17px; margin-top: .28rem; background: var(--action-text);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") no-repeat center / contain;
}
.price-card--featured { border-color: var(--brand); box-shadow: var(--glow); }
.price-card .tag {
  position: absolute; top: -.7rem; left: 1.6rem;
  background: var(--brand); color: #10230A; font-family: Poppins, sans-serif;
  font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .28rem .7rem; border-radius: 100px;
}

/* --------------------------------------------------------- counter row -- */
.counter { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.counter__row {
  display: grid; grid-template-columns: 1fr auto; gap: .35rem 1.5rem; align-items: start;
  padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--line-soft);
  transition: background-color .18s var(--ease);
}
.counter__row:last-child { border-bottom: 0; }
.counter__row:hover { background: var(--surface-2); }
.counter__row h4 { margin: 0 0 .28rem; }
.counter__row p { font-size: .93rem; margin: 0; max-width: 64ch; }
.counter__meta {
  grid-column: 2; grid-row: 1 / span 2; text-align: right; white-space: nowrap;
  font-family: Poppins, sans-serif; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted-dim);
}
.counter__meta strong { display: block; color: var(--action-text); font-size: .95rem; text-transform: none; letter-spacing: -.01em; }

/* ----------------------------------------------------------- accordion -- */
.acc { display: grid; gap: .6rem; }
.acc__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; }
.acc__item[open] { border-color: var(--brand); box-shadow: var(--shadow-sm); }
.acc__item summary {
  list-style: none; cursor: pointer; padding: 1.05rem 1.35rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: Poppins, sans-serif; font-weight: 600; font-size: 1.02rem; color: var(--ink);
  transition: background-color .18s var(--ease);
}
.acc__item summary::-webkit-details-marker { display: none; }
.acc__item summary:hover, .acc__item[open] summary { background: var(--surface-2); }
.acc__item summary::after {
  content: ""; flex: none; width: 18px; height: 18px; background: var(--muted);
  transition: transform .24s var(--ease);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center / contain;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat center / contain;
}
.acc__item[open] summary::after { transform: rotate(180deg); }
.acc__body { padding: 1.35rem; border-top: 1px solid var(--line-soft); }
.acc__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.acc__cols h5 { color: var(--ink); margin-bottom: .7rem; }
.acc__cols ul { font-size: .93rem; margin: 0; padding-left: 1.1rem; }
.fact { display: flex; align-items: baseline; gap: .5rem; margin-top: .85rem; font-family: Poppins, sans-serif; font-size: .9rem; }
.fact span { color: var(--muted-dim); font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; }
.fact strong { color: var(--action-text); font-weight: 700; }
.acc__actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; }

/* ----------------------------------------------------------- portfolio -- */
.work { display: block; text-decoration: none; }
.work__shot {
  position: relative; border-radius: var(--radius) var(--radius) 0 0; overflow: hidden;
  height: 250px; background: var(--surface-2);
  border: 1px solid var(--line); border-bottom: 0;
  transition: border-color .22s var(--ease);
}
/* Full-length page shot parked at the top; on hover it scrolls to reveal the
   whole page, the way a visitor would see it. Height is intrinsic, so any
   length of screenshot works without changing the CSS. */
.work__shot img {
  width: 100%; height: auto; display: block;
  /* A short page (one screen tall) would leave a gap in the frame — min-height
     with cover makes it fill instead, while taller shots keep their real height. */
  min-height: 100%; object-fit: cover; object-position: top center;
  transform: translateY(0);
  transition: transform 6s cubic-bezier(.33,0,.25,1);
}
.work:hover .work__shot img,
.work:focus-visible .work__shot img {
  transform: translateY(calc(-100% + 250px));
  transition-duration: 6s;
}
/* Coming back should be quicker than going down. */
.work__shot img { transition-duration: 1s; }
.work:hover .work__shot img { transition-duration: 6s; }

/* Fade at the base so the cut-off edge doesn't look like a broken image. */
.work__shot::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 54px; pointer-events: none;
  background: linear-gradient(to top, var(--surface), transparent);
  opacity: .9; transition: opacity .3s var(--ease);
}
.work:hover .work__shot::after { opacity: 0; }

/* Hover hint — disappears once you're actually hovering. */
.work__hint {
  position: absolute; right: .6rem; bottom: .6rem; z-index: 2;
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: Poppins, sans-serif; font-size: .64rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem .6rem; border-radius: 100px;
  background: var(--glass); border: 1px solid var(--glass-line); color: var(--ink);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  transition: opacity .3s var(--ease);
}
.work:hover .work__hint { opacity: 0; }

/* Touch devices have no hover — show the top of the page and hide the hint. */
@media (hover: none) {
  .work__shot img { transform: none !important; }
  .work__hint { display: none; }
  .work__shot::after { opacity: .9 !important; }
}
.work__body {
  border: 1px solid var(--line); border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius); padding: 1.4rem; background: var(--surface);
  transition: border-color .22s var(--ease);
}
.work:hover .work__body, .work:hover .work__shot { border-color: var(--action); }
.work__body h3 { color: var(--brand-text); margin-bottom: .45rem; }
.work__body p { font-size: .94rem; margin-bottom: .9rem; }

/* ---------------------------------------------------- invitation studio -- */
.studio { display: grid; grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.05fr); gap: 2rem; align-items: start; }
.studio__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.6rem; }
.studio__preview { position: sticky; top: 100px; }
.invite {
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.75rem);
  border: 1px solid var(--line); text-align: center; min-height: 430px;
  display: flex; flex-direction: column; justify-content: center; gap: .3rem;
  box-shadow: var(--shadow-md); overflow-wrap: anywhere;
}
.invite__kicker { font-family: Poppins, sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; opacity: .82; }
.invite__names { font-family: Poppins, sans-serif; font-size: clamp(1.7rem, 4.5vw, 2.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -.03em; margin: .5rem 0; }
.invite__line { font-size: .95rem; opacity: .92; }
.invite__rule { width: 54px; height: 2px; margin: 1rem auto; opacity: .5; background: currentColor; border-radius: 2px; }
.invite__date { font-family: Poppins, sans-serif; font-weight: 700; font-size: 1.1rem; letter-spacing: -.01em; }
.invite__rsvp { font-size: .83rem; opacity: .78; margin-top: 1rem; }
.swatches { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .4rem; }
.swatch { width: 34px; height: 34px; border-radius: 50%; cursor: pointer; border: 2px solid var(--line); padding: 0; transition: transform .18s var(--ease), border-color .18s var(--ease); }
.swatch:hover { transform: scale(1.1); }
.swatch[aria-pressed="true"] { border-color: var(--action); transform: scale(1.12); }

/* ---------------------------------------------------------------- band -- */
.band {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, rgba(124,204,33,.13), rgba(30,204,100,.07));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between;
}
.band h2 { margin-bottom: .35rem; }
.band p { max-width: 54ch; margin-bottom: 0; }
.band__actions { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------------------------------------------------------- pargo note -- */
.pargo { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; }
.pargo img { width: 62px; height: 62px; flex: none; }
.pargo-yellow { display: block; } .pargo-black { display: none; }
[data-theme="light"] .pargo-yellow { display: none; }
[data-theme="light"] .pargo-black  { display: block; }
.pargo div { flex: 1 1 260px; }
.pargo h3 { margin-bottom: .3rem; }
.pargo p { font-size: .94rem; margin-bottom: 0; }

/* -------------------------------------------------------------- footer -- */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--line-soft); padding-top: clamp(3rem, 6vw, 4.5rem); }
.site-footer h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .14em; color: var(--ink); margin-bottom: 1.05rem; }
.footer-grid { display: grid; gap: 2.25rem; grid-template-columns: 1.45fr 1fr 1fr 1.25fr; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: .5rem; }
.site-footer a { color: var(--muted); font-size: .92rem; }
.site-footer a:hover { color: var(--action-text); }
.site-footer p { font-size: .92rem; }
.footer-logo { height: 30px; width: auto; margin-bottom: 1rem; }
.hours { font-size: .92rem; margin: 0; }
.hours div { display: flex; justify-content: space-between; gap: 1rem; padding: .24rem 0; }
.hours dt { color: var(--muted-dim); }
.hours dd { margin: 0; color: var(--ink); white-space: nowrap; }
.socials { display: flex; gap: .55rem; margin-top: 1.15rem; }
.socials a {
  width: 38px; height: 38px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  display: grid; place-items: center; color: var(--muted);
  transition: border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.socials a:hover { border-color: var(--action); color: var(--action-text); transform: translateY(-2px); }
.legal {
  margin-top: 2.75rem; border-top: 1px solid var(--line-soft); padding: 1.4rem 0;
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; justify-content: space-between;
  font-size: .84rem; color: var(--muted-dim);
}

/* ------------------------------------------------------- whatsapp float -- */
.wa {
  position: fixed; right: 1rem; bottom: 1rem; z-index: 95;
  width: 54px; height: 54px; border-radius: 50%;
  background: #25D366; color: #06210F; display: grid; place-items: center;
  box-shadow: var(--shadow-md); transition: transform .2s var(--ease);
}
.wa:hover { transform: scale(1.08); }

/* --------------------------------------------------------------- forms -- */
.field { margin-bottom: 1.05rem; }
.field label {
  display: block; font-family: Poppins, sans-serif; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--ink); margin-bottom: .42rem;
}
.field input, .field select, .field textarea {
  width: 100%; padding: .78rem .9rem; background: var(--bg); color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: 400 1rem/1.5 "Open Sans", sans-serif;
  transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--action); outline: none; box-shadow: 0 0 0 3px rgba(30,204,100,.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: .84rem; color: var(--muted-dim); }

/* ------------------------------------------------------ scroll reveals -- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease-out), transform .6s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* -------------------------------------------------------------- mobile -- */
@media (max-width: 980px) {
  .burger { display: flex; }
  .theme-toggle { margin-left: auto; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; margin: 0;
    background: var(--glass);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
            backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--glass-line);
    padding: .9rem var(--gutter) 1.6rem; max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav[data-open="true"] { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 0; }
  .nav a, .has-sub > button { width: 100%; padding: .82rem .35rem; font-size: 1.02rem; }
  .has-sub > button { justify-content: space-between; }
  .sub {
    position: static; display: none; box-shadow: none; background: transparent;
    border: 0; border-left: 2px solid var(--line); border-radius: 0;
    margin: 0 0 .5rem .35rem; padding: 0 0 0 .85rem; min-width: 0;
    -webkit-backdrop-filter: none; backdrop-filter: none;
  }
  .has-sub[data-open="true"] .sub { animation: none; }
  .nav-cta { margin-top: .9rem; }
  .nav-cta .btn { width: 100%; }
  .studio { grid-template-columns: 1fr; }
  .studio__preview { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .counter__row { grid-template-columns: 1fr; }
  .counter__meta { grid-column: 1; grid-row: auto; text-align: left; }
  .counter__meta strong { display: inline; }
  .band { flex-direction: column; align-items: flex-start; }
  .field-row { grid-template-columns: 1fr; }
  .acc__item summary { font-size: .95rem; padding: .95rem 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover, a.card:hover, .wa:hover, .theme-toggle:hover { transform: none; }
  .work__shot img, .work:hover .work__shot img { transform: none !important; }
  .work__hint { display: none; }
}
@media print { .site-header, .wa, .band { display: none !important; } }
