/* ==========================================================================
   Transport - "FENIX" PRZEMYSŁAW DYM — Complete Stylesheet
   Warm Magazine Color System #9 | Art Deco Editorial
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties
   ========================================================================== */

:root {
  /* --- Color Palette: Warm Magazine #9 --- */
  --ep-ivory: #FDF8F0;
  --ep-cream: #F5EDE0;
  --ep-champagne: #F0E4CE;
  --ep-pale-gold: #D4AF37;
  --ep-warm-gold: #C9A96E;
  --ep-warm-beige: #E8DCC8;
  --ep-terracotta: #C8784A;
  --ep-walnut: #5C4033;
  --ep-deep-walnut: #3E2723;
  --ep-soft-blush: #F2D5C4;
  --ep-light-amber: #E8C87A;
  --ep-muted-black: #2C2C2C;
  --ep-white: #FFFFFF;

  /* --- Shadows --- */
  --ep-card-shadow: rgba(92, 64, 51, 0.08);
  --ep-card-hover-shadow: rgba(92, 64, 51, 0.15);
  --ep-nav-shadow: rgba(92, 64, 51, 0.06);

  /* --- Typography --- */
  --ep-font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ep-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* --- Sizing --- */
  --ep-max-width: 1200px;
  --ep-topbar-height: 36px;
  --ep-nav-height: 80px;
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--ep-font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ep-deep-walnut);
  background-color: var(--ep-ivory);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--ep-warm-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--ep-pale-gold);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ep-warm-gold);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  font-size: inherit;
}

/* ==========================================================================
   3. Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ep-font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ep-deep-walnut);
}

h1 {
  font-size: 3.5rem;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 2rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--ep-walnut);
}

strong {
  color: var(--ep-deep-walnut);
  font-weight: 600;
}

.ep-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ep-walnut);
}

.ep-section-title,
.ep-section__title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  font-family: var(--ep-font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ep-deep-walnut);
}

.ep-section-title h2,
.ep-section__title h2 {
  margin-bottom: 0.75rem;
}

.ep-section-title p,
.ep-section__title p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--ep-walnut);
  font-size: 1.1rem;
}

.ep-section__lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--ep-walnut);
  max-width: 720px;
  margin: 0 auto 24px;
  text-align: center;
}

/* ==========================================================================
   4. Container & Section Layout
   ========================================================================== */

.ep-container {
  max-width: var(--ep-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.ep-section {
  padding: 80px 0;
  position: relative;
}

.ep-section--cream {
  background-color: var(--ep-cream);
}

.ep-section--featured {
  padding: 100px 0;
  background-color: var(--ep-cream);
  position: relative;
}

.ep-section--editorial {
  padding: 100px 0;
  background-color: var(--ep-ivory);
}

.ep-section--dark {
  background-color: var(--ep-cream);
}

/* Decorative Art Deco geometric top border for sections */
.ep-section::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--ep-pale-gold);
  margin: 0 auto 3rem;
}

.ep-section--featured::before {
  width: 80px;
  height: 4px;
}

/* ==========================================================================
   5. Topbar (ep-topbar)
   ========================================================================== */

.ep-topbar {
  height: var(--ep-topbar-height);
  background-color: var(--ep-cream);
  border-bottom: 1px solid var(--ep-warm-gold);
  font-size: 0.8rem;
  line-height: var(--ep-topbar-height);
}

.ep-topbar__inner {
  max-width: var(--ep-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.ep-topbar__info {
  color: var(--ep-walnut);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ep-topbar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ep-topbar__social a {
  color: var(--ep-walnut);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.ep-topbar__social a:hover {
  color: var(--ep-warm-gold);
}

/* ==========================================================================
   6. Navigation (ep-header, ep-nav)
   ========================================================================== */

.ep-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--ep-white);
  box-shadow: 0 1px 4px var(--ep-nav-shadow);
}

.ep-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--ep-max-width);
  margin: 0 auto;
  padding: 0 20px;
  height: var(--ep-nav-height);
}

.ep-nav__left,
.ep-nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}

.ep-nav__right {
  justify-content: flex-end;
}

.ep-nav__center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0 20px;
}

