/* ===== JARALNMAIORRELE.SITE ===== */
/* Palette: Deep Indigo + Warm Amber + Terracotta + Ivory */
/* Font stack: Optima / Candara / Segoe UI — humanist sans-serif */

:root {
  --indigo:          #1F2667;
  --indigo-light:    #2A3480;
  --amber:           #B07D0C;
  --amber-light:     #D4A017;
  --terracotta:      #C4622D;
  --terracotta-lt:   #D4724D;
  --ivory:           #FAF6EC;
  --sand:            #EDE5D0;
  --charcoal:        #1A1A22;
  --mid-gray:        #5B5B70;
  --text:            #1C1C2E;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Optima', 'Candara', 'Segoe UI', Tahoma, Geneva, sans-serif;
  background: var(--ivory);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
}

/* ===== HEADER ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--indigo);
  border-bottom: 3px solid var(--amber);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
}

.site-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--amber-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}

nav { display: flex; }

nav a {
  display: block;
  color: #b0b4cc;
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0 13px;
  height: 62px;
  line-height: 62px;
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s, background-color 0.2s;
}
nav a:first-child { border-left: 1px solid rgba(255,255,255,0.07); }
nav a:hover, nav a.active { color: var(--amber-light); background-color: rgba(176,125,12,0.13); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  padding: 6px 11px;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 3px;
}

/* ===== HERO — DIAGONAL SPLIT ===== */
.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 580px;
  overflow: hidden;
}

.hero-left {
  background: var(--indigo);
  padding: 88px 52px 88px 7vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  z-index: 2;
}

.hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(176,125,12,0.05) 0px,
    rgba(176,125,12,0.05) 1px,
    transparent 1px,
    transparent 28px
  );
  pointer-events: none;
}

.hero-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 18px;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  color: #fff;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-light);
  display: block;
}

.hero-desc {
  color: #a4a9c8;
  font-size: 0.97rem;
  max-width: 380px;
  line-height: 1.78;
  margin-bottom: 34px;
}

.hero-cta {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 2px;
  transition: background-color 0.2s;
  align-self: flex-start;
}
.hero-cta:hover { background-color: var(--terracotta-lt); }

.hero-right {
  background: var(--terracotta);
  padding: 88px 7vw 88px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-right h2 {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  margin-bottom: 22px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255,255,255,0.82);
  font-size: 0.93rem;
  line-height: 1.6;
}

.hero-facts li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.65);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ===== STATS BAND ===== */
.stats-band { background: var(--amber); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  padding: 28px 16px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.22);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 2.1rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.78);
}

/* ===== SHARED SECTION STYLES ===== */
section { padding: 84px 0; }

.section-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

.sec-tag {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 700;
  margin-bottom: 10px;
}

.sec-title {
  font-size: clamp(1.45rem, 2.8vw, 2.15rem);
  color: var(--indigo);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 14px;
}

.sec-sub {
  font-size: 0.97rem;
  color: var(--mid-gray);
  max-width: 600px;
  line-height: 1.78;
}

/* ===== ABOUT — 3 COL STORY ===== */
#about { background: var(--ivory); }

.story-head { margin-bottom: 48px; }

.story-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.story-col {
  border-top: 3px solid var(--amber);
  padding-top: 22px;
}

.story-col h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.story-col p {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.82;
}
.story-col p + p { margin-top: 11px; }

/* ===== TICKETS ===== */
#tickets { background: var(--sand); }

.tickets-head { margin-bottom: 44px; }

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.ticket-card {
  background: #fff;
  border-radius: 4px;
  padding: 30px 26px;
  border-top: 4px solid var(--indigo);
  box-shadow: 0 2px 14px rgba(31,38,103,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ticket-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(31,38,103,0.13);
}
.ticket-card.alt { border-top-color: var(--terracotta); }

.ticket-type {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 7px;
}
.ticket-name {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 14px;
}
.ticket-price {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: 4px;
}
.ticket-price sub {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--mid-gray);
  vertical-align: baseline;
}
.ticket-note {
  font-size: 0.81rem;
  color: var(--mid-gray);
  margin-top: 12px;
  line-height: 1.65;
}

