:root{
    --royal-yellow: #e3c573;
    --royal-yellow-deep: #eac66c;
    --royal-yellow-pale: #FCE7AD;
    --cream: #FFFCF4;
    --white: #FFFFFF;
    --light-green: #C3E4B6;
    --leaf-green: #6FA96A;
    --deep-green: #26492E;
    --deep-green-2: #1B3521;
    --ink: #1A241B;
    --line: rgba(38,73,46,0.16);
    --shadow: 0 20px 45px -25px rgba(26,36,27,0.45);

    --display: 'Fraunces', serif;
    --body: 'Work Sans', sans-serif;
    --mono: 'Space Mono', monospace;

    --container: 1180px;
  }

  *{ box-sizing: border-box; }
  html{ scroll-behavior: smooth; }
  body{
    margin:0;
    font-family: var(--body);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
  }
  img{ max-width:100%; display:block; }
  a{ color:inherit; text-decoration:none; }
  ul{ margin:0; padding:0; list-style:none; }
  section{ position:relative; }
  .wrap{
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
  }
  .eyebrow{
    font-family: var(--mono);
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--deep-green);
    display:inline-flex;
    align-items:center;
    gap:10px;
  }
  .eyebrow::before{
    content:"";
    width:22px; height:1px;
    background: var(--royal-yellow-deep);
    display:inline-block;
  }
  h1,h2,h3,h4{
    font-family: var(--display);
    color: var(--deep-green-2);
    margin: 0;
    line-height: 1.08;
  }
  h2.section-title{
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 700;
    margin-top: 10px;
  }
  p{ line-height:1.7; color:#3A4A3C; }

  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:0.001ms !important; transition-duration:0.001ms !important; }
  }

  /* ============================================================
   /*============================================================
  HEADER
============================================================*/

header{
    position:sticky;
    top:0;
    z-index:999;
    background:#000;
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(212,175,55,.25);
    box-shadow:0 10px 30px rgba(0,0,0,.45);
    transition:.4s ease;
}