.ep-nav__logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

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

.ep-nav__link {
  font-family: var(--ep-font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ep-walnut);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.ep-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ep-warm-gold);
  transition: width 0.3s ease;
}

.ep-nav__link:hover {
  color: var(--ep-warm-gold);
}

.ep-nav__link:hover::after {
  width: 100%;
}

.ep-nav__link--active {
  color: var(--ep-warm-gold);
}

.ep-nav__link--active::after {
  width: 100%;
}

.ep-nav__cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--ep-warm-gold);
  color: var(--ep-white);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
}

.ep-nav__cta:hover {
  background: var(--ep-pale-gold);
  color: var(--ep-white);
}

/* Logo (Emblem) */
.ep-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ep-logo svg,
.ep-logo img {
  height: 48px;
  width: auto;
}

/* ===================================================================
   MOBILE BURGER — ep-nav__burger
   =================================================================== */
.ep-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1001;
}

.ep-nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ep-walnut);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.ep-nav__burger--active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.ep-nav__burger--active span:nth-child(2) {
  opacity: 0;
}

.ep-nav__burger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   MOBILE DRAWER — ep-nav__mobile
   =================================================================== */
.ep-nav__mobile {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 340px;
  height: 100vh;
  background: var(--ep-white);
  z-index: 1002;
  padding: 100px 30px 40px;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  visibility: hidden;
}

.ep-nav__mobile--open {
  right: 0;
  visibility: visible;
}

.ep-nav__mobile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.ep-nav__mobile-link {
  display: block;
  padding: 14px 0;
  font-family: var(--ep-font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ep-walnut);
  text-decoration: none;
  border-bottom: 1px solid var(--ep-warm-beige);
  transition: color 0.3s ease;
}

.ep-nav__mobile-link:hover {
  color: var(--ep-warm-gold);
}

.ep-nav__mobile-link--active {
  color: var(--ep-warm-gold);
}

.ep-nav__mobile-cta {
  display: block;
  text-align: center;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--ep-warm-gold);
  color: var(--ep-white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.ep-nav__mobile-cta:hover {
  background: var(--ep-pale-gold);
  color: var(--ep-white);
}

/* ===================================================================
   MOBILE OVERLAY — ep-nav__overlay
   =================================================================== */
.ep-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 44, 44, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ep-nav__overlay--visible {
  opacity: 1;
}

/* ==========================================================================
   7. Footer (ep-footer)
   ========================================================================== */

.ep-footer {
  background-color: var(--ep-cream);
  padding: 60px 0 0;
  border-top: 2px solid var(--ep-champagne);
}

.ep-footer__brand {
  text-align: center;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--ep-warm-beige);
  margin-bottom: 40px;
}

.ep-footer__brand .ep-logo {
  margin-bottom: 16px;
  justify-content: center;
}

.ep-footer__brand p {
  max-width: 500px;
  margin: 0 auto;
  color: var(--ep-walnut);
  font-size: 0.95rem;
}

.ep-footer__main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: var(--ep-max-width);
  margin: 0 auto;
  padding: 0 20px 40px;
}

.ep-footer__column h4 {
  font-family: var(--ep-font-heading);
  font-size: 1.1rem;
  color: var(--ep-deep-walnut);
  margin-bottom: 20px;
  font-weight: 700;
}

.ep-footer__column p,
.ep-footer__column li {
  color: var(--ep-walnut);
  font-size: 0.9rem;
  line-height: 1.8;
}

.ep-footer__column a {
  color: var(--ep-walnut);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ep-footer__column a:hover {
  color: var(--ep-warm-gold);
}

.ep-footer__column ul li {
  margin-bottom: 8px;
}

.ep-footer__bottom {
  border-top: 1px solid var(--ep-warm-gold);
  padding: 20px;
  text-align: center;
}

.ep-footer__bottom p {
  font-size: 0.8rem;
  color: var(--ep-walnut);
  margin-bottom: 0;
}

.ep-footer__bottom a {
  color: var(--ep-walnut);
}

.ep-footer__bottom a:hover {
  color: var(--ep-warm-gold);
}

/* ==========================================================================
   8. Asymmetric Hero (Hero #8)
   ========================================================================== */

.ep-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ep-ivory) 0%, var(--ep-cream) 40%, var(--ep-champagne) 100%);
  overflow: hidden;
}