.hours-box {
  background: var(--indigo);
  color: #fff;
  border-radius: 4px;
  padding: 30px 34px;
  margin-top: 28px;
}
.hours-box h3 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 20px;
}
.hours-rows { display: flex; flex-direction: column; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row .season { color: rgba(255,255,255,0.65); }
.hours-row .time { color: var(--amber-light); font-weight: 700; }
.price-note {
  margin-top: 18px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  font-style: italic;
}

/* ===== WHAT TO SEE — 3×2 GRID ===== */
#see { background: var(--ivory); }
.see-head { margin-bottom: 44px; }

.see-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #d8d2c2;
}

.see-item {
  padding: 30px 26px;
  border-right: 1px solid #d8d2c2;
  border-bottom: 1px solid #d8d2c2;
  transition: background-color 0.2s;
}
.see-item:hover { background-color: #f5f0e6; }
.see-item:nth-child(3n) { border-right: none; }
.see-item:nth-last-child(-n+3) { border-bottom: none; }

.see-num {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--sand);
  font-family: Georgia, 'Times New Roman', serif;
  -webkit-text-stroke: 1px var(--amber);
}
.see-item h3 {
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 9px;
  letter-spacing: 0.02em;
}
.see-item p {
  font-size: 0.86rem;
  color: #555;
  line-height: 1.74;
}

/* ===== PRACTICAL — ACCORDION ===== */
#practical { background: var(--sand); }
.practical-head { margin-bottom: 44px; }

.accordion {
  border: 1px solid #cfc8b6;
  border-radius: 4px;
  overflow: hidden;
}
.acc-item { border-bottom: 1px solid #cfc8b6; }
.acc-item:last-child { border-bottom: none; }

.acc-trigger {
  width: 100%;
  background: #fff;
  border: none;
  cursor: pointer;
  padding: 18px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Optima', 'Candara', 'Segoe UI', Tahoma, Geneva, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--indigo);
  text-align: left;
  transition: background-color 0.2s;
}
.acc-trigger:hover { background-color: #f5f0e4; }
.acc-trigger.open { background: var(--indigo); color: #fff; }

.acc-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  font-weight: 700;
  transition: transform 0.2s;
  line-height: 1;
}
.acc-trigger.open .acc-icon { transform: rotate(45deg); }

.acc-body {
  display: none;
  padding: 22px 26px;
  background: #fdfaf3;
  font-size: 0.92rem;
  color: #444;
  line-height: 1.82;
  border-top: 2px solid var(--amber);
}
.acc-body.open { display: block; }

/* ===== TIPS — NUMBERED ROWS ===== */
#tips { background: var(--ivory); }
.tips-head { margin-bottom: 44px; }

.tips-list { display: flex; flex-direction: column; }

.tip-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0;
  padding: 26px 0;
  border-bottom: 1px solid #ddd8cc;
}
.tip-row:first-child { border-top: 1px solid #ddd8cc; }

.tip-num {
  font-size: 3rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  font-family: Georgia, 'Times New Roman', serif;
  padding-top: 2px;
}
.tip-body h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 7px;
}
.tip-body p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.76;
}

/* ===== INFO BLOCKS (Resources / Legal / AGB) ===== */
.info-strip {
  background: var(--sand);
  padding: 64px 0;
}
.info-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.info-block {
  background: var(--ivory);
  padding: 26px 22px;
  border-radius: 3px;
  border-top: 3px solid var(--terracotta);
}
.info-block h3 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e0d8c8;
}
.info-block ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.info-block ul li a {
  color: var(--indigo);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.info-block ul li a:hover { color: var(--terracotta); }

/* ===== CONTACT ===== */
#contact { background: var(--indigo); padding: 84px 0; }
#contact .sec-tag { color: var(--amber-light); }
#contact .sec-title { color: #fff; }
#contact .sec-sub { color: rgba(255,255,255,0.6); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 38px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.73rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
}
.form-group input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 12px 15px;
  font-size: 0.93rem;
  font-family: 'Optima', 'Candara', 'Segoe UI', Tahoma, Geneva, sans-serif;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.2s, background-color 0.2s;
}
.form-group input::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus { border-color: var(--amber); background-color: rgba(255,255,255,0.12); }