.nav{
    max-width:1400px;
    margin:auto;
    padding:16px 40px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

/*=============================
 Logo
=============================*/

.brand{
    display:flex;
    align-items:center;
    gap:16px;
    text-decoration:none;
}

.brand-mark{
    width:68px;
    height:68px;
    border-radius:50%;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    border:2px solid #e8d28a;
    box-shadow:
        0 0 18px rgba(212,175,55,.35),
        0 8px 25px rgba(0,0,0,.45);
}

.brand-mark img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*=============================
 Company Name
=============================*/

.brand-word{
    display:flex;
    flex-direction:column;
    line-height:1.05;

    font-family:"Cinzel", serif;
    font-size:28px;
    font-weight:700;
    letter-spacing:1.5px;

    color:#e8cd72;

    text-transform:uppercase;

    text-shadow:
        0 0 8px rgba(212,175,55,.15);
}

.brand-word small{

    margin-top:6px;

    font-family:"Work Sans",sans-serif;

    font-size:11px;

    font-weight:500;

    letter-spacing:5px;

    color:#e2c269;

    text-transform:uppercase;
}

/*=============================
 Navigation
=============================*/

nav.links{
    display:flex;
    align-items:center;
    gap:8px;
}

nav.links a{

    color:#dec77b;

    text-decoration:none;

    padding:10px 18px;

    border-radius:40px;

    font-size:15px;

    font-weight:600;

    transition:.35s;
}

nav.links a:hover{

    color:#000;

    background:#e4cb78;

    transform:translateY(-2px);

    box-shadow:0 10px 20px rgba(212,175,55,.25);
}

/*=============================
 CTA Button
=============================*/

nav.links .cta{

    background:#D4AF37;

    color:#000;

    font-weight:700;

    box-shadow:0 10px 25px rgba(212,175,55,.30);
}

nav.links .cta:hover{

    background:#E8C76A;

    color:#000;

    transform:translateY(-3px);
}

/*=============================
 Burger
=============================*/

.burger{

    display:none;

    width:48px;

    height:48px;

    border-radius:10px;

    border:1px solid rgba(212,175,55,.35);

    background:#000;

    cursor:pointer;

    justify-content:center;

    align-items:center;
}

.burger span,
.burger span::before,
.burger span::after{

    content:"";

    width:22px;

    height:2px;

    background:#D4AF37;

    position:relative;

    display:block;

    transition:.3s;
}

.burger span::before{

    position:absolute;

    top:-7px;
}

.burger span::after{

    position:absolute;

    top:7px;
}

/*=============================
 Mobile
=============================*/

@media(max-width:880px){

    .nav{

        padding:14px 20px;
    }

    .brand-word{

        font-size:20px;
    }

    .brand-word small{

        font-size:9px;

        letter-spacing:2px;
    }

    nav.links{

        display:none;

        position:absolute;

        top:100%;

        left:0;

        right:0;

        background:#000;

        flex-direction:column;

        padding:20px;

        border-top:1px solid rgba(212,175,55,.15);

        border-bottom:1px solid rgba(212,175,55,.15);
    }

    nav.links.open{

        display:flex;
    }

    nav.links a{

        width:100%;

        text-align:center;
    }

    .burger{

        display:flex;
    }
}
  /* ============================================================
     HERO
     ============================================================ */
  .hero{
    background:
      radial-gradient(ellipse at 15% -10%, rgba(243, 241, 238, 0.35), transparent 55%),
      radial-gradient(ellipse at 85% 110%, rgba(195,228,182,0.35), transparent 55%),
      linear-gradient(180deg, var(--deep-green-2), var(--deep-green) 70%);
    color: var(--cream);
    padding: 96px 28px 0;
    overflow:hidden;
  }
  .hero-inner{
    max-width: 820px;
    margin: 0 auto;
    text-align:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap: 22px;
  }
  .hero .eyebrow{ color: var(--royal-yellow); }
  .hero .eyebrow::before{ background: var(--royal-yellow); }
  .hero h1{
    color: var(--white);
    font-size: clamp(34px, 5.4vw, 58px);
    font-weight: 900;
    letter-spacing: -0.01em;
  }
  .hero h1 em{
    font-style:normal;
    color: var(--royal-yellow);
  }
  .hero p.lede{
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255,252,244,0.88);
    max-width: 620px;
    margin: 0 auto;
  }
  .hero-ctas{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top: 6px;
  }
  .btn{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight:700;
    font-size: 14.5px;
    letter-spacing: 0.01em;
    border: 2px solid transparent;
    cursor:pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .btn:hover{ transform: translateY(-2px); }
  .btn-primary{
    background: var(--royal-yellow);
    color: var(--deep-green-2);
  }
  .btn-primary:hover{ box-shadow: 0 14px 30px -10px rgba(244,180,0,0.55); }
  .btn-outline{
    border-color: rgba(255,252,244,0.55);
    color: var(--cream);
    background: transparent;
  }
  .btn-outline:hover{ border-color: var(--cream); background: rgba(255,252,244,0.08); }
  .btn-dark{
    background: var(--deep-green-2);
    color: var(--cream);
  }
  .btn-dark:hover{ box-shadow: 0 14px 30px -10px rgba(27,53,33,0.5); }

  /* top-products strip */
  .strip-shell{
    margin-top: 64px;
    border-top: 1px solid rgba(255,252,244,0.18);
    padding: 22px 0;
    overflow:hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
            mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  }
  .strip-track{
    display:flex;
    gap: 46px;
    width: max-content;
    animation: scroll-strip 26s linear infinite;
  }
  @keyframes scroll-strip{
    from{ transform: translateX(0); }
    to{ transform: translateX(-50%); }
  }
  .strip-item{
    display:flex; align-items:center; gap:10px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform:uppercase;
    color: var(--royal-yellow-pale);
    white-space:nowrap;
  }
  .strip-item .dot{
    width:6px;height:6px;border-radius:50%;
    background: var(--royal-yellow);
  }

  /* wave divider */
  .wave{
    display:block;
    width:100%;
    line-height:0;
  }
  .wave svg{ width:100%; height:auto; display:block; }

  /* ============================================================
     ABOUT
     ============================================================ */
  .about{
    background: var(--white);
    padding: 92px 0 100px;
  }
  .about-grid{
    display:grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items:start;
    margin-top: 30px;
  }
  .about p{ margin: 18px 0 0; font-size: 16px; }
  .about-badges{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top: 30px;
  }
  .badge{
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--royal-yellow-pale);
    color: var(--deep-green-2);
    border: 1px solid rgba(198,145,10,0.3);
  }

  .managers{
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 26px;
  }
  .managers-title{
    font-family: var(--mono);
    font-size:12px;
    text-transform:uppercase;
    letter-spacing:0.1em;
    color: var(--deep-green);
    margin-bottom: 18px;
    display:block;
  }
  .manager-list{ display:flex; flex-direction:column; gap:18px; }
  .manager-card{
    display:flex;
    align-items:center;
    gap:16px;
    background: var(--white);
    border: 1px dashed var(--royal-yellow-deep);
    border-radius: 16px;
    padding: 14px;
  }
  .manager-photo{
    width:76px; height:76px;
    border-radius: 14px;
    overflow:hidden;
    flex: 0 0 auto;
    position:relative;
    background: var(--light-green);
  }
  .manager-photo img{
    width:100%; height:100%; object-fit:cover;
  }
  .manager-photo .fallback{
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    background: linear-gradient(160deg, var(--royal-yellow), var(--light-green));
    color: var(--deep-green-2);
    font-family: var(--display);
    font-weight:800;
    font-size: 22px;
  }
  .manager-info strong{
    display:block;
    font-family: var(--display);
    font-size: 16px;
    color: var(--deep-green-2);
  }
  .manager-info span{
    display:block;
    font-size: 12.5px;
    font-family: var(--mono);
    color:#5b6b5c;
    margin-top:3px;
    text-transform:uppercase;
    letter-spacing:0.05em;
  }

  /* ============================================================
     PRODUCTS
     ============================================================ */
  .products{
    background: var(--deep-green-2);
    padding: 96px 0 104px;
    position:relative;
  }
  .products .eyebrow{ color: var(--royal-yellow); }
  .products .eyebrow::before{ background: var(--royal-yellow); }
  .products h2.section-title{ color: var(--white); }
  .products > .wrap > p{ color: rgba(255,252,244,0.75); max-width:640px; margin-top:14px; }

  .product-grid{
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 46px;
  }
  .tag-card{
    background: var(--cream);
    border-radius: 18px;
    padding: 22px 20px 24px;
    position:relative;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow);
    display:flex;
    flex-direction:column;
    gap:14px;
  }
  .tag-card::before{
    content:"";
    position:absolute;
    top:14px; right:14px;
    width:34px; height:34px;
    border-radius:50%;
    border: 2px dashed var(--royal-yellow-deep);
    opacity:0.55;
  }
  .tag-hole{
    position:absolute;
    top: -10px; left: 28px;
    width: 18px; height: 18px;
    background: var(--deep-green-2);
    border-radius: 50%;
    border: 3px solid var(--cream);
  }
  .tag-illustration{
    width:100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    overflow:hidden;
    background: var(--white);
    position:relative;
  }
  .tag-illustration img{
    width:100%; height:100%; object-fit:cover;
    position:relative; z-index:2;
  }
  .tag-illustration .fallback-svg{
    position:absolute; inset:0;
    display:flex; align-items:center; justify-content:center;
    z-index:1;
  }
  .tag-card h3{
    font-size: 20px;
    color: var(--deep-green-2);
  }
  .tag-card .tag-label{
    font-family: var(--mono);
    font-size: 10.5px;
    letter-spacing:0.1em;
    text-transform:uppercase;
    color: var(--royal-yellow-deep);
  }
  .tag-card p{
    font-size: 13.5px;
    margin:0;
  }
  .why-list{ display:flex; flex-direction:column; gap:8px; margin-top:4px; }
  .why-list li{
    font-size: 13px;
    color: var(--ink);
    display:flex;
    gap:8px;
    align-items:flex-start;
    line-height:1.5;
  }
  .why-list li::before{
    content:"✓";
    color: var(--leaf-green);
    font-weight:700;
    flex:0 0 auto;
    margin-top:1px;
  }

  @media (max-width: 1020px){
    .product-grid{ grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px){
    .product-grid{ grid-template-columns: 1fr; }
  }

  /* ============================================================
     CONTACT
     ============================================================ */
  .contact{
    background: var(--light-green);
    padding: 96px 0 100px;
  }
  .contact-grid{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  .contact-card{
    display:flex;
    align-items:center;
    gap:18px;
    padding: 22px;
    border-radius: 18px;
    background: var(--cream);
    border: 1px solid var(--line);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  }
  a.contact-card:hover{
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--royal-yellow-deep);
  }
  .contact-icon{
    width:54px; height:54px;
    border-radius: 14px;
    display:flex; align-items:center; justify-content:center;
    flex:0 0 auto;
  }
  .contact-icon.whatsapp{ background: #DCF3D9; }
  .contact-icon.call{ background: var(--royal-yellow-pale); }
  .contact-icon.mail{ background: #DCF3D9; }
  .contact-icon.loc{ background: var(--royal-yellow-pale); }
  .contact-text .label{
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color:#5b6b5c;
  }
  .contact-text strong{
    display:block;
    font-size: 16.5px;
    font-family: var(--display);
    color: var(--deep-green-2);
    margin-top: 3px;
  }
  .contact-text span.sub{
    display:block;
    font-size: 12.5px;
    color:#5b6b5c;
    margin-top:2px;
  }

  .hours-panel{
    margin-top: 22px;
    padding: 22px;
    border-radius: 18px;
    background: var(--deep-green-2);
    color: var(--cream);
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:14px;
  }
  .hours-panel div strong{
    display:block;
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing:0.08em;
    text-transform:uppercase;
    color: var(--royal-yellow);
    margin-bottom: 6px;
  }

  @media (max-width: 780px){
    .contact-grid{ grid-template-columns: 1fr; }
    .about-grid{ grid-template-columns: 1fr; }
  }

  /* ============================================================
     FEEDBACK
     ============================================================ */
  .feedback{
    background: var(--light-green);
    padding: 96px 0 104px;
    position:relative;
    overflow:hidden;
  }
  .feedback::after{
    content:"";
    position:absolute;
    right:-80px; top:-80px;
    width:320px; height:320px;
    border-radius:50%;
    background: rgba(244,180,0,0.25);
  }
  .feedback-shell{
    position:relative;
    max-width: 720px;
    margin: 36px auto 0;
    background: var(--white);
    border-radius: 22px;
    padding: 36px;
    box-shadow: var(--shadow);
  }
  .form-row{
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }
  .field{ display:flex; flex-direction:column; gap:7px; }
  .field.full{ grid-column: 1 / -1; }
  .field label{
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing:0.06em;
    text-transform:uppercase;
    color: var(--deep-green-2);
  }
  .field input, .field select, .field textarea{
    font-family: var(--body);
    font-size: 14.5px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1.5px solid var(--line);
    background: var(--cream);
    color: var(--ink);
    outline:none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
  }
  .field input:focus, .field select:focus, .field textarea:focus{
    border-color: var(--royal-yellow-deep);
    box-shadow: 0 0 0 4px rgba(244,180,0,0.18);
  }
  .rating{
    display:flex;
    gap:8px;
  }
  .rating input{ display:none; }
  .rating label{
    font-size: 26px;
    cursor:pointer;
    color: #dcdcc9;
    transition: color 0.15s ease, transform 0.15s ease;
  }
  .rating input:checked ~ label,
  .rating label:hover,
  .rating label:hover ~ label{ color: var(--royal-yellow); }
  .rating{ flex-direction: row-reverse; justify-content:flex-end; }

  .feedback-shell button{
    margin-top: 6px;
    width:100%;
  }
  .form-note{
    font-size: 12.5px;
    color:#5b6b5c;
    margin-top: 14px;
    text-align:center;
  }
  #feedback-success{
    display:none;
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 12px;
    background: #E4F5DE;
    color: var(--deep-green-2);
    font-size: 14px;
    font-weight:600;
    text-align:center;
  }

  @media (max-width: 560px){
    .form-row{ grid-template-columns: 1fr; }
    .feedback-shell{ padding: 24px; }
  }

  /* ============================================================
     FOOTER
     ============================================================ */
  footer{
    background: var(--deep-green-2);
    color: rgba(255,252,244,0.7);
    padding: 46px 0 26px;
  }
  .footer-top{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap: 26px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255,252,244,0.15);
  }
  .footer-brand{
    display:flex; align-items:center; gap:12px;
  }
  .footer-brand .brand-word{ color: var(--cream); }
  footer .foot-links{
    display:flex; gap:22px; flex-wrap:wrap;
  }
  footer .foot-links a{ font-size:13.5px; font-weight:600; color: rgba(255,252,244,0.8); }
  footer .foot-links a:hover{ color: var(--royal-yellow); }
  .footer-bottom{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:10px;
    padding-top: 20px;
    font-family: var(--mono);
    font-size: 11.5px;
    letter-spacing:0.03em;
  }

  /* scroll-margin for anchored sections under sticky header */
  section[id]{ scroll-margin-top: 84px; }
/*====================================================
MADRASI BRAND
====================================================*/

.madrasi{

    padding:100px 0;

    background-image:linear-gradient(180deg, var(--light-green-2), var(--deep-green) 70%);
}

.brand-intro{

    max-width:850px;

    margin:25px auto 70px;

    text-align:center;

    font-size:18px;

    line-height:1.9;

    color:#fffce3;
}

.brand-product{

    display:grid;



    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

    margin-bottom:120px;
}

.brand-product.reverse{

    direction:rtl;
}

.brand-product.reverse>*{

    direction:ltr;
}

.brand-gallery{


    display:grid;
    background-image:linear-gradient(180deg, var(--light-green-2), var(--deep-green) 70%);

    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));

    gap:20px;
}

