/* Design DNA: Jaffa Events | stages-timeline hero | champagne header | strip-top cookie */
/* Fonts: "Great Vibes", cursive + "Lora", serif */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --je-midnight: #1B1B2F;
  --je-champagne: #E8D5A3;
  --je-blush: #F6E7E0;
  --je-white: #FFFFFF;
  --je-champagne-dark: #D4BC82;
  --je-midnight-soft: #2A2A42;
  --je-text: #3A3A4A;
  --je-text-light: #6B6B7B;
  --je-shadow: rgba(27, 27, 47, 0.12);
  --je-shadow-deep: rgba(27, 27, 47, 0.25);
  --je-font-display: 'Great Vibes', cursive;
  --je-font-body: 'Lora', serif;
  --je-header-h: 72px;
  --je-cookie-h: 44px;
  --je-radius: 12px;
  --je-radius-sm: 8px;
  --je-transition: 0.3s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--je-font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--je-text);
  background: var(--je-white);
  overflow-x: hidden;
}

body.je-cookie-visible {
  padding-top: var(--je-cookie-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--je-midnight);
  text-decoration: none;
  transition: color var(--je-transition);
}

a:hover {
  color: var(--je-champagne-dark);
}

ul {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--je-font-body);
  font-weight: 600;
  color: var(--je-midnight);
  line-height: 1.3;
}

h1 { font-size: clamp(2rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.35rem); }

p { margin-bottom: 1rem; }

.je-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ── Cookie Strip (top) ── */
.je-cookie {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--je-midnight);
  color: var(--je-champagne);
  height: var(--je-cookie-h);
  display: flex;
  align-items: center;
  transform: translateY(-100%);
  transition: transform var(--je-transition);
  font-size: 0.875rem;
}

.je-cookie.je-cookie--show {
  transform: translateY(0);
}

.je-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.je-cookie__text {
  flex: 1;
}

.je-cookie__text a {
  color: var(--je-champagne);
  text-decoration: underline;
}

.je-cookie__text a:hover {
  color: var(--je-white);
}

.je-cookie__btn {
  flex-shrink: 0;
  background: var(--je-champagne);
  color: var(--je-midnight);
  border: none;
  padding: 0.4rem 1.25rem;
  font-family: var(--je-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--je-radius-sm);
  transition: background var(--je-transition);
}

.je-cookie__btn:hover {
  background: var(--je-white);
}

/* ── Header ── */
.je-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--je-champagne);
  box-shadow: 0 2px 12px var(--je-shadow);
  transition: top var(--je-transition);
}

body.je-cookie-visible .je-header {
  top: var(--je-cookie-h);
}

.je-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--je-header-h);
}

.je-logo {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.je-logo__name {
  font-family: var(--je-font-display);
  font-size: 1.75rem;
  color: var(--je-midnight);
  line-height: 1.1;
}

.je-logo__tag {
  font-size: 0.6875rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--je-midnight-soft);
  font-weight: 500;
}

.je-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.je-nav__link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--je-midnight);
  position: relative;
}

.je-nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--je-midnight);
  transition: width var(--je-transition);
}

.je-nav__link:hover::after,
.je-nav__link.je-nav__link--active::after {
  width: 100%;
}

.je-nav__link.je-nav__link--active {
  font-weight: 600;
}

.je-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.je-burger__line {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--je-midnight);
  transition: transform var(--je-transition), opacity var(--je-transition);
}

.je-burger.je-burger--open .je-burger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.je-burger.je-burger--open .je-burger__line:nth-child(2) {
  opacity: 0;
}

.je-burger.je-burger--open .je-burger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Hero with Timeline ── */
.je-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background: var(--je-midnight);
  overflow: hidden;
}

.je-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.je-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27, 27, 47, 0.85) 0%, rgba(27, 27, 47, 0.55) 100%);
}

.je-hero__content {
  position: relative;
  z-index: 2;
  padding: 4rem 0;
  width: 100%;
}

.je-hero__brand {
  font-family: var(--je-font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--je-champagne);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.je-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--je-blush);
  margin-bottom: 2.5rem;
  max-width: 540px;
  font-weight: 400;
}

.je-hero__cta {
  display: inline-block;
  background: var(--je-champagne);
  color: var(--je-midnight);
  padding: 0.85rem 2rem;
  font-family: var(--je-font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--je-radius-sm);
  transition: background var(--je-transition), transform var(--je-transition);
  margin-bottom: 3rem;
}

.je-hero__cta:hover {
  background: var(--je-white);
  color: var(--je-midnight);
  transform: translateY(-2px);
}

/* Timeline stages row */
.je-timeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  max-width: 720px;
}