.ep-hero__container {
  max-width: var(--ep-max-width);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.ep-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
  width: 100%;
}

.ep-hero__content {
  position: relative;
  z-index: 2;
}

.ep-hero__content .ep-label {
  margin-bottom: 20px;
  display: inline-block;
}

.ep-hero__title {
  font-size: 3.75rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--ep-deep-walnut);
  font-family: var(--ep-font-heading);
  font-weight: 700;
}

.ep-hero__subtitle {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ep-walnut);
  margin-bottom: 2rem;
  max-width: 480px;
}

.ep-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

/* Buttons */
.ep-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--ep-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  line-height: 1.2;
}

.ep-btn--primary {
  background: var(--ep-warm-gold);
  color: var(--ep-white);
  border-color: var(--ep-warm-gold);
}

.ep-btn--primary:hover {
  background: var(--ep-pale-gold);
  border-color: var(--ep-pale-gold);
  color: var(--ep-white);
}

.ep-btn--outline {
  background: transparent;
  color: var(--ep-warm-gold);
  border-color: var(--ep-warm-gold);
}

.ep-btn--outline:hover {
  background: var(--ep-warm-gold);
  color: var(--ep-white);
}

.ep-hero__label {
  margin-bottom: 20px;
  display: inline-block;
}

.ep-hero__deco {
  display: none;
}

.ep-hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ep-hero__image {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 60px var(--ep-card-shadow);
}

/* Decorative geometric elements */
.ep-hero__visual::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--ep-pale-gold);
  border-radius: 4px;
  z-index: -1;
  opacity: 0.5;
}

.ep-hero__visual::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border: 2px solid var(--ep-champagne);
  z-index: -1;
  opacity: 0.6;
}

/* Floating info card */
.ep-hero__card {
  position: absolute;
  bottom: 40px;
  left: -20px;
  background: var(--ep-white);
  padding: 20px 24px;
  border-radius: 8px;
  box-shadow: 0 12px 40px var(--ep-card-shadow);
  max-width: 220px;
}

.ep-hero__card h4 {
  font-family: var(--ep-font-heading);
  font-size: 1rem;
  color: var(--ep-deep-walnut);
  margin-bottom: 4px;
}

.ep-hero__card p {
  font-size: 0.85rem;
  color: var(--ep-walnut);
  margin-bottom: 0;
}

/* Hero decorative line */
.ep-hero__content::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--ep-pale-gold);
}

/* Hero extended/description */
.ep-hero__extended {
  padding: 0 20px 40px;
}

.ep-hero__description {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid var(--ep-warm-beige);
}

.ep-hero__description p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ep-walnut);
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   Stories / Testimonials Slider
   ========================================================================== */
.ep-stories__slider {
  padding-bottom: 60px;
  min-height: 280px;
}

.ep-stories__slide {
  height: auto;
}

.ep-stories__card {
  background: var(--ep-white);
  padding: 36px 32px;
  border-radius: 8px;
  box-shadow: 0 4px 24px var(--ep-card-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ep-stories__image {
  width: 100%;
  height: 160px;
  border-radius: 6px;
  margin-bottom: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ep-stories__quote {
  font-family: var(--ep-font-heading);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ep-walnut);
  font-style: italic;
  margin: 0 0 20px;
  position: relative;
  padding-left: 20px;
  border-left: 3px solid var(--ep-pale-gold);
}

.ep-stories__author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ep-stories__name {
  font-weight: 600;
  color: var(--ep-deep-walnut);
  font-size: 0.95rem;
}

.ep-stories__event {
  font-size: 0.8rem;
  color: var(--ep-warm-gold);
}

.ep-stories__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
}

.ep-stories__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ep-white);
  border: 1px solid var(--ep-warm-beige);
  color: var(--ep-walnut);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.ep-stories__button:hover {
  background: var(--ep-warm-gold);
  color: var(--ep-white);
  border-color: var(--ep-warm-gold);
}

