:root {
    --bg: #080807;
    --bg-2: #0e0d0b;
    --panel: rgba(255,255,255,.055);
    --panel-strong: rgba(255,255,255,.09);
    --line: rgba(216,164,91,.22);
    --gold: #d7a55f;
    --gold-2: #f0cf92;
    --text: #f7efe2;
    --muted: rgba(247,239,226,.72);
    --muted-2: rgba(247,239,226,.52);
    --shadow: 0 30px 90px rgba(0,0,0,.45);
    --radius: 24px;
    --wrap: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 70% 5%, rgba(215,165,95,.18), transparent 35%),
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.07), transparent 28%),
        var(--bg);
    color: var(--text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    line-height: 1.5;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 72%);
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    width: min(var(--wrap), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8,8,7,.78);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(215,165,95,.12);
}

.header-inner {
    height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-2);
    font-weight: 800;
    letter-spacing: .08em;
    line-height: .85;
}

.brand-mark {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--gold);
    transform: rotate(45deg);
    color: var(--gold);
}

.brand-mark::first-letter {
    transform: rotate(-45deg);
}

.brand-text {
    font-size: 18px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-left: auto;
    color: var(--muted);
    font-size: 14px;
}

.main-nav a:hover,
.header-phone:hover {
    color: var(--gold-2);
}

.header-phone {
    color: var(--text);
    font-weight: 700;
    white-space: nowrap;
}

.hero {
    position: relative;
    min-height: 720px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(215,165,95,.14);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 78% 50%, rgba(215,165,95,.18), transparent 26%),
        linear-gradient(90deg, rgba(8,8,7,.98) 0%, rgba(8,8,7,.78) 46%, rgba(8,8,7,.86) 100%);
}

.hero-bg::after {
    content: "";
    position: absolute;
    inset: auto -10% -35% -10%;
    height: 70%;
    background:
        radial-gradient(ellipse at center, rgba(255,255,255,.08), transparent 35%),
        radial-gradient(ellipse at center, rgba(0,0,0,.8), transparent 58%);
    filter: blur(18px);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 48px;
    align-items: center;
    padding: 80px 0;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--gold-2);
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 800;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 14px;
    font-size: clamp(56px, 8vw, 104px);
    line-height: .86;
    letter-spacing: -.07em;
    color: var(--gold-2);
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1;
    letter-spacing: -.045em;
}

h3 {
    margin-bottom: 10px;
    font-size: 21px;
    letter-spacing: -.02em;
}

.lead {
    max-width: 660px;
    color: var(--text);
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.14;
    letter-spacing: -.04em;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 34px 0 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 30px;
    border-radius: 12px;
    border: 1px solid rgba(215,165,95,.34);
    font-weight: 800;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    color: #120d06;
    border-color: transparent;
}

.button-ghost {
    background: rgba(255,255,255,.03);
    color: var(--text);
}

.hero-pills {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    max-width: 720px;
}

.hero-pills span {
    min-height: 58px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(215,165,95,.18);
    border-radius: 16px;
    background: rgba(255,255,255,.045);
    color: var(--text);
    font-size: 13px;
    box-shadow: 0 14px 40px rgba(0,0,0,.22);
}

.product-card {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.box {
    position: relative;
    width: 390px;
    height: 310px;
    padding: 42px;
    border: 1px solid rgba(215,165,95,.42);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.08), transparent 35%),
        linear-gradient(145deg, #18140f, #050505 62%);
    box-shadow: var(--shadow);
    transform: perspective(900px) rotateY(-16deg) rotateX(4deg);
}

.box::before {
    content: "";
    position: absolute;
    inset: 16px;
    border: 1px solid rgba(215,165,95,.18);
    border-radius: 12px;
}

.box-logo {
    position: relative;
    z-index: 1;
    color: var(--gold-2);
    font-size: 54px;
    font-weight: 900;
    line-height: .86;
    letter-spacing: -.04em;
}