.je-timeline__stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.25rem 0.75rem;
  background: rgba(246, 231, 224, 0.08);
  border: 1px solid rgba(232, 213, 163, 0.25);
  position: relative;
}

.je-timeline__stage:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(232, 213, 163, 0.35);
}

.je-timeline__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--je-champagne);
  color: var(--je-midnight);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.je-timeline__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--je-champagne);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.35rem;
}

.je-timeline__desc {
  font-size: 0.75rem;
  color: var(--je-blush);
  line-height: 1.5;
  opacity: 0.85;
}

/* ── Page Hero (inner pages) ── */
.je-page-hero {
  background: var(--je-blush);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 3px solid var(--je-champagne);
}

.je-page-hero__title {
  font-family: var(--je-font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--je-midnight);
  margin-bottom: 0.5rem;
}

.je-page-hero__desc {
  color: var(--je-text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ── Sections ── */
.je-section {
  padding: 4rem 0;
}

.je-section--blush {
  background: var(--je-blush);
}

.je-section--champagne {
  background: var(--je-champagne);
}

.je-section--midnight {
  background: var(--je-midnight);
  color: var(--je-blush);
}

.je-section--midnight h2,
.je-section--midnight h3 {
  color: var(--je-champagne);
}

.je-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.je-section__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--je-champagne-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.je-section__title {
  margin-bottom: 0.75rem;
}

.je-section__desc {
  color: var(--je-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.je-section--midnight .je-section__desc {
  color: rgba(246, 231, 224, 0.75);
}

/* ── Soft Cards ── */
.je-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
}

.je-card {
  background: var(--je-white);
  border-radius: var(--je-radius);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--je-shadow);
  transition: transform var(--je-transition), box-shadow var(--je-transition);
}

.je-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px var(--je-shadow-deep);
}

.je-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.je-card__body {
  padding: 1.5rem;
}

.je-card__title {
  margin-bottom: 0.5rem;
}

.je-card__text {
  color: var(--je-text-light);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.je-card--soft {
  background: var(--je-blush);
  border: 1px solid rgba(232, 213, 163, 0.4);
  box-shadow: none;
}

.je-card--soft .je-card__body {
  padding: 2rem;
}

/* ── Two Column Layout ── */
.je-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.je-split__img {
  border-radius: var(--je-radius);
  box-shadow: 0 8px 32px var(--je-shadow);
}

.je-split__content h2 {
  margin-bottom: 1rem;
}

.je-split__content p {
  color: var(--je-text-light);
}

/* ── Services List ── */
.je-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.je-service {
  padding: 2rem;
  background: var(--je-white);
  border-radius: var(--je-radius);
  border-left: 4px solid var(--je-champagne);
  box-shadow: 0 4px 20px var(--je-shadow);
}

.je-service__icon {
  font-family: var(--je-font-display);
  font-size: 2rem;
  color: var(--je-champagne-dark);
  margin-bottom: 0.75rem;
}

.je-service__title {
  margin-bottom: 0.75rem;
}

.je-service__text {
  color: var(--je-text-light);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ── Venues Grid ── */
.je-venues {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.je-venue {
  border-radius: var(--je-radius);
  overflow: hidden;
  background: var(--je-white);
  box-shadow: 0 4px 24px var(--je-shadow);
}

.je-venue__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.je-venue__body {
  padding: 1.75rem;
}

.je-venue__name {
  margin-bottom: 0.5rem;
}

.je-venue__meta {
  font-size: 0.8125rem;
  color: var(--je-champagne-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.je-venue__desc {
  color: var(--je-text-light);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ── Contact Form ── */
.je-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.je-contact-info__item {
  margin-bottom: 1.75rem;
}

.je-contact-info__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--je-champagne-dark);
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.je-contact-info__value {
  font-size: 1.05rem;
  color: var(--je-midnight);
}

.je-contact-info__value a {
  color: var(--je-midnight);
}

.je-form {
  background: var(--je-blush);
  padding: 2.5rem;
  border-radius: var(--je-radius);
  border: 1px solid rgba(232, 213, 163, 0.4);
}

.je-form__group {
  margin-bottom: 1.25rem;
}

.je-form__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--je-midnight);
  margin-bottom: 0.4rem;
}

.je-form__input,
.je-form__select,
.je-form__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(27, 27, 47, 0.15);
  border-radius: var(--je-radius-sm);
  font-family: var(--je-font-body);
  font-size: 0.9375rem;
  color: var(--je-text);
  background: var(--je-white);
  transition: border-color var(--je-transition);
}

.je-form__input:focus,
.je-form__select:focus,
.je-form__textarea:focus {
  outline: none;
  border-color: var(--je-champagne-dark);
}

.je-form__textarea {
  min-height: 140px;
  resize: vertical;
}

.je-form__btn {
  background: var(--je-midnight);
  color: var(--je-champagne);
  border: none;
  padding: 0.85rem 2.5rem;
  font-family: var(--je-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--je-radius-sm);
  cursor: pointer;
  transition: background var(--je-transition);
}

.je-form__btn:hover {
  background: var(--je-midnight-soft);
}

/* ── Privacy Page ── */
.je-legal {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 0 4rem;
}

.je-legal h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.je-legal h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.je-legal p,
.je-legal li {
  color: var(--je-text-light);
  font-size: 0.9375rem;
}

.je-legal ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.je-legal li {
  margin-bottom: 0.35rem;
}

.je-legal__updated {
  font-size: 0.8125rem;
  color: var(--je-text-light);
  margin-bottom: 2rem;
  font-style: italic;
}

/* ── Stats / Features Row ── */
.je-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.je-feature__num {
  font-family: var(--je-font-display);
  font-size: 2.5rem;
  color: var(--je-champagne);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.je-feature__label {
  font-size: 0.875rem;
  color: var(--je-blush);
  opacity: 0.85;
}

/* ── CTA Banner ── */
.je-cta {
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--je-midnight);
  border-radius: var(--je-radius);
  margin: 0 auto;
  max-width: 900px;
}

.je-cta__title {
  font-family: var(--je-font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--je-champagne);
  margin-bottom: 0.75rem;
}

.je-cta__text {
  color: var(--je-blush);
  margin-bottom: 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.je-cta__btn {
  display: inline-block;
  background: var(--je-champagne);
  color: var(--je-midnight);
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: var(--je-radius-sm);
  transition: background var(--je-transition);
}

.je-cta__btn:hover {
  background: var(--je-white);
  color: var(--je-midnight);
}

/* ── Footer ── */
.je-footer {
  background: var(--je-midnight);
  color: var(--je-blush);
  padding: 3.5rem 0 0;
}

.je-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(232, 213, 163, 0.15);
}

.je-footer__brand {
  font-family: var(--je-font-display);
  font-size: 1.75rem;
  color: var(--je-champagne);
  margin-bottom: 0.75rem;
}

.je-footer__desc {
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.6;
}

.je-footer__heading {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--je-champagne);
  font-weight: 600;
  margin-bottom: 1rem;
}

.je-footer__links li {
  margin-bottom: 0.5rem;
}

.je-footer__links a {
  color: var(--je-blush);
  font-size: 0.875rem;
  opacity: 0.8;
  transition: opacity var(--je-transition), color var(--je-transition);
}

.je-footer__links a:hover {
  opacity: 1;
  color: var(--je-champagne);
}

.je-footer__contact p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-bottom: 0.4rem;
}

.je-footer__contact a {
  color: var(--je-blush);
}

.je-footer__contact a:hover {
  color: var(--je-champagne);
}

.je-footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.8125rem;
  opacity: 0.6;
}