.ep-stories__pagination {
  position: static !important;
  width: auto !important;
}

/* ==========================================================================
   9. Brand Intro
   ========================================================================== */

.ep-brand-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

.ep-brand-intro::before,
.ep-brand-intro::after {
  content: '';
  display: block;
  width: 80px;
  height: 2px;
  background: var(--ep-pale-gold);
  margin: 0 auto 24px;
}

.ep-brand-intro::after {
  margin: 24px auto 0;
}

.ep-brand-intro h2 {
  margin-bottom: 1.5rem;
  font-size: 2.75rem;
}

.ep-brand-intro .ep-lead {
  font-size: 1.2rem;
  color: var(--ep-walnut);
  line-height: 1.8;
}

.ep-brand-intro .ep-quote {
  margin-top: 2rem;
  font-family: var(--ep-font-heading);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ep-warm-gold);
  line-height: 1.6;
}

/* ==========================================================================
   10. Cards & Grids
   ========================================================================== */

.ep-card {
  background: var(--ep-white);
  border-radius: 8px;
  box-shadow: 0 4px 20px var(--ep-card-shadow);
  padding: 30px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.ep-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--ep-card-hover-shadow);
}

.ep-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ep-pale-gold), var(--ep-warm-gold));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ep-card:hover::before {
  opacity: 1;
}

.ep-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ep-warm-gold);
}

.ep-card__icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--ep-warm-gold);
  fill: none;
}

.ep-card__title {
  font-family: var(--ep-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ep-deep-walnut);
  margin-bottom: 12px;
}

.ep-card__text,
.ep-card__desc {
  font-family: var(--ep-font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ep-walnut);
  margin-bottom: 0;
}

.ep-card--featured {
  border: 1px solid var(--ep-champagne);
}

/* Grid systems */
.ep-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.ep-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.ep-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Grid balance — ensures no isolated last card */
.ep-grid-balanced {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.ep-grid-balanced > * {
  flex: 1 1 300px;
  max-width: 380px;
}

/* ==========================================================================
   11. Magazine Section Style
   ========================================================================== */

.ep-magazine {
  position: relative;
}

.ep-magazine__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ep-magazine__content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.ep-magazine__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ep-walnut);
}

.ep-magazine__visual {
  position: relative;
}

.ep-magazine__visual img {
  width: 100%;
  border-radius: 6px;
}

/* Decorative Art Deco diamond pattern */
.ep-magazine__visual::before {
  content: '◆';
  position: absolute;
  top: -15px;
  right: -15px;
  font-size: 1.5rem;
  color: var(--ep-pale-gold);
  opacity: 0.5;
}

/* Pull quote */
.ep-pull-quote {
  font-family: var(--ep-font-heading);
  font-size: 1.75rem;
  line-height: 1.4;
  color: var(--ep-deep-walnut);
  font-style: italic;
  padding: 40px 60px;
  margin: 40px 0;
  position: relative;
  border-left: 3px solid var(--ep-pale-gold);
}

.ep-pull-quote::before {
  content: '\201C';
  font-size: 4rem;
  color: var(--ep-pale-gold);
  position: absolute;
  top: 10px;
  left: 15px;
  font-family: var(--ep-font-heading);
  line-height: 1;
}

.ep-pull-quote cite {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--ep-warm-gold);
  margin-top: 12px;
  font-family: var(--ep-font-body);
}

/* Alternating magazine layout */
.ep-magazine--alt .ep-magazine__grid {
  direction: rtl;
}

.ep-magazine--alt .ep-magazine__grid > * {
  direction: ltr;
}

/* Art Deco border frame */
.ep-artdeco-frame {
  position: relative;
  padding: 8px;
}

.ep-artdeco-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid var(--ep-pale-gold);
  border-radius: 4px;
  pointer-events: none;
}

.ep-artdeco-frame::after {
  content: '◆';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ep-ivory);
  padding: 0 10px;
  font-size: 0.9rem;
  color: var(--ep-pale-gold);
}

/* ==========================================================================
   12. Gallery
   ========================================================================== */

.ep-section--gallery {
  padding: 80px 0;
}

