:root {
  --bg: #f7f5ef;
  --surface: #ffffff;
  --ink: #111111;
  --muted: #6c6a64;
  --line: #dedbd1;
  --energy: #f0ad23;
  --energy-strong: #d99300;
  --dark: #0a0a0a;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(0, 0, 0, .12);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 104px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 9999;
  padding: .8rem 1rem;
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-180%);
  border-radius: 10px;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2.4rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 245, 239, .92);
  border-bottom: 1px solid rgba(17,17,17,.08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { width: 170px; display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: 100%; height: 62px; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 1.6rem; }
.main-nav a { text-decoration: none; font-size: .92rem; font-weight: 800; letter-spacing: .01em; }
.main-nav a:not(.nav-cta):hover { color: var(--energy-strong); }
.nav-cta { padding: .75rem 1rem; border-radius: 999px; color: #fff; background: var(--dark); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--dark); padding: 12px; }
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(240,173,35,.22), transparent 25rem),
    var(--dark);
  color: #fff;
}
.hero::after {
  content: "KX";
  position: absolute;
  left: -2vw;
  bottom: -11vw;
  color: rgba(255,255,255,.025);
  font-size: clamp(18rem, 38vw, 42rem);
  line-height: .8;
  font-weight: 1000;
  letter-spacing: -.12em;
  pointer-events: none;
}
.hero-grid { min-height: 680px; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; padding-block: 5.5rem; position: relative; z-index: 1; }
.eyebrow { margin: 0 0 .9rem; color: var(--energy); text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; font-weight: 900; }
.hero h1, .section-heading h2, .about h2, .contact h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .012em;
  line-height: 1;
}
.hero h1 { max-width: 750px; font-size: clamp(4.2rem, 8vw, 7.6rem); }
.hero h1 span { color: var(--energy); }
.hero-lead { max-width: 640px; margin: 1.8rem 0 0; color: #ddd; font-size: clamp(1.05rem, 2vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: .8rem 1.25rem; border: 1px solid transparent; border-radius: 999px; text-decoration: none; font-weight: 900; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--energy); color: var(--ink); }
.btn-primary:hover { background: #ffc14d; }
.btn-ghost { border-color: rgba(255,255,255,.28); color: #fff; }
.btn-ghost:hover { border-color: #fff; }
.btn-ghost.light { border-color: rgba(255,255,255,.35); }
.hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; padding: 0; margin: 2.7rem 0 0; list-style: none; }
.hero-points li { padding-top: .9rem; border-top: 1px solid rgba(255,255,255,.16); }
.hero-points strong, .hero-points span { display: block; }
.hero-points strong { color: var(--energy); text-transform: uppercase; font-size: .8rem; letter-spacing: .08em; }
.hero-points span { color: #aaa; font-size: .82rem; }
.hero-visual { margin: 0; transform: rotate(1.3deg); }
.hero-visual img { width: 100%; aspect-ratio: 1.12 / 1; object-fit: cover; border-radius: 34px; box-shadow: 0 34px 90px rgba(0,0,0,.4); }
.hero-visual figcaption, .about-photo figcaption { margin-top: .7rem; color: #898989; font-size: .74rem; }

.strip { background: var(--energy); color: var(--ink); }
.strip-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.strip p { margin: 0; padding: 1rem 1.3rem; font-weight: 850; text-transform: uppercase; text-align: center; border-right: 1px solid rgba(17,17,17,.18); }
.strip p:last-child { border-right: 0; }
.strip span { margin-right: .5rem; opacity: .55; }

.section { padding: 7rem 0; }
.section-heading { max-width: 720px; margin-bottom: 3rem; }
.section-heading h2, .about h2, .contact h2 { font-size: clamp(3rem, 6vw, 5.5rem); }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }

.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.product-card { overflow: hidden; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 12px 30px rgba(0,0,0,.035); transition: transform .25s ease, box-shadow .25s ease; }
.product-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.product-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-body { padding: 1.2rem 1.2rem 1.4rem; }
.product-topline { display: flex; justify-content: space-between; margin-bottom: .7rem; color: var(--muted); text-transform: uppercase; font-size: .73rem; font-weight: 900; letter-spacing: .1em; }
.product-card h3 { margin: 0; font-size: 1.28rem; text-transform: uppercase; }
.product-card p { margin: .55rem 0 0; color: var(--muted); font-size: .92rem; }
.allergen-note { margin: 1.5rem 0 0; color: var(--muted); font-size: .8rem; }


.gallery { background: var(--dark); color: #fff; }
.gallery .section-heading > p:last-child { color: #b7b7b7; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.gallery-item {
  position: relative;
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  background: #151515;
  border: 1px solid rgba(255,255,255,.08);
}
.gallery-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .35s ease;
}
.gallery-item:hover img { transform: scale(1.035); }
.gallery-item figcaption { position: absolute; left: .8rem; bottom: .8rem; padding: .42rem .65rem; border-radius: 999px; background: rgba(0,0,0,.66); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .04em; backdrop-filter: blur(8px); }

.events { background: #ece9e1; }
.events-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 5rem; align-items: start; }
.events .section-heading { position: sticky; top: 130px; margin-bottom: 0; }
.event-cards { display: grid; gap: 1rem; }
.event-card { position: relative; min-height: 220px; padding: 2rem; background: var(--surface); border-radius: var(--radius); border: 1px solid var(--line); }
.event-card h3 { margin: 2.8rem 0 .5rem; font-size: 1.55rem; text-transform: uppercase; }
.event-card p { margin: 0; color: var(--muted); }
.event-number { position: absolute; top: 1.5rem; right: 1.6rem; color: var(--energy-strong); font-size: 2.6rem; line-height: 1; font-weight: 950; }

.about { background: var(--surface); }
.about-grid { display: grid; grid-template-columns: minmax(260px, .65fr) minmax(0, 1.35fr); gap: 4rem; align-items: center; }
.about-photo { margin: 0; width: min(100%, 400px); justify-self: center; }
.about-photo img { width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); }
.about-photo figcaption { color: var(--muted); }
.about-copy p { color: var(--muted); }
.about-lead { font-size: 1.18rem; color: var(--ink) !important; }
blockquote { margin: 2rem 0 0; padding-left: 1.3rem; border-left: 4px solid var(--energy); font-size: 1.5rem; font-weight: 900; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 5rem; }
.faq .section-heading { margin-bottom: 0; }
.accordion details { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; margin-bottom: .8rem; padding: 0 1.2rem; }
.accordion summary { cursor: pointer; list-style: none; position: relative; padding: 1.25rem 2rem 1.25rem 0; font-weight: 850; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: .1rem; top: .85rem; color: var(--energy-strong); font-size: 1.6rem; }
.accordion details[open] summary::after { content: "–"; }
.accordion details p { margin: 0; padding: 0 2rem 1.25rem 0; color: var(--muted); }

.contact { position: relative; overflow: hidden; background: var(--dark); color: #fff; padding: 7rem 0; }
.contact::after { content: "ENERGY"; position: absolute; left: 50%; top: 50%; transform: translate(-50%,-47%); font: 900 clamp(8rem, 25vw, 24rem)/1 Impact, sans-serif; color: rgba(255,255,255,.025); white-space: nowrap; }
.contact-inner { position: relative; z-index: 1; text-align: center; }
.contact h2 { color: #fff; }
.contact p { color: #bbb; }
.contact-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem; margin-top: 2rem; }
.contact-meta { margin: 2rem 0 0; font-size: .85rem; }

.site-footer { background: #030303; color: #aaa; padding: 4rem 0 1.4rem; border-top: 1px solid #1b1b1b; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 3rem; }
.footer-logo { width: 150px; height: 76px; object-fit: contain; object-position: left center; filter: invert(1); opacity: .9; }
.site-footer h2 { margin: 0 0 .9rem; color: #fff; font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer p { margin: .35rem 0; }
.site-footer a, .footer-link { display: block; width: fit-content; margin: .35rem 0; color: #aaa; background: transparent; border: 0; padding: 0; text-decoration: none; cursor: pointer; }
.site-footer a:hover, .footer-link:hover { color: var(--energy); }

.instagram-button { display: inline-flex !important; align-items: center; gap: .5rem; margin-top: .9rem !important; padding: .62rem .85rem !important; border: 1px solid rgba(255,255,255,.2) !important; border-radius: 999px; color: #fff !important; font-weight: 800; transition: transform .2s ease, border-color .2s ease, color .2s ease; }
.instagram-button svg { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }
.instagram-button:hover { transform: translateY(-2px); border-color: var(--energy) !important; color: var(--energy) !important; }

.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; padding-top: 1.3rem; border-top: 1px solid #1c1c1c; font-size: .78rem; }

.legal-dialog { width: min(700px, calc(100% - 2rem)); max-height: min(80vh, 800px); overflow: auto; padding: 2rem; border: 0; border-radius: 18px; box-shadow: 0 30px 100px rgba(0,0,0,.45); }
.legal-dialog::backdrop { background: rgba(0,0,0,.7); backdrop-filter: blur(4px); }
.legal-dialog h2 { margin-top: .2rem; font-size: 2rem; }
.legal-dialog p { color: #4b4b4b; }
.legal-note { padding: 1rem; background: #fff3d6; border-radius: 10px; font-size: .86rem; }
.dialog-close { float: right; border: 0; background: #111; color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .product-card, .btn { transition: none; }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 86px;
    left: 1.2rem;
    right: 1.2rem;
    display: grid;
    gap: 0;
    padding: .8rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    transform: translateY(-16px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }
  .main-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .main-nav a { padding: .9rem 1rem; }
  .nav-cta { margin-top: .35rem; text-align: center; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 4rem; }
  .hero-visual { width: min(700px, 100%); }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .events-grid, .faq-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .events .section-heading { position: static; }
  .about-grid { gap: 2.8rem; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 1.4rem), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand { width: 142px; }
  .brand img { height: 52px; }
  .main-nav { top: 72px; left: .7rem; right: .7rem; }
  .hero-grid { min-height: auto; padding-block: 3rem; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.8rem); }
  .hero-points { grid-template-columns: 1fr; }
  .hero-points li { display: grid; grid-template-columns: 110px 1fr; }
  .strip-grid { grid-template-columns: 1fr; }
  .strip p { text-align: left; border-right: 0; border-bottom: 1px solid rgba(17,17,17,.15); }
  .strip p:last-child { border-bottom: 0; }
  .section { padding: 5rem 0; }
  .section-heading h2, .about h2, .contact h2 { font-size: clamp(2.8rem, 14vw, 4.5rem); }
  .product-grid { grid-template-columns: 1fr; }
  .product-card img { aspect-ratio: 4 / 3; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .7rem; }
  .gallery-item figcaption { left: .55rem; bottom: .55rem; font-size: .66rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: 2; width: min(100%, 340px); justify-self: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1.5rem; }
  .footer-bottom { display: block; }
  .legal-dialog { padding: 1.3rem; }
}

@media (max-width: 430px) {
  .hero-actions, .contact-actions { display: grid; }
  .btn { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}