/* ===========================================================
   FROZEN FRUITS — EDITORIAL / PREMIUM EXPORT CATALOG (scoped)
   All selectors are prefixed with .ffh- and nested under
   .ffh-page so nothing here can collide with the shared
   site stylesheet's .fruit-card / .product-cta / .cta-btn /
   .section / .container / .frozen-fruits-hero classes used
   on the ingredients, hotel, machinery and syrup pages.

   Ink        #211D17
   Cream      #F6F1E6
   Forest     #223626
   Gold       #B8863A
   Rust       #93411F
   Line       #D8CFBD
=========================================================== */





*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#e3ddd1;
  color:#111;
  overflow-x:hidden;
}

/* =========================
   GLOBAL
========================= */

.section{
  padding:82px 7%;
}

.section-head{
  text-align:center;
  margin-bottom:60px;
}

.section-head span{
  color:#b68b2d;
  letter-spacing:2px;
  font-size:13px;
  font-weight:600;
}



/* =========================
   NAVBAR
========================= */

.navbar{
  position:fixed;
  top:3px;
  left:50%;
  transform:translateX(-50%);
  width:92%;
  height:85px;
  background:rgba(255,255,255,0.88);
  backdrop-filter:blur(12px);
  border-radius:22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 35px;
  z-index:999;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.logo img{
  height:105px;
}

.nav-links{
  display:flex;
  gap:38px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:#b68b2d;
}

.nav-btn{
  background:#08210f;
  color:white;
  text-decoration:none;
  padding:14px 28px;
  border-radius:12px;
  transition:0.3s;
  font-size:14px;
}

.nav-btn:hover{
  background:#b68b2d;
}

.menu-btn{
  display:none;
}

.ffh-page{
    margin:0;
    padding:0;
    box-sizing:border-box;
    background:#F6F1E6;
    color:#211D17;
    font-family:'Work Sans', sans-serif;
}

.ffh-page *{
    box-sizing:border-box;
}

.ffh-container{
    max-width:1240px;
    margin:0 auto;
    padding:0 40px;
}

.ffh-page a{ color:inherit; }





/* ===========================================================
   HERO — split ledger cover: cream panel + framed photograph
=========================================================== */

.ffh-hero{
    background:#F6F1E6;
    border-bottom:1px solid #211D17;
    padding: 150px 0 70px;
}

.ffh-hero-inner{
    display:grid;
    grid-template-columns: 1fr 1.1fr;
    align-items:center;
    gap: 30px;
    max-width: 1520px;
    margin: 0 auto;
    padding: 0 40px;
}

.ffh-hero-text{
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.ffh-hero-eyebrow{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:28px;
}

.ffh-hero-eyebrow .ffh-num{
    font-family:'IBM Plex Mono', monospace;
    font-size:13px;
    color:#B8863A;
    border:1px solid #B8863A;
    padding:3px 9px;
    border-radius:2px;
    letter-spacing:1px;
}

.ffh-hero-eyebrow span{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:3px;
    color:#5B5343;
    text-transform:uppercase;
}

.ffh-hero-text h1 {
    font-family: 'Fraunces', serif;
    font-weight: 450;
    font-size: 88px;
    line-height: 1.0;
    letter-spacing: -2px;
    color: #211D17;
    margin-bottom: 28px;
}

.ffh-hero-text h1 em {
    font-style: italic;
    font-weight: 300;
    color: #93411F;
}

.ffh-hero-text p {
    max-width: 100%;
    font-size: 18px;
    line-height: 1.8;
    color: #4A4436;
    margin-bottom: 24px;
}

.ffh-hero-text p:last-of-type{
    margin-bottom: 34px;
}

.ffh-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: fit-content;
    padding: 15px 28px;
    border: 2px solid #211D17;
    border-radius: 8px;
    background: #F6F1E6;
    color: #211D17;
    text-decoration: none;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ffh-btn:hover {
    background: #211D17;
    color: #F6F1E6;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(33, 29, 23, 0.25);
}

.ffh-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 3px 8px rgba(33, 29, 23, 0.2);
}

.ffh-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(33, 29, 23, 0.25);
}

