@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
 :root {
	--ink: #1c1a17;
	--ink-soft: #4c4842;
	--parchment-light: #f4ece0;
	--parchment:#e5dcc7;
	--parchment-mid: #d4c9ab;
	--parchment-dark:#715941;
	--paper: #fdf9f1;
	--wine: #7a2230;
	--wine-deep: #4e131e;
	--bronze: #a9712d;
	--sky: #4a9ee8;
	--grape: #8b5cf6;
	--gold: #f4c95d;
	--gold-soft: #e6cf94;
	--gold-dark:#7b5800;
	--teal: #2ec4b6;
	--aegean: #2a6b78;
	--aegean-mid: #3794a6;
	--saffron:   #E87722;
	--saffron-dark:   #c65e10;
	--saffron-light: #ff9e55;
	--cream:     #FFF8EE;
	--muted:     #91816f;
	--teal:	   #4e98a9;
    --deep-teal: #1A5C6B;
	--white:#fff;
	--border:#cec4ac;
	--line: rgba(78, 19, 30, 0.13);
	--shadow: 0 18px 40px -18px rgba(78, 19, 30, 0.4);
	--radius: 22px;
	--radius-card: 18px;
	--radius-pill: 40px;
	--shadow:    rgba(30,20,5,0.10);
	--shadow-hover: rgba(30,20,5,0.20);
	--font-display: 'Cinzel', Georgia, serif;
	--font-body: 'Nunito', system-ui, sans-serif;
	--transition:   0.28s cubic-bezier(0.34,1.56,0.64,1);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
		margin: 0;
		font-family: var(--font-body);
		color: var(--ink);
		background:var(--parchment);
		line-height: 1.65;
		overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: var(--wine); text-decoration: none;transition: all 0.5s ease 0s; }
	a:hover {color: var(--teal);transition: all 0.5s ease 0s;}

    /* Google Translate bar */
    .google-translator {
	  background: var(--wine-deep); color: var(--gold-soft); font-size: 0.82rem; padding: 6px 20px;
	 display: flex; align-items: center; gap: 10px; justify-content: flex-end;
    }
    .google-translator #close { cursor: pointer; order: 3; }
    .google-translator #close img { height: 14px; width: auto; vertical-align: middle; }
    .google-translator #google_translate_element { display: inline-block; }
    @media (min-width:500px) {
	  .goog-te-gadget {display:flex;}
    }
    .goog-te-gadget, .goog-te-gadget a, .goog-te-gadget a:link, .goog-te-gadget a:active {color:var(--paper) !important;}
    .goog-te-gadget select {margin-right:5px !important;}
	.goog-te-gadget img {display:unset;}

    /* ═══════════════════════════════════════════════
       TOP NAV
    ═══════════════════════════════════════════════ */
    .site-header {
      background: var(--deep-teal);
      padding: 0 clamp(16px, 4vw, 60px);
      top: 0;
      z-index: 100;
      box-shadow: 0 3px 18px rgba(0,0,0,0.18);
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      align-items: center;
      justify-content: space-between;
    }
   header ul{
    list-style: none;
	padding-left:0;
	margin:0;
}
/* Logo */
.logo{
    display: inline-block;
    padding-top: 10px;
}
.logo img {
	max-width:200px;
}
/* Nav menu */
.nav{
    position: fixed;
	left: 10px;
    right: 10px;
    background-color: var(--saffron);
    overflow: hidden;
    z-index: 2;
}
.menu a{
    display: block;
    padding: 12px 25px;
    border-bottom: 1px solid var(--saffron-light);
    color: #fff;	
}
.menu li:last-child a {border:none}
.menu a:hover{
    background-color: var(--teal);
}
.nav{
    max-height: 0;
    transition: max-height .5s ease-out;
}
/* Menu Icon */
.hamb{
    cursor: pointer;
    float: right;
    padding: 35px 20px;
}/* Style label tag */