.form-submit {
  background: var(--terracotta);
  color: #fff;
  border: none;
  padding: 14px 46px;
  font-size: 0.84rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Optima', 'Candara', 'Segoe UI', Tahoma, Geneva, sans-serif;
  border-radius: 2px;
  transition: background-color 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background-color: var(--terracotta-lt); }

.form-msg {
  grid-column: 1 / -1;
  font-size: 0.88rem;
  padding: 12px 16px;
  border-radius: 2px;
  display: none;
}
.form-msg.success { background: rgba(176,125,12,0.2); color: var(--amber-light); display: block; }
.form-msg.error { background: rgba(196,98,45,0.25); color: #f0a880; display: block; }

/* ===== FOOTER ===== */
footer { background: var(--charcoal); color: #777; padding: 54px 0 0; }

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px 48px;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.footer-brand .brand-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
}
.footer-brand p {
  font-size: 0.8rem;
  color: #5a5a68;
  line-height: 1.78;
  margin-top: 10px;
  max-width: 210px;
}
.footer-contact {
  font-size: 0.8rem;
  line-height: 1.9;
  color: #5a5a68;
}
.footer-contact strong {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  margin-bottom: 8px;
}

.footer-col h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #888;
  margin-bottom: 14px;
  font-weight: 700;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.footer-col ul a {
  color: #5a5a68;
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--amber-light); }

.footer-bottom {
  border-top: 1px solid #28282f;
  padding: 16px 32px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.76rem;
  color: #4a4a56;
}
.footer-bottom a { color: #5a5a68; text-decoration: none; margin-left: 16px; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--amber-light); }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: #111118;
  color: #484850;
  font-size: 0.73rem;
  text-align: center;
  padding: 10px 24px;
  line-height: 1.65;
}
.disclaimer-bar a { color: #666; text-decoration: none; }
.disclaimer-bar a:hover { color: var(--amber-light); }

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { clip-path: none; padding: 70px 36px; }
  .hero-right { padding: 52px 36px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-cols { grid-template-columns: 1fr 1fr; }
  .tickets-grid { grid-template-columns: 1fr; max-width: 540px; }
  .see-grid { grid-template-columns: repeat(2, 1fr); }
  .see-item:nth-child(3n) { border-right: 1px solid #d8d2c2; }
  .see-item:nth-child(2n) { border-right: none; }
  .see-item:nth-last-child(-n+3) { border-bottom: 1px solid #d8d2c2; }
  .see-item:nth-last-child(-n+2) { border-bottom: none; }
  .info-cols { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 768px) {
  nav { display: none; flex-direction: column; position: absolute; top: 62px; left: 0; right: 0; background: var(--indigo); border-top: 1px solid rgba(255,255,255,0.08); }
  nav.open { display: flex; }
  nav a { height: auto; line-height: 1; padding: 14px 22px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  nav a:first-child { border-left: none; }
  .nav-toggle { display: block; }
  .story-cols { grid-template-columns: 1fr; }
  .see-grid { grid-template-columns: 1fr; }
  .see-item { border-right: none; border-bottom: 1px solid #d8d2c2; }
  .see-item:last-child { border-bottom: none; }
  .info-cols { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }
  .footer-inner { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .tip-row { grid-template-columns: 58px 1fr; }
  .tip-num { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .hero-left { padding: 52px 20px; }
  .hero-right { padding: 40px 20px; }
  section { padding: 60px 0; }
  .section-inner { padding: 0 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