/* --- trust row: fills the space below the CTA, anchors the column --- */

.ffh-hero-trust{
    display:flex;
    gap: 28px;
    margin-top: 42px;
    padding-top: 26px;
    border-top: 1px solid rgba(33,29,23,0.15);
}

.ffh-trust-item{
    display:flex;
    flex-direction:column;
    gap: 6px;
}

.ffh-trust-label{
    font-family:'IBM Plex Mono', monospace;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #B8863A;
}

.ffh-trust-value{
    font-size: 13px;
    color: #4A4436;
    line-height: 1.4;
}

/* --- photo: fixed aspect ratio, wider frame --- */

.ffh-hero-photo{
    display:flex;
    justify-content:flex-end;
}

.ffh-hero-photo-frame{
    position:relative;
    width:100%;
    max-width: 680px;
    aspect-ratio: 6 / 5;
    border:1px solid #211D17;
    overflow:hidden;
    box-shadow: 0 20px 40px rgba(33, 29, 23, 0.12);
}

.ffh-hero-photo-frame img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:saturate(1.05) contrast(1.02);
}

.ffh-hero-photo-tag{
    position:absolute;
    bottom:18px;
    left:18px;
    background:#F6F1E6;
    border:1px solid #211D17;
    padding:8px 14px;
    font-family:'IBM Plex Mono', monospace;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#211D17;
}

/* --- stat strip: normal flow, no negative-margin overlap --- */

.ffh-stat-strip{
    display:flex;
    justify-content:center;
    gap:0;
    background:#211D17;
}

.ffh-stat-strip .ffh-container{
    display:flex;
    width:100%;
    max-width: 1200px;
}

.ffh-stat-item{
    flex:1;
    text-align:center;
    padding:22px 20px;
    border-right:1px solid rgba(246,241,230,.18);
}

.ffh-stat-item:last-child{ border-right:none; }

.ffh-stat-item .ffh-val{
    font-family:'Fraunces', serif;
    font-size:26px;
    color:#F6F1E6;
    margin-bottom:4px;
}

.ffh-stat-item .ffh-lbl{
    font-family:'IBM Plex Mono', monospace;
    font-size:11px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#B8863A;
}





/* ===========================================================
   CATALOG SECTION
=========================================================== */

.ffh-section{ padding:130px 0; }

.ffh-section-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:40px;
    max-width:1240px;
    margin:0 auto 70px;
    border-bottom:1px solid #211D17;
    padding-bottom:18px;
    flex-wrap:wrap;
}

.ffh-section-head-left span{
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#93411F;
    display:block;
    margin-bottom:18px;
}

.ffh-section-head-left h2{
    font-family:'Fraunces', serif;
    font-weight:450;
    font-size:44px;
    letter-spacing:-0.5px;
    color:#211D17;
}

.ffh-section-head-right{
    flex:1;
    max-width:360px;
}

.ffh-section-head-right p{
    font-size:15px;
    line-height:1.8;
    color:#5B5343;
    text-align:right;
}

.ffh-products{
    background:#F6F1E6;
}

.ffh-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:1px;
    background:#D8CFBD;
    border:1px solid #D8CFBD;
}

.ffh-card{
    position:relative;
    background:#F6F1E6;
    display:flex;
    flex-direction:column;
    transition:background .3s ease, transform .3s ease;
}

.ffh-card:hover{
    background:#FFFFFF;
    transform:translateY(-4px);
    z-index:2;
}

/* ── top strip: process tag + origin chip ── */
.ffh-card-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:16px 20px 0;
}