/* ── Responsive ── */
@media (max-width: 992px) {
  .je-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .je-split {
    grid-template-columns: 1fr;
  }

  .je-contact-grid {
    grid-template-columns: 1fr;
  }

  .je-features {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .je-burger {
    display: flex;
  }

  .je-nav {
    position: fixed;
    top: var(--je-header-h);
    left: 0;
    right: 0;
    background: var(--je-champagne);
    flex-direction: column;
    padding: 1.5rem;
    gap: 0;
    box-shadow: 0 8px 24px var(--je-shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--je-transition), opacity var(--je-transition), visibility var(--je-transition);
    z-index: 850;
  }

  body.je-cookie-visible .je-nav {
    top: calc(var(--je-header-h) + var(--je-cookie-h));
  }

  .je-nav.je-nav--open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .je-nav__link {
    padding: 0.85rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(27, 27, 47, 0.08);
  }

  .je-timeline {
    flex-direction: column;
  }

  .je-timeline__stage:not(:last-child)::after {
    display: none;
  }

  .je-timeline__stage {
    border-bottom: 1px solid rgba(232, 213, 163, 0.15);
  }

  .je-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .je-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .je-hero {
    min-height: auto;
  }

  .je-cookie__inner {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
  }

  body.je-cookie-visible {
    padding-top: 72px;
  }

  .je-cookie {
    height: auto;
    min-height: var(--je-cookie-h);
  }
}

@media (max-width: 480px) {
  .je-section {
    padding: 2.5rem 0;
  }

  .je-form {
    padding: 1.5rem;
  }
}
