@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Montserrat:wght@400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css');
:root{--bg:#020b1d;--bg2:#061832;--gold:#d9a62e;--cream:#f5efe2}
*{box-sizing:border-box}html{scroll-behavior:smooth}body{margin:0;background:var(--bg);color:#fff;font-family:Montserrat,Arial,sans-serif}.wrap{width:min(1180px,92%);margin:auto}
/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 680px;
    position: relative;
    overflow: hidden;

    border-bottom: 1px solid var(--gold);

    /* New hero image: full-width background */
    background:
        linear-gradient(
            90deg,
            rgba(2, 8, 20, 0.20) 0%,
            rgba(2, 8, 20, 0.05) 45%,
            rgba(2, 8, 20, 0.00) 100%
        ),
        url('hero.png') center center / cover no-repeat;
}

.hero-in {
    min-height: 680px;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 25px;
    position: relative;
    padding-top: 105px;
}

/* =========================================================
   HERO LOGO
   ========================================================= */

.logo {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);

    width: 360px;
    height: 120px;
    max-width: 90%;

    margin: 0;

    border: 1px solid var(--gold);

    background:
        #07145c
        url('frenny-jewellery-logo.jpg')
        center / cover
        no-repeat;

    z-index: 5;

    font-size: 0;
    color: transparent;
}

.logo div,
.logo small {
    display: none;
}

/* =========================================================
   HERO TEXT
   ========================================================= */

h1 {
    font:
        600
        clamp(70px, 7vw, 112px)
        / .76
        Georgia,
        serif;

    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

h1 b {
    color: #f0c45a;
}

h1 span {
    color: var(--cream);
}

.tag {
    color: #e7b53f;
    font:
        24px
        Georgia,
        serif;

    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 30px 0 14px;
}

.line {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 18px 0;
}

.desc {
    max-width: 510px;
    line-height: 1.8;
}

/* =========================================================
   HERO BUTTONS
   ========================================================= */

.buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    width: 620px;
    max-width: 100%;

    margin-top: 28px;
}

.buttons a {
    min-height: 86px;
    padding: 14px 18px;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;

    color: #fff;
    text-decoration: none;

    border: 1px solid var(--gold);
    border-radius: 7px;

    background: rgba(2, 11, 29, 0.38);

    font-size: 13px;
    line-height: 1.45;

    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.buttons a:hover {
    transform: translateY(-5px);
    background: linear-gradient(
        135deg,
        rgba(217, 166, 46, 0.28),
        rgba(217, 166, 46, 0.08)
    );
    color: #fff;
    border-color: #f0c45a;
    box-shadow:
        0 8px 24px rgba(217, 166, 46, 0.20),
        inset 0 0 18px rgba(217, 166, 46, 0.06);
}

.buttons a:hover::before {
    transform: scale(1.12);
    color: #f0c45a;
}

.buttons a::before {
    transition:
        transform .25s ease,
        color .25s ease;
}

.buttons a::before {
    flex: 0 0 40px;

    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #d9a62e;
    font-size: 34px;
    line-height: 1;
}

/* Instagram */
.buttons a:nth-child(1)::before {
    content: "\f16d";
    font-family: "Font Awesome 6 Brands";
}

/* WhatsApp */
.buttons a:nth-child(2)::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
}

/* TikTok */
.buttons a:nth-child(3)::before {
    content: "\e07b";
    font-family: "Font Awesome 6 Brands";
}

/* The old right-side photo is no longer a separate box.
   The new hero image is the full header background. */

.photo {
    display: none;
}