.ffh-card-top .ffh-no{
    font-family:'IBM Plex Mono', monospace;
    font-size:10.5px;
    letter-spacing:1.5px;
    color:#F6F1E6;
    background:#93411F;
    padding:3px 8px;
}

.ffh-card-top .ffh-grade{
    font-family:'IBM Plex Mono', monospace;
    font-size:10px;
    letter-spacing:1px;
    color:#5B5343;
    border:1px solid #D8CFBD;
    padding:2px 8px;
    text-transform:uppercase;
    transition:border-color .3s ease, color .3s ease;
}

.ffh-card:hover .ffh-card-top .ffh-grade{
    border-color:#93411F;
    color:#93411F;
}

/* ── image with fruit-tinted glow ── */
.ffh-card-img{
    position:relative;
    height:254px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:16px 30px;
    overflow:hidden;
}

.ffh-tint{
    position:absolute;
    width:140px;
    height:140px;
    border-radius:50%;
    background:radial-gradient(circle, color-mix(in srgb, var(--tint) 55%, transparent) 0%, transparent 72%);
    opacity:.55;
    transition:opacity .4s ease, transform .4s ease;
    pointer-events:none;
}

.ffh-card:hover .ffh-tint{
    opacity:.9;
    transform:scale(1.15);
}

.ffh-card-img img{
    position:relative;
    z-index:1;
    max-width:100%;
    max-height:120%;
    object-fit:contain;
    transition:transform .4s ease;
}

.ffh-card:hover .ffh-card-img img{
    transform:scale(1.06);
}

/* ── content ── */
.ffh-card-content{
    padding:0 22px 22px;
    border-top:1px solid #D8CFBD;
    padding-top:18px;
    margin-top:auto;
}

.ffh-card-content h3{
    text-align:center;
    font-family:'Fraunces', serif;
    font-weight:450;
    font-size:21px;
    color:#211D17;
    margin-bottom:8px;
}

.ffh-card-content > p{
    text-align:center;
    font-size:13.5px;
    line-height:1.65;
    color:#5B5343;
    margin-bottom:16px;
    min-height:42px;
}

/* ── sweetness / oil gauge ── */
.ffh-gauge{
    margin-bottom:16px;
}

.ffh-gauge-row{
    display:flex;
    justify-content:space-between;
    font-family:'IBM Plex Mono', monospace;
    font-size:10px;
    letter-spacing:.5px;
    text-transform:uppercase;
    color:#93411F;
    margin-bottom:6px;
}

.ffh-gauge-row span:last-child{
    color:#211D17;
    text-transform:none;
    letter-spacing:0;
}

.ffh-gauge-track{
    height:4px;
    background:#D8CFBD;
    overflow:hidden;
}

.ffh-gauge-fill{
    height:100%;
    background:var(--tint);
    transform-origin:left;
    transform:scaleX(0);
    animation:ffh-fill .8s ease forwards;
    animation-delay:.1s;
}

@keyframes ffh-fill{ to{ transform:scaleX(1); } }

/* ── specs ── */
.ffh-specs{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
    padding-top:14px;
    border-top:1px dashed #D8CFBD;
}

.ffh-specs div{
    display:flex;
    flex-direction:column;
    gap:3px;
}

.ffh-specs .ffh-k{
    font-family:'IBM Plex Mono', monospace;
    font-size:9.5px;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#93411F;
}

.ffh-specs .ffh-v{
    font-family:'IBM Plex Mono', monospace;
    font-size:11.5px;
    color:#211D17;
}

/* ===========================================================
   RESPONSIVE
=========================================================== */
@media (max-width:1100px){
    .ffh-grid{ grid-template-columns:repeat(3,1fr); }
}

@media (max-width:820px){
    .ffh-section{ padding:90px 0; }
    .ffh-section-head{ flex-direction:column; align-items:flex-start; margin-bottom:44px; }
    .ffh-section-head-left h2{ font-size:34px; }
    .ffh-section-head-right p{ text-align:left; max-width:none; }
    .ffh-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:560px){
    .ffh-grid{ grid-template-columns:1fr; }
    .ffh-card-img{ height:200px; }
}