.ep-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ep-gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}

.ep-gallery__item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ep-gallery__item:hover img {
  transform: scale(1.05);
}

.ep-gallery__item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(60, 40, 30, 0.2) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.ep-gallery__item:hover::after {
  opacity: 1;
}

/* ==========================================================================
   13. FAQ Accordion
   ========================================================================== */

.ep-faq {
  max-width: 800px;
  margin: 0 auto;
}

.ep-faq__item {
  border-bottom: 1px solid var(--ep-warm-beige);
  padding: 8px 0;
}

.ep-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  text-align: left;
  font-family: var(--ep-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ep-deep-walnut);
  cursor: pointer;
  transition: color 0.3s ease;
  background: none;
  border: none;
}

.ep-faq__question:hover {
  color: var(--ep-warm-gold);
}

.ep-faq__question-text {
  font-family: var(--ep-font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ep-deep-walnut);
  margin: 0;
  flex: 1;
}

.ep-faq__toggle {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  color: var(--ep-warm-gold);
  font-size: 1.2rem;
  font-weight: 300;
}

.ep-faq__item--open .ep-faq__toggle {
  transform: rotate(45deg);
}

.ep-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0;
}

.ep-faq__answer--open {
  max-height: 500px;
  padding: 0 0 20px;
}

.ep-faq__answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--ep-walnut);
  margin-bottom: 0;
}

/* ==========================================================================
   14. CTA (Resource CTA #8)
   ========================================================================== */

.ep-cta-resource {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 60px 40px;
  border: 2px solid var(--ep-pale-gold);
  border-radius: 8px;
  background: var(--ep-ivory);
  position: relative;
}

.ep-cta-resource::before {
  content: '◆';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ep-ivory);
  padding: 0 12px;
  font-size: 1rem;
  color: var(--ep-pale-gold);
}

.ep-cta-resource h2 {
  margin-bottom: 1rem;
}

.ep-cta-resource p {
  font-size: 1.05rem;
  color: var(--ep-walnut);
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.ep-cta-resource .ep-nav__cta {
  font-size: 0.85rem;
  padding: 14px 36px;
}

/* ==========================================================================
   15. Forms (Contact)
   ========================================================================== */

.ep-form {
  max-width: 600px;
  margin: 0 auto;
}

.ep-form__group {
  margin-bottom: 24px;
}

.ep-form__label {
  display: block;
  font-family: var(--ep-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ep-walnut);
  margin-bottom: 8px;
}

.ep-form__input,
.ep-form__textarea,
.ep-form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--ep-warm-beige);
  border-radius: 6px;
  font-family: var(--ep-font-body);
  font-size: 1rem;
  color: var(--ep-deep-walnut);
  background: var(--ep-white);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.ep-form__input:focus,
.ep-form__textarea:focus,
.ep-form__select:focus {
  outline: none;
  border-color: var(--ep-warm-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.15);
}

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

.ep-form__input::placeholder,
.ep-form__textarea::placeholder {
  color: var(--ep-warm-beige);
}

.ep-form__btn {
  display: inline-block;
  padding: 14px 36px;
  background: var(--ep-warm-gold);
  color: var(--ep-white);
  font-family: var(--ep-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ep-form__btn:hover {
  background: var(--ep-pale-gold);
}

.ep-form__btn--outline {
  background: transparent;
  color: var(--ep-warm-gold);
  border: 2px solid var(--ep-warm-gold);
}

.ep-form__btn--outline:hover {
  background: var(--ep-warm-gold);
  color: var(--ep-white);
}

/* ==========================================================================
   16. Age Gate (18+ Popup)
   ========================================================================== */

.ep-age-gate {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: rgba(44, 44, 44, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.ep-age-gate--visible {
  opacity: 1;
  visibility: visible;
}

.ep-age-gate__modal {
  background: var(--ep-ivory);
  border-radius: 12px;
  max-width: 450px;
  width: 90%;
  padding: 48px 36px;
  text-align: center;
  position: relative;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.ep-age-gate--visible .ep-age-gate__modal {
  transform: translateY(0);
}

.ep-age-gate__modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  background: linear-gradient(90deg, var(--ep-pale-gold), var(--ep-warm-gold));
  border-radius: 12px 12px 0 0;
}

.ep-age-gate__icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--ep-pale-gold);
}

.ep-age-gate__icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--ep-pale-gold);
  fill: none;
}

