:root{
  /* Clean + premium, blue/silver leaning */
  --bg: #ffffff;
  --ink: #0b1220;
  --muted: #4b5563;
  --line: rgba(15, 23, 42, .10);

  --navy: #0b1b3a;
  --navy2: #102a5a;

  --silver: #eef2f7;
  --silver2: #f7f9fc;

  --shadow: 0 18px 55px rgba(2, 8, 23, .08);
  --radius: 20px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--ink);
  background:var(--bg);
}

a{ color:inherit; }
code{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: .9em;
}

.container{
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px;
}

/* Local-only editor visibility */
.local-only{
  display: none;
}

body.is-local .local-only{
  display: block;
}

/* Accessibility helper */
.sr-only{
  position:absolute;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  border:0;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 16px;
}

.topbar-left{
  display:flex;
  align-items:center;
  gap: 26px;
}

.topbar-right{
  display:flex;
  align-items:center;
  gap: 16px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  text-decoration:none;
}

.brand-mark{
  display:inline-block;
  font-weight: 700;
  letter-spacing: .22em;
  font-size: 12px;
  color: #111827;
}

.brand-name{
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(17, 24, 39, .7);
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap: 16px;
}

.nav a{
  text-decoration:none;
  font-weight: 600;
  color: rgba(11, 18, 32, .8);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 11px;
}

.nav a:hover{ color: rgba(11, 18, 32, 1); }

.socials{
  display:flex;
  gap: 10px;
  align-items:center;
}

.social-link{
  text-decoration:none;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(11, 18, 32, .8);
}

.nav-toggle{
  display:none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 10px 12px;
  cursor:pointer;
}

.nav-toggle-bars{
  display:block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after{
  content:"";
  position:absolute;
  left:0;
  width: 18px; height: 2px;
  background: var(--ink);
}
.nav-toggle-bars::before{ top: -6px; }
.nav-toggle-bars::after{ top: 6px; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration:none;
  border: 1px solid transparent;
  font-weight: 700;
  cursor:pointer;
}

.btn-primary{
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: white;
  box-shadow: 0 12px 30px rgba(11, 27, 58, .18);
}

.btn-ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-small{
  padding: 10px 14px;
  font-weight: 700;
}

.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0px); }

/* Sections */
.section{
  padding: 96px 0;
  background: #fff;
}

.section-alt{
  background: #f7f8fb;
}

/* Landing hero */
.landing-hero{
  position: relative;
  min-height: 68vh;
  display: flex;
  align-items: center;
  background: #0b1220 url("assets/images/screenshot.png") center 25% / cover no-repeat;
  color: #fff;
}

.landing-hero::before{
  content:"";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,8,14,.9), rgba(5,8,14,.45), rgba(5,8,14,.15));
}

.landing-content{
  position: relative;
  z-index: 1;
  padding: 90px 0;
  max-width: 560px;
}

.landing-kicker{
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 12px;
  color: rgba(255,255,255,.75);
}

.landing-title{
  margin: 0 0 12px;
  font-family: "Sora", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1;
  letter-spacing: -.02em;
  font-weight: 800;
}

.landing-sub{
  margin: 0 0 20px;
  color: rgba(255,255,255,.85);
  font-size: 18px;
  line-height: 1.6;
}

.landing-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-hero .btn-ghost{
  border-color: rgba(255,255,255,.45);
  color: #fff;
}

/* Feature split */
.feature-split{
  padding: 64px 0;
}

.feature-grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
}

.feature-copy .lead{
  margin: 0;
  max-width: 52ch;
}

.feature-media{
  display: flex;
  justify-content: flex-start;
}