.box-subtitle {
    position: relative;
    z-index: 1;
    margin-top: 18px;
    color: var(--muted);
    letter-spacing: .18em;
    font-size: 11px;
}

.box-size {
    position: absolute;
    left: 42px;
    bottom: 36px;
    color: var(--gold-2);
    font-size: 20px;
    font-weight: 800;
}

.coal {
    position: absolute;
    width: 86px;
    height: 86px;
    border-radius: 12px;
    background:
        radial-gradient(circle at 28% 24%, rgba(255,255,255,.13), transparent 20%),
        linear-gradient(135deg, #242424, #030303);
    box-shadow: 0 24px 50px rgba(0,0,0,.55);
}

.coal::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255,255,255,.04);
    border-radius: 8px;
}

.coal-1 {
    right: 36px;
    bottom: 62px;
    transform: rotate(8deg);
}

.coal-2 {
    left: 68px;
    bottom: 40px;
    width: 70px;
    height: 70px;
    transform: rotate(-14deg);
}

.coal-3 {
    right: 140px;
    top: 80px;
    width: 62px;
    height: 62px;
    transform: rotate(18deg);
}

.section {
    padding: 86px 0;
}

.section-soft {
    background:
        linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
    border-top: 1px solid rgba(215,165,95,.1);
    border-bottom: 1px solid rgba(215,165,95,.1);
}