.ep-age-gate__modal h2 {
  font-family: var(--ep-font-heading);
  font-size: 1.75rem;
  color: var(--ep-deep-walnut);
  margin-bottom: 12px;
}

.ep-age-gate__modal p {
  font-size: 0.95rem;
  color: var(--ep-walnut);
  margin-bottom: 28px;
  line-height: 1.7;
}

.ep-age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.ep-age-gate__btn {
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--ep-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--ep-warm-gold);
}

.ep-age-gate__btn--primary {
  background: var(--ep-warm-gold);
  color: var(--ep-white);
}

.ep-age-gate__btn--primary:hover {
  background: var(--ep-pale-gold);
  border-color: var(--ep-pale-gold);
}

.ep-age-gate__btn--secondary {
  background: transparent;
  color: var(--ep-warm-gold);
}

.ep-age-gate__btn--secondary:hover {
  background: var(--ep-warm-gold);
  color: var(--ep-white);
}

/* ==========================================================================
   17. Cookie Banner
   ========================================================================== */

.ep-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9998;
  background: var(--ep-walnut);
  padding: 16px 0;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.ep-cookie-banner--visible {
  transform: translateY(0);
}

.ep-cookie-banner__inner {
  max-width: var(--ep-max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.ep-cookie-banner p {
  color: var(--ep-white);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex: 1;
  min-width: 200px;
}

.ep-cookie-banner a {
  color: var(--ep-pale-gold);
  text-decoration: underline;
}

.ep-cookie-banner a:hover {
  color: var(--ep-light-amber);
}

.ep-cookie-banner__btn {
  padding: 10px 28px;
  background: var(--ep-warm-gold);
  color: var(--ep-white);
  border: none;
  border-radius: 4px;
  font-family: var(--ep-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.ep-cookie-banner__btn:hover {
  background: var(--ep-pale-gold);
}

/* ==========================================================================
   18. Legal Pages (Editorial)
   ========================================================================== */

.ep-legal {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.ep-legal h1 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.ep-legal .ep-legal__date {
  font-size: 0.9rem;
  color: var(--ep-warm-gold);
  font-family: var(--ep-font-body);
  margin-bottom: 2.5rem;
  display: block;
}

.ep-legal h2 {
  font-size: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--ep-warm-beige);
  counter-increment: section;
}

.ep-legal h2::before {
  content: counter(section) '. ';
  color: var(--ep-pale-gold);
  font-weight: 700;
}

.ep-legal h3 {
  font-size: 1.3rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--ep-walnut);
}

.ep-legal p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ep-walnut);
  margin-bottom: 1rem;
}

.ep-legal ul,
.ep-legal ol {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1.5rem;
}

.ep-legal ol {
  list-style: decimal;
}

.ep-legal li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ep-walnut);
  margin-bottom: 6px;
}

.ep-legal .ep-pull-quote {
  margin: 40px 0;
}

/* ==========================================================================
   19. Animations & Transitions
   ========================================================================== */

/* Hover transitions */
.ep-card,
.ep-nav__cta,
.ep-form__btn,
.ep-gallery__item img,
.ep-age-gate__btn,
.ep-cookie-banner__btn {
  will-change: transform, box-shadow, opacity;
}