.image-placeholder{

    aspect-ratio:1;
   

    border:3px dashed #D4AF37;

    border-radius:1px;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    font-weight:600;

    color:#666;

    background:#fff;

    transition:.4s;
}

.image-placeholder:hover{

    background:#D4AF37;

    color:#887878;

    transform:translateY(-8px);
}

.brand-content h3{

    font-size:38px;

    margin-bottom:25px;

    color:#ffeeee;
}

.brand-content p{

    margin-bottom:20px;

    line-height:1.9;

    color:#e3bebe;
}

.brand-content ul{

    margin-top:25px;

    padding-left:22px;
}

.brand-content li{

    margin-bottom:12px;
    color:#fffce3;

    font-weight:500;
}

@media(max-width:900px){

.brand-product{

grid-template-columns:1fr;

}

.brand-product.reverse{

direction:ltr;
}

}
.brand-header {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 2rem 0;
}

.brand-logo {
    flex-shrink: 0;
}

.brand-logo img {
    width: 340px;
    height: auto;
    max-width: 100%;
}

.brand-intro {
    flex: 1;
}

/* Stack on smaller screens */
@media (max-width: 800px) {
    .brand-header {
        flex-direction: column;
        text-align: center;
    }

    .brand-logo img {
        width: 180px;
    }
}