.hamb-line {
    background: var(--cream);
    display: block;
    height: 2px;
    position: relative;
    width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
    background:var(--cream);
    content: '';
    display: block;
    height: 100%;
    position: absolute;
    transition: all .2s ease-out;
    width: 100%;
}
.hamb-line::before{
    top: 5px;
}
.hamb-line::after{
    top: -5px;
}

.side-menu {
    display: none;
} /* Hide checkbox */
/* Toggle menu icon */
.side-menu:checked ~ nav{
    max-height:fit-content;
}
.side-menu:checked ~ .hamb .hamb-line {
    background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
    transform: rotate(-45deg);
    top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
    transform: rotate(45deg);
    top:0;
}

body:has(.side-menu:checked) {
  overflow: hidden;
}
@media (max-width: 767px) {
	.nav{
		box-shadow: var(--shadow);
	}
}
@media (max-width: 992px) {
	.logo img {
			max-width:170px;
		}
}
/* Responsiveness */
@media (min-width: 768px) {	
    .nav{
        max-height: none;
		margin-top: 18px;
        margin-right: 15px;
        top: 0;
        position: relative;
        float: right;
        width: fit-content;
        background-color: transparent;
    }
    .menu li{
        float: left;
    }
	.menu a{
        background-color: transparent;
		border:none;
		padding: 5px 25px;
		margin:0 2px;
		transition: all 0.5s ease 0s;
    }
    .menu a:hover, .menu a.active {
        background: var(--saffron);
		transition: all 0.5s ease 0s;
		border-radius:var(--radius-pill)
    }

    .hamb{
        display: none;
    }
}
@media (min-width:768px) and (max-width: 992px) {
	.menu a{
		font-size:0.8rem;
		padding: 10px 15px;
    }
}
/**** MISCELLENEOUS  **/
	.container {
		max-width: 1200px;
    	margin: 0 auto 28px;
		padding:0 10px;
	}
	.bann-wrap {
		padding:10px;
		text-align:center
		}
    /* ═══════════════════════════════════════════════
       HERO
    ═══════════════════════════════════════════════ */
    .hero {
      background: url(../images/greek-mythology-hero-bg.jpg) no-repeat center center #4f131e; 
	  -webkit-background-size: cover;
	  -moz-background-size: cover;
	  -o-background-size: cover;
	  background-size: cover;
      color: #fff;
      padding: clamp(40px, 8vw, 96px) clamp(16px, 5vw, 60px) clamp(50px, 9vw, 110px);
      position: relative;
      overflow: hidden;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }
	.hero-text {text-align:center}
    .hero-eyebrow {
		display: inline-block;
		font-family: var(--font-display);
		font-size: 0.74rem;
		font-weight: 700;
		letter-spacing: 0.22em;
		text-transform: uppercase;
		color: var(--saffron);
		margin-bottom: 15px;
    }
	.hero-eyebrow span{color:var(--parchment-light)}
    .hero h1 {
      font-family: var(--font-display);
	  font-weight: 900;
      font-size: clamp(2rem, 4.6vw, 3.2rem);
      line-height: 1.08;
      max-width: 950px;
      margin: 0 auto 20px;
      letter-spacing: 0.01em;
    }
    .hero h1 em, .hero h1 span {
      font-style: normal;
      color: var(--gold-soft);
    }

    .hero-description {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.82);
      max-width: 750px;
      margin:0 auto 32px;
    }
	.hero-description strong {
		color: var(--parchment-light);
		font-weight:800;
	}

    .hero-ctas {
		text-align:center
    }
	.btn {
		display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 0.95rem;
		padding: 13px 24px; border-radius: 999px; transition: transform 0.2s ease, box-shadow 0.2s ease;
	  }
	.btn-primary, input[type="submit"] { background: var(--gold); color: var(--wine-deep); box-shadow: 0 10px 26px -10px rgba(199,154,62,0.9); }
	.btn-primary:hover { color: var(--gold-dark);transform: translateY(-3px); }
	.btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.35); }
	.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-3px);}
   

    /* ═══════════════════════════════════════════════
       BREADCRUMB
    ═══════════════════════════════════════════════ */
    .breadcrumb-bar {
      background: var(--parchment);
      border-bottom: 1px solid var(--border);
      padding: 10px clamp(16px, 5vw, 60px);
    }
    .breadcrumb-inner {
      max-width: 1200px;
      margin: 0 auto;
    }
    .breadcrumb-bar ol {
      list-style: none;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--muted);
    }
    .breadcrumb-bar li + li::before {
      content: '›';
      margin-right: 6px;
      color: var(--forest-light);
    }
    .breadcrumb-bar a { color: var(--deep-teal); }
    .breadcrumb-bar a:hover { text-decoration: underline; }
    .breadcrumb-bar [aria-current="page"] { color: var(--saffron); font-weight: 700; }

    /* ═══════════════════════════════════════════════
       SECTION WRAPPER
    ═══════════════════════════════════════════════ */
    .section-wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 clamp(16px, 5vw, 60px);
    }
	h2, .section-label {
		font-family: var(--font-display);
		font-weight: 700;
		font-size: clamp(1.4rem, 2.8vw, 1.9rem);
		color: var(--wine-deep);
		margin: 0 0 15px;
		letter-spacing: 0.01em;
		display: flex;
		align-items: center;
		gap: 12px;
	}
	h2::after, .section-label::after {
		content: "";
		flex: 1;
		height: 2px;
		background: linear-gradient(90deg, var(--gold), transparent);
	}
    .section-subtitle {
      color: var(--muted);
      font-size: 1rem;
      max-width: 600px;
      margin-bottom: 36px;
    }
	h3 {
		font-family: var(--font-display);
		font-size: clamp(1.4rem, 3vw, 1.5rem);
		font-weight: 700;
		color: var(--parchment-dark);
		margin-bottom: 8px;
	}
	h2, h3, .h3 {
	  line-height:130%;
    }
    .section-title-row {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 6px;
    }

    /* ═══════════════════════════════════════════════
       STORIES
    ═══════════════════════════════════════════════ */
    .stories-section {
	  max-width: 1200px;
      margin:40px auto;
    }
    .story-grid {
		display: grid;
		grid-template-columns:1fr 300px;
		gap: 15px;
		padding: 50px 0;
		align-items: start;
	}
	@media (max-width:767px) {
		 .stories-section {
		  padding:0 15px;
		}
		 .story-grid {
		 grid-template-columns:1fr;
		}
	}
	article {font-size:1.1rem;}
	article p {margin-bottom:15px;}
	.moral-card, .tip-card {
		background: var(--cream);
		border-left: 4px solid var(--deep-teal);
		padding: 15px;
		position: relative;
		line-height:140%;
		margin: 35px 0 40px;
	}
	.tip-card p:last-child {margin-bottom:0}
	
	.tip-card .head {
		color:var(--deep-teal);
		font-size:1.5rem;
		font-family:var(--font-display);
		font-weight:600;
		margin-top:10px;
		}
	.tip-card ul {
		margin-left:30px;
		}
	.tip-card ul li {
		margin-bottom:10px;
		}
	.tip-card em {
		letter-spacing: 1px;
	}
	.box-secondary {
		background:var(--saffron);
		padding:15px;
		color:var(--white);
		border:1px solid var(--saffron-dark);
		border-radius:var(--radius-card);
		margin:25px 0;
		}
	.box-secondary .head {
		font-size:1.5rem;
		font-family:var(--font-display);
		font-weight:600;
		border-bottom: 1px solid var(--gold);
		}
	.box-secondary ul, .box-secondary ol {
		margin-left:30px;
		}
	.img-wrap, .hero-image {
		background:var(--parchment-light);
		border:1px solid var(--parchment-mid);
		padding:10px;
		margin-bottom:25px;
		}

	.hero-image figcaption {
		text-align: center;
		font-size: 0.95rem;
		font-style: italic;
		color: var(--gold-dark);
		margin-top: 5px;
	}
	.last-text {
		border-bottom:1px dashed var(--border);
		border-top:1px dashed var(--border);
		padding:15px 10px;
		font-style:italic;
		}
		
    /* ═══════════════════════════════════════════════
       FAQ SECTION
    ═══════════════════════════════════════════════ */
    .faq-section {
      padding: clamp(25px, 7vw, 25px) clamp(16px, 5vw, 20px);
      background: var(--parchment);
	  border-radius:var(--radius-card);
	  margin:25px 0;
    }
    .faq-inner {
      margin: 0 auto;
    }
    .faq-item {
      border: 1px solid var(--border);
      border-radius: 14px;
      background: var(--card-bg);
      margin-bottom: 12px;
      overflow: hidden;
    }
    .faq-question, .faq-question h3 {
      display: flex;
      align-items: center;
	  background:var(--cream);
      justify-content: space-between;
      gap: 16px;
      padding: 10px 15px;
	  line-height:140%;
      cursor: pointer;
      font-weight: 700;
      font-size: 1.1rem;
	  margin:0;
      color: var(--deep-teal);
	  font-family: var(--font-body);
      list-style: none;
      transition: background 0.2s;
    }
    .faq-question:hover { background: var(--cream); }
    .faq-question::marker, .faq-question::-webkit-details-marker { display: none; }
    .faq-chevron {
      width: 22px; height: 22px;
	  line-height: 130%;
      border-radius: 50%;
	  font-size: 0.95rem;
      background: var(--parchment);
      border: 1px solid var(--border);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.25s;
      font-style: normal;
    }
    details[open] .faq-chevron { transform: rotate(180deg); background: var(--saffron); border-color: var(--saffron); color: #fff; }
    .faq-answer {
      padding: 0 22px 18px;
      font-size: 0.92rem;
      color: var(--muted);
      line-height: 1.7;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }
	
	/*  VIDEO   */
	.VidCont, .video-wrap {
		width:auto;
		overflow:hidden;
		margin:20px auto;
		line-height:200%;
		clear:both;
		color:var(--parchment-dark);
		border:2px solid var(--parchment-mid);
		text-align:center;
		font-weight:700;
		font-size:16px;
		background-color:var(--parchment);
		padding:8px;
		margin-bottom:32px;
		box-shadow:var(--shadow)
	}
	.VidCont h3, .VidCont h2, .video-wrap h3, .video-wrap h2 {
		color:var(--parchment-dark);
		margin:3px 4px 9px;
		text-shadow:0 1px 1px #000
	}
	.video-container {
	   height: 0;
	   width: 100%;
	   padding-bottom: 56.25%;
	   overflow: hidden;
	   position: relative;
	}
	 
	.video-container iframe {
		width: 100%;
	   height: 100%;
	   position: absolute;
	   border: none;
	   top: 0;
	   left: 0;
	}
	
	/* ═══════════════════════════════════════════════
       ASIDE RIGHT CONTAINER
    ═══════════════════════════════════════════════ */
	.sidebar { position: sticky; top: 20px; display: flex; flex-direction: column; gap: 22px; }
	.panel-card {
		background: var(--cream);
		border:1px solid var(--parchment-mid);
		border-radius: var(--radius-card);
		padding: 20px;
		box-shadow: 0 8px 20px -16px rgba(46,26,82,0.4);
	}
	.panel-card h3, .panel-card .h3, .panel-card .section-head{
		font-family: var(--font-display);
		color:var(--deep-teal);
		display: block;
		font-size: 1.3rem;
		margin: 0 0 14px;
		font-weight: 600;
		padding-bottom: 2px;
		border-bottom:1.5px solid var(--deep-teal);
	}
	.panel-link { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--line);transition: all 0.5s ease 0s; }
	.panel-link:last-child { border-bottom: none; }
	.panel-link img { width: 48px; height: 48px; object-fit: cover; border-radius: 12px; flex-shrink: 0; }
	.panel-link span { font-weight: 700; font-size: 0.9rem; line-height: 1.3;transition: all 0.5s ease 0s;  }
	.panel-link a:hover {text-decoration:none}
	.panel-link:hover span {padding-left:3px; text-decoration:none;transition: all 0.5s ease 0s; }
	.panel-card .discover-list a { display: block; padding: 7px 0; font-weight: 700; font-size: 0.92rem; border-bottom: 1px dashed var(--muted);transition: all 0.5s ease 0s; }
	.panel-card .discover-list a:last-child { border-bottom: none; }
	.panel-card .discover-list a:hover { color: var(--parthment-dark); padding-left:10px; text-decoration:none;transition: all 0.5s ease 0s; }
	.panel-card br {display:none}
	
	.newsletter {
	background: linear-gradient(135deg, var(--teal), #1f9c91);
	color: #fff; border: none;
	}
	.newsletter .h3 { color: #fff; }
	.newsletter p { font-size: 0.86rem; opacity: 0.92; margin: 0 0 14px; }
	.newsletter input[type=text], .newsletter input[type=email] {
	width: 100%; padding: 11px 14px; border-radius: 12px; border: none;
	font-family: inherit; font-size: 0.92rem; margin-bottom: 10px;
	}
	.newsletter input[type=submit] {
	width: 100%; padding: 11px; border-radius: 12px; border: none;
	background: var(--gold); color: var(--red-dark); font-weight: 800;
	cursor: pointer; transition: transform 0.2s ease;
	}
	.newsletter input[type=submit]:hover { transform: translateY(-2px); }
	
	
	 /* ═══════════════════════════════════════════════
       MORE STORIES
    ═══════════════════════════════════════════════ */
	.more-wrap {
		margin-bottom:25px;
		padding-top:15px;
		/*border-top: 2px solid var(--border);*/
		}
	.more-wrap h2 {border:none;}
	.more-nav { display: flex; gap: 8px; flex-wrap: wrap; }
    .more-nav a, .more-nav a:link {
      border: 2px solid var(--saffron);
      background: var(--saffron);
      color: var(--cream);
      font-size: 0.82rem;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: var(--radius-pill);
      transition: all 0.5s ease 0s;
      font-family: var(--font-body);
    }
    .more-nav a:hover { background:none; border-color: var(--border); color:var(--saffron);transition: all 0.5s ease 0s; }
	
	
	/* ═══════════════════════════════════════════════
       NEWSLETTER BAND
    ═══════════════════════════════════════════════ */
    .newsletter-band {
      background:
        radial-gradient(ellipse at 20% 50%, rgba(232,119,34,0.2) 0%, transparent 50%),
        var(--parchment);
      padding: clamp(40px, 6vw, 70px) clamp(16px, 5vw, 60px);
      text-align: center;
      border-top: 1px solid var(--border);
    }
    .newsletter-inner { max-width: 520px; margin: 0 auto; }
    .newsletter-inner h2 { font-family: var(--font-display); font-size: 1.8rem; color: var(--deep-teal); margin-bottom: 10px; }
    .newsletter-inner p { color: var(--muted); margin-bottom: 24px; }
    .newsletter-form { display: flex; gap: 10px; max-width: 420px; margin: 0 auto; }
    .newsletter-form input[type="email"], .newsLett {
      flex: 1;
      padding: 12px 18px;
      border-radius: var(--radius-pill);
      border: 1.5px solid var(--border);
      font-family: var(--font-body);
      font-size: 0.92rem;
      background: #fff;
      outline: none;
      transition: border-color 0.2s;
    }
    .newsletter-form input[type="email"]:focus { border-color: var(--saffron); }
	
     /* ═══════════════════════════════════════════════
       FOOTER
    ═══════════════════════════════════════════════ */
	.foot-bottom{
		text-align: center;
		padding: 15px 0;
		font-size: 0.8rem;
		border-top: 1px solid var(--deep-teal);
		margin-top: 15px;
		margin-bottom: 15px;
		border-bottom: 1px solid var(--deep-teal);
	}
	.foot-banner {
		background:var(--parchment);
		padding:25px 0;
		}
	.foot-banner .container {
		padding:15px;
		}
    .site-footer {
      background: #0f2f37;
      color: rgba(255,255,255,0.65);
      padding: clamp(36px, 5vw, 60px) clamp(16px, 5vw, 60px) 28px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 36px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      margin-bottom: 24px;
    }
    .footer-brand .site-logo { margin-bottom: 12px; }
	.footer-brand .site-logo img { max-width: 140px;}
    .footer-brand p { font-size: 0.83rem; line-height: 1.6; max-width: 280px; }
    .footer-col .head {
      color: #fff;
	  display:block;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
    .footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .footer-col a:hover { color: var(--saffron); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 0.78rem;
    }
    .footer-bottom a { color: rgba(255,255,255,0.5); }
    .footer-bottom a:hover { color: var(--saffron); }
	/*** SECTION FOOTER **/
	.site-footer .bann-wrap {background:rgba(255,255,255,0.9); padding:10px; margin:15px 0; border-radius:15px}
	.foot-sections {padding:0 16px}
	.foot-sections .h3, .foot-sections .foot-head { display:block;font-family: var(--font-display); color: var(--gold-soft); font-size: 1.8rem; margin: 0 0 16px; font-weight:600 }
    .foot-sections ul {
	  list-style: none; padding: 0; margin: 0;
	  display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 8px 18px;
    }
    .foot-sections a { color: rgba(255,255,255,0.82); font-weight: 600; font-size: 0.9rem; }
    .foot-sections a:hover { color: var(--gold-soft); }
    .footer-bottom a { color: rgba(255,255,255,0.5); }
    .footer-bottom a:hover { color: var(--saffron); }
	@media (max-width:767px) {
		.footer-col ul {padding: 0; margin: 0;display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 8px 18px;}
		.foot-sections {padding:0} 
		.foot-sections ul {grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }		
	}

    /* ═══════════════════════════════════════════════
       SCROLL REVEAL ANIMATION
    ═══════════════════════════════════════════════ */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }

    /* staggered children */
    .stagger > * { opacity: 0; transform: translateY(22px); transition: opacity 0.45s ease, transform 0.45s ease; }
    .stagger.visible > * { opacity: 1; transform: none; }
    .stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
    .stagger.visible > *:nth-child(2) { transition-delay: 0.10s; }
    .stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
    .stagger.visible > *:nth-child(4) { transition-delay: 0.22s; }
    .stagger.visible > *:nth-child(5) { transition-delay: 0.28s; }
    .stagger.visible > *:nth-child(6) { transition-delay: 0.34s; }
    .stagger.visible > *:nth-child(n+7) { transition-delay: 0.38s; }

    /* ═══════════════════════════════════════════════
       RESPONSIVE
    ═══════════════════════════════════════════════ */
    @media (max-width: 860px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-image-wrap { max-width: 500px; margin: 0 auto; }
      .info-grid { grid-template-columns: 1fr; }
      .info-image-wrap { display: none; }
      .footer-inner { grid-template-columns: 1fr 1fr; }
      nav[aria-label="Primary"] { display: none; }
    }
    @media (max-width: 540px) {
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .newsletter-form { flex-direction: column; }
      .stories-grid { grid-template-columns: 1fr; }
    }