@media (prefers-reduced-motion: reduce){
    .ffh-gauge-fill{ animation:none; transform:scaleX(1); }
    .ffh-card, .ffh-tint, .ffh-card-img img{ transition:none; }
}




/* ===========================================================
   CTA
=========================================================== */

.ffh-cta{
    padding:25px 0;
    text-align:center;
    background:#223626;
    position:relative;
    border-top:1px solid #211D17;
}

.ffh-cta-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-family:'IBM Plex Mono', monospace;
    font-size:12px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:#C9A063;
    margin-bottom:30px;
}

.ffh-cta-tag::before,
.ffh-cta-tag::after{
    content:'';
    width:30px;
    height:1px;
    background:#C9A063;
}

.ffh-cta h2{
    font-family:'Fraunces', serif;
    font-weight:450;
    font-size:52px;
    line-height:1.15;
    color:#F6F1E6;
    max-width:720px;
    margin:0 auto 22px;
}

.ffh-cta p{
    color:rgba(246,241,230,.75);
    font-size:16.5px;
    line-height:1.9;
    max-width:620px;
    margin:0 auto 44px;
}

.ffh-cta-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    padding:17px 34px;
    border:1px solid #C9A063;
    text-decoration:none;
    color:#F6F1E6;
    font-family:'IBM Plex Mono', monospace;
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
    transition:.3s ease;
}

.ffh-cta-btn:hover{
    background:#C9A063;
    color:#211D17;
}

/* ===========================================================
   RESPONSIVE
=========================================================== */

@media(max-width:1100px){
    .ffh-grid{ grid-template-columns:repeat(2,1fr); }
    .ffh-hero-text h1{ font-size:48px; }
}

@media(max-width:768px){
    .ffh-hero{ padding-top:90px; }
}

@media(max-width:860px){
    .ffh-hero{ grid-template-columns:1fr; min-height:auto; }
    .ffh-hero-photo{ padding:0 24px 40px; order:-1; height:320px; }
    .ffh-hero-text{ padding:1px 24px 30px; }
    .ffh-stat-strip .ffh-container{ flex-direction:column; }
    .ffh-stat-item{ border-right:none; border-bottom:1px solid rgba(246,241,230,.18); }
    .ffh-stat-item:last-child{ border-bottom:none; }
    .ffh-section{ padding:80px 0; }
    .ffh-section-head{ flex-direction:column; align-items:flex-start; }
    .ffh-section-head-right p{ text-align:left; }
}

@media(max-width:600px){
    -grid{ grid-template-columns:1fr; }
    .ffh-hero-text h1{ font-size:36px; }
    .ffh-cta h2{ font-size:34px; }
    .ffh-container{ padding:0 20px; }
}




/* =========================
   MOBILE
========================= */