.feature-cta{
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-cta .btn{
  white-space: nowrap;
}

.btn-large{
  padding: 18px 26px;
  font-size: 18px;
}

.feature-square{
  width: min(320px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.feature-image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.instagram-section .lead a{
  text-decoration:none;
  border-bottom: 1px solid rgba(75,85,99,.35);
}

.instagram-embed{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}

.instagram-embed iframe{
  width: 100%;
  height: 520px;
  border: 0;
}

.instagram-fallback{
  margin-top: 12px;
}

.section-head{
  max-width: 820px;
  margin-bottom: 28px;
}

.h2{
  font-size: 44px;
  letter-spacing: -.03em;
  margin: 0 0 10px;
}

.h3{
  font-size: 18px;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.lead{
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

/* Hero */
.hero{
  padding: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero .container{
  max-width: 100%;
  padding: 0;
}

.hero-inset{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: #fff url("assets/images/Untitled-2.png") center/contain no-repeat;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 24px;
  align-items: stretch;
}

.hero-copy{
  text-align: center;
}

.eyebrow{
  margin: 0 0 10px;
  color: rgba(75, 85, 99, .95);
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 17px;
}

.hero-title{
  margin: 0 0 12px;
  font-family: "Sora", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(54px, 7vw, 110px);
  letter-spacing: -.04em;
  line-height: 1.02;
  font-weight: 800;
}

.hero-sub{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
}

.hero-actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  justify-content: center;
}

.hero-meta{
  list-style:none;
  padding:0;
  margin: 0;
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(75, 85, 99, .95);
  font-weight: 600;
}
.hero-meta li{
  display:flex;
  align-items:center;
  gap: 8px;
}
.dot{
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(16, 42, 90, .55);
}

/* Hero card */
.hero-card{
  border-radius: var(--radius);
  overflow:hidden;
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-photo{
  height: 320px;
  background:
    url("assets/images/johnny-hero.jpg") center 5% / cover no-repeat;
}

.hero-img {
    width: 100%;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}
.hero-card-inner{
  padding: 18px 18px 20px;
}

.card-title{
  margin: 0 0 8px;
  font-size: 16px;
  letter-spacing: -.01em;
}

.card-line{
  margin: 0 0 14px;
  color: rgba(75, 85, 99, .95);
  font-weight: 600;
}

.card-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.card-note{
  margin: 12px 0 0;
  color: rgba(75, 85, 99, .85);
  font-size: 12px;
}

/* Tour */
.tour-wrap{
  border: 1px solid var(--line);
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.tour-row{
  display:grid;
  grid-template-columns: 1fr 1.2fr auto;
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid var(--line);
  align-items:center;
}

.tour-row:first-child{ border-top: 0; }

.tour-date{
  font-weight: 800;
  letter-spacing: -.01em;
}

.tour-venue{
  color: rgba(75, 85, 99, .96);
  font-weight: 600;
}

.tour-actions{
  display:flex;
  gap: 10px;
  justify-content:flex-end;
}

.tour-feature{
  background: #dff4fb;
}

.tour-banner{
  text-align:center;
  padding: 20px 0 10px;
}

.tour-kicker{
  margin: 0 0 6px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  color: rgba(11, 18, 32, .7);
  font-weight: 700;
}

.tour-title{
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.02em;
}

.tour-art{
  display:none;
}

.tour-next{
  display:flex;
  flex-direction:column;
  gap: 8px;
  align-items:center;
  margin-bottom: 26px;
}

.tour-next-label{
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  color: rgba(11, 18, 32, .65);
  margin: 0;
}

.tour-next-line{
  margin: 0;
  font-weight: 700;
  font-size: 18px;
}

.tour-next-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tour-list-block{
  padding-top: 20px;
}

/* Watch */
.watch-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}

.video-frame{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-frame iframe{
  width:100%;
  height:100%;
  border:0;
}

.cards{
  display:grid;
  gap: 12px;
}

.mini-card{
  display:flex;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  text-decoration:none;
  box-shadow: 0 12px 30px rgba(2, 8, 23, .06);
}

.mini-thumb{
  width: 76px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(11,27,58,.12), rgba(238,242,247,.9));
  flex: 0 0 auto;
}

.mini-title{
  margin: 2px 0 4px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.mini-sub{
  margin: 0;
  color: rgba(75, 85, 99, .92);
  font-size: 14px;
}

/* Press */
.press-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.press-card{
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
}

.press-links{
  display:flex;
  flex-direction:column;
  gap: 10px;
  margin: 12px 0 10px;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(75, 85, 99, .96);
  line-height: 1.7;
  font-weight: 600;
}

/* About */
.about{
  max-width: 920px;
}

.about p{
  margin: 0 0 16px;
  color: rgba(75, 85, 99, .96);
  line-height: 1.7;
  font-size: 16px;
}

.about-highlights{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.highlight{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fbfdff);
  padding: 16px 16px 14px;
}

.highlight-kicker{
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(75, 85, 99, .85);
  font-weight: 700;
}

.highlight-main{
  margin: 0;
  font-weight: 800;
  letter-spacing: -.01em;
}

/* Contact */
.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-card{
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 18px;
}

.contact-lines p{
  margin: 10px 0;
  color: rgba(75, 85, 99, .95);
  font-weight: 600;
}

.contact-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.field{
  display:grid;
  gap: 8px;
  margin-bottom: 12px;
}

.field span{
  font-weight: 700;
  color: rgba(75, 85, 99, .92);
  font-size: 13px;
}

input, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 12px 12px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  background: #fff;
}

input:focus, textarea:focus{
  border-color: rgba(16, 42, 90, .35);
  box-shadow: 0 0 0 4px rgba(16, 42, 90, .10);
}

/* Footer */
.footer{
  padding: 42px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  color: rgba(75, 85, 99, .92);
  font-weight: 600;
}

.footer-links a{
  text-decoration:none;
  border-bottom: 1px solid rgba(75,85,99,.35);
}


/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .watch-grid{ grid-template-columns: 1fr; }
  .press-grid{ grid-template-columns: 1fr; }
  .about-highlights{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .hero-title{ font-size: 48px; }
  .landing-hero{
    min-height: 58vh;
    background-position: 70% center;
  }
  .feature-grid{ grid-template-columns: 1fr; }
  .feature-media{ justify-content: flex-start; }
  .feature-media{ display: none; }
  .feature-cta{ justify-content: flex-start; }
}

@media (max-width: 820px){
  .nav-toggle{ display:inline-flex; }
  .socials{ display:none; }
  .topbar-left{ gap: 16px; }
  .hero-lockup{ letter-spacing: .18em; }
  .landing-content{
    max-width: 100%;
  }
  .nav{
    position: absolute;
    right: 22px;
    top: 64px;
    display:none;
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    background: rgba(255,255,255,.96);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open{ display:flex; }
  .tour-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .tour-actions{ justify-content:flex-start; }
  .editor-grid{
    grid-template-columns: 1fr;
  }
  .editor-span-2{
    grid-column: span 1;
  }
}

/* Date editor */
.date-editor{
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px 18px 18px;
}

.date-editor > summary{
  cursor: pointer;
  list-style: none;
}

.date-editor > summary::-webkit-details-marker{
  display: none;
}

.date-editor-table{
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.date-editor-row{
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr 1.2fr auto;
  gap: 10px;
  align-items: center;
}

.date-editor-head{
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(75, 85, 99, .85);
  font-weight: 700;
}

.date-editor-input{
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

.date-editor-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.show-limit{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.show-limit-controls{
  display: flex;
  align-items: center;
  gap: 8px;
}

.show-limit-value{
  min-width: 44px;
  text-align: center;
  font-weight: 700;
  color: rgba(11, 18, 32, .8);
}

/* Site editor (local-only) */
.site-editor{
  display: grid;
  gap: 16px;
}

.editor-block{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 14px 16px 16px;
}

.editor-block > summary{
  cursor: pointer;
  list-style: none;
}

.editor-block > summary::-webkit-details-marker{
  display: none;
}

.editor-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
  margin-top: 12px;
}

.editor-grid .field{
  margin-bottom: 0;
}

.editor-span-2{
  grid-column: span 2;
}

.site-editor-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

@media (max-width: 860px){
  .date-editor-row{
    grid-template-columns: 1fr;
  }
  .date-editor-head{
    display: none;
  }
}