/* Fade-in utility */
.ep-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.ep-fade-in--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Slide-up utility */
.ep-slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ep-slide-up--visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for grid items */
.ep-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.ep-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.ep-stagger > *:nth-child(3) { transition-delay: 0.15s; }
.ep-stagger > *:nth-child(4) { transition-delay: 0.2s; }
.ep-stagger > *:nth-child(5) { transition-delay: 0.25s; }
.ep-stagger > *:nth-child(6) { transition-delay: 0.3s; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   20. Vendor Library Overrides
   ========================================================================== */

/* --- Swiper Overrides --- */
.swiper-button-next,
.swiper-button-prev {
  color: var(--ep-warm-gold) !important;
  background: var(--ep-white);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  box-shadow: 0 2px 12px var(--ep-card-shadow);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1rem !important;
}

.swiper-pagination-bullet {
  background: var(--ep-warm-beige) !important;
  opacity: 1 !important;
}

.swiper-pagination-bullet-active {
  background: var(--ep-warm-gold) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

/* --- GLightbox Overrides --- */
.glightbox-clean .gslide-description {
  background: var(--ep-ivory) !important;
}

.glightbox-clean .gslide-title {
  font-family: var(--ep-font-heading) !important;
  color: var(--ep-deep-walnut) !important;
}

.glightbox-clean .gslide-desc {
  font-family: var(--ep-font-body) !important;
  color: var(--ep-walnut) !important;
}

/* --- AOS Overrides --- */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

/* ==========================================================================
   21. Utility Classes
   ========================================================================== */

.ep-divider {
  width: 60px;
  height: 2px;
  background: var(--ep-pale-gold);
  margin: 0 auto;
}

.ep-divider--left {
  margin: 0;
}

.ep-label {
  font-family: var(--ep-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ep-warm-gold);
}

.ep-quote {
  font-family: var(--ep-font-heading);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  color: var(--ep-deep-walnut);
  padding: 20px 0 20px 30px;
  border-left: 3px solid var(--ep-pale-gold);
}

.ep-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--ep-cream);
  color: var(--ep-warm-gold);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 20px;
  border: 1px solid var(--ep-warm-gold);
}

.ep-badge--gold {
  background: var(--ep-warm-gold);
  color: var(--ep-white);
  border-color: var(--ep-warm-gold);
}

.ep-text-center {
  text-align: center;
}

.ep-mt-0 { margin-top: 0; }
.ep-mt-1 { margin-top: 0.5rem; }
.ep-mt-2 { margin-top: 1rem; }
.ep-mt-3 { margin-top: 1.5rem; }
.ep-mt-4 { margin-top: 2rem; }
.ep-mt-5 { margin-top: 3rem; }
.ep-mt-6 { margin-top: 4rem; }

.ep-mb-0 { margin-bottom: 0; }
.ep-mb-1 { margin-bottom: 0.5rem; }
.ep-mb-2 { margin-bottom: 1rem; }
.ep-mb-3 { margin-bottom: 1.5rem; }
.ep-mb-4 { margin-bottom: 2rem; }
.ep-mb-5 { margin-bottom: 3rem; }
.ep-mb-6 { margin-bottom: 4rem; }

.ep-py-1 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.ep-py-2 { padding-top: 1rem; padding-bottom: 1rem; }
.ep-py-3 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.ep-gold-text,
.ep-text--gold {
  color: var(--ep-warm-gold);
}

/* ==========================================================================
   22. Responsive — Mobile (<768px)
   ========================================================================== */