.instagram{
    background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
}

.facebook{
    background: #1877F2;
}

.instagram svg,
.facebook svg{
    stroke:#fff;
}

.instagram svg circle:last-child{
    fill:#fff;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #1a1a1a, #000);
    color: #d4af37;
    border: 1px solid #d4af37;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: color 0.4s ease, border-color 0.4s ease, transform 0.3s ease;
    z-index: 1;
}

.cta-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #d4af37;
    z-index: -1;
    transition: left 0.4s ease;
}

.cta-button:hover {
    color: #1a1a1a;
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.35);
}

.cta-button:hover::before {
    left: 0;
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}
.brochure-block{
    margin-top: 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 6px;
    max-width: 520px;
    transition: border-color 0.35s ease, transform 0.35s ease;
}
.brochure-block:hover{
    border-color: #d4af37;
    transform: translateY(-3px);
}

.brochure-thumb{
    flex-shrink: 0;
    width: 64px;
    height: 84px;
    border-radius: 3px;
    background: linear-gradient(160deg, #1a1a1a, #000);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.brochure-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brochure-icon{
    width: 26px;
    height: 26px;
    color: #d4af37;
}

.brochure-info h4{
    font-family: 'Cinzel', serif;
    font-size: 16px;
    color: #f0d97f;
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}
.brochure-info p{
    font-size: 13px;
    color: #cfc9b4;
    line-height: 1.5;
    margin-bottom: 12px;
}

.brochure-actions{
    display: flex;
    gap: 10px;
}
.brochure-btn{
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 14px;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid #d4af37;
    border-radius: 3px;
    color: #d4af37;
    text-decoration: none;
    transition: all 0.3s ease;
}
.brochure-btn:hover{
    background: #d4af37;
    color: #1a1a1a;
}
.brochure-btn-solid{
    background: #d4af37;
    color: #1a1a1a;
}
.brochure-btn-solid:hover{
    background: #f0d97f;
    border-color: #f0d97f;
}

@media (max-width: 480px){
    .brochure-block{ flex-direction: column; align-items: flex-start; }
}