@media(max-width:1024px){

  .menu-btn{
    display:block;
    background:none;
    border:none;
    font-size:32px;
  }

  .nav-links{
    position:absolute;
    top:95px;
    right:20px;
    background:white;
    flex-direction:column;
    width:240px;
    padding:30px;
    border-radius:20px;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-btn{
    display:none;
  }

}






/* =========================
   MOBILE
========================= */

@media(max-width:1024px){

  .menu-btn{
    display:block;
    background:none;
    border:none;
    font-size:32px;
  }

  .nav-links{
    position:absolute;
    top:95px;
    right:20px;
    background:white;
    flex-direction:column;
    width:240px;
    padding:30px;
    border-radius:20px;
    display:none;
  }

  .nav-links.active{
    display:flex;
  }

  .nav-btn{
    display:none;
  }

}





/* ===========================================================
   RESPONSIVE — Hero section
=========================================================== */

/* --- Tablet / small laptop --- */
@media (max-width: 1024px) {
    .ffh-hero{
        padding: 120px 0 60px;
    }

    .ffh-hero-inner{
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 30px;
    }

    .ffh-hero-photo{
        order: 0;
        justify-content: center;
    }

    .ffh-hero-photo-frame{
        max-width: 100%;
    }

    .ffh-hero-text h1{
        font-size: 64px;
        letter-spacing: -1px;
    }

    .ffh-hero-text p{
        font-size: 16px;
        line-height: 1.7;
    }

    .ffh-hero-trust{
        flex-wrap: wrap;
        row-gap: 20px;
    }
}

/* --- Tablet portrait / large phone --- */
@media (max-width: 768px) {
    .ffh-hero{
        padding: 110px 0 50px;
        border-bottom: 1px solid #211D17;
    }

    .ffh-hero-inner{
        padding: 0 22px;
        gap: 36px;
    }

    /* --- reorder: h1 -> image -> rest --- */
    .ffh-hero-text{
        display: contents;
    }

    .ffh-hero-text h1{
        order: 1;
    }

    .ffh-hero-photo{
        order: 2;
    }

    .ffh-hero-text p,
    .ffh-hero-text .ffh-btn,
    .ffh-hero-text .ffh-hero-trust{
        order: 3;
    }
    /* --- end reorder --- */

    .ffh-hero-eyebrow{
        margin-bottom: 20px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .ffh-hero-eyebrow .ffh-num{
        font-size: 11px;
        padding: 2px 7px;
    }

    .ffh-hero-eyebrow span{
        font-size: 10px;
        letter-spacing: 2px;
    }

    .ffh-hero-text h1{
        font-size: 46px;
        letter-spacing: -0.5px;
        margin-bottom: 20px;
    }

    .ffh-hero-text p{
        font-size: 15px;
        line-height: 1.65;
        margin-bottom: 18px;
    }

    .ffh-hero-text p:last-of-type{
        margin-bottom: 26px;
    }

    .ffh-btn{
        width: 61%;
        padding: 14px 22px;
        font-size: 12px;
    }

    .ffh-hero-photo-frame{
        aspect-ratio: 4 / 3;
        border-width: 1px;
    }

    .ffh-hero-photo-tag{
        bottom: 12px;
        left: 12px;
        padding: 6px 10px;
        font-size: 10px;
    }

    .ffh-hero-trust{
        margin-top: 30px;
        padding-top: 20px;
        gap: 20px 24px;
    }

    .ffh-trust-item{
        flex: 1 1 40%;
        gap: 4px;
    }

    .ffh-trust-label{
        font-size: 9px;
        letter-spacing: 1px;
    }

    .ffh-trust-value{
        font-size: 12px;
    }
}

/* --- Small phone --- */
@media (max-width: 480px) {
    .ffh-hero{
        padding: 100px 0 40px;
    }

    .ffh-hero-inner{
        padding: 0 18px;
        gap: 0px;
    }

    .ffh-hero-text h1{
        margin-left: 20px;
        font-size: 36px;
        line-height: 1.05;
        margin-bottom: 16px;
    }

    .ffh-hero-text p{
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
    }

    .ffh-hero-photo-frame{
        aspect-ratio: 1 / 1;
    }

    .ffh-hero-trust{
        flex-direction: column;
        gap: 16px;
    }

    .ffh-trust-item{
        flex: 1 1 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}





@media (max-width: 640px) {
    .ffh-stat-strip .ffh-container{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
    }

    .ffh-stat-strip .ffh-container::-webkit-scrollbar{
        display: none;
    }

    .ffh-stat-item{
        flex: 0 0 auto;
        min-width: 140px;
        padding: 20px 18px;
    }

    .ffh-stat-item .ffh-val{ font-size: 20px; }
    .ffh-stat-item .ffh-lbl{ font-size: 9px; }
}






/* ===========================================================
   CATALOG SECTION — MOBILE (≤767px)
=========================================================== */

@media (max-width: 767px){

  .ffh-section{
    padding:60px 0;
  }

  .ffh-section-head{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    max-width:75%;
    margin:0 auto 36px;
    padding:0 16px 4px;
  }

  .ffh-section-head-left span{
    font-size:10px;
    letter-spacing:2px;
    margin-bottom:10px;
  }

  .ffh-section-head-left h2{
    text-align: center;
    margin-top:0;
    font-size:26px;
    line-height:1.15;
  }

  .ffh-section-head-right p{
    max-width:100%;
    text-align:left;
    font-size:13px;
    line-height:1.6;
  }

  /* --- Grid → Flex so the last incomplete row centers itself --- */
  .ffh-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:1px;
    border:1px solid #D8CFBD;
    margin:0 16px;
  }

.ffh-card{
  flex:0 0 calc(50% - 1px);
  max-width:calc(50% - 1px);
}

  .ffh-card-index{
    padding:8px 8px 0;
  }

  .ffh-card-index .ffh-no{
    font-size:9px;
  }

  .ffh-card-index .ffh-grade{
    font-size:7px;
    padding:1px 5px;
  }

  .ffh-card-img{
    height:156px;
    padding:8px 10px;
  }

  .ffh-card-content{
    padding:0 8px 12px;
    padding-top:10px;
  }

  .ffh-card-content h3{
    font-size:12px;
    margin-bottom:4px;
    line-height:1.2;
  }

  .ffh-card-content > p{
    font-size:9.5px;
    line-height:1.4;
    min-height:auto;
    margin-bottom:10px;
    /* optional: hide description entirely on very small cards */
    display:none;
  }

  .ffh-specs{
    grid-template-columns:1fr;
    gap:5px;
    padding-top:8px;
  }

  .ffh-specs .ffh-k{
    font-size:7px;
  }

  .ffh-specs .ffh-v{
    font-size:9px;
  }
}

/* Optional: 2 per row on very small phones (≤380px) */
@media (max-width:380px){
  .ffh-card{
    flex:0 0 calc(50% - 1px);
    max-width:calc(50% - 1px);
  }
}




/* ===========================================================
   RESPONSIVE — CTA section
=========================================================== */

/* --- Tablet --- */
@media (max-width: 1024px) {
    .ffh-cta{
        padding: 110px 0;
    }

    .ffh-cta h2{
        font-size: 42px;
        max-width: 600px;
    }
}

/* --- Tablet portrait / large phone --- */
@media (max-width: 768px) {
    .ffh-cta{
        padding: 90px 0;
    }

    .ffh-container{
        padding: 0 26px;
    }

    .ffh-cta-tag{
        font-size: 11px;
        letter-spacing: 2px;
        gap: 8px;
        margin-bottom: 22px;
    }

    .ffh-cta-tag::before,
    .ffh-cta-tag::after{
        width: 20px;
    }

    .ffh-cta h2{
        font-size: 32px;
        letter-spacing: -0.3px;
        margin-bottom: 18px;
    }

    .ffh-cta p{
        font-size: 15px;
        line-height: 1.75;
        margin-bottom: 34px;
    }

    .ffh-cta-btn{
        padding: 15px 26px;
        font-size: 12px;
    }
}

/* --- Small phone --- */
@media (max-width: 480px) {
    .ffh-cta{
        padding: 70px 0;
    }

    .ffh-container{
        padding: 0 20px;
    }

    .ffh-cta-tag{
        font-size: 10px;
        letter-spacing: 1.5px;
        gap: 6px;
        margin-bottom: 18px;
    }

    .ffh-cta-tag::before,
    .ffh-cta-tag::after{
        width: 14px;
    }

    .ffh-cta h2{
        font-size: 26px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .ffh-cta p{
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 30px;
    }

    .ffh-cta-btn{
        width: 48%;
        padding: 15px 20px;
        font-size: 12px;
    }
}