section{padding:58px 0}.about{border-bottom:1px solid var(--gold);background:linear-gradient(#031128,#020a19)}.about-grid{display:grid;grid-template-columns:1.15fr 2fr;gap:50px}.title{font:600 34px/1.05 Georgia,serif;color:var(--cream);text-transform:uppercase;margin:0}.about p{line-height:1.8;font-size:15px}.features{display:grid;grid-template-columns:repeat(3,1fr)}.feature{text-align:center;padding:10px 25px;border-left:1px solid #d9a62e99}/* =========================================================
   ABOUT / FEATURE ICONS
   ========================================================= */

.ico {
    width: 94px;
    height: 94px;
    border: 1px solid var(--gold);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: auto;

    color: #f0c45a;
    font-size: 0;
}

/* Emas berkualitas */
.feature:nth-child(1) .ico::before {
    content: "\f3a5";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 38px;
}

/* Desain elegan */
.feature:nth-child(2) .ico::before {
    content: "\f521";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 38px;
}

/* Belanja aman */
.feature:nth-child(3) .ico::before {
    content: "\f3ed";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 38px;
}.feature h3,.card h3{font:600 21px Georgia,serif;color:var(--cream)}.feature p,.card p{font-size:13px;line-height:1.7}
.social{text-align:center}.social h2{font:600 34px Georgia,serif;color:#e7b53f}.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.card{border:1px solid var(--gold);border-radius:8px;background:linear-gradient(145deg,#071b39,#031127);padding:28px 22px}.card .ico {
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;

    /* Sembunyikan karakter placeholder dari HTML */
    font-size: 0;
}

/* Ikon sosial asli */
.card:nth-child(1) .ico::before {
    content: "\f16d";
    font-family: "Font Awesome 6 Brands";
    font-size: 42px;
}

.card:nth-child(2) .ico::before {
    content: "\f232";
    font-family: "Font Awesome 6 Brands";
    font-size: 42px;
}

.card:nth-child(3) .ico::before {
    content: "\e07b";
    font-family: "Font Awesome 6 Brands";
    font-size: 42px;
}.card a {
    display: block;
    background: linear-gradient(#e8bb54, #c99122);
    color: #080e18;
    text-decoration: none;
    font-weight: 600;
    padding: 12px;
    border-radius: 7px;
    margin-top: 18px;

    transition:
        transform .25s ease,
        background .25s ease,
        box-shadow .25s ease,
        color .25s ease;
}

.card a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, #f5ce68, #d9a62e);
    color: #020b1d;

    box-shadow:
        0 8px 22px rgba(217, 166, 46, 0.28),
        0 0 12px rgba(217, 166, 46, 0.14);
}
.benefits{border-top:1px solid var(--gold);border-bottom:1px solid var(--gold);background:#061631;padding:28px 0}.benefits-grid{display:grid;grid-template-columns:repeat(4,1fr)}.benefit{display:flex;gap:14px;align-items:center;padding:8px 20px;border-right:1px solid #d9a62e99}.benefit:last-child{border:0}/* =========================================================
   BENEFITS ICONS
   ========================================================= */

.bi {
    width: 56px;
    min-width: 56px;
    height: 56px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #f0c45a;
    font-size: 0;
}

/* Kadar emas terjamin */
.benefit:nth-child(1) .bi::before {
    content: "\f02c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 42px;
}

/* Siap jadi hadiah spesial */
.benefit:nth-child(2) .bi::before {
    content: "\f1d8";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 42px;
}

/* Kemasan mewah */
.benefit:nth-child(3) .bi::before {
    content: "\f49e";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 42px;
}

/* Garansi & purna jual */
.benefit:nth-child(4) .bi::before {
    content: "\f5a2";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 42px;
}.benefit strong{font-size:13px;color:var(--cream)}.benefit small{display:block;font-size:10px;line-height:1.5;margin-top:6px}


footer{padding:22px 0;background:#020914}.foot{display:grid;grid-template-columns:250px 1fr;gap:28px;align-items:center}/* Footer logo - use the same image as the main logo */
.flogo {
    height: 95px;
    border: 1px solid var(--gold);

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        url('frenny-jewellery-logo.jpg')
        center / cover
        no-repeat;

    font-size: 0;
    color: transparent;
    overflow: hidden;
}

.flogo * {
    display: none;
}.info{color:var(--gold);font-size:11px;line-height:2}.copy{text-align:center;border-top:1px solid #d9a62e44;margin-top:18px;padding-top:14px;color:var(--gold);font-size:11px}
@media(max-width:850px){.hero-in{grid-template-columns:1fr;padding:170px 0 50px}.hero{min-height:auto}.hero-copy{text-align:center}.line{margin:18px auto}.desc{margin:auto}.buttons{
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 430px;
    margin-left: auto;
    margin-right: auto;
}
.hero-in{min-height:620px}.about-grid{grid-template-columns:1fr}.cards{grid-template-columns:1fr}.benefits-grid{grid-template-columns:1fr 1fr}.foot{grid-template-columns:1fr}}
@media(max-width:520px){.features{grid-template-columns:1fr}.feature{border-left:0;border-top:1px solid #d9a62e99;padding:25px}.benefits-grid{grid-template-columns:1fr}.benefit{border-right:0}h1{font-size:68px}.tag{font-size:19px;letter-spacing:2px}}
