 :root {
      --saffron:   #E87722;
	  --saffron-light: #ff9e55;
	  --teal:	   #4e98a9;
      --deep-teal: #1A5C6B;
	  --red:	   #e50000;
	  --red-dark:  #8a0000;
	  --wine:      #7a2230;
      --wine-deep: #4e131e;
      --forest:    #2D6A4F;
	  --forest-light: #78ac95;
	  --gold: #f4c95d;
	  --gold-dark:#c1a04c;
	  --gold-soft: #e6cf94;
      --cream:     #FFF8EE;
      --parchment: #F5EDD8;
	  --parchment-mid: #d4c9ab;
	  --parchment-dark:#715941;
	  --parchment-light: #fffdf6;
      --ink:       #1C1C1C;
      --muted:     #6B5E50;
      --border:    #E8D5B0;
      --card-bg:   #FFFFFF;
      --shadow:    rgba(30,20,5,0.10);
      --shadow-hover: rgba(30,20,5,0.20);
      --radius-card: 18px;
      --radius-pill: 40px;
      --font-display: 'Lora', Georgia, serif;
      --font-body:    'Nunito', 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 {
      font-family: var(--font-body);
      background-color: var(--cream);
      color: var(--ink);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; }

    /* 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:
        radial-gradient(ellipse at 80% 10%, rgba(232,119,34,0.18) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 90%, rgba(26,92,107,0.22) 0%, transparent 55%),
        linear-gradient(165deg, #1A5C6B 0%, #2D3E35 55%, #3B2200 100%);
      color: #fff;
      padding: clamp(40px, 8vw, 96px) clamp(16px, 5vw, 60px) clamp(50px, 9vw, 110px);
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
      pointer-events: none;
    }

    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(232,119,34,0.22);
      border: 1px solid rgba(232,119,34,0.5);
      color: #FFCA80;
      font-size: 0.78rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: var(--radius-pill);
      margin-bottom: 18px;
    }
	.hero-eyebrow span{color:var(--saffron)}
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: italic;
      color: #FFCA80;
    }

    .hero-description {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.82);
      max-width: 520px;
      margin-bottom: 32px;
    }
	.hero-description strong {
		color: var(--parchment-light);
		font-weight:800;
	}

    .hero-ctas {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }
    .btn-primary, input[type="submit"] {
      background: var(--saffron);
      color: #fff;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: var(--radius-pill);
      border: none;
      cursor: pointer;
      transition: transform var(--transition), box-shadow var(--transition);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(232,119,34,0.45);
    }
    .btn-primary:hover {
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 8px 28px rgba(232,119,34,0.55);
    }
    .btn-ghost {
      background: transparent;
      border: 2px solid rgba(255,255,255,0.5);
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
      padding: 11px 26px;
      border-radius: var(--radius-pill);
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

    .hero-stats {
      display: flex;
      gap: 24px;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .stat-pill {
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 12px;
      padding: 10px 20px;
      text-align: center;
    }
    .stat-pill strong {
      display: block;
      font-size: 1.5rem;
      font-weight: 900;
      font-family: var(--font-display);
      color: #FFCA80;
    }
    .stat-pill span { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.7); }

    .hero-image-wrap {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
      aspect-ratio: 4/3;
    }
    .hero-image-wrap img {
      width: 100%;
      height: 100%;
      /*object-fit: cover;*/
      transition: transform 0.6s ease;
    }
    .hero-image-wrap:hover img { transform: scale(1.04); }

    /* ═══════════════════════════════════════════════
       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(--border);
    }
    .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-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700;
      color: var(--deep-teal);
      margin-bottom:20px;
	  border-bottom: 2px solid var(--teal);
    }
    .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(--parchment);
		border-left: 4px solid var(--red-dark);
		padding: 15px;
		position: relative;
		line-height:140%;
		margin: 35px 0 40px;
	}
	.moral-card p:first-child {margin-bottom:0}
	.moral-card em {
		color: var(--red-dark);
		font-family: var(--font-display);
		font-style: italic;
		letter-spacing: 1px;
		margin-left: 10px;
		font-size: 1.2rem;
	}
	
    /* ═══════════════════════════════════════════════
       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(--parchment);
		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(--red-dark);
		display: block;
		font-size: 1.3rem;
		margin: 0 0 14px;
		font-weight: 600;
		padding-bottom: 2px;
		border-bottom:2px solid var(--border);
	}
	.panel-link { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px dashed var(--muted);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;/* color: var(--plum-deep);*/ line-height: 1.3;transition: all 0.5s ease 0s;  }
	.panel-link:hover span {padding-left:5px;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; 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: 1.5px 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: var(--card-bg); border-color: var(--border); color:var(--ink);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-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; }
    }