@media (max-width: 767px) {
  /* Base */
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.35rem;
  }

  h4 {
    font-size: 1.15rem;
  }

  .ep-section {
    padding: 50px 0;
  }

  .ep-section--featured,
  .ep-section--editorial {
    padding: 60px 0;
  }

  .ep-section-title h2 {
    font-size: 1.75rem;
  }

  /* Topbar */
  .ep-topbar {
    height: auto;
    padding: 8px 0;
  }

  .ep-topbar__inner {
    flex-direction: column;
    gap: 4px;
    line-height: 1.5;
  }

  .ep-topbar__social {
    display: none;
  }

  /* Navigation */
  .ep-nav__left,
  .ep-nav__right {
    display: none;
  }

  .ep-nav__burger {
    display: flex;
  }

  /* Mobile drawer is always visible on mobile, hidden off-screen by default */
  .ep-nav__mobile {
    display: block;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    background: var(--ep-white);
    z-index: 1002;
    padding: 100px 30px 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    visibility: visible;
  }

  .ep-nav__mobile--open {
    right: 0;
  }

  /* Hero */
  .ep-hero {
    min-height: auto;
  }

  .ep-hero__grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 30px 0;
  }

  .ep-hero__title {
    font-size: 2rem;
    text-align: center;
  }

  .ep-hero__subtitle {
    font-size: 1rem;
    text-align: center;
    max-width: 100%;
  }

  .ep-hero__actions {
    justify-content: center;
  }

  .ep-hero__content::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .ep-hero__label {
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }

  .ep-hero__card {
    display: none;
  }

  .ep-hero__visual::before,
  .ep-hero__visual::after {
    display: none;
  }

  .ep-hero__visual {
    order: -1;
  }

  /* Grids */
  .ep-grid-2,
  .ep-grid-3,
  .ep-grid-4 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Magazine */
  .ep-magazine__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ep-magazine--alt .ep-magazine__grid {
    direction: ltr;
  }

  .ep-magazine__reverse {
    display: flex;
    flex-direction: column-reverse;
  }

  .ep-magazine__visual {
    margin-bottom: 16px;
  }

  .ep-pull-quote {
    font-size: 1.15rem;
    padding: 20px 16px;
    margin: 20px 0;
  }

  /* Brand intro */
  .ep-brand-intro h2 {
    font-size: 2rem;
  }

  .ep-section__title,
  .ep-section__title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .ep-section__lead {
    font-size: 1rem;
  }

  /* Events cards */
  .ep-grid-balanced > * {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .ep-card {
    padding: 20px;
  }

  /* Themed events */
  .ep-themed__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ep-themed__visual {
    order: -1;
  }

  /* Poker section */
  .ep-cols-2 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Design section */
  .ep-design__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ep-design__details {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* FAQ */
  .ep-faq__question-text {
    font-size: 1rem;
  }

  .ep-hero__extended {
    display: none;
  }

  /* Stories section mobile padding */
  .ep-stories__card {
    padding: 24px 20px;
  }

  .ep-stories__quote {
    font-size: 1rem;
    padding-left: 16px;
  }

  /* Gallery */
  .ep-section--gallery {
    padding: 40px 0;
  }

  .ep-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .ep-gallery__thumb {
    height: 160px;
    object-fit: cover;
  }

  .ep-gallery__item img {
    height: 200px;
  }

  /* Footer */
  .ep-footer__main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ep-footer__brand {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  /* Pull quote */
  .ep-pull-quote {
    font-size: 1.3rem;
    padding: 24px 20px;
    margin: 24px 0;
  }

  /* Legal */
  .ep-legal h1 {
    font-size: 2rem;
  }

  .ep-legal h2 {
    font-size: 1.4rem;
  }

  /* CTA */
  .ep-cta-resource {
    padding: 40px 24px;
  }

  /* Cookie banner */
  .ep-cookie-banner__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Age gate */
  .ep-age-gate__modal {
    padding: 36px 24px;
  }

  .ep-age-gate__modal h2 {
    font-size: 1.4rem;
  }
}

/* ==========================================================================
   23. Responsive — Tablet (768px - 1023px)
   ========================================================================== */

@media (min-width: 768px) and (max-width: 1023px) {
  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2rem;
  }

  .ep-section {
    padding: 60px 0;
  }

  .ep-hero__inner {
    gap: 40px;
  }

  .ep-hero__title {
    font-size: 2.75rem;
  }

  .ep-hero__card {
    display: none;
  }

  .ep-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-gallery {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-footer__main {
    grid-template-columns: repeat(2, 1fr);
  }

  .ep-magazine__grid {
    gap: 40px;
  }
}

/* ==========================================================================
   24. Responsive — Small Desktop (1024px+)
   ========================================================================== */

@media (min-width: 1024px) {
  .ep-nav__burger {
    display: none;
  }

  .ep-nav__mobile,
  .ep-nav__overlay {
    display: none !important;
  }
}

/* ==========================================================================
   25. Responsive — Large Desktop (1400px+)
   ========================================================================== */

@media (min-width: 1400px) {
  .ep-hero__title {
    font-size: 4.25rem;
  }

  .ep-brand-intro h2 {
    font-size: 3rem;
  }

  .ep-section {
    padding: 100px 0;
  }
}

/* ==========================================================================
   End of Transport - "FENIX" PRZEMYSŁAW DYM Stylesheet
   ========================================================================== */
