:root{
      --bg:#f7f4ef;
      --text:#2f2a25;
      --muted:#6c655d;
      --line:#e7e1d8;
      --accent:#b89b66;
      --card:#faf8f5;
    }

    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Inter', sans-serif;
      color:var(--text);
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      width:100%;
      display:block;
    }

    .main-wrapper{
      max-width:1400px;
      margin:auto;
    }

 .hero-section{
      text-align:center;
      padding:40px 0 70px;
    }

    .hero-title{
      font-family:'Cormorant Garamond', serif;
      font-size:72px;
      line-height:1;
      margin-bottom:14px;
      font-weight:500;
    }

    .hero-line{
      width:70px;
      height:1px;
      background:var(--accent);
      margin:20px auto;
    }

    .hero-text{
      max-width:600px;
      margin:auto;
      font-family:'Cormorant Garamond', serif;
      font-size:32px;
      line-height:1.5;
      font-style:italic;
      color:#5f584f;
    }

    /* ==========================
       BLOG GRID
    ========================== */

    .blog-section{
      padding-bottom:70px;
    }

    .blog-card{
      background:var(--card);
      border:1px solid var(--line);
      border-radius:8px;
      overflow:hidden;
      height:100%;
      transition:0.3s ease;
    }

    .blog-card:hover{
      transform:translateY(-4px);
    }

    .blog-image{
      overflow:hidden;
    }

    .blog-image img{
      width:100%;
      height:240px;
      object-fit:cover;
    }

    .blog-content{
      padding:24px;
    }

    .blog-date{
      font-size:10px;
      letter-spacing:2px;
      text-transform:uppercase;
      color:#8b847a;
      margin-bottom:16px;
      font-weight:600;
    }

    .blog-title{
      font-family:'Cormorant Garamond', serif;
      font-size:40px;
      line-height:1.08;
      margin-bottom:16px;
      font-weight:500;
      color:#2f2a25;
    }

    .blog-desc{
      font-size:15px;
      line-height:1.9;
      color:#5f584f;
      margin-bottom:22px;
    }

    .read-more{
      font-size:14px;
      font-weight:600;
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#2f2a25;
    }

    .read-more span{
      font-size:16px;
    }

    .older-btn-wrap{
      text-align:center;
      margin-top:30px;
    }

    .older-btn{
      border:1px solid #8f887f;
      background:transparent;
      padding:14px 36px;
      font-size:11px;
      letter-spacing:1px;
      transition:0.3s;
    }

    .older-btn:hover{
      background:#2f2a25;
      color:#fff;
    }

    /* ==========================
       RESPONSIVE
    ========================== */

    @media(max-width:1200px){

      .hero-title{
        font-size:60px;
      }

      .hero-text{
        font-size:28px;
      }

      .blog-title{
        font-size:34px;
      }
    }

    @media(max-width:991px){

      .nav-menu{
        justify-content:center;
        flex-wrap:wrap;
        gap:18px;
      }

      .book-btn{
        margin-top:20px;
        width:100%;
      }

      .hero-title{
        font-size:54px;
      }

      .hero-text{
        font-size:25px;
      }

      .blog-image img{
        height:220px;
      }
    }

    @media(max-width:767px){

      .logo{
        font-size:30px;
      }

      .hero-section{
        padding:20px 0 50px;
      }

      .hero-title{
        font-size:46px;
      }

      .hero-text{
        font-size:22px;
      }

      .blog-title{
        font-size:30px;
      }

      .blog-content{
        padding:20px;
      }

      .blog-image img{
        height:220px;
      }
    }