.section-head {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

.section-head h2 {
    color: var(--gold-2);
}

.section-head p:not(.eyebrow) {
    color: var(--muted);
}

.benefit-grid,
.audience-grid,
.review-grid {
    display: grid;
    gap: 18px;
}

.benefit-grid {
    grid-template-columns: repeat(4, 1fr);
}

.audience-grid {
    grid-template-columns: repeat(4, 1fr);
}

.review-grid {
    grid-template-columns: repeat(3, 1fr);
}

.card,
.image-card,
.review,
.map-card,
.cta-inner {
    border: 1px solid rgba(215,165,95,.16);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.card {
    padding: 30px;
}

.card p,
.image-card p,
.review p,
.origin p,
.site-footer p {
    color: var(--muted);
}

.icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 18px;
    border: 1px solid rgba(215,165,95,.28);
    border-radius: 16px;
    color: var(--gold-2);
    background: rgba(215,165,95,.07);
}

.image-card {
    overflow: hidden;
}

.image-card h3,
.image-card p {
    padding-left: 22px;
    padding-right: 22px;
}

.image-card p {
    padding-bottom: 24px;
}

.image-placeholder {
    height: 180px;
    background:
        radial-gradient(circle at 30% 30%, rgba(215,165,95,.28), transparent 26%),
        linear-gradient(135deg, #1c1a16, #090909);
    border-bottom: 1px solid rgba(215,165,95,.12);
}

.image-placeholder.smoke {
    background:
        radial-gradient(circle at 42% 40%, rgba(255,255,255,.18), transparent 18%),
        radial-gradient(circle at 65% 30%, rgba(255,255,255,.11), transparent 24%),
        linear-gradient(135deg, #201b15, #050505);
}

.image-placeholder.restaurant {
    background:
        radial-gradient(circle at 60% 45%, rgba(215,165,95,.25), transparent 20%),
        linear-gradient(135deg, #251b12, #070707);
}

.image-placeholder.shop {
    background:
        repeating-linear-gradient(90deg, rgba(215,165,95,.12) 0 24px, transparent 24px 52px),
        linear-gradient(135deg, #15130f, #050505);
}

.image-placeholder.home {
    background:
        radial-gradient(circle at 60% 55%, rgba(215,165,95,.26), transparent 24%),
        linear-gradient(135deg, #1c1c1b, #050505);
}

.origin {
    padding: 100px 0;
    background:
        radial-gradient(circle at 20% 60%, rgba(215,165,95,.22), transparent 28%),
        linear-gradient(135deg, #0c0c0b, #070707);
    border-top: 1px solid rgba(215,165,95,.12);
    border-bottom: 1px solid rgba(215,165,95,.12);
}

.origin-grid {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 48px;
    align-items: center;
}

.check-list {
    display: grid;
    gap: 14px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    position: relative;
    padding-left: 34px;
    color: var(--text);
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--gold-2);
    font-weight: 900;
}

.map-card {
    min-height: 330px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.map-title {
    position: relative;
    z-index: 2;
    color: var(--gold-2);
    font-weight: 900;
    letter-spacing: .2em;
}

.map-line {
    position: absolute;
    width: 70%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.map-islands {
    position: absolute;
    inset: 0;
}

.map-islands span {
    position: absolute;
    display: block;
    width: 90px;
    height: 36px;
    border-radius: 50%;
    background: rgba(215,165,95,.2);
    filter: blur(.5px);
}

.map-islands span:nth-child(1) { left: 18%; top: 46%; transform: rotate(-14deg); }
.map-islands span:nth-child(2) { left: 38%; top: 54%; transform: rotate(8deg); }
.map-islands span:nth-child(3) { left: 58%; top: 47%; transform: rotate(-8deg); }
.map-islands span:nth-child(4) { left: 68%; top: 62%; transform: rotate(12deg); }

.review {
    padding: 30px;
}

.quote {
    height: 44px;
    color: var(--gold-2);
    font-size: 70px;
    line-height: .7;
    font-family: Georgia, serif;
}

.stars {
    margin-bottom: 14px;
    color: var(--gold-2);
    letter-spacing: .12em;
}

.cta {
    padding: 86px 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 42px;
    background:
        radial-gradient(circle at 80% 20%, rgba(215,165,95,.2), transparent 34%),
        linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
}

.cta-inner p {
    color: var(--muted);
}

.site-footer {
    padding: 58px 0;
    background: #060605;
    border-top: 1px solid rgba(215,165,95,.14);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 42px;
}

.footer-brand {
    margin-bottom: 14px;
    color: var(--gold-2);
    font-size: 30px;
    line-height: .9;
    font-weight: 900;
    letter-spacing: -.04em;
}

.site-footer h2 {
    margin-bottom: 12px;
    color: var(--gold-2);
    font-size: 18px;
    letter-spacing: 0;
}

.muted {
    color: var(--muted-2) !important;
}

.post-list {
    display: grid;
    gap: 18px;
}

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

    .hero-grid,
    .origin-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 420px;
    }

    .benefit-grid,
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .review-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .wrap {
        width: min(100% - 28px, var(--wrap));
    }

    .header-inner {
        height: 68px;
    }

    .header-phone {
        display: none;
    }

    .hero {
        min-height: auto;
    }

    .hero-grid {
        padding: 54px 0;
        gap: 22px;
    }

    .lead {
        font-size: 23px;
    }

    .hero-pills,
    .benefit-grid,
    .audience-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: 330px;
    }

    .box {
        width: 280px;
        height: 230px;
        padding: 28px;
    }

    .box-logo {
        font-size: 38px;
    }

    .coal {
        width: 60px;
        height: 60px;
    }

    .section,
    .origin,
    .cta {
        padding: 58px 0;
    }

    .cta-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 28px;
    }
}

/* arracubes-contacts-patch-v1 */
.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.social-links a {
    color: var(--gold-2);
}


/* arracubes-reviews-patch-v1 */
@media (max-width: 1080px) {
    .review-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .review-grid {
        grid-template-columns: 1fr;
    }
}

/* arracubes-images-patch-v1 */
.product-photo-card {
    position: relative;
    min-height: 560px;
    display: block;
}

.hero-product-img {
    position: absolute;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(215,165,95,.28);
    background: #080807;
    box-shadow: 0 30px 90px rgba(0,0,0,.5);
}

.hero-product-main {
    width: 390px;
    height: 500px;
    right: 46px;
    top: 0;
    border-radius: 30px;
}

.hero-product-small {
    width: 240px;
    height: 240px;
    left: 0;
    bottom: 18px;
    border-radius: 26px;
}

.product-photo-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: 20px;
    bottom: 0;
    background: radial-gradient(circle, rgba(215,165,95,.24), transparent 68%);
    filter: blur(10px);
}

.product-photo-card::after {
    content: "COCONUT CHARCOAL";
    position: absolute;
    right: 0;
    bottom: 34px;
    padding: 10px 14px;
    border: 1px solid rgba(215,165,95,.28);
    border-radius: 999px;
    background: rgba(8,8,7,.76);
    color: var(--gold-2);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    backdrop-filter: blur(12px);
}

@media (max-width: 1080px) {
    .product-photo-card {
        min-height: 520px;
        max-width: 620px;
        margin: 0 auto;
    }

    .hero-product-main {
        right: 20px;
    }

    .hero-product-small {
        left: 20px;
    }
}

@media (max-width: 680px) {
    .product-photo-card {
        min-height: 430px;
    }

    .hero-product-main {
        width: 250px;
        height: 330px;
        right: 0;
        border-radius: 24px;
    }

    .hero-product-small {
        width: 170px;
        height: 170px;
        left: 0;
        bottom: 16px;
        border-radius: 20px;
    }

    .product-photo-card::after {
        right: 8px;
        bottom: 12px;
        font-size: 9px;
    }
}

/* arracubes-hero-image-size-patch-v1 */
.hero-grid {
    grid-template-columns: minmax(0, 1.15fr) 420px;
}

.product-photo-card {
    min-height: 430px;
}

.hero-product-main {
    width: 300px;
    height: 390px;
    right: 42px;
    top: 12px;
    border-radius: 24px;
}

.hero-product-small {
    width: 170px;
    height: 170px;
    left: 22px;
    bottom: 28px;
    border-radius: 20px;
}

.product-photo-card::before {
    width: 220px;
    height: 220px;
}

.product-photo-card::after {
    right: 24px;
    bottom: 20px;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .product-photo-card {
        min-height: 410px;
        max-width: 440px;
    }

    .hero-product-main {
        width: 285px;
        height: 360px;
        right: 20px;
        top: 0;
    }

    .hero-product-small {
        width: 155px;
        height: 155px;
        left: 12px;
        bottom: 28px;
    }
}

@media (max-width: 680px) {
    .product-photo-card {
        min-height: 330px;
        max-width: 330px;
    }

    .hero-product-main {
        width: 220px;
        height: 285px;
        right: 0;
        top: 0;
        border-radius: 20px;
    }

    .hero-product-small {
        width: 130px;
        height: 130px;
        left: 0;
        bottom: 20px;
        border-radius: 18px;
    }

    .product-photo-card::after {
        right: 4px;
        bottom: 6px;
        font-size: 8px;
        padding: 8px 10px;
    }
}

/* arracubes-hero-compact-patch-v1 */
.hero {
    min-height: 620px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.25fr) 340px;
    gap: 36px;
}

.product-photo-card {
    min-height: 350px;
}

.hero-product-main {
    width: 245px;
    height: 320px;
    right: 36px;
    top: 10px;
}

.hero-product-small {
    width: 125px;
    height: 125px;
    left: 22px;
    bottom: 26px;
}

.product-photo-card::after {
    display: none;
}

@media (max-width: 1080px) {
    .product-photo-card {
        min-height: 340px;
        max-width: 340px;
    }

    .hero-product-main {
        width: 230px;
        height: 300px;
        right: 10px;
    }

    .hero-product-small {
        width: 120px;
        height: 120px;
        left: 0;
        bottom: 22px;
    }
}

@media (max-width: 680px) {
    .hero {
        min-height: auto;
    }

    .product-photo-card {
        min-height: 260px;
        max-width: 260px;
    }

    .hero-product-main {
        width: 180px;
        height: 235px;
    }

    .hero-product-small {
        width: 92px;
        height: 92px;
    }
}

/* arracubes-hero-minimal-photo-patch-v1 */
.hero {
    min-height: 560px;
}

.hero-grid {
    grid-template-columns: minmax(0, 1fr) 260px;
    gap: 28px;
}

.product-photo-card {
    min-height: 300px;
    max-width: 260px;
    margin-left: auto;
}

.hero-product-main {
    width: 220px;
    height: 285px;
    right: 0;
    top: 8px;
    border-radius: 22px;
}

.hero-product-small {
    display: none;
}

.product-photo-card::before,
.product-photo-card::after {
    display: none;
}

@media (max-width: 1080px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .product-photo-card {
        min-height: 260px;
        max-width: 220px;
        margin: 10px auto 0;
    }

    .hero-product-main {
        width: 210px;
        height: 250px;
        right: 0;
        top: 0;
    }
}

@media (max-width: 680px) {
    .hero-grid {
        gap: 18px;
    }

    .product-photo-card {
        min-height: 210px;
        max-width: 180px;
    }

    .hero-product-main {
        width: 180px;
        height: 210px;
        border-radius: 18px;
    }
}

/* arracubes-compact-facts-v1 */
.compact-facts{padding:64px 0;background:rgba(255,255,255,.025);border-top:1px solid rgba(215,165,95,.12);border-bottom:1px solid rgba(215,165,95,.12)}
.compact-facts-head{max-width:760px;margin:0 auto 24px;text-align:center}
.compact-facts-head h2{color:var(--gold-2)}
.compact-facts-head p{color:var(--muted)}
.compact-facts-grid{display:grid;grid-template-columns:repeat(6,1fr);gap:10px}
.compact-facts-grid div{padding:18px 14px;border:1px solid rgba(215,165,95,.16);border-radius:18px;background:rgba(255,255,255,.045);text-align:center}
.compact-facts-grid strong{display:block;color:var(--gold-2);font-size:22px;line-height:1.1}
.compact-facts-grid span{display:block;margin-top:7px;color:var(--muted);font-size:13px}
@media(max-width:1080px){.compact-facts-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:680px){.compact-facts-grid{grid-template-columns:repeat(2,1fr)}.compact-facts{padding:46px 0}}

/* arracubes-buyers-v1 */
.buyers{padding:64px 0;background:radial-gradient(circle at 80% 20%,rgba(215,165,95,.14),transparent 32%)}
.buyers-inner{display:flex;align-items:center;justify-content:space-between;gap:28px;padding:34px;border:1px solid rgba(215,165,95,.16);border-radius:24px;background:rgba(255,255,255,.045)}
.buyers-inner h2{color:var(--gold-2);margin-bottom:12px}
.buyers-inner p:not(.eyebrow){max-width:760px;color:var(--muted);margin-bottom:0}
@media(max-width:760px){.buyers-inner{align-items:flex-start;flex-direction:column;padding:26px}}

/* arracubes-visual-polish-v1 */
.section{padding:68px 0}
.hero{min-height:520px}
.hero-grid{padding:56px 0}
h1{font-size:clamp(52px,6.2vw,86px)}
.lead{font-size:clamp(22px,2.2vw,30px);max-width:640px}
.hero-pills{grid-template-columns:repeat(4,minmax(0,1fr));max-width:680px}
.benefit-grid{max-width:900px;margin:0 auto}
.card{padding:26px}
.image-placeholder{display:none}
.image-card{padding:28px}
.image-card h3,.image-card p{padding-left:0;padding-right:0}
.image-card p{padding-bottom:0}
.audience-grid{max-width:900px;margin:0 auto}
.origin{padding:78px 0}
.origin-grid{grid-template-columns:1fr;max-width:860px}
.map-card{display:none}
.buyers{padding:56px 0}
.cta{padding:56px 0}
.review-grid{max-width:900px;margin:0 auto}
@media(max-width:680px){.section{padding:50px 0}.hero-grid{padding:42px 0}.hero-pills{grid-template-columns:1fr 1fr}.benefit-grid,.audience-grid{grid-template-columns:1fr}}
