:root {
        --parchment: #f2efe4;
        --ink: #231f20;
        --crimson: #8a1c1c;
        --gold: #cfb53b;
        --faded: #6b655f;
        --white: #ffffff;
        --dark-bg: #1a1614;
        --font-serif: "Cinzel", serif;
        --font-sans: "Lato", sans-serif;
        --font-reading: "Merriweather", serif;
      }

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

      html {
        scroll-behavior: smooth;
      }

      body {
        background-color: var(--parchment);
        color: var(--ink);
        font-family: var(--font-reading);
        line-height: 1.6;
        overflow-x: hidden;
      }

      /* Page Transition Overlay */
      .page-transition-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1a1614 0%, #2a2220 100%);
        z-index: 9999;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      }

      .page-transition-overlay.active {
        opacity: 1;
        pointer-events: all;
      }

      /* Page fade-in animation */
      body {
        animation: pageLoadFadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
      }

      @keyframes pageLoadFadeIn {
        from {
          opacity: 0;
        }
        to {
          opacity: 1;
        }
      }

      /* Navbar */
      .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
        background: rgba(242, 239, 228, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(138, 28, 28, 0.1);
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(138, 28, 28, 0.3);
      }

      .navbar.scrolled {
        background: rgba(242, 239, 228, 0.98);
        box-shadow: 0 10px 30px rgba(138, 28, 28, 0.4);
      }

      .nav-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 15px 40px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }

      .logo-group {
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        color: var(--ink);
      }

      .logo-icon {
        width: 50px;
        height: 50px;
      }

      /* Animated Flame - Simple version */
      .flame-container {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 28px;
        pointer-events: none;
        z-index: 10;
      }

      .flame {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: 100%;
        filter: blur(1px);
      }

      .flame-main {
        fill: url(#flameGradient);
        animation: flameFlicker 0.8s ease-in-out infinite alternate;
        transform-origin: center bottom;
      }

      .flame-inner {
        fill: url(#flameInnerGradient);
        animation: flameFlicker 0.6s ease-in-out infinite alternate-reverse;
        transform-origin: center bottom;
        opacity: 0.9;
      }

      .flame-core {
        fill: #fffacd;
        animation: flameFlicker 0.4s ease-in-out infinite;
        transform-origin: center bottom;
        opacity: 0.8;
      }

      @keyframes flameFlicker {
        0% {
          transform: scaleY(1) scaleX(0.95);
        }
        50% {
          transform: scaleY(1.05) scaleX(1);
        }
        100% {
          transform: scaleY(0.98) scaleX(0.97);
        }
      }

      .flame-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 30px;
        height: 30px;
        background: radial-gradient(circle, rgba(255, 140, 0, 0.4) 0%, rgba(255, 69, 0, 0.2) 40%, transparent 70%);
        animation: glowPulse 1.2s ease-in-out infinite;
        pointer-events: none;
      }

      @keyframes glowPulse {
        0%, 100% {
          opacity: 0.6;
          transform: translate(-50%, -50%) scale(1);
        }
        50% {
          opacity: 0.8;
          transform: translate(-50%, -50%) scale(1.1);
        }
      }

      .brand-name {
        font-family: var(--font-serif);
        font-size: 24px;
        font-weight: 900;
        letter-spacing: 2px;
        color: var(--crimson);
      }

      .brand-sub {
        font-family: var(--font-sans);
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--faded);
      }

      .nav-links {
        display: flex;
        gap: 40px;
        list-style: none;
      }

      .nav-item {
        font-family: var(--font-sans);
        font-weight: 700;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 1.5px;
        color: var(--ink);
        text-decoration: none;
        position: relative;
        padding: 5px 0;
        transition: color 0.3s ease;
      }

      .nav-item::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--crimson);
        transition: all 0.3s ease;
        transform: translateX(-50%);
      }

      .nav-item:hover::after,
      .nav-item.active::after {
        width: 100%;
      }

      .nav-item:hover,
      .nav-item.active {
        color: var(--crimson);
      }

      /* Hero Section */
      .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg, #1a1614 0%, #2a2220 100%);
        padding-top: 80px;
      }

      .hero-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        overflow: hidden;
      }

      .particle {
        position: absolute;
        width: 2px;
        height: 2px;
        background: var(--gold);
        border-radius: 50%;
        opacity: 0;
        animation: float-particle 15s infinite;
      }

      @keyframes float-particle {
        0% {
          transform: translateY(100vh) translateX(0);
          opacity: 0;
        }
        10% {
          opacity: 1;
        }
        90% {
          opacity: 1;
        }
        100% {
          transform: translateY(-100px) translateX(100px);
          opacity: 0;
        }
      }

      .hero-content {
        text-align: center;
        position: relative;
        z-index: 2;
        max-width: 1200px;
        padding: 60px 40px;
        animation: fadeInUp 1s ease-out;
      }

      @keyframes fadeInUp {
        from {
          opacity: 0;
          transform: translateY(40px);
        }
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      .hero-logo-container {
        width: 320px;
        height: 320px;
        margin: 0 auto 60px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .logo-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 350px;
        height: 350px;
        transform: translate(-50%, -50%);
        background: radial-gradient(
          circle,
          rgba(207, 181, 59, 0.4) 0%,
          rgba(138, 28, 28, 0.2) 40%,
          transparent 70%
        );
        animation: pulse 4s ease-in-out infinite;
        border-radius: 50%;
      }

      @keyframes pulse {
        0%,
        100% {
          transform: translate(-50%, -50%) scale(1);
          opacity: 0.6;
        }
        50% {
          transform: translate(-50%, -50%) scale(1.15);
          opacity: 0.9;
        }
      }

      .hero-logo {
        width: 100%;
        height: 100%;
        object-fit: contain;
        filter: drop-shadow(0 0 40px rgba(207, 181, 59, 0.6))
          drop-shadow(0 0 20px rgba(138, 28, 28, 0.4));
        position: relative;
        z-index: 2;
        border-radius: 50%;
      }

      .hero-logo-container > div {
        width: 100%;
        height: 100%;
      }

      .hero-logo-container .flame-container {
        width: 100px;
        height: 140px;
      }

      .hero-logo-container .flame-glow {
        width: 150px;
        height: 150px;
      }

      .hero-title {
        font-family: var(--font-serif);
        font-size: 6rem;
        font-weight: 900;
        color: var(--gold);
        letter-spacing: 20px;
        margin-bottom: 20px;
        text-shadow: 0 0 50px rgba(207, 181, 59, 0.5);
        animation: glow 2s ease-in-out infinite alternate;
      }

      @keyframes glow {
        from {
          text-shadow: 0 0 20px rgba(207, 181, 59, 0.5);
        }
        to {
          text-shadow:
            0 0 40px rgba(207, 181, 59, 0.8),
            0 0 60px rgba(207, 181, 59, 0.4);
        }
      }

      .hero-subtitle {
        font-family: var(--font-sans);
        font-size: 1.3rem;
        text-transform: uppercase;
        letter-spacing: 5px;
        color: var(--parchment);
        margin-bottom: 30px;
        opacity: 0.9;
      }

      .hero-acronym {
        font-family: var(--font-reading);
        font-size: 1.2rem;
        color: var(--parchment);
        font-style: italic;
        max-width: 800px;
        margin: 0 auto 40px;
        opacity: 0.8;
        line-height: 1.8;
      }

      .hero-description {
        font-family: var(--font-reading);
        font-size: 1.3rem;
        line-height: 2;
        color: var(--parchment);
        max-width: 900px;
        margin: 0 auto;
        opacity: 0.85;
      }

      .scroll-indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        color: var(--gold);
        font-size: 2rem;
        animation: bounce 2s infinite;
        cursor: pointer;
      }

      @keyframes bounce {
        0%,
        20%,
        50%,
        80%,
        100% {
          transform: translateX(-50%) translateY(0);
        }
        40% {
          transform: translateX(-50%) translateY(-15px);
        }
      }

      /* Features Section */
      .features {
        padding: 150px 40px;
        background: linear-gradient(135deg, var(--parchment) 0%, #e8e3d6 100%);
        position: relative;
      }

      .section-header {
        text-align: center;
        margin-bottom: 100px;
      }

      .section-title {
        font-family: var(--font-serif);
        font-size: 4rem;
        color: var(--crimson);
        margin-bottom: 20px;
        letter-spacing: 5px;
        position: relative;
        display: inline-block;
      }

      .section-title::after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(
          90deg,
          transparent,
          var(--gold),
          transparent
        );
      }

      .section-subtitle {
        font-family: var(--font-reading);
        font-size: 1.3rem;
        color: var(--faded);
        max-width: 800px;
        margin: 30px auto 0;
      }

      .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
      }

      .feature-card {
        background: var(--white);
        padding: 60px 40px;
        border-radius: 20px;
        border: 1px solid rgba(138, 28, 28, 0.1);
        position: relative;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      }

      .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--crimson), var(--gold));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.5s ease;
      }

      .feature-card:hover::before {
        transform: scaleX(1);
      }

      .feature-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(138, 28, 28, 0.2);
        border-color: var(--gold);
      }

      .feature-number {
        font-family: var(--font-serif);
        font-size: 5rem;
        font-weight: 900;
        color: var(--crimson);
        opacity: 0.08;
        position: absolute;
        top: 15px;
        right: 25px;
        line-height: 1;
        pointer-events: none;
      }

      .feature-title {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--crimson);
        margin-bottom: 20px;
        letter-spacing: 2px;
        position: relative;
        z-index: 2;
      }

      .feature-description {
        font-family: var(--font-reading);
        color: var(--ink);
        line-height: 1.9;
        font-size: 1.05rem;
        opacity: 0.85;
        position: relative;
        z-index: 2;
      }

      /* Wings Section */
      .wings {
        padding: 150px 40px;
        background: linear-gradient(135deg, var(--dark-bg) 0%, #2a2220 100%);
        position: relative;
      }

      .wings .section-title {
        color: var(--gold);
      }

      .wings .section-subtitle {
        color: var(--parchment);
        opacity: 0.8;
      }

      .wings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
        max-width: 1400px;
        margin: 0 auto;
      }

      .wing-card {
        background: rgba(242, 239, 228, 0.05);
        backdrop-filter: blur(10px);
        padding: 50px 40px;
        border-radius: 15px;
        border-left: 5px solid var(--gold);
        border: 1px solid rgba(207, 181, 59, 0.2);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
      }

      .wing-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 0;
        height: 100%;
        background: linear-gradient(
          90deg,
          rgba(207, 181, 59, 0.1),
          transparent
        );
        transition: width 0.4s ease;
      }

      .wing-card:hover::before {
        width: 100%;
      }

      .wing-card:hover {
        transform: translateX(15px);
        border-color: var(--gold);
        box-shadow: 0 20px 40px rgba(207, 181, 59, 0.2);
      }

      .wing-name {
        font-family: var(--font-serif);
        font-size: 1.6rem;
        color: var(--gold);
        margin-bottom: 20px;
        letter-spacing: 1.5px;
        position: relative;
        z-index: 2;
      }

      .wing-desc {
        font-family: var(--font-reading);
        color: var(--parchment);
        line-height: 1.8;
        font-size: 1.05rem;
        opacity: 0.85;
        position: relative;
        z-index: 2;
      }

      /* Editorials Section */
      .editorials {
        padding: 150px 40px;
        background: var(--parchment);
      }

      .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 40px;
        max-width: 1400px;
        margin: 0 auto;
      }

      .blog-card {
        background: var(--white);
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(138, 28, 28, 0.1);
        transition: all 0.5s ease;
        cursor: pointer;
        position: relative;
      }

      .blog-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 30px 60px rgba(138, 28, 28, 0.2);
      }

      .blog-image {
        width: 100%;
        height: 250px;
        background: linear-gradient(
          135deg,
          var(--crimson) 0%,
          var(--gold) 100%
        );
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
      }

      .blog-icon {
        width: 80px;
        height: 80px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
      }

      .blog-image::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.3),
          transparent
        );
        transition: left 0.5s ease;
      }

      .blog-card:hover .blog-image::before {
        left: 100%;
      }

      .blog-content {
        padding: 40px 35px;
      }

      .blog-title {
        font-family: var(--font-serif);
        font-size: 1.6rem;
        color: var(--crimson);
        margin-bottom: 15px;
        line-height: 1.4;
      }

      .blog-author {
        font-family: var(--font-sans);
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--faded);
        margin-bottom: 20px;
      }

      .blog-excerpt {
        font-family: var(--font-reading);
        color: var(--ink);
        line-height: 1.8;
        margin-bottom: 20px;
        opacity: 0.85;
      }

      .read-more {
        font-family: var(--font-sans);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--crimson);
        font-size: 0.9rem;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: gap 0.3s ease;
      }

      .blog-card:hover .read-more {
        gap: 15px;
      }

      /* Editorial Post View */
      #editorial-post {
        display: none;
        padding: 150px 40px 80px;
        background: var(--parchment);
        min-height: 100vh;
      }

      #editorial-post.active {
        display: block;
      }

      .post-wrapper {
        max-width: 900px;
        margin: 0 auto;
      }

      .back-button {
        display: inline-flex;
        align-items: center;
        background: transparent;
        color: var(--crimson);
        padding: 12px 0;
        border: none;
        font-family: var(--font-sans);
        font-weight: 700;
        font-size: 1rem;
        cursor: pointer;
        margin-bottom: 40px;
        transition: color 0.3s;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .back-button:hover {
        color: var(--ink);
      }

      .back-button::before {
        content: "← ";
        margin-right: 8px;
        font-size: 1.5rem;
      }

      .post-container {
        background-color: var(--white);
        border-radius: 12px;
        padding: 50px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(35, 31, 32, 0.05);
      }

      .post-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
        border-bottom: 2px solid var(--parchment);
      }

      .post-header h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--crimson);
        margin-bottom: 20px;
        line-height: 1.2;
        letter-spacing: 1px;
      }

      .post-meta {
        color: var(--faded);
        font-family: var(--font-sans);
        font-size: 0.95rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
      }

      .post-image {
        width: 100%;
        height: 400px;
        background: linear-gradient(
          135deg,
          var(--crimson) 0%,
          var(--gold) 100%
        );
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 40px;
        overflow: hidden;
      }

      .post-image svg {
        width: 150px;
        height: 150px;
        filter: brightness(0) invert(1);
        opacity: 0.9;
      }

      .post-content {
        font-family: var(--font-reading);
        font-size: 1.1rem;
        line-height: 1.8;
        color: var(--ink);
      }

      .post-content p {
        margin-bottom: 25px;
        text-align: justify;
        opacity: 0.9;
      }

      .post-content h3 {
        font-family: var(--font-serif);
        margin-top: 40px;
        margin-bottom: 20px;
        color: var(--crimson);
        font-size: 1.6rem;
        position: relative;
        display: inline-block;
      }

      .post-content h3::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        background-color: var(--gold);
        margin-top: 8px;
        border-radius: 2px;
      }

      /* Hide sections when post is active */
      body.post-active .hero,
      body.post-active .features,
      body.post-active .wings,
      body.post-active .editorials,
      body.post-active .induction {
        display: none;
      }

      /* Induction Section */
      .induction {
        padding: 150px 40px;
        background:
          linear-gradient(
            135deg,
            rgba(138, 28, 28, 0.03) 0%,
            rgba(207, 181, 59, 0.05) 100%
          ),
          url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%238A1C1C' fill-opacity='0.04' fill-rule='evenodd'/%3E%3C/svg%3E");
        text-align: center;
        position: relative;
        overflow: hidden;
      }

      .induction::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background:
          radial-gradient(
            circle at 20% 50%,
            rgba(207, 181, 59, 0.08) 0%,
            transparent 50%
          ),
          radial-gradient(
            circle at 80% 50%,
            rgba(138, 28, 28, 0.08) 0%,
            transparent 50%
          );
        opacity: 0.6;
      }

      .induction-content {
        max-width: 900px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }

      .induction .section-title {
        color: var(--crimson);
        margin-bottom: 30px;
      }

      .induction-text {
        font-family: var(--font-reading);
        font-size: 1.4rem;
        color: var(--ink);
        line-height: 2;
        margin-bottom: 50px;
        opacity: 0.85;
      }

      .hero-cta {
        display: flex;
        gap: 30px;
        justify-content: center;
        flex-wrap: wrap;
      }

      .cta-button {
        padding: 20px 50px;
        font-family: var(--font-sans);
        font-weight: 700;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        text-decoration: none;
        border-radius: 50px;
        transition: all 0.4s ease;
        cursor: pointer;
        position: relative;
        overflow: hidden;
      }

      .cta-primary {
        background: linear-gradient(135deg, var(--crimson) 0%, #6d1515 100%);
        color: var(--parchment);
        border: 2px solid var(--crimson);
        box-shadow: 0 10px 30px rgba(138, 28, 28, 0.3);
      }

      .cta-primary:hover {
        background: var(--parchment);
        color: var(--crimson);
        border: 2px solid var(--crimson);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(138, 28, 28, 0.5);
      }

      .cta-secondary {
        background: transparent;
        color: var(--crimson);
        border: 2px solid var(--crimson);
      }

      .cta-secondary:hover {
        background: var(--crimson);
        color: var(--parchment);
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(138, 28, 28, 0.3);
      }

      /* Footer */
      .footer {
        background: var(--dark-bg);
        color: var(--parchment);
        padding: 80px 40px 40px;
        box-shadow: 0 -4px 20px rgba(138, 28, 28, 0.3);
      }

      .footer-container {
        max-width: 1400px;
        margin: 0 auto;
      }

      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 60px;
        margin-bottom: 60px;
      }

      .footer-brand h2 {
        font-family: var(--font-serif);
        font-size: 2.5rem;
        color: var(--gold);
        margin-bottom: 25px;
        letter-spacing: 3px;
      }

      .footer-brand p {
        font-family: var(--font-reading);
        line-height: 1.9;
        opacity: 0.8;
        font-size: 1.05rem;
      }

      .footer-column h4 {
        font-family: var(--font-sans);
        color: var(--gold);
        text-transform: uppercase;
        font-size: 0.9rem;
        letter-spacing: 2px;
        margin-bottom: 25px;
      }

      .footer-column ul {
        list-style: none;
      }

      .footer-column ul li {
        margin-bottom: 15px;
      }

      .footer-column ul li a {
        color: var(--parchment);
        text-decoration: none;
        font-family: var(--font-reading);
        opacity: 0.7;
        transition: all 0.3s ease;
      }

      .footer-column ul li a:hover {
        color: var(--gold);
        opacity: 1;
        padding-left: 10px;
      }

      .footer-divider {
        height: 1px;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(207, 181, 59, 0.3),
          transparent
        );
        margin: 40px 0;
      }

      .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-family: var(--font-sans);
        font-size: 0.9rem;
        color: var(--faded);
      }

      /* Mobile Styles */
      .hamburger {
        display: none;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
      }

      .line {
        width: 30px;
        height: 3px;
        background: var(--ink);
        border-radius: 3px;
        transition: all 0.3s ease;
      }

      .mobile-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--parchment);
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }

      .mobile-menu a {
        padding: 20px 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--ink);
        text-decoration: none;
        font-family: var(--font-sans);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
      }

      .mobile-menu.active {
        display: flex;
      }

      @media (max-width: 968px) {
        .nav-links {
          display: none;
        }

        .hamburger {
          display: flex;
        }

        .hero-title {
          font-size: 3.5rem;
          letter-spacing: 10px;
        }

        .hero-logo-container {
          width: 200px;
          height: 200px;
        }

        .section-title {
          font-size: 2.5rem;
        }

        .features-grid,
        .wings-grid,
        .blog-grid {
          grid-template-columns: 1fr;
        }

        .footer-top {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .footer-bottom {
          flex-direction: column;
          gap: 15px;
          text-align: center;
        }

        .post-container {
          padding: 30px 20px;
